/*
################
               BASICS
################
*/
* {
    margin: 0;
    padding: 0;
    overflow-x: none;
    position: relative;
    box-sizing: border-box;
}

body {
    font-size: .875rem;
    overflow-x: hidden;
    background-color: #F8F9FE;

}

.container {
    margin-right: auto;
    margin-left: auto;
    max-width: 1185px;
}

button:active,
button:focus,
button:hover,
.btn:active,
.btn:focus,
.btn:hover,
.form-control:active,
.form-control:focus,
.form-control:hover {
    outline: none !important;
    box-shadow: none !important;
}

/*
################
               HEADER
################
*/

.header {
    height: 40vh;
    background-image:
        linear-gradient(to right bottom,
            rgba(1, 119, 254, 0.8),
            rgba(0, 194, 255, 0.8)),
        url('../img/contact.jpg');

    background-size: cover;
    background-position:top;
    position: relative;

    clip-path: polygon(0 0, 100% 0, 100% 18vh, 0 100%);
}

.brand-box {
    position: absolute;
    top: 40px;
    left: 40px;
}

.brand {
    font-size: 20px;
}

/*
################
               NavBar 
################
*/
.nav {
    bottom: 550px !important;
}

@media screen and (min-width: 768px) {
    #wrapper .nav {
        position: absolute;
        top: 0%;
        bottom: 550px !important;
        text-align: center;
        z-index: 10;
    }

    .navbar-brand img {
        left: 50px !important;
        top: 18px !important;
    }
}

.nav-link {
    padding: 0px !important;
    color: #fff;
    font-weight: 300;
    font-size: 0.97rem;
    line-height: 21px;
    font-family: "Roboto", sans-serif;
    transition: all ease-in-out 0.3s;
    display: inline-block !important;
    position: relative !important;
}

.nav-link:hover {
    color: #1C4EAA;
}

.nav-item .active {
    color: #1C4EAA;
    position: relative !important;
}

.nav-item .active:after {
    content: '';
    position: absolute !important;
    left: 0 !important;
    top: 33px !important;
    width: 74px !important;
    height: 2px;
    background-color: #1C4EAA !important;
}

.nav-item {
    padding-left: 2.2rem;
    padding: 23px !important;
}

.nav-link:after {
    position: absolute;
    content: '';
    top: 30px;
    left: 0%;
    height: 3px;
    width: 100%;
    background-color: transparent !important;
    border-bottom: 2px solid transparent;
}

.nav-link.effect-underline:after {
    content: '';
    position: absolute;
    left: 0;
    display: inline-block;
    height: 5px;
    width: 100%;
    border-bottom: 2px solid;
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
}

.nav-link.effect-underline:hover:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

@media (min-width: 992px) {
    .animate {
        animation-duration: 0.3s;
        -webkit-animation-duration: 0.3s;
        animation-fill-mode: both;
        -webkit-animation-fill-mode: both;
    }
}

@keyframes slideIn {
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }

    100% {
        transform: translateY(0rem);
        opacity: 1;
    }

    0% {
        transform: translateY(1rem);
        opacity: 0;
    }
}

@-webkit-keyframes slideIn {
    0% {
        -webkit-transform: transform;
        -webkit-opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        -webkit-opacity: 1;
    }

    0% {
        -webkit-transform: translateY(1rem);
        -webkit-opacity: 0;
    }
}

.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}

/*
################
               MAIN 
################
*/
.about-section .header-title h1{
    display: inline-block !important;
    color: #454545;
    font-family: "Roboto", sans-serif;
    position: relative;
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 41px;
    margin-bottom: 52px !important;
}
.about-section .header-title h1::after{
    content: '';
    position: absolute;
    left:0px !important;
    top:50px !important;
    width: 109px !important;
    height: 2px;
    background-color: #0177FE;
}
.about-section .header-title h4{
    padding: 0 80px;
    text-align: center !important;
    color: #454545;
    font-size: 1.5rem;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .about-card{
      width: 200px;
      height: 100px;
      border : 1px solid #E1E1E0;
  }

/*
/////// About cards
*/
  .ch-container {
    margin-top:150px;
  }
  .ch-box{
    background-color: #fff;
    border-radius: 3px;
    margin:15px 0;
    width: 360px;
    height: 160px;
    padding: 20px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 20%);
      transition: box-shadow 0.3s ease-in-out;
  }
  .ch-box:hover{
    box-shadow: 0 5px 30px rgb(0 121 208 / 40%);
    
  }
  
  .ch-number {
    color: #0177FE;
    font-weight: 500;
    font-size: 2.0625rem;
    margin-top: 10px !important;
  }
  .ch-text {
  margin-left: 35px;
  }
  .ch-title {
    font-size: 1.25rem;
    color: #454545;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
  }
  .ch-para {
    margin: 0;
    line-height: 24px;
    font-weight: 500 !important;
    font-family: 'Poppins', sans-serif;
  }

/*
/////// contact form
*/
.form{
width: 597px !important;
}
.contact-form{
    background-color: #fff;
    border-radius: 3px;
    margin:50px 0;
    width: 1155px !important;
    min-height: 600px;
    padding: 20px !important;
    box-shadow: 0 5px 15px rgb(0 0 0 / 20%);
      transition: box-shadow 0.3s ease-in-out;
}
.form h1{
    color: #454545;
    font-family: "Roboto", sans-serif;
}
.form-control{
    display:inline-block !important;
    margin-bottom: 30px !important;
    background-color: #F1F3F7 !important;
    border-radius: 0 !important;
}
.form h1{
  margin : 6px 0 30px 0;
}
.fa-pull-right{
    margin-top: 85px;
}
.btn-primary{
    width: 140px;
    height: 40px !important;
    background-color: #0177FE !important;

}
/*
//// alert */
.alert {
    font-size: .7rem;
    padding:.1rem;

}

/*
################
               footer
################
*/
.page-footer{
    background-color: #454545;
  }
  .fab{
    font-size: 16px !important;
  }

/**/
/*////////////// Responive Mobile View
*//**/
@media (max-width: 992px) {
    .navbar-collapse {
        position: static !important;
        background-color: #f5f5f5 !important;
    }
    .nav-link{
        color: #454545 !important;

    }


}

  @media screen and (max-width: 992px) {
    html,body{
      overflow-x: hidden !important;
    }

            /* Header */
            .header {
                height:65vh;
                background-image:
                    linear-gradient(to right bottom,
                        rgba(1, 119, 254, 0.8),
                        rgba(0, 194, 255, 0.8)),
                    url('../img/contact.jpg');
            
                background-size: 100% 70%;
                background-repeat: no-repeat;
                background-position:top;
                position: relative;
            
                clip-path: polygon(0 0, 100% 0, 100% 100vh, 0 100%);
            }
              /* NavBar */
            nav{
                background-color: rgba(255, 255, 255, 0.137);
                padding: 0 !important;
            }
            nav .container{
            width: 100% !important;
            }
            .nav-item{
            padding: 22px !important;
            }
            .fa-bars{
                font-size: 30px !important;
            }
            .navbar-brand{
                margin-right: 0 !important;
                margin-top: 15px;
            }
            .logo-img{
            padding:5px 0 !important;
            margin-left: 15px !important;
            
            }

    /* main */
    main {
    padding-bottom:0px !important;
    }
    /* Ch box */
    .ch-container{
        margin-bottom: 150px !important;
    }
    .ch-box{
        margin: 70px 0;
    }
    /* Contact Form */
    .form{
        padding: 100px !important;
    }
    .contact-form{
        padding: 0 100px !important;
        margin-bottom: 0 !important;
    }
    .con2{
        flex-direction: column;
    }
    iframe{
        padding-left: 130px !important;
        margin-bottom: 100px !important;
        width: 510px !important;
    }
    /* Footer */
    .footer-section{
        min-height: 1000px;
    }
  }
  @media screen and (max-width: 400px) {
  iframe{
    padding-left: 150px !important;
    width: 490px !important;
}
  }
