/* @import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */
@font-face {
    font-family: 'NeutraText';
    font-style: normal;
    /* font-weight: normal; */
    src: local('../fonts/NeutraText'), url('../fonts/neutra-text-alt-587261020eccb.woff') format('woff');
}
    

@font-face {
    font-family: 'NeutraText';
    font-style: normal;
    font-weight: 400;
    src: local('../fonts/NeutraText'), url('../fonts/neutra-text-light-5872613aeda5b.woff') format('woff');
}
    

@font-face {
    font-family: 'NeutraText';
    font-style: normal;
    font-weight: 500;
    src: local('../fonts/NeutraText'), url('../fonts/neutra-text-tf-5871e0b0704ed.woff') format('woff');
}
    

@font-face {
    font-family: 'NeutraText';
    font-style: normal;
    font-weight: bold;
    src: local('../fonts/NeutraText'), url('../fonts/neutra-text-bold-5871e1605afa2.woff') format('woff');
}
    

@font-face {
    font-family: 'NeutraText';
    font-style: italic;
    font-weight: bold;
    src: local('../fonts/NeutraText'), url('../fonts/neutra-text-bold-italic-5872615974382.woff') format('woff');
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    /* --black--: #000; */
    --yellow--: #ffc504;
    --grey--: #202020;
    /* --red--: #e51110;
    --yellow--: #1e712b; */
}

a{
    text-decoration: none !important;
    font-size: 16px;
    line-height: 1;
    color: #000;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

body{
    font-family: "NeutraText";
}

h1,h2,h3,h4,h5,h6{
    color: #000;
}

header{
    display: flex;
    justify-content: space-between;
    padding: 10px 5%;
    position: fixed;
    width: 100%;
    z-index: 99;
    transition: 0.3s;
    overflow-x: clip;
}

header.active{
    background: var(--grey--);
}

header .logo{
    width: 120px;
}

header .logo img{
    transition: 0.3s;
}

header.active .logo img{
    width: 75px;
}

header .menu-button {
    width: 32px;
    height: 40px;
    display: none;
    place-items: center flex-end;
    border-radius: 5px;
    /* border: 2px solid #fff; */
    padding: 6px 0;
    cursor: pointer;
    margin: auto 0;
    position: relative;
}
header .menu-button::before{
    content: '';
    position: absolute;
    width: 70%;
    height: 3px;
    /* top: -10px; */
    background: #fff;
    transition: .3s ease-in-out;
    border-radius: 10px;
    transition: 0.3s;
    left: 0;
}
header .menu-button span {
    width: 32px;
    height: 3px;
    /* background: #000; */
    position: relative;
    transition: .3s ease-in-out;
    border-radius: 10px;
}
header .menu-button.active span{
    background: transparent;
}
header .menu-button span::before, header .menu-button span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: -10px;
    background: #fff;
    transition: .3s ease-in-out;
    border-radius: 10px;
    transition: 0.3s;
}
header .menu-button.active span::before{
    top: 0;
    transform: rotate(45deg);
}
header .menu-button span::before{
    left:0
}

header .menu-button:hover span::before{
    left:0
}
header .menu-button span::after {
    top: 10px;
    right: 0;
}
header .menu-button.active span::after{
    top: 0;
    transform-origin: center;
    transform: rotate(-45deg);
}
header .menu-button:hover span::after {
    right: 0;
}
.lets_connect{
    display: inline-block;
    padding: 10px 20px;
    background: var(--yellow--);
    color: #000 !important;
    border-radius: 5px;
    transition: 0.3s;
}
.lets_connect:hover{
    transform: scale(1.1);
}
header .right_side{
    display: flex;
    gap: 20px;
    align-items: center;
}
.banner .slide{
    position: relative;
}

.banner .slide .content{
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    width: 30%;
}

.banner .slide .content p{
    font-size: 2.1vw;
    color: #fff;
    font-weight: 500;
}

.banner_bg{
    position: relative;
}

.heading span{
    font-size: 16px;
    color: var(--yellow--);
}

.big_content p{
    font-size: 22px;
    color: #000;
    font-weight: 500;
}
.counter {
    /* border-bottom: 1px solid #fff;    */
    padding-bottom: 10px;
    height: 100%
}

.counter h3 {
    color: #000;
    font-size: 18px;
    margin-bottom: 0;
}

.counter h3 span{
    padding-right: 5px;
    font-size: 22px;
    font-weight: 600;
}
.counter p {
    color: #000;
    font-size: 24px;
    font-weight: 500;
}

.values_card{
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.values_card img{
    aspect-ratio: 2 / 3;
    object-fit: cover;
}


.values_card::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background: #000;
    opacity: 0.4;
    width: 100%;
    height: 100%;
}

.values_card .content{
    position: absolute;
    width: 100%;
    bottom: 10%;
    left: 0;
    z-index: 2;
    transform: translateY(150%);
    transition: 0.5s;
    text-align: center;
}

.values_card:hover .content{
    transform: translateY(0);
    padding: 0 10px;
}

.values_card h3{
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.values_card .content p{
    color: #fff;
    font-weight: 500;
}

.you_tube_iframe{
    /* height: 100%;  */
    overflow: hidden;
}

.you_tube_iframe iframe{
    width: 100%;
    /* height: 450px; */
    border-radius: 20px;
    aspect-ratio: 3 / 2;
}

.founder_bg{
    background-color: var(--yellow--);
}

.our_projects figure{
    padding: 10px;
    position: relative;
    z-index: 2;
}

.our_projects figure::before{
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    background: var(--yellow--);
    right: 0;
    top: 0;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    z-index: -1;
    border-radius: 5px;
}

.our_projects figure img{
    border-radius: 5px;
}

.our_projects .content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.our_projects .content > div{
/*     width: 60%; */
}

.our_projects .content p{
    font-size: 20px;
    color: #000;
}

.our_projects .content .view_details{
    transform: translateY(50px);
    opacity: 0;
    transition: 0.3s;
}

.our_projects:hover .content .view_details{
    transform: translateY(0);
    opacity: 1;
}

.view_details{
    display: inline-block;
    font-size: 20px;
    text-decoration: underline;
    color: #000;
}

.view_details i{
    transform: rotate(-45deg);
    color: var(--yellow--);
    padding-left: 5px;
    transition: 0.3s;
}

.view_details:hover i{
    transform: rotate(0);
}

.our_projects_slider{
    position: relative;
}

.our_projects_slider .slick-slide {
    margin: 20px;
}

.our_projects_slider .our_projects{
    transition: 0.3s;
}

.our_projects_slider .our_projects:hover{
    transform: scale(1.05);
}

.our_projects_slider .slick-arrow{
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--yellow--);
    /* left: 0; */
    border: none;
    z-index: 2;
    color: var(--grey--);
    transition: 0.3s;
}

.our_projects_slider .slick-arrow.slick-prev{
    left: 0;
    transform: translate(0 , -50%);
}

.our_projects_slider .slick-arrow.slick-next{
    right: 0;
    transform: translate(0 , -50%);
}

.our_projects_slider .slick-arrow.slick-disabled{
    visibility: hidden;
}

.testimonials{
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    margin: 0 auto;
}

.testimonials .stars ul{
    display: flex;
    width: 100%;
    align-items: center;
    gap: 2px;
    justify-content: center;
}

.testimonials .stars ul li i{
    color: var(--yellow--);
    font-size: 20px;
}

.testimonials .testimonial_img img{
    width: 50px;
    border-radius: 50%;
    margin: 0 auto;
}

.testimonials .testimonial_img p{
    /* font-size: 20px; */
    font-weight: 600;
}

.testimonial_slider{
    position: relative;
}

.testimonial_slider .slick-arrow{
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--yellow--);
    color: var(--grey--);
    /* left: 0; */
    border: none;
    z-index: 2;
}

.testimonial_slider .slick-arrow.slick-prev{
    left: 0;
    transform: translate(-40% , -50%);
}

.testimonial_slider .slick-arrow.slick-next{
    right: 0;
    transform: translate(40% , -50%);
}

.testimonial_bg{
    background: #fffbef;
}

ul.footer_icon{
    display: flex;
    gap: 10px;
}

ul.footer_icon li{
    margin-bottom: 0;
}

ul.footer_icon li a i{
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid #212529;
    border-radius: 5px;
    transition: 0.3s;
}

ul.footer_icon li a:hover i{
    color: var(--yellow--);
    border: 1px solid var(--yellow--);
}

.footer_head h3{
    font-size: 20px;
    font-weight: 600;
}

ul.footer_menu li{
    margin-bottom: 10px;
}

ul.footer_menu li a{
    font-weight: 500;
    transition: 0.3s;
}

ul.footer_menu li a:hover{
    color: var(--yellow--);
}

ul.footer_menu_big li{
    margin-bottom: 10px;   
}

ul.footer_menu_big li a{
    font-size: 20px;
    font-weight: 600;
    transition: 0.3s;
}

ul.footer_menu_big li a:hover{
    color: var(--yellow--);
}

.footer-contact ul li{
    font-size: 14px;
    position: relative;
    padding-left: 23px;
    color: #000;
    padding-bottom: 10px;
}

.footer-contact ul li i{
    position: absolute;
    top: 5px;
    left: 0;
    color: #000;
}

.footer-contact ul li a{
    font-size: 14px;
    color: var(--black--);
    transition: 0.3s;
}

.footer-contact ul li a:hover{
    color: var(--yellow--);
}

.copy_right_bg{
    background: var(--yellow--);
    padding: 10px 0;
}

.copy_right{
    display: flex;
    justify-content: space-between;
}

.copy_right p ,.copy_right p a{
    color: #fff;
    margin-bottom: 0;
}

header nav{
    /* position: absolute; */
    /* height: 100vh;
    width: 300px; */
    right: 0;
    top: 0;
    /* background: #fff; */
    /* padding: 20px 20px; */
    /* border-left: 5px solid var(--yellow--); */
    /* transform: translateX(100%); */
    transition: 0.3s;
    display: flex;
    align-items: center;
}

header nav.active{
    transform: translateX(0);
}

header nav .nav_close_btn{
    text-align: end;
    display: none;
}

header nav .nav_close_btn a{
    font-size: 24px;
    transition: 0.3s;
}

header nav .nav_close_btn a:hover{
    color: var(--yellow--);
}

header nav ul{
    display: flex;
    gap: 30px;
}

header nav ul li{
    /* margin-bottom: 10px; */
}

header nav ul li a{
    display: block;
    text-align: center;
    padding: 10px 0;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    transition: 0.3s;
}

header nav ul li a:hover{
    color: var(--yellow--);
}

.inner_banner{
    padding: 150px 0 60px;
    background: url(../images/banner.jpg) no-repeat;
    background-size: cover;
    background-position: center right;
    position: relative;
}

.inner_banner::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    left: 0;
    top: 0;
    opacity: 0.4;
}

.inner_banner h1, .inner_banner h2{
    color: #fff;
    font-weight: 600;
    font-size: 36px;
    position: relative;
    z-index: 2;
}

.bread_crumb{
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.bread_crumb a{
    color: #fff;
}

.bread_crumb span.line{
    width: 20px;
    height: 1px;
    background: #fff;
}

.bread_crumb span{
    color: #fff;
    font-weight: 400;
}

.blog {
    position: relative;
}

.blog figure{
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    background: #000;
}

.blog figure::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 0;
    right: 0;
    top: 0;
    background: var(--yellow--);
    z-index: 2;
    opacity: 0.1;
}

.blog:hover figure::before{
    animation: circle .95s;
    opacity: 1.0;
}

@keyframes circle{
    0% {
        opacity: 1;
      }
    40% {
        opacity: 1;
      }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
      }
}

.blog figure img{
    transition: 0.3s;
    /* height: 210px; */
    object-fit: cover;
    aspect-ratio: 5 / 3;
}

.blog:hover figure img{
    opacity: 0.8;
    transform: scale(1.1) rotate(1deg);
}

.blog .date{
    /* position: absolute; */
    margin-top: -35px;
    /* bottom: -40px; */
    position: relative;
    z-index: 3;
}

.blog .date span{
    padding: 10px 20px;
    /* background: #e9e9ed; */
    background: var(--yellow--);
    border-radius: 5px;
    font-size: 16px;
    margin-left: 10px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #fff;
} 

.blog h2{
    font-size: 20px;
    color: #000;
    margin-top: 20px;
    margin-bottom: 10px;
}

.blog h2 a{
    color: #000;
    transition: 0.3s;
}

.blog h2 a:hover{
    color: var(--yellow--);
}

.blog .more-btn span{
    padding-left: 0;
    position: relative;
    /* display: flex;
    align-items: center; */
    transition: 0.3s;
    color: #000;
    font-weight: 600;
    font-size: 18px;
}

.blog .more-btn span:hover{
    padding-left: 30px;
    color: var(--yellow--);
}

.blog .more-btn span::before{
    content: '';
    position: absolute;
    width: 0px;
    height: 2px;
    background: var(--yellow--);
    left: 0;
    top: 45%;
    transition: 0.3s;
}

.blog .more-btn span:hover::before{
    width: 26px;
}

.blog-detail h1{
    font-size: 24px;
}

.blog-detail img{
    border-radius: 10px;
}

.blog-detail .date ul li{
    display: inline-block;
    margin-right: 10px;
}

.blog-detail .date ul li i{
    color:  var(--yellow--);
}

.blog-detail .date ul li span{
    color: #0c2d35;
}

.blog-detail .blog-content p{
 margin-bottom: 10px;
}

.side-bar{
    /* position: sticky;
    top: 100px; */
    /* z-index: 1; */
    height: auto;
}

.side-bar .side-bar-heading h3{
    position: relative;
    border-bottom: 1px solid #00000026;
    padding-bottom: 5px;
    font-size: 22px;
}

.side-bar .side-bar-heading h3::before{
    content: '';
    width: 30%;
    height: 3px;
    background: var(--yellow--);
    position: absolute;
    bottom: -2px;
    left: 0;
}

.side-bar .search form{
    width: 100%;
    height: auto;
    display: flex;
    border: 1px solid #000;
    border-radius: 5px;
}

.side-bar .search input{
    width: 100%;
    height: 40px;
    border-radius: 5px;
    outline: none;
    /* border: 1px solid #00000026; */
    border: none;
    padding-left: 10px;
}

.side-bar .search form button{
    background: none;
    color: var(--yellow--);
    width: 40px;
}

.side-bar .side-bar-list img{
    border-radius: 5px;
    height: 100%;
    object-fit: cover;
}

.side-bar .side-bar-list h6 a{
    color: #000;
    transition: 0.3s;
}

.side-bar .side-bar-list h6 a:hover{
    color:  var(--yellow--);
}

.side-bar .side-bar-list .date ul li{
    display: inline-block;
    margin-right: 10px;
}

.side-bar .side-bar-list .date ul li i{
    color:  var(--yellow--);
}

.side-bar .side-bar-list .date ul li span{
    color: #0c2d35;
}

.faq .accordion-item .accordion-button{
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq .accordion-item .accordion-button::after{
    display: none;
}

.faq .accordion-item .accordion-button:not(.collapsed){
    background: var(--yellow--);
    color: #fff;
    
}

.faq .accordion-item .accordion-button i{
    transition: 0.3s;
}

.faq .accordion-item .accordion-button:not(.collapsed) i{
    transform: rotateX(180deg);
    transition: 0.3s;
}

.contact-info {
    background: #F3F3F3;
    padding: 20px 40px;
    border-radius: 5px;
}
.contact-info .icon{
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    background: var(--yellow--);
    margin-top: 5px;
    border-radius: 5px;
}

.contact-info .icon i{
    color: #fff;
    font-size: 24px;
}

.contact-info .info h4{
    font-size: 18px;
    color: #000;
    margin-bottom: 3px;
    font-weight: 600;
}

.contact-info .info p{
    font-size: 14px;
    margin: 0;
    color: #000;
    font-weight: 500;
}

.contact-info .info p a{
    font-size: 14px;
    color: #000;
}

.contact-form {
    background: #F3F3F3;
    padding: 20px 25px;
    padding-top: 35px;
    height: 100%;
    border-radius: 5px;
}

.contact-form h3{
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 500;
}

.contact-form form input{
    width: 100%;
    height: 50px;
    background: #fff;
    border: 1px solid #E5E5E5;
    padding: 0 10px;
    outline: none;
}

.contact-form form textarea{
    width: 100%;
    height: 100px;
    background: #fff;
    border: 1px solid #E5E5E5;
    padding: 0 10px;
    padding-top: 10px;
}

.contact-form form input[type="submit"]{
    background: var(--yellow--);
    color: #fff;
    border-radius: 5px;
}

.contact-form form input[type="radio"]{
       width: 14px;
    height: 22px;
}
.contact_iframe iframe{
    aspect-ratio: 6/2;
}

.vision_mission h2{
    color: var(--yellow--);
    /* font-weight: 500; */
    margin-top: 10px;
}

.modal-content.contact-form{
padding: 10px;
}