
/* Form field transition */
/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus {
  /* -webkit-text-fill-color: #FFFFFF; */
  /* -webkit-box-shadow: 0 0 0px 1000px #000 inset; */
  transition: background-color 5000s ease-in-out 0s;
}
input.colorWhite:-webkit-autofill,
input.colorWhite:-webkit-autofill:hover, 
input.colorWhite:-webkit-autofill:focus {
  -webkit-text-fill-color: #FFFFFF;
}
input:focus ~ .formLabel, ._formLabel {
  top: -10px !important;
  left: -5px !important;
  font-size: small !important;
  color: #4E4E4E;
  /* background-color:#fff; */
  padding:0 5px 0 5px !important;
}
.formLabel {
  color: #4E4E4E;
  position: absolute;
  pointer-events: none;
  left: 0px;
  top: 10px;
  transition: 0.2s;
}

/* Form field transition */

/* OVERLAY */
.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.overlay a {
  font-family: 'Barlow Condensed', sans-serif;
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block;
  transition: 0.3s;
}
/* .overlay a.buttonNav:hover, .overlay a.buttonNav:focus{
  background-image: url('../img/overlay.png');
  background-repeat: no-repeat;
  background-position: 37%;
} */
.overlay a.buttonNav {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.overlay a.buttonNav span {
  display: flex;
  font-size: 36px;
  font-family: 'Barlow Condensed', sans-serif;
  margin-right:25px;
}
.overlay a.buttonNav span:nth-child(1) {
  width: 15px;
  height: 15px;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  margin-right: 10px;
}
.overlay a.buttonNav:hover span:nth-child(1) {
  visibility: visible;
}

.overlay a:hover, .overlay a:focus {
  color: #CB3237;
}

.overlay .closebtn {
  /* border: 2.5px solid #CB3237; */
  color: #CB3237;
  font-size: 60px;
  /* margin-left:1%; */
  line-height: 26px;
  margin-top: -5px;
}

._overlay_menu{
  display: flex !important;
  flex-direction: row;
}
._overlay_menu span{
  display: flex;
}
._overlay_menu span:nth-child(1){
  font-size: 20px;
}
._overlay_menu span:nth-child(2){
  margin-left: 15px;
}

@media screen and (max-height: 450px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
  font-size: 40px;
  top: 15px;
  right: 35px;
  /* border: 2.5px solid #CB3237; */
  }
}


/* OVERLAY */

/* The Modal*/
  .modal-body input:focus ~ .formLabel, .modal-body ._formLabel {
    color: #646464 !important;
  }
  .modal-body .fildRow > input {
    border-bottom: 2px solid #646464;
  }
.modal {
    display: none; 
    /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: hidden; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }

  /* Modal Content/Box */
  #formModal .modal-content {
    position: absolute;
    left:0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: rgba(56, 56, 56,1);
    height: 520px;
    padding: 2%;
    width: 50%;
  }
  #messageModal .modal-content{
    position: absolute;
    left:0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: rgba(56, 56, 56,1);
    height: 250px;
    padding: 2%;
    width: 30%;
    overflow-y: auto;
  }
  #contactModal .modal-content {
    position: absolute;
    left:0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: rgba(56, 56, 56,1);
    height: 300px;
    padding: 2%;
    width: 30%;
    overflow-y: auto;
  }
  /* Modal Header */
.modal-header {
    padding: 2px 16px;
    background-color: inherit;
    color: white;
  }

  /* Modal Body */
  .modal-body {
    padding: 20px 16px 2px 16px;
    max-width: 300px;
    margin: auto;
  }
  /* Modal Body */
  #messageModal .modal-body {
    padding: 0px !important;
    max-width: 300px;
    margin: auto;
  }
  #contactModal .modal-body {
    padding: 0px !important;
    max-width: 300px;
    margin: auto;
  }


  /* Modal Footer */
  .modal-footer {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
  }

  /* The Close Button */
  .close {
    color: #CB3237;
    float: right;
    font-size: 40px;
    font-weight: bold;
  }

  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

input[type="email"].placeholder-white::placeholder {
    color:white;
}
input[type="email"].placeholder-white::-webkit-input-placeholder{
    color:white;
}
input[type="email"].placeholder-white::-moz-placeholder{
    color:white;
}

input[type="email"].placeholder-white::-ms-placeholder{
    color:white;
}
.form-column {
    display: flex;
    flex-direction: column;
  }
  .field {
    border-bottom: 2px solid #D2D2D2;
    border-top: none;
    border-left: none;
    border-right: none;
    padding: 5px 0px;
    outline: none;
    margin-bottom: 20px;
    width:75%;
    font-family: Rubik, sans-serif;
    background: transparent;
  }
  .colorWhite {
    color: #FFFFFF;
  }
  .field:focus {
    outline: none;
  }

  .modalHeading {
    font-size: min(25px,1.5em);
    font-weight: 600;
    margin: 15px 0px 0px 0px;
    text-align: center;
  }
  .modalDesc{
    font-size: min(20px,1.2em);
    font-weight: 400;
    text-align: center;
  }
  .subscribeModal {
    width: 593px;
  }
  .subscribeModal .field::placeholder {
    color: #aca4a4;
  }
  .subscribeModal .field {
    width: 100% !important;
  }
  /* MEDIA MOBILE */
  @media screen and (max-width: 900px) {
    #formModal .modal-content {
      width: 75% !important;
      height: calc(75vh - 120px) !important;
      overflow-y: auto;
    }
    #messageModal .modal-content{
      width: 60vw !important;
      height: 40vh !important;
      overflow-y: auto;
    }
  }
  @media screen and (max-width: 1010px) {
    #contactModal .modal-content {
      width: 60vw !important;
      height: 40vh !important;
      overflow-y: auto;
    }
  }
  /* The Modal*/

  /* LEAD TEXT animation */

  .content__container__list {
    margin-top: 0;
    padding-left: 130px;
    /* text-align: left; */
    list-style: none;
    -webkit-animation-name: change;
    -webkit-animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    animation-name: change;
    animation-duration: 20s;
    animation-iteration-count: infinite;
  }
  .content__container__list__item {
    line-height: 60px;
    margin: 1% 0 0 0;
    font-size: 55px;
  }
  /* MEDIA MOBILE */
  @media screen and (max-width: 900px) {
    .content__container__list__item {
      font-size: 40px;
  }
  .content__container__list {
      padding-left: 95px;
      margin-top: 10px;
    }
  }

  @-webkit-keyframes opacity {
    0%, 100% {
      opacity: 0;
   }
    50% {
      opacity: 1;
   }
  }
  @-webkit-keyframes change {
    0%,21% {transform:translate3d(0,-33.33%,0);}
    25%, 46% {transform:translate3d(0,-66.66%,0);}
    50%,71% {transform:translate3d(0,-99.99%,0);}
    75%,96% {transform:translate3d(0,-66.66%,0);}
    100% {transform:translate3d(0,-33.33%,0);}
  }
  @-o-keyframes opacity {
    0%, 100% {
      opacity: 0;
   }
    50% {
      opacity: 1;
   }
  }
  @-o-keyframes change {
    0%,21% {transform:translate3d(0,-33.33%,0);}
    25%, 46% {transform:translate3d(0,-66.66%,0);}
    50%,71% {transform:translate3d(0,-99.99%,0);}
    75%,96% {transform:translate3d(0,-66.66%,0);}
    100% {transform:translate3d(0,-33.33%,0);}
  }
  @-moz-keyframes opacity {
    0%, 100% {
      opacity: 0;
   }
    50% {
      opacity: 1;
   }
  }
  @-moz-keyframes change {
    0%,21% {transform:translate3d(0,-33.33%,0);}
    25%, 46% {transform:translate3d(0,-66.66%,0);}
    50%,71% {transform:translate3d(0,-99.99%,0);}
    75%,96% {transform:translate3d(0,-66.66%,0);}
    100% {transform:translate3d(0,-33.33%,0);}
  }
  @keyframes opacity {
    0%, 100% {
      opacity: 0;
   }
    50% {
      opacity: 1;
   }
  }
  @keyframes change {
    0%,21% {transform:translate3d(0,-33.33%,0);}
    25%, 46% {transform:translate3d(0,-66.66%,0);}
    50%,71% {transform:translate3d(0,-99.99%,0);}
    75%,100% {transform:translate3d(0,-33.33%,0);}
  }
   /* LEAD TEXT animation */

   .verticalLine{
    border: 1px solid #E6E6E6;
    height: 28px;
    margin-left:20px;
    padding-bottom: 10px;
    margin-top: 5px;
   }
   #service-submit{
    font-weight:600; 
    padding-top:0px;
   }

  .aboutPage #about ._para p {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #646464;
    /* animation-delay: 40s; */
    animation: fadeinPara 2s;
    -moz-animation: fadeinPara 2s;
    -webkit-animation: fadeinPara 2s;
    -o-animation: fadeinPara 2s;
}
.aboutPage #about ._para {
  max-width:551px;
}

.gtm-modal{
  height: 411px !important;
}

@media screen and (max-width: 900px) {
  .gtm-modal {
    height: calc(65vh - 120px) !important;
    overflow-y: auto;
  }
}

/*about us page*/

.aboutSectionTwo{
  padding: 70px 0px 0px 50px;
  top: 20px;
  width: 100%;
  max-width: 510px;
}
.aboutSectionTwo > h1 {
  margin: 0px 0px 25px 0px;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 106%;
  color: #CB3237;
}
.aboutSectionTwo > h5 {
  font-family: 'Barlow Condensed', sans-serif;
  margin: 0px 0px 20px 0px;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  color: #393939;
}
.aboutSectionTwo > p {
  margin: 0px 0px 15px 0px;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 22px;
  color: #646464;
}
/* MOBILE */
@media screen and (max-width: 900px) {
  .aboutSectionTwo {
    padding: 50px 15px 15px 15px;
    top: 70px;
    position: initial !important;
  }
  .aboutSectionTwo > h1 {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .aboutSectionTwo > h5 {
    font-size: 22px;
    line-height: 22px;
  }
  ._fourBgThree{
    position: initial !important;
  }
}

@media screen and (max-width: 900px) { 
  .aboutPage .articleSeven{
    padding-top: 50px;
  }
  .aboutPage ._a_contentBox{
    position: initial;
    top: 0px !important;
  }
}

@media (max-height: 730px) and (max-width: 900px) { 
  .aboutPage .articleSeven{
    padding-top: 50px;
  }
}

/* EXTRA LARGE */
@media screen and (min-width: 1400px) {
  .aboutSectionTwo{
    padding: 170px 0px 0px 50px;
  }
}