html,
body {
    margin: 0;
}

/*NAVBAR*/
.logo {
    margin: 33px 0px;
}

@media screen and (max-width: 1233px) {
    .logo{
        margin: 33px 33px;
    }
}
@media screen and (max-width: 405px) {
    .logo{
        width: 150px;
        margin: 52px 33px;
    }
}
.topnav {
  overflow: hidden;
  text-transform: uppercase;
  max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.topnav a {
  font-family: 'Roboto Condensed', sans-serif;
  float: right;
  display: block;
  color: black;
  text-align: center;
  padding: 64px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 935px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 935px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
      padding: 15px 33px;
  }
    .topnav.responsive a:nth-of-type(4) {
        padding: 15px 33px 66px 33px;
    }
    
}

/*BANNER*/

.banner {
    height: 100vw;
    background-color: #072758;
    background-image: url(../img/pb.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 17.5%;
    text-transform: uppercase;
    position: relative;
}

.banner .heading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
}

.banner .heading span:nth-of-type(1) {
    line-height: calc(145vw * .1);
    font-size: calc(270vw * .1);
    color: white;
    font-family: 'Roboto Slab', serif;
    color: #d2ab66;
}

.banner .heading span:nth-of-type(2) {
    line-height: calc(84vw * .1);
    font-size: calc(90vw * .1);
    color: white;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
}

@media (min-width: 450px) {
    .banner {
        height: 630px;
    }
    .banner .heading span:nth-of-type(1) {
        line-height: calc(145px * .5);
        font-size: calc(270px * .5);
    }
    .banner .heading span:nth-of-type(2) {
        line-height: calc(84px * .5);
        font-size: calc(90px * .5);
    }
}

@media (min-width: 860px) {
    .banner .heading span:nth-of-type(1) {
        line-height: 145px;
        font-size: 270px;
    }
    .banner .heading span:nth-of-type(2) {
        line-height: 84px;
        font-size: 90px;
    }
}

/* GRID */

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
}

.col-50 {
    width: 50%;
    box-sizing: border-box;
    padding: 15px;
}

.col-100 {
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
    font-weight: 400;
    text-align: justify;
    font-family: 'Roboto Condensed', sans-serif;
}

.col-100 p, .col-100 ul li {
    max-width: 700px;
    width: 100%;
}

.col-100 h2::after {
    margin-top: 30px;
    display: block;
   width: 100%;
    max-width: 700px;
    content: '';
    background-color: black;
    height: 1px;
}



.article {
    font-weight: 400;
    text-align: justify;
    font-family: 'Roboto Condensed', sans-serif;
}

h2 {
    text-transform: uppercase;
    font-size: 41px;
    font-weight: 700;
    text-align: left;
}

.online{
    margin: 135px 30px 30px 30px;
    background-image: url(../img/laptop.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.online span {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    font-size: 80px;
    line-height: 1; 
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}



@media (max-width: 1200px) {
    .online span {
        font-size: 7vw;
    }
}

@media (max-width: 992px) {
    .container {
        display: block;
    }
    .col-50, .col-100 {
        width: 100%;
        box-sizing: border-box;
        margin: 0;
        padding: 50px;
    }
    .online span {
        position: relative;
        font-size: 10vw;
    }
}






input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #aca49c;
  font-size: 0.875em;
}

input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  color: #bbb5af;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #aca49c;
  font-size: 0.875em;
}

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: #bbb5af;
}

input::placeholder, textarea::placeholder {
  color: #aca49c;
  font-size: 0.875em;
}

input:focus::placeholder, textarea::focus:placeholder {
  color: #bbb5af;
}

input::-ms-placeholder, textarea::-ms-placeholder {
  color: #aca49c;
  font-size: 0.875em;
}

input:focus::-ms-placeholder, textarea:focus::-ms-placeholder {
  color: #bbb5af;
}

/* on hover placeholder */

input:hover::-webkit-input-placeholder, textarea:hover::-webkit-input-placeholder {
  color: #e2dedb;
  font-size: 0.875em;
}

input:hover:focus::-webkit-input-placeholder, textarea:hover:focus::-webkit-input-placeholder {
  color: #cbc6c1;
}

input:hover::-moz-placeholder, textarea:hover::-moz-placeholder {
  color: #e2dedb;
  font-size: 0.875em;
}

input:hover:focus::-moz-placeholder, textarea:hover:focus::-moz-placeholder {
  color: #cbc6c1;
}

input:hover::placeholder, textarea:hover::placeholder {
  color: #e2dedb;
  font-size: 0.875em;
}

input:hover:focus::placeholder, textarea:hover:focus::placeholder {
  color: #cbc6c1;
}

input:hover::placeholder, textarea:hover::placeholder {
  color: #e2dedb;
  font-size: 0.875em;
}

input:hover:focus::-ms-placeholder, textarea:hover::focus:-ms-placeholder {
  color: #cbc6c1;
}


header {
	font-family: 'Roboto Condensed', sans-serif;
  position: relative;
  margin: 100px 0 25px 0;
  font-size: 2.3em;
  text-align: center;
  letter-spacing: 7px;
}

#form {
  position: relative;
  width: 500px;
  margin: 50px auto 100px auto;
}

input {
  font-family: 'Lato', sans-serif;
  font-size: 0.875em;
  width: 470px;
  height: 50px;
  padding: 0px 15px 0px 15px;
  
  background: transparent;
  outline: none;
  color: #726659;
  
  border: solid 1px #b3aca7;
  border-bottom: none;
  
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

input:hover {
  background: #d2ab66;
  color: #e2dedb;
}

textarea {
  width: 470px;
  max-width: 470px;
  height: 110px;
  max-height: 110px;
  padding: 15px;
  
  background: transparent;
  outline: none;
  
  color: #726659;
  font-family: 'Lato', sans-serif;
  font-size: 0.875em;
  
  border: solid 1px #b3aca7;
  
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

textarea:hover {
  background: #d2ab66;
  color: #e2dedb;
}

#submit {
  width: 502px;
  
  padding: 0;
  margin: -5px 0px 0px 0px;
  
  font-family: 'Lato', sans-serif;
  font-size: 0.875em;
  color: #b3aca7;
  
  outline:none;
  cursor: pointer;
  
  border: solid 1px #b3aca7;
  border-top: none;
}

#submit:hover {
  color: #e2dedb;
}








/* FOOTER */
footer {
  background-color: #292b2e;
}

footer>div {
  display: flex;
  width: 100;
  max-width: 1200px;
  padding: 15px;
  margin: 0 auto;
}

@media (max-width: 650px) {
    footer>div {
  display: block;
}
  footer img {
    margin: 15px;
  }
}

footer img{
  height: 100%;
}

footer p {
  color: white;
  text-align: justify;
  font-family: 'Roboto Condensed', sans-serif;
  line-height: 1;
  font-size: 13px;
  padding: 0 15px;
}