*{
    padding: 0;
    margin: 0;
}

ul{
    padding: 0;
    margin: 0;
}

li{
    list-style: none;
}

a{
    text-decoration: none;
}

.container{
    max-width: 1300px;
}

body{
    font-family: 'Poppins', sans-serif;
}

h1,h2,h3,h4,h5,h6{
    font-family: 'Roboto', sans-serif;
}

img{
    width: 100%;
}

.sub-title{
    color: #00b1f7;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.sub-title .s-line{
    height: 3px;
    width: 35px;
    display: block;
    background: #00b1f7;
    margin-left: 8px;
}

/* header */
header{
    position: sticky;
    top: 0px;
    z-index: 11;
    
}
.header-top{
    background: #fff;
    padding-bottom: 5px;
}
.header-top .logo{
   width: 8.5rem;
   margin-top: 4px;
   margin-left: 7px;
   /* margin: 0 auto; */
}

.header-top .logo img{
    height: 100%;
    object-fit: cover;
    object-position: top;
} 

.header-right{
    position: relative;
    display: flex;
    margin-top: 40px;
    justify-content: end;
}

.main-address ul{
    display: flex;
}

.main-address li{
    display: flex;
    position: relative;
    margin-right: 40px;
}

.main-address li:before {
    position: absolute;
    top: -4px;
    bottom: -5px;
    right: -20px;
    content: "";
    width: 1px;
    background-color: rgba(62, 63, 149, 0.192);
    transform: rotate(12deg);
}

.main-address li:last-child::before{
    display: none;
}

.main-address li h5{
    font-size: 14px;
    margin-bottom: 2px;
    color: #0080f7;
}

.main-address li i{
    margin-top: 10px;
    color: #0080f7;
    margin-right: 8px;
    font-size: 18px;
}

.main-address li span{
    font-size: 14px;
}

.header-social i{
    height: 40px;
    width:40px;
    background: #fff;
    margin-top: 0;
    color: #0080f7;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.13);
    margin-right: 5px;
}

.header-bottom{
   
    
    position: relative;
    background: #000;
    width: 100%;
    z-index: 1111;
}

.header-res{
    padding: 5px 0px;
    
    
}

.header-bottom .nav-item{
    margin-right: 20px
}

.header-bottom .nav-link{
    color: #fff;
    font-weight: 500;
}

.header-button a{
    padding: 15px 24px;
    color: #fff;
    background: #2c2c2c;
    font-weight: 500;
    border-radius: 5px;
}

.dropdown-menu li a{
    padding: 15px 25px;
    transition: all 200ms ease-in-out;
}

.dropdown-menu li a:hover{
    background: #0080f7;
    color: #fff;
}

/* banner */
.banner{
    background: linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,0.5)),url(banner.jpg);
    padding: 15rem 0 20rem;
    background-size: cover;
}

.banner h1{
    font-size: 45px;
    color: #fff;
    font-weight: 700;
}
.banner h2{
    color: #fff;
    font-weight: 500;
    font-size: 25px;
}

.banner p{
    color: #e7e7e7;
}

/* waves */
.wave{
    position: relative;
}
.waves {
    position: absolute;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px;
    min-height: 100px;
    max-height: 150px;
    left: 0;
    bottom: 0px;
    z-index: 1;
}

.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}


@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    
    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/* ars */
.asr{
    padding: 3rem 0;
}

.asr h3{
    font-weight: 700;
    color: #00b1f7;
}

.asr p{
    font-size: 15px;
}

/* steps */
.steps{
    position: relative;
}

.steps .cv{
    height: 20rem;
    background: url(footer.jpg);
    position: absolute;
    z-index: -1;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    width: 100%;
}

.s-header{
    padding-top: 5rem;
    
}

.s-header h3{
    text-align: center;
    font-weight: 700;
    color: #fff;
    font-size: 35px;
    margin-bottom: 45px;
}

.ch-card{
    padding: 35px 30px;
    border-radius: 5px;
    background: #0080f7;
    color: #fff;
    margin-bottom: 15px;
}

.ch-img{
    width: 35%;
    height: auto;
    margin: 0 auto 30px;
}

.ch-img img{
    filter: invert(99%) sepia(99%) saturate(242%) hue-rotate(311deg) brightness(120%) contrast(100%);
}

.ch-card h4{
    font-weight: 700;
    text-align: center;
    font-size: 20px;
}

/* cav */
.cav{
    padding: 5rem 0;
}

.cav h5{
    font-size: 25px;
    font-weight: 700;
    color: #0080f7;
}

.cav p{
    font-size: 15px;
    color: #2c2c2c;
}

.cav li i{
    color: #0080f7;
    font-weight: 700;
    margin-right: 10px;
}


.cav li{
    font-weight: 500;
}

/* services */
.services{
    padding: 5rem 0;
    background: #1d1d1d;
}

.services h3{
    font-weight: 700;
    font-size: 40px;
    color: #fff;
    margin-bottom: 30px;
}


.service-card{
    position: relative;
    padding: 50px 30px 30px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-card h4{
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 14px;
}

.service-card p{
    font-size: 14px;
    color: #656e80;
}

.service-link{
    position: absolute;
    right: 0;
    top: 7px;
}

.service-link a{
    background: #0080f7;
    padding: 12px 35px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

/* contact */
.contact{
    padding: 5rem 0;
}

.contact-form{
    padding:55px 50px;
    background: #000;
    border-radius: 5px;
}

.contact-form h3{
    font-size: 35px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
}

.contact-form .form-control,.contact-form .form-select{
    padding: 15px 20px;
    background: #2c2c2c;
    border: none;
    color: #fff;
    font-size: 14px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.contact-form .form-control::placeholder,.contact-form .form-select::placeholder{
    color: #778196;
}

.contact-form .asv{
    padding: 15px 35px;
    background: #0080f7;
    color: #fff;
    border: none;
    border-radius: 5px;
    /* width: 100%; */
    text-align: end;
    font-weight: 700;
    text-transform: uppercase;
}

/* footer */
footer{
    background: url(footer.jpg);
    padding-top: 5rem;
    background-size: cover;
    color: #fff;
}

.footer-logo{
    width: 15rem;
    margin-bottom: 10px;
}
.footer-top{
    padding-bottom: 30px;
}

.footer-top h3{
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 20px;
}

.footer-top li{
    margin-bottom: 13px;
}

.footer-top li a{
    color: #fff;
}

.footer-top li i{
    color: #00b1f7;
    margin-right: 10px;
}

.footer-top a i{
    color: #fff;
    font-size: 25px;
    margin-right: 15px;
}

.footer-bottom{
    padding: 10px 0;
    border-top: 1px solid #2c2c2c;
}

.footer-bottom p{
    text-align: center;
    font-size: 14px;
}

/* @media (min-width:1200px){
    .header-bottom .nav-link{
        margin: 0 20px;
    }
} */


/* aca */
.aca{
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.aca i{
    font-size: 30px;
    color: #fff;
    background: #0080f7;
    border-radius: 5px;
    height: 80px;
    width: 80px;
    display: block;
    line-height: 80px;
    text-align: center;
    margin-right: 14px;
}

.aca h4{
    font-weight: 700;
    color: #000;
    font-size: 18px;
    margin-bottom: 5px;
}
.aca p{
    margin-bottom: 0;
    color: #4d4d4d;
    font-size: 15px;
}

/* g-box */
.g-box{
    height: 15rem;
}

.g-box img{
    height: 100%;
    object-fit: cover;
}

/* location */
.location{
    padding: 2rem 0;
}

.location h2{
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    color: #0080f7;
}

.location h3{
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 15px;
}
.location li{
    font-size: 16px;
    margin-bottom: 5px;
}
.location i{
    color: #0080f7;
    margin-right: 10px;
}

.location a{
    color: #2c2c2c;
}

/* bread */
.bread{
    background: linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.5)),url(tow1.webp);
    background-size: cover;
    padding: 9rem 0;
    color: #fff;
    border-radius:0 0 15px 15px;
}

.bread h1{
    font-weight: 700;
    text-align: center;
}

/* cst */
.cst{
    padding: 5rem 0;
}
.cst h2{
    font-size: 27px;
    font-weight: 700;
    color: #0080f7;
	margin-bottom: 15px;
}

.cst p{
    color: #2c2c2c;
    font-size: 15px;
    line-height: 24px;
}

.cst h3{
    font-weight: 800;
    font-size: 20px;
    color: #000;
}

.cst i{
    color: #0080f7;
    margin-right: 10px;
}

/* res */
.rest{
    padding-bottom: 1rem;
}

.rest-ct{
    background: #0072db;
    color: #fff;
    padding: 4rem 3rem;
    border-radius: 10px;
    text-align: center;
}


.rest-ct h4{
    font-weight: 800;
    font-size: 30px;
    margin-bottom: 25px;
}

.rest-ct p{
    color: #e7e7e7;
}
.c-4
{
    color:#fff!important;
}
.c-c h3
{
    color:#fff!important;
}
.dis
{
    display:flex !important;
}
.dis li
{
    padding-left:10px;
}
.centr
{
    text-align:center !important;
}
.navbar-toggler-icon
{
    background-color:#fff;
}
@media screen  and (min-width:992px) and (max-width:1200px){
    .header-social{
        display: none;
    }

    .about-project{
        right: 0;
    }
}

@media (max-width:992px){
    .header-right{
        display: none;
    }

    .about-project{
        right: 0;
    }

    .about-img{
        margin-top: 40px;
    }

    .owl-nav{
        display: none;
    }
}

@media (max-width:767px){
    .s-header{
        
        width: 100%;
    }
    .direction
{
    flex-direction: column-reverse !important;
}
.center h3
{
    text-align:center;
    font-size:26px;
}
.dis
{
    display:block !important;
}
}