@import url(fonts.css);
*,*:before,*:after{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*{
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
}
body {
  min-height: 100vh;
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: #f9f9f9;
  color: #000;
  font-family: Montserrat;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  align-items: center;
  /*
  footer{
    min-height:500px;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    flex-wrap:wrap;
    @media(max-width:767px){
      justify-content: stretch;
      align-items: center;
      flex-direction: column;
    }
    #mogo{
      width:35%;
      min-width:390px;
      padding-right:10px;
      @media(max-width:767px){
        width:90%;
        min-width:300px;
      }
      h1{
        font-size:46px;
        color:#cccccc;
      }
      p{
        color:#999;
        font-size:15px;
      }
      h4{
        font-size:14px;
        font-weight:500;
        margin:30px 0;
        span{
          font-size:18px;
          font-weight:700;
        }
      }
      #socials{
        margin-bottom: 30px;
        font-size:15px;
        font-family:Roboto;
        color:#999;
        display:flex;
        align-items: center;
        justify-content: flex-start;
        span{
          margin-right:15px;
          line-height:20px;
        }
        img{
          margin:0 5px;
          cursor: pointer;
        }
      }

      #subscription{
        position:relative;
          #error{
            display:none;
            position:absolute;
            width:200px;
            height:20px;
            top:-20px;
            left:0;
            color:red;
            font-size:12px; 
            z-index:10;
          &.visible{
            display: block;
          }
          }
        input{
          height:40px;
          line-height:40px;
          font-size:15px;
          width:240px;
          border:1px solid #ccc;
          border-right:none;
          color:#999;
          font-style: italic;
          box-sizing: border-box;
          padding-left:5px;
          @media(max-width:467px){
            width:180px;
          }
          &::placeholder{
            color:#999;
          }
          &.wrong{
            border-color:red;
          }
        }
        button{
          height:40px;
          line-height:40px;
          width:150px;
          color:#fff;
          border:none;
          outline:none;
          background:#95e1d3;
          text-transform: uppercase;
          font-size: 14px;
          font-weight: 700;
          margin-left:-5px;
        }
      }

    }

    #blogs{
      width:30%;
      min-width: 337px;
      @media(max-width:767px){
        width:90%;
      }
      h3{
        font-size: 14px;
        text-transform: uppercase;
        margin:40px 0;
      }
      div{
        display:flex;
        margin-bottom:20px;
      }
      p{
        color:#333;
        font-size:12px;
        text-transform: uppercase;
        padding-left:15px;
        line-height: 1.4;
        max-width:250px;
        @media(max-width:767px){
          max-width:500px;
        }
        .date{
          color:#ccc;
          text-transform: none;
          font-style: italic;
        }
      }
    }

    #instagram{
      width:30%;
      min-width: 273px;
      @media(max-width:767px){
        width:90%;
      }
      .picGrid{
        width:100%;
      @media(max-width:767px){
        max-width:400px;
        &>img:last-child{
          display:none;
        }
      }
        @media(max-width:467px){
          max-width:300px;
          &>img:last-child{
            display:inline-block;
          }
      }
    }
      h3{
        font-size: 14px;
        text-transform: uppercase;
        margin:40px 0;
      }
      a{
        color:#999;
        text-decoration: none;
        font-size:15px;
        font-family:Roboto;
        font-style: italic;
      }
    }
  }
*/
}

body header {
  margin: 0;
  width: 100%;
  max-width: 100%;
  height: 439px;
  /*background: url("../images/bd_gradient.png") no-repeat;*/
  background-size: cover;
  color: #fefefe;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  background: url("../images/bg_office_.jpg") no-repeat;
  background-size: cover;

  position: relative;
}
body header #bgLayer {
  position: absolute;
  width: 100%;
  height: 439px;
  height: 100%;
  background: #0b1c34;
  opacity: 0.8;
  z-index: 1;
}
@media (max-width: 467px) {
  body header, body header #bgLayer {
    height: 400px;
  }
}
body header nav {
  width: 95%;
  max-width: 1230px;
  height: 52px;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  body header nav {
    flex-direction: column;
    align-items: center;
	justify-content:center;
	padding-left:47px;
    height: 100px;
  }
}
@media (max-width: 600px) {
  body header nav {
	padding-left:12px;
  }
}
@media (max-width: 467px) {
  body header nav {
    height: 150px;
  display: flex;
  }
}
body header nav > div {
  display: flex;
}
body header nav a {
  display: inline-block;
  cursor: pointer;
  z-index: 3;
}
body header nav a.cart {
  margin-right: 42px;
}
@media (max-width: 600px) {
  body header nav a.cart {
    margin-right: 20px;
  }
}
body header nav > p {
  font-size: 30px;
  font-weight: 700;
}
body header nav ul {
  height: 77px;
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  margin-left: auto;
  padding: 0;
}
@media (max-width: 600px) {
  body header nav ul {
    width: 100%!important;
  }
}
body header nav ul li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 14px;
  margin-right: 26px;
  position: relative;
  z-index: 3;
}
body header nav ul li:last-child{
  margin-right: 0;
}
@media (max-width: 600px) {
  body header nav ul li {
    margin-right: 15px;
  }
}
@media (max-width: 545px) {
  body header nav ul li {
    margin-right: 10px;
  }
}
body header nav ul li::before {
  content: '';
  display: block;
  position: absolute;
  top: 130%;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #e84460;
  transform: scale(0, 1);
  transform-origin: center;
  transition: transform 0.2s ease;
}
body header nav ul li:hover::before,body header nav ul li.active::before {
  transform: scale(1, 1);
}
body header nav ul li a {
  color: #fefefe;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
}
body header nav ul li a:hover,body header nav ul li.active a {
  color: #e84460;
}
body header > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
  height: 80%;
  padding-bottom: 75px;
  box-sizing: border-box;
  z-index: 4;
}
@media (max-width: 467px) {
  body header > div {
    padding-bottom: 120px;
    padding-top: 50px;
  }
}
body header > div h1 {
  font-size: 75px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  margin: 0;
  margin-top:-60px;
}
@media (max-width: 900px) {
  body header > div h1 {
    font-size: 72px;
  }
}
@media (max-width: 767px) {
  body header > div h1 {
    font-size: 64px;
    margin-top: 0;
  }
}
@media (max-width: 545px) {
  body header > div h1 {
    font-size: 50px;
  }
}
@media (max-width: 467px) {
  body header > div h1 {
    font-size: 42px;
    line-height: 1.3;
  }
}
body header > div h2 {
  font-size: 55px;
  /*font-family: "Kaushan Script";*/
  font-family: Hughs;
  margin: 0;
}
@media (max-width: 767px) {
  body header > div h2 {
    font-size: 30px;
  }
}
@media (max-width: 467px) {
  body header > div h2 {
    font-size: 22px;
  }
}
body header > div #moreBtn {
  border: 3px solid #fff;
  background-color: transparent;
  width: 160px;
  height: 40px;
  line-height: 34px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  box-sizing: border-box;
  transition: background-color 0.2s ease;
  cursor: pointer;
  z-index: 3;
}
@media (max-width: 467px) {
  body header > div #moreBtn {
    width: 180px;
  }
}
body header > div #moreBtn:hover {
  background-color: #fc707b;
}
body .separator {
  display: inline-block;
  width: 65px;
  height: 3px;
  background: #fff;
}
body section {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
  width: 100%;
  box-sizing: border-box;
  color: #000000;
}
body section h3 {
  font-family: 'Hughs';
  font-size: 30px;
  margin-bottom: 0;
  margin-top: 0;
  line-height: 1;
}
body section h2 {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  body section h2 {
    text-transform: capitalize;
  }
}
body section p {
  text-align: center;
  font-size: 15px;
  color: #000000;
  width: 95%;
  line-height: 1.2;
  font-weight: 300;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: .025em;
}
body section p+p{
  margin-top: 18px;
}
body section .separator {
  background-color: #e84460;
  margin-bottom: 15px;
}
body #about {
  min-height: 750px;
  max-width: 1300px;
  padding: 92px 0 40px;
  display: block;
  text-align: center;
  width: 95%;
}
body #about #cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /*width: 100%;*/
  /*margin-top: 40px;*/
  margin: 40px -12px 0;
}
body #about .card {
  position: relative;
  width: calc(33.33% - 24px);
  height: auto;
  display: inline-block;
  background: url(../images/bd_gradient.png) no-repeat;
  background-size: cover;
  color: #fff;
  top: 0;
  left: 0;
  margin: 0 12px 20px;
  transition: all 0.2s ease;

}
@media (max-width: 767px) {
  body #about .card {
    width: 220px;
  }
}
@media (max-width: 467px) {
  body #about .card {
    width: 86%;
  }
}
body #about .card img {
  width: 100%;
  height: 100%;
}
body #about .card .superTeam {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -40px;
  margin-left: -40px;
  height: 80px;
  line-height: 145px;
  /* background: url(../images/icons/users.png) no-repeat; */
  background: url(../images/icons/join_us.svg) no-repeat;
  background-position: center top;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.2s ease;
}
body #about .card::before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  background-color: #102134;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: all 0.2s ease;
}
body #about .card::after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  /*background: url("../images/bd_gradient.png") no-repeat;*/
  background: #e84460;
  /*background-size: cover;*/
  opacity: 0;
  transition: opacity 0.2s ease;
}
body #about .card:hover,body #about .card.hovered {
  top: -5px;
  left: -5px;
}
body #about .card:hover .superTeam,body #about .card.hovered .superTeam  {
  opacity: 1;
}
body #about .card:hover::before,body #about .card.hovered::before {
  top: 5px;
  left: 5px;
}
body #about .card:hover::after,body #about .card.hovered::after {
  opacity: 1;
}
body #numbers {
  width: 100%;
  min-height: 270px;
  background-color: #95e1d3;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (max-width: 467px) {
  body #numbers {
    flex-direction: column;
  }
}
body #numbers .numberCard {
  width: 240px;
}
@media (max-width: 467px) {
  body #numbers .numberCard {
    width: 100%;
    height: 225px;
    border-bottom: 1px solid white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
body #numbers .numberCard p {
  text-transform: uppercase;
  font-size: 14px;
  color: #fff;
}
@media (min-width: 468px) and (max-width: 767px) {
  body #numbers .numberCard p {
    font-size: 12px;
    text-transform: capitalize;
  }
}
body #numbers .numberCard .number {
  font-size: 72px;
  font-weight: bold;
  margin: 0;
}
@media (min-width: 468px) and (max-width: 767px) {
  body #numbers .numberCard .number {
    font-size: 50px;
  }
}
body #services {
  /*min-height: 650px;*/
  max-width: 1300px;
  padding: 36px 0 0;
  display: block;
  text-align: center;
  width: 95%;
}
body #services #serviceList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 15px -12px;
}
body #services #serviceList .serviceListItem {
  width: calc(32% - 24px);
  padding: 0;
  box-sizing: border-box;
  margin: 0 12px 50px;
  text-align: left;
  padding-left: 80px;
  line-height: 1.8;
  line-height: 16px;
  position: relative;
}
@media (max-width: 767px) {
  body #services #serviceList .serviceListItem {
    width: 45%;
    padding: 0 5px 30px 80px;
  }
}
@media (max-width: 467px) {
  body #services #serviceList .serviceListItem {
    width: 100%;
    height: auto;
    padding: 4% 3% 30px 90px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 0;
  }
}
body #services #serviceList .serviceListItem img {
  position: absolute;
  left: 0;
  top: 20px;
}
@media (max-width: 467px) {
  body #services #serviceList .serviceListItem img {
    left: 20px;
    top: 40%;
  }
}
body #services #serviceList .serviceListItem h4 {
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 17px;
}
@media (max-width: 767px) {
  body #services #serviceList .serviceListItem h4 {
    font-size: 12px;
  }
}
body #services #serviceList .serviceListItem p {
  font-size: 12px;
  text-align: left;
  margin: 0;
  line-height: 1.35;
}
@media (max-width: 467px) {
  body #services #serviceList .serviceListItem p {
    max-width: 300px;
  }
}
body #design {
  height: 940px;
  position: relative;
  justify-self: flex-start;
  padding-bottom: 50px;
}
body #design h2 {
  margin-top: -30px;
}
body #design .iphone {
  position: absolute;
  left: 60%;
  bottom: 0;
}
@media (max-width: 467px) {
  body #design .iphone {
    left: 40%;
  }
}
body #design .ipad {
  position: absolute;
  bottom: 100px;
}
@media (max-width: 467px) {
  body #design .ipad {
    width: 100%;
    bottom: 150px;
  }
}
body #design .lake {
  width: 100%;
  height: 590px;
  background: url("../images/bg_lake.png") no-repeat;
  opacity: 0.2;
  z-index: -1;
}
body #whatWeDo {
  /*min-height: 750px;*/
  max-width: 1230px;
  display: block;
  text-align: center;
  padding: 25px 0 50px;
  width: 95%;
}
body #whatWeDo > div {
  width: 100%;
  min-height: 450px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  margin: 30px 0;
}
body #whatWeDo > div #iam {
  max-width: 620px;
  width: 51%;
  /* height: 380px; */
  display: block;
  /* background: url(../images/we_are.jpg) no-repeat; */
  background-size: contain;
}
body #whatWeDo > div #iam img{
  max-width: 100%;
  height: auto;
}
@media (max-width: 467px) {
  body #whatWeDo > div #iam {
    width: 100%;
  }
}
body #whatWeDo > div #accordion {
  max-width: 580px;
  width: 48%;
  /*height: 410px;*/
  list-style-type: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 467px) {
  body #whatWeDo > div #accordion {
    width: 100%;
  }
}
body #whatWeDo > div #accordion .accLi {
  /*padding: 10px;*/
  /*max-height: 70px;*/
  padding: 0;
  margin-bottom: 5px;
  max-height: 85px;
  transition: max-height 0.3s ease-out;
}
body #whatWeDo > div #accordion .accLi .accHeader {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid #9d9d9d;
  cursor: pointer;
  height: 65px;
}
body #whatWeDo > div #accordion .accLi .accHeader img {
  margin: 0 20px;
}
body #whatWeDo > div #accordion .accLi .accHeader h4 {
  font-size: 14px;
  text-transform: uppercase;
}
body #whatWeDo > div #accordion .accLi .accHeader .arrowDown {
  margin-left: auto;
}
body #whatWeDo > div #accordion .accLi .accHeader .arrowUp {
  margin-left: auto;
  display: none;
}
body #whatWeDo > div #accordion .accLi .accBody {
  width: 100%;
  padding-left: 10px;
  /*font-style: italic;*/
  font-size: 15px;
  text-align: left;
  transform: scale(1, 0);
  transform-origin: top;
  transition: all 0.3s ease-out;
  overflow: hidden;
  font-family: Montserrat;
}
body #whatWeDo > div #accordion .accLi.open {
  max-height: 280px;
}
body #whatWeDo > div #accordion .accLi.open .accBody {
  transform: scale(1, 1);
  transition: all 0.1s ease-out;
}
@media (max-width: 767px) {
  body #whatWeDo > div #accordion .accLi.open .accBody {
    max-height: 180px;
    text-overflow: ellipsis;
  }
}
body #whatWeDo > div #accordion .accLi.open .arrowDown {
  display: none;
}
body #whatWeDo > div #accordion .accLi.open .arrowUp {
  display: block;
}
body #slider {
  height: 330px;
  max-width: 1200px;
  overflow: hidden;
}
@media (max-width: 467px) {
  body #slider {
    height: 400px;
  }
}
body #slider .slide {
  float: left;
  height: 330px;
  width: 100%;
  user-select: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}
@media (max-width: 467px) {
  body #slider .slide {
    height: 400px;
  }
}
body #slider .slide .humanInfo {
  display: flex;
  flex-direction: row;
}
@media (max-width: 467px) {
  body #slider .slide .humanInfo {
    flex-direction: column;
    align-items: center;
  }
}
body #slider .slide .humanInfo img {
  margin: 0 10px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
}
body #slider .slide .humanInfo p {
  font-style: italic;
  color: #999;
  font-size: 24px;
  text-align: left;
  font-family: Roboto;
  padding: 0 10px;
}
@media (max-width: 767px) {
  body #slider .slide .humanInfo p {
    font-size: 18px;
  }
}
@media (max-width: 467px) {
  body #slider .slide .humanInfo p {
    padding: 0;
    text-align: center;
  }
}
body #slider .slide .humanInfo p span {
  font-family: "Kaushan Script";
  padding-left: 70px;
  position: relative;
  font-size: 24px;
  color: #333333;
  display: inline-block;
}
@media (max-width: 767px) {
  body #slider .slide .humanInfo p span {
    font-size: 18px;
  }
}
body #slider .slide .humanInfo p span::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 18px;
  width: 60px;
  height: 3px;
  background-color: #f38181;
}
body #slider .arrowLeft,
body #slider .arrowRight {
  height: 100%;
  width: 65px;
  cursor: pointer;
}
body #slider .arrowLeft {
  background: url("../images/icons/arrow-left.png") no-repeat;
  background-position: center center;
}
body #slider .arrowRight {
  background: url("../images/icons/arrow-right.png") no-repeat;
  background-position: center center;
}
body #contact {
  min-height: 670px;
  background: url(../images/bd_gradient.png) no-repeat;
  background-size: cover;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #102134;
  display: block;
  text-align: center;
  /* max-width: 900px; */
  padding: 48px 0;
}
body #contact h1 {
  font-size: 36px;
  text-transform: uppercase;
  color: #e84460;
}
body #contact p {
  font-size: 14px;
  font-weight: 300;
  /* max-width: 650px; */
  text-align: center;
  font-family: 'Montserrat';
  margin: 38px auto 34px;
  letter-spacing: .025em;
}
#contactForm{
  max-width: 810px;
  margin: auto;
}
body #contact a{
	color:#fff;
	text-decoration:none;
}
body #contact a:hover{
  text-decoration: underline;
}
body #contact .copy{
  margin: 91px auto 0px;
  font-weight: 300;
  font-family: 'Montserrat';
  font-size: 12px;
  letter-spacing: .02em;
}
body #contact .inputs {
  position: relative;
  width: 100%;
  max-width: 830px;
  min-height: 130px;
  margin: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
body #contact .inputs input {
  width: 45.5%;
  display: block;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  border-bottom: 1px solid #fff;
  height: 50px;
  margin-bottom: 27px;
  /* line-height: 35px; */
  font-size: 14px;
  font-family: 'Montserrat';
  font-weight: 300;
  padding: 0;
}
.ld-f *{
  box-sizing: border-box;
}
body #contact.contact-f{
  margin: 40px auto;
  padding: 40px 20px;
  max-width: 600px;
  width: 100%;
}
body #contact.contact-f .inputs {
  position: relative;
  width: 100%;
}
body #contact.contact-f label {
  margin: 0 0 20px;
  display: block;
  color:#fff;
}
body #contact.contact-f .inputs input {
  width: 100%;
  display: block;
  margin-bottom: 30px;
  height: 28px;
  line-height: 28px;
}
.error-fld{
  position: relative;
  width: 100%;
}
body #contact.contact-f .inputs #error {
  left: 0;
  bottom: 0;
  height: 25px;
  color: #7F1734;
  font-weight: bold;
  margin: 0;
}
body #contact .inputs #error.visible+input{
  border-color: #7F1734;
}
@media (max-width: 467px) {
  body #contact .inputs input {
    width: 100%;
    margin-top: 5px;
  }
}
body #contact .inputs input::placeholder {
  opacity: 1;
}
:-moz-placeholder{
  color: #fff;
}
:-ms-input-placeholder{color: #fff;}
::-moz-placeholder{color: #fff;}
::-webkit-input-placeholder{color: #fff;}
body #contact .inputs #error {
  display: none;
  position: absolute;
  bottom: -20px;
  left: 10%;
  width: 200px;
  height: 20px;
  color: red;
  font-size: 12px;
  z-index: 10;
}
@media (max-width: 467px) {
  body #contact .inputs #error {
    bottom: 10px;
    left: 30%;
  }
}
body #contact .inputs #error.visible {
  display: block;
}
body #contact label {
  font-size: 14px;
  margin: 15px 0 10px 2.5%;
  display: block;
  font-family: 'Montserrat';
  text-align: left;
  margin: 7px 0 17px;
  font-weight: 300;
}
body #contact textarea {
  display: block;
  width: 100%;
  border: none;
  outline: none;
  margin: auto;
  background: transparent;
  color: #fff;
  background: #fff;
  font-size: 14px;
  height: 195px;
  color: #000;
  padding: 10px;
}
body #contact button {
  display: block;
  margin: 33px auto;
  width: 260px;
  height: 60px;
  line-height: 56px;
  font-size: 24px;
  border-radius: 30px;
  border: none;
  outline: none;
  color: #fff;
  background: #e84460;
  cursor: pointer;
  font-family: 'Montserrat';
  font-weight: 300;
  border: 2px solid #e84460;
  transition: all .5s ease;
}
body #contact button:hover{
  border-color: #fff;
  background: transparent;
  /*color: #e84460;*/
}
body #scrollToTop {
  display: inline-block;
  background-color: #e84460;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
body #scrollToTop::after {
  content: "";
  width: 50px;
  height: 50px;
  display:block;
  background:url("../images/icons/arrow-top-white.png") no-repeat;
  background-position:center;
}
body #scrollToTop:hover {
  cursor: pointer;
  background-color: #e84460;
}
body #scrollToTop:active {
  background-color: #e84460;
}
body #scrollToTop.show {
  opacity: 1;
  visibility: visible;
}
.ld-f{
  background: #102134;
  width: 100%;
}
@media (max-width: 767px) {
  body #contact{
    padding: 48px 15px;
  }
  body header nav {
    padding-left: 0;
  }
}
@media (max-width: 467px) {
  body header nav ul li a {
    font-size: 11px;
  }

}
