
/*--------------------------------------------------------------
# Contact info
--------------------------------------------------------------*/

.contact-title {
    text-align: center;
    padding-bottom: 30px;
  }

  .contact-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: var(--main-color);
  }
  .left-border{
    width: 200px;
    height: 200px;
    border: none;
    color: #ffffff;
    border-bottom:5px solid var(--secondary-color);
    border-right:5px solid var(--secondary-color);


  }
  .right-border{
    width: 200px;
    height: 200px;
    border-top:5px solid var(--secondary-color);
    border-left:5px solid var(--secondary-color);
    color: #ffffff;


  }
  .info::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    bottom: 0;
    left: calc(50% - 25px);
  }


  --------------------------------------------------------------*/

  /*--------------------------------------------------------------
  # Contact tabs
  --------------------------------------------------------------*/
  .contact-type .nav-tabs {
    border: 0;
  }

  .contact-type .nav-link {
    border: 0;
    padding: 20px;
    color: #555555;
    border-radius: 0;
    border-left: 5px solid #fff;
    cursor: pointer;
  }

  .contact-type .nav-link h4 {
    font-size: 40px;
    font-weight: 600;
    transition: 0.3s;
  }

  .contact-type .nav-link p {
    font-size: 14px;
    margin-bottom: 0;
  }

  .contact-type .nav-link:hover h4 {
    color: var(--secondary-color);
  }

  .contact-type .nav-link.active {
    background:#fff6f0;
    border-color: var(--secondary-color);

  }

  .contact-type .nav-link.active h4 {
    color: var(--secondary-color);
  }
  .contact-type .nav-link.active p {
    color:#555555;
  }

  .contact-type .tab-pane.active {
    -webkit-animation: slide-down 0.5s ease-out;
    animation: slide-down 0.5s ease-out;
  }

  .contact-type .tab-pane img {
    float: left;
    max-width: 300px;
    padding: 0 15px 15px 0;
  }
  .contact-type .tab-pane  h3 {

  }

  @media (max-width: 768px) {
    .contact-type .tab-pane img {
      float: none;
      padding: 0 0 15px 0;
      max-width: 100%;
    }
  }

  .contact-type .tab-pane h3 {
    font-size: 25px;
    font-weight: 700;

    color: var(--secondary-color);
    text-align: center;
  }

  .contact-type .tab-pane p {
    color: #777777;
  }

  .contact-type .tab-pane p:last-child {
    margin-bottom: 0;
  }

  @-webkit-keyframes slide-down {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  @keyframes slide-down {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }


  /*--------------------------------------------------------------
  # Contact form
  --------------------------------------------------------------*/
  .contact .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
    padding: 20px 0 30px 0;
    justify-content: center;
  }

  .contact .info-box i {
    font-size: 32px;
    color: var(--secondary-color);
    border-radius: 50%;
    padding: 8px;
    border: 2px var(--secondary-color) dashed;
  }

  .contact .info-box h3 {
    text-align: center;
    font-size: 20px;
    color: var(--main-color);
    font-weight: 700;
    margin: 10px 0;

  }

  .contact .info-box p {
      text-align: center;
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;

  }

  .contact .php-email-form {
    box-shadow: 0 0 15px #dbe7e7;
    padding: 30px;
    margin: 0px;
    border-radius: 1%;
  }

  .contact .php-email-form .error-message {
    display: block;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
  }

  .contact .php-email-form .error-message br+br {
    margin-top: 25px;
  }

  .contact .php-email-form .sent-message {
    display: block;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }


  .contact_err{
      color: #c70d0d;
  }
  .contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
  }

  .contact .php-email-form input,
  .contact .php-email-form textarea,
  .contact .php-email-form select {
    /* border: none; */
    border-right-color: var(--secondary-color);
    border-style:dashed;
    border-left-color: var(--secondary-color);
    font-size: 14px;
  }
  .form-select{
border:1px solid var(--secondary-color);
height:100% ;
  }
  .contact .php-email-form input:focus,
  .contact .php-email-form textarea:focus,
  .contact .php-email-form select:focus {
    border-color: var(--secondary-color);
    box-shadow: none;
  }

  .contact .php-email-form input {
    padding: 10px 15px;
  }

  .contact .php-email-form textarea {
    padding: 12px 15px;
  }

  .contact .php-email-form button[type=submit] {
    background: var(--secondary-color);
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
  }

  .contact .php-email-form button[type=submit]:hover {
    background: var(--main-color);
  }

  @-webkit-keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }
  .contacttitle {
    padding: 1px;
    font-family: var(--heading-font) !important;
    color: var(--secondary-color);
    /* font-size: 30px; */
    position: relative;
}

@media(max-width:912px) {
    .contacttitle::before {
        display: none !important;
    }
}


.contacttitle::after {
    content: "";
    display: inline-block;
    width: 60vw;
    height: 1px;
    background: var(--dark);
    left: 0;
}
.contactsubtitle {
  padding: 1px;
  font-family: var(--heading-font) !important;
  color: var(--main-color);
  /* font-size: 30px; */
  position: relative;
}

@media(max-width:912px) {
  .contact-subtitle::before {
      display: none !important;
  }
}


.contactsubtitle::after {
  content: "";
  display: inline-block;
  width: 20vw;
  height: 1px;
  background: var(--dark);
  left: 0;
}


.animated-titleContact {
  color: #000;
  font-weight: 600;
  /* height: 65vh; */
  height: 100vh;
  left: 70%;
  position: absolute;
  top: 80%;
  transform: translate(-50%, -50%);
  width: 100vmin;
  z-index: 0;
}

.prodetail .titleContact {
  color: #000;
  font-weight: 600;
  /* height: 65vh; */
  height: 100vh;
  left: 50%;
  position: absolute;
  top: 40%;
  transform: translate(-50%, -50%);
  width: 100vmin;
}

@media (max-width: 768px) {
  /* .animated-title {
      top: 30%;
  } */
  .prodetail .titleContact {

  }
  .contat-image{
    display: none;
  }
}

.animated-titleContact>div {
  height: 50%;
  overflow: hidden;
  position: absolute;
  width: 100%;
}

.animated-titleContact>div div {
  font-size: 4vmin;
  padding: 2vmin 0;
  position: absolute;
}

.animated-titleContact>div div span {
  display: block;
}

.animated-titleContact>div.text-top {
  border-bottom: 1vmin solid var(--main-color);
  ;
  top: 0;
}

.animated-titleContact>div.text-top div {
  animation: showTopText 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  bottom: 0;
  transform: translate(0, 100%);
}

.animated-titleContact>div.text-top div span:first-child {
  color: var(--secondary-color);
}

.animated-titleContact>div.text-bottom {
  bottom: 0;
}

.animated-titleContact>div.text-bottom div {
  animation: showBottomText 0.5s;
  animation-delay: 1.75s;
  animation-fill-mode: forwards;
  top: 0;
  transform: translate(0, -100%);
}

.contact-nav{
  background-color:#888891;
  color: #949494;
}
.contact-nav.active{color:var(--main-color)}

.contact-btn {
  width:5rem;
  height:3rem;
  padding: 0px;
  margin: 0px;
  border: #444444 solid 1px;
  /* border-radius: 2rem; */
  /* border-radius: 10px  solid #fff; */
  /* transform: rotate(45deg) !important; */
  /* background: var(--secondary-color) !important; */
  text-align: center !important;
  /* color: #1f1f1f !important; */

}

.contact-btn:hover {
  background-color: var(--main-color);
  /* border-radius: 10px  solid #fff; */

}
.submit-btn{
    background: var(--secondary-color);
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
  }

  .submit-btn:hover {
    background: var(--main-color);
  }



  .fcontact-btn{
    width:2.5rem;
    height: 2.5rem;
    padding: 0px;
    margin-top: 10%;
    border: none;
    /* border-radius: 10px  solid #fff; */
    transform: rotate(45deg) !important;
    /* background: var(--secondary-color) !important; */
    text-align: center !important;
    /* color: #1f1f1f !important; */
    z-index: 8;
    background-color: var(--secondary-color);
  }
  .fcontact-btn:hover{
    background-color: var(--secondary-color);
  }
  .fcontact-btn i{
   /* color: #dbe7e7; */
   color: white;
   transform: rotate(-45deg) !important;
   font-size: 26px;
  }
.contact-btn p {
  /* transform: rotate(-45deg) !important; */
  text-align: center;
  font-size: 80%;
  color: rgb(209, 206, 206);
}

.contact-btn:first-child {
  background: #6e7785 !important;
}

.contact-btn {
  /* background: #6e7785!important; */
  /* color: #fff !important; */
  background: none;
  border: 0;
  font-size: 22px;
  line-height: 2em;
  position: relative;
  width: 6em;
  height: 2em;
}
.contact-btn a {
color: #fff;
text-decoration: none;
position: relative;
z-index: 10;
}
.contact-btn::before,.contact-btn::after {
  background: #6e7785;
  border-radius: 2px;
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  transition: all 1s;
  height: 1em;
}
.contact-btn::before {
  box-shadow: -1px 1px 0 #6e7785, -2px 2px 0 #6e7785, -3px 3px 0 #6e7785, -4px 4px 0 #6e7785;
  transform: skew(45deg);
  bottom: 0;
  z-index: 1;
}
.contact-btn::after {
  box-shadow: 1px 1px 0 #6e7785, 2px 2px 0 #6e7785, 3px 3px 0 #6e7785, 4px 4px 0 #6e7785;
  transform: skew(-45deg);
  top: 0;
}
.contact-btn:hover::before, .contact-btn:hover::after {
  background: var(--main-color);
}
.contact-btn:focus {
  outline: 0;
}
.contact-btn:focus::before, .contact-btn:focus::after {
  background: #f1538b;
}
.contact-btn i {
  background: none !important;
  color: white;
}

.contact-btn:last-child {
margin-right: 5%;
padding: 2%;
  border: 2px solid #fff!important;
  border-radius: 1rem;
  /* background: var(--main-color) !important; */
}
.contact-btn:last-child:hover {
  border:  2px solid #fff;
  background: var(--main-color) !important;
  color: #dbe7e7;
  /* padding:4px; */
}
.contact-active{
  background: var(--main-color) !important;
}
@keyframes zoom {
  25% {
    transform: scale3d(1.5, 1.5, 0);
 }
  50% {
    transform: scale3d(1, 1, 0);
 }
  75% {
    transform: scale3d(1.25, 1.25, 0);
 }
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
 }
}
.nav-link .active{
  background-color: var(--secondary-color);

}

.contact-img{
  width: 80%;
  padding: 3%;
  padding-top: 3%;
}
.contact-hero{
  padding-top: 20% ;
    background: linear-gradient(0deg, rgb(3, 6, 10) 0%, rgb(45, 76, 95)  100%, rgb(71, 128, 155)  10%,  rgb(87, 141, 167) 1000%);
  }

.contactHerotitle {
  padding: 1px;
  font-family: var(--heading-font) !important;
  color: #fff;
  /* font-size: 30px; */
  position: relative;
}

@media(max-width:912px) {
  .contactHerotitle::before {
      display: none !important;
  }
}


.contactHerotitle::after {
  content: "";
  display: inline-block;
  width: 10vw;
  height: 1px;
  background: #979595;
}
.hero-title{
  border-top: 1px #979595 solid;
}

.contact-info{
  color:rgb(224, 220, 220);
}
.social-hero{

    width: .7rem;
    height: .7rem;
    padding: .5rem;
    border-radius: 4px  !important;
    transform: rotate(45deg) !important;
    border: 2px #dbe7e7 solid !important;
    text-align: center !important;
    /* color: #1f1f1f !important; */


}
.social-hero i {
  transform: rotate(-45deg) !important;
  color: #dbe7e7;
  font-size: 80%;

}
.social-p  {
  color: #dbe7e7;
  font-size: 70%;
  /* margin: 10%; */
}




