@import url('custom.css');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

.top-bar{
    width: 100%;
    padding: 10px 50px;
    background: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    width: 33%;
}

.top-bar ul:last-child{
    justify-content: flex-end;
}

.top-bar p{
    display: block;
    color: #fff;
    font-size: 13px;
    /* text-align: center; */
}

.top-bar a b{
    margin-right: 10px;
}

.top-bar p a{
    text-decoration: none;
    color: var(--primary);
}

.top-bar ul li a{
    color: #fff;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.top-bar ul li a i{
    font-size: 20px;
    margin-right: 10px;
}

.header{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 50px;
}

.logosection{
    min-width: 200px;
    padding: 15px;
}

.logosection a.direction{
    color: #000;
    text-decoration: none;
    font-size: 13px;
    padding: 0px 15px;
    margin-top: 15px;
    display: block;
}

.logosection a.direction:hover{
    color: var(--primary);
    text-decoration: underline;
}

.logosection .site-logo{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logosection .site-logo a img{
    width: 170px;
}


.logosection .site-logo .logo-content h2{
    font-size: 17px;
    font-weight: 500;
    color: red;
    font-family: "Roboto Condensed", sans-serif;
}

.logosection .site-logo .logo-content h2 span{
    color: var(--primary);
    font-family: "Roboto Condensed", sans-serif;
}

.logosection .site-logo .logo-content h3{
    font-size: 15px;
    color: var(--primary);
    font-weight: 500;
    margin: 5px 0px;
}

.logosection .site-logo .logo-content p{
    font-size: 14px;
    font-style: oblique;
}

.logosection p{
    font-size: 14px;
}

.logosection p a{
    color: #666666;
    font-style: oblique;
    text-decoration: none;
}

.header .logo{
    height: 175px;
}

.header .logo img{
    width: 100%;
    height: 100%;
}

.header .call a{
    color: #000;
    text-decoration: none;
}

.header .call a h2{
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.navbar{
    width: 100%;
    background: #000;
    padding: 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.navbar ul li{
    position: relative;
    line-height: 30px;
}

.navbar ul li .dropdown{
    width: 350px;
    height: 0;
    overflow: hidden;
    transition: .3s ease-in-out;
    background: #fff;
    position: absolute;
    top: 50px;
    left: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 99999;
}


.navbar ul li .dropdown li{
    line-height: 20px;
}

.navbar ul li .dropdown li a{
    color: #000;
    font-size: 13px;
    font-weight: 400;
    padding: 10px;
}

.navbar ul li .dropdown li a:hover{
    color: var(--primary);
}

.navbar ul li:hover .dropdown{
    height: 200px;
}

.navbar ul li a{
    color: #fff;
    text-decoration: none;
    padding: 10px 30px;
    font-size: 18px;
    background: transparent;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.navbar ul li a i{
    font-size: 23px;
}

.navbar ul li a:hover{
    color: var(--primary);
}


.navbar a{
    padding: 10px 30px;
    background: var(--primary);
    text-decoration: none;
    color: #000;
}

.slider{
    width: 100%;
    height: 500px;
    background: url('../img/slider.jpg');
    background-size: cover;
}

.text{
    width: 100%;
    padding: 20px 50px;
    background: #000;
    color: transparent;
    -webkit-text-stroke-color: var(--primary);
    -webkit-text-stroke-width: 1px;
    font-size: 38px;
    font-weight: 800;
    word-spacing: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.about h2{
    font-size: 34px;
    margin-bottom: 30px;
}

.about p{
    font-size: 15px;
    margin-bottom: 30px;
    text-align: justify;
}

.about a{
    color: #000;
    background: var(--primary);
    padding: 10px 30px;
    text-decoration: none;
    font-weight: 500;
}

.about img{
    width: 60%;
    margin: 0px auto;
    display: block;
}

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

.services{
    width: 100%;
    background: #f9f9f0;
    padding: 15px;
    min-height: 350px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
}

.services h1{
    font-size: 17px;
}

.services h1 a{
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
}

.services h1 a:hover{
    color: var(--primary);
}

.services img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.services a.btn{
    font-size: 13px;
    color: #000;
    background: var(--primary);
    padding: 4px 10px;
    text-decoration: none;
    margin-top: 15px;
    display: inline-block;
}

.services a.btn:hover{
    color: #fff;
    background: #000;
}

.contact-section{
    background: #000;
}

.form{
    width: 70%;
    background: #fff;
    padding: 20px;
    margin: 10px auto;
}

.form p{
    color: #9a9a9a;
    margin-bottom: 40px;
}

.form input, textarea{
    width: 100%;
    padding: 10px;
    font-size: 16px;
    background: #191919;
    border: 0;
    resize: none;
    outline: 0;
}

.form button{
    padding: 10px 30px;
    background: var(--primary);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border: 0;
    outline: 0;
    cursor: pointer;
}

.testimonial{
    width: 100%;
    background: #F2F2F2;
    padding: 20px;
    min-height: 200px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.testimonial .stars i{
    color: rgb(233, 199, 9);
}

.testimonial p{
    color: #888;
    font-weight: 300;
    margin: 15px;
    text-align: center;
    font-size: 14px;
}

.testimonial .user{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.testimonial .user img{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial .user h4{
    color: #5c5c5c;
    font-weight: 500;
    margin-top: 10px;
    font-size: 15px;
    text-align: right;
}

.footer{
    background: #121212;
    width: 100%;
    padding: 40px 140px 10px 140px;
}

.footer img{
    width: 150px;
    border-radius: 20px;    
}

.footer h2{
    color: #fff;
    font-size: 16px;
    margin: 10px auto;
}


.footer .site-info a{
    color: #fff;
    display: block;
    width: 100%;
    background: #000;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
}


.footer ul li{
    list-style: none;
}

.footer ul li a{
    color: #919191;
    text-decoration: none;
    padding: 5px 0px;
    font-size: 14px;
    font-weight: 400;
    display: block;
}


.footer ul li a:hover{
    color: var(--primary);
    text-decoration: underline;
}

footer{
    background: #000;
    padding: 10px;
    text-align: center;
    color: #fff;
}

footer a{
    color: var(--primary);
    text-decoration: none;
}

footer {
    font-size: 13px;
    font-weight: 300;
}

.menubtn{
    display: none;
}

.breadcrumb{
    width: 100%;
    padding: 10px 50px;
    background: var(--primary);
}

.breadcrumb ul{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
}

.breadcrumb ul li a{
    color: #000;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    margin-right: 15px;
}

.about-page p{
    color: #727272;
    margin: 10px 0px;
    font-weight: 400;
    text-align: justify;
}

.about-page p a{
    color: var(--primary);
}

.about-page img{
    width: 100%;
    height: 400px;
    object-fit: contain;
    background: #f9f9f9;
}

.about-con{
    width: 100%;
    background: var(--primary);
    padding: 20px;
}

.about-con p{
    color: #000;
}

.text-center{
    text-align: center;
}

.question-container{
    width: 900px;
    margin: 30px auto;
}

.question{
    width: 100%;
    margin-top: 30px;
}

.question h1{
    font-size: 18px;
    padding: 10px 15px;
    color: #fff;
    font-weight: 500;
    background: #202020;
}

.question div{
    background: #f5f5f5;
    padding: 15px;
}

.question div ul{
    list-style: none;
    padding: 10px 20px;
}

.question div ul li{
    font-size: 15px;
    margin-bottom: 10px;
    color: #2b2b2b;
    list-style: square;
}

.service-form{
    width: 28%;
    padding: 20px;
    background: #000;
    border-radius: 2px;
}

.service-form h1{
    color: #fff;
    font-size: 22px;
    margin-bottom: 30px;
}

.service-form form input, textarea{
    width: 100%;
    display: block;
    padding: 10px;
    margin-bottom: 5px;
    background: #1d1f30;
    border: 0;
    outline: 0;
    color: #fff;
    resize: none;
    font-size: 14px;
}

.service-form form button{
    padding: 10px 40px;
    text-align: center;
    border: 0;
    outline: 0;
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
    background: var(--primary);
    font-style: oblique;
    cursor: pointer;
}

.service-content{
    width: 70%;
}

.service-content img{
    width: 100%;
    height: 400px;
    object-fit: contain;
    background: #f6f5f6;
    margin-bottom: 30px;
}

.service-content h1{
    font-size: 22px;
    margin-bottom: 20px;
    color: #000;
}

.service-content h2{
    font-size: 18px;
    color: #403e4d;
    margin-bottom: 20px;
}

.service-content b{
    font-size: 15px;
    font-weight: 600;
}

.service-content p{
    font-size: 15px;
    font-weight: 400;
    color: #5f5f5f;
    display: block;
    margin: 20px 0px;
    text-align: justify;
}

.service-content ul{
    list-style: none;
    padding-right: 15px;
    margin-top: 30px;
}

.service-content ul li i{
    margin-right: 15px;
    color: var(--primary);
}

.service-content ul li{
    color: #3d3c3c;
    font-size: 14px;
    padding: 4px;
    transition: .1s ease-in-out;
}

.service-content ul li:hover{
    background: var(--primary);
    color: #fff;
    transform: scale(1.08);
}

.service-content ul li:hover i{
    color: #fff;
}

.contactForm{
    width: 100%;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 30px;
    min-height: 180px;
    text-align: center;
}

.contactForm img{
    filter: drop-shadow(2px 2px 0px #000);
    width: 40px;
    margin-bottom: 30px;
}

.contact-page-form{
    margin: 30px 0px;
}

.contact-page-form h2{
    color: #a1a1a1;
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-page-form input, textarea{
    width: 100%;
    padding: 10px;
    font-size: 15px;
    outline: 0;
    border: 1px solid #000;
    background: #fff;
    margin-bottom: 10px;
    color: #000;
}

.contact-page-form button{
    padding: 10px 30px;
    background: #000;
    color: #fff;
    border: 0;
    outline: 0;
    cursor: pointer;
}

.fees p{
    margin: 20px 0px;
}

.pricebox{
    width: 100%;
    padding: 30px;
    border: 2px solid var(--primary);
}

.pricebox h1{
    font-size: 36px;
    color: var(--primary);
}

.pricebox h2{
    font-size: 16px;
    margin-top: 20px;
}

.pricebox p{
    font-size: 15px;
    color: #0a0a0a;
}

.pricebox ul{
    list-style: none;
}

.pricebox ul li{
    font-size: 14px;
    margin-bottom: 15px;
}

.pricebox a{
    color: #fff;
    background: #000;
    padding: 10px 40px;
    text-align: center;
    text-decoration: none;
    display: block;
    margin-top: 30px;
}

.book-btn{
    padding: 10px 30px;
    border-radius: 3px;
    background: #000;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    margin-top: 40px;
}



@media(max-width: 1000px){

    .header,
    .site-logo{
        flex-direction: column;
    }

    .header .logo{
        height: 100px;
    }

    .top-bar ul,
    .top-bar p{
        margin-bottom: 10px;
        text-align: center;
    }

    .top-bar ul,
    .top-bar ul:last-child{
        width: 100%;
        justify-content: center;
    }

    .menubtn{
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 32px;
        background: #000;
        color: var(--primary);
        cursor: pointer;
    }

    .call{
        display: none;
    }

    .navbar{
        height: 0px;
        padding: 0;
        overflow: hidden;
    }

    .navbar.active{
        overflow: auto;
        height: auto;
        padding: 10px;
    }

    .top-bar,
    .footer,
    .header{
        padding: 15px;
    }

    .navbar,
    .navbar ul,
    .top-bar{
        flex-direction: column;
        width: 100%;
    }

    .navbar ul{
        align-items: flex-start;
    }

    .navbar ul li{
        width: 100%;
    }

    .navbar ul li:hover .dropdown{
        position: static;
        width: 100%;
        margin-left: 30px;
    }

    .slider{
        height: 250px;
    }

    .text{
        display: none;
    }

    .about h2{
        font-size: 20px;
    }

    .form{
        width: 98%;
    }

    .question-container,
    .service-form,
    .service-content{
        width: 100%;
    }
  

}