@import url('slick.css');
@import url('slick-theme.css');
@import url('bootstrap.min.css');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary: #FFD81B;
    --secondary: #101834;
    --white: #fff;
    --black: #000;
}

.primary {
    background-color: var(--primary);
}

.secondary {
    background-color: var(--secondary);
}

/* COMMON CSS */

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    overflow-x: hidden;
    font-family: "Montserrat", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

.delete_extra_space{
    overflow-x: hidden;
}

p {
    font-size: 16px;
    margin: 0;
    color: #646A69;
}

a {
    font-size: 16px;
    text-decoration: none;
}

.btn {
    padding: 16px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    width: fit-content;
    border: 0;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--black);
    border: none;
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
    /* border: 1px solid var(--white); */
}

.btn-primary:hover,
.btn-primary:active,
.btn:first-child:active,
.btn-secondary:hover,
.btn-secondary:active {
    background-color: var(--white);
    color: var(--black);
    transition: .5s ease;
    border: none;
}


.btn-outline {
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-outline:hover,
.btn-outline:active {
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--white);
    transition: .5s ease;
    border: 1px solid var(--white);
}

.contact-form .btn, .footer-main .btn{
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 600;
}

.form-control:focus{
    box-shadow: none;
    border-color: var(--primary);
}

input.form-control {
    height: 48px;
    border: none;
    border-bottom: 1px solid #4E5464;
    border-radius: 0;
    padding: 12px 16px;
}

textarea.form-control {
    border: none;
    border-bottom: 1px solid #4E5464;
    border-radius: 0px;
    padding: 12px 16px;
}

.form-label {
    font-weight: 500;
    color: var(--white);
}

.modal .modal-header{
    border: none;
    justify-content: center;
}

.modal .modal-header p{
    font-size: 36px;
    color: var(--primary);
    font-weight: 700;
}

.modal .modal-header p span{
    color: var(--secondary);
}
.modal .modal-body{
    padding: 40px;
}

.modal .modal-footer{
    justify-content: center;
    border: none;
}

.modal .modal-footer .btn-primary:hover,
.modal .modal-footer .btn-primary:active {
    background-color: var(--secondary);
    color: var(--white);
    transition: .5s ease;
    border: none;
}

.modal#imagemodal .modal-body{
    padding: 0;
}


.slick-dots {
	display: flex;
	bottom: -100px;
	justify-content: center;
	list-style-type: none;
}

.about-slide .slick-dots {
    justify-content: start;
	bottom: -100px;
}
	
.slick-dots	li {
			margin: 0px 10px;
            align-content: center;
            justify-items: center;
		}

.slick-dots li button {
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: rgba(255, 216, 27, 0.2);
    text-indent: -9999px;
}

.about-slide .slick-dots li button {
    background-color: var(--secondary);
}
	
.slick-dots li.slick-active button {
    width: 20px;
    height: 20px;
    background-color: var(--primary);
}

.tooltip .tooltip-arrow::before{
    display: none;
}

.tooltip .tooltip-inner{
    width: 160px;
    height: 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
}

.right-navigation{
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translate(0,-50%);
    z-index: 9999;
}

.right-navigation a{
    height: 15px;
    width: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.right-navigation .dots{
    height: 10px;
    width: 10px;
    background-color: var(--secondary);
    border-radius: 50%;
}

.right-navigation a:hover .dots{
    height: 15px;
    width: 15px;
}


.hero-section {
    height: 1000px;
    position: relative;
}

.hero-section .hero-bg{
    height: 1000px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: url('/assest/home_background4.jpg') no-repeat center top;
    background-size: cover;
}

.hero-section .company-logo{
    position: fixed;
    top: 40px;
    left: 40px;
}

.hero-section .top-navbar{
    position: fixed;
    top: 88px;
    left: 50%;
    transform: translate(-50%);
}

.hero-section .top-navbar a{
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    transform: translate(-50%);
    margin: 0px 8px;
}

.hero-section .top-navbar a:hover{
    color: var(--primary);
}

.hero-section .hero-section-inner {
    width: 1110px;
    text-align: center;
    position: fixed;
    top: 238px;
    left: 50%;
    transform: translate(-50%);
}

.hero-section .hero-section-inner h1,.hero-section .hero-section-inner p, .hero-section .hero-section-inner span{
    color: #FFF;
    font-size: 72px;
    font-weight: 700;
    line-height: 79px;
}

.hero-section .hero-section-inner span{
    color: var(--primary);
}

.hero-section .hero-section-inner a{
    margin-top: 100px;
    justify-self: center;
}

.hero-section .scroll-down{
    position: fixed;
    left: 50%;
    bottom: 100px;
    transform: translate(-50%);
}  

.section-title {
    justify-items: center;
}

.section-title span{
    font-size: 48px;
    font-weight: 800;
}


.section-title .title-underline {
    height: 10px;
    width: 90px;
    position: relative;
    margin-top: 10px;
    border-radius: 5px;
    background-color: var(--white);
}

.section-title .title-underline::before {
    content: '';
    height: 10px;
    width: 80px;
    position: absolute;
    right: 0;
    border-radius: 5px;
    background-color: var(--secondary);
}


/*  WATCH SECTION */

.sborders::before{
    content: '';
    position: absolute;
    top: -105px;
    width: 100%;
    height: 105px;
    background: transparent url(/assest/sborders_01.png) repeat-x center bottom;
}

.watch-section {
    padding-top: 120px;
    padding-bottom: 213px;
}

.watch-section .video-section{
    height: 540px;
    position: relative;
    margin: 46px 0px 0px;
    text-align: center;
    align-content: center;
    justify-items: center;
    background: url('/assest/video_player_background.png') no-repeat center top;
}

.watch-section .play-btn{
    width: fit-content;
    cursor: pointer;
}

.watch-section .play-btn::before{
    content: '';
    width: 100px;
    top: 40%;
    transform: translate(-50%);
    left: 50%;
    height: 100px;
    position: absolute;
    background: url(/assest/video_play_btn_01.png) no-repeat center;
}

.watch-section .play-btn:hover::before {
    background: url(/assest/video_play_btn_02.png) no-repeat center;
    transition: .5s;
}

.watch-section .video-des p{
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    text-align: center;
    margin-top: 40px;
}

/* ABOUT-US */
.about-us.sborders::before{
    content: '';
    position: absolute;
    top: -105px;
    width: 100%;
    height: 105px;
    background: transparent url(/assest/sborders_03.png) repeat-x center bottom;
}

.about-us{
    background-color: var(--white);
    padding: 120px 0px 301px 0px;
}

.about-us .section-title{
    justify-items: baseline;
}

.about-us .section-title span{
    color: var(--primary);
}

.about-us .section-title .title-underline, .our-client .section-title .title-underline  {
    background-color: var(--primary);
}

.about-us .about-left{
    height: 450px;
    width: 450px;
    background-color: var(--primary);
    border-radius: 50%;
    position: relative;
}

.about-us .about-left::before{
    content: '';
    position: absolute;
    width: 450px;
    height: 545px;
    bottom: 0;
    background: url(/assest/about_01.png) no-repeat center;
    background-size: contain;
}

.about-us .about-slide{
    margin-top: 50px;
}

.about-us .about-slide p{
    margin-bottom: 20px;
    color: var(--black);
}

/* WE PROVIDE SERVICES */
.we-provide-services {
    padding: 80px 0px 250px 0px ;
}

.we-provide-services .title-underline{
    display: none;
}

.we-provide-services .provide-inner{
    position: relative;
}

.we-provide-services .provide-inner .provide-content{
    margin-top: 150px;
    position: relative;
    display: flex;
    justify-content: center;
    gap: 400px;
    z-index: 1;
}

.we-provide-services .provide-inner::before{
    content: '';
    width: 450px;
    height: 450px;
    position: absolute;
    background-color: #FFFFFF;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.we-provide-services .provide-inner::after{
    content: '';
    width: 450px;
    height: 970px;
    position: absolute;
    background: url(/assest/services_01.png) no-repeat center;
    background-size: contain;
    left: 50%;
    top: -175px;
    transform: translate(-50%);
}

.we-provide-services .provide-inner .left-section, .we-provide-services .provide-inner .right-section{
    width: 450px;
    margin-bottom: 30px;
}

.we-provide-services .provide-inner .title{
    font-size: 26px;
    font-weight: 700;
    color: var(--black);
}

.we-provide-services .provide-inner .description{
    font-size: 14px;
    color: #4E5464;
}


.we-provide-services .provide-inner .provide-inner-left{
    text-align: right;
}

.we-provide-services .provide-inner .provide-inner-right{
    text-align: left;
}



.our-client {
    padding: 80px 0 100px 0px;
    background-color: var(--white);
}

.our-client.sborders::before{
    content: '';
    position: absolute;
    top: -105px;
    width: 100%;
    height: 105px;
    background: transparent url(/assest/sborders_03.png) repeat-x center bottom;
}

.our-client .client-logos{
    display: flex;
    margin-top: 50px;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.our-client .client-logos img{
    height: fit-content;
}

/* TESTIMONIAL */
.testimonial {
    height: 915px;
    padding: 220px 0;
    background: url(/assest/testimonials_background.jpg) no-repeat center top;
    background-size: cover;
}

.testimonial.sborders::before{
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 105px;
    background: transparent url(/assest/sborders_04.png) repeat-x center bottom;
}

.testimonial.sborders::after{
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 105px;
    background: transparent url(/assest/sborders_03.png) repeat-x center bottom;
}

.testimonial .section-title span{
    color: var(--primary);
}

.testimonial .section-title .title-underline  {
    background-color: var(--primary);
}

.testimonial .section-title .title-underline::before  {
    background-color: var(--white);
}

.testimonial .testimonial-inner{
    display: flex;
    gap: 30px;   
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.testimonial .testimonial-inner .testi-img img{
    border-radius: 50%;
}

.testimonial .testimonial-inner .testi-img::before{
    content: '';
    height: 50px;
    width: 60px;
    top: -20px;
    left: 0;
    position: absolute;
    background: url(/assest/quote.svg) no-repeat center;
}

.testimonial .testimonial-inner .feedback{
    width: 550px;
}

.testimonial .testimonial-inner .feedback-msg p{
    font-size: 16px;
    color: var(--white);
    margin-bottom: 10px;
}

.testimonial .testimonial-inner .fb-social span{
    font-size: 16px;
    color: var(--white);
    font-weight: 700;
}

.our-team{
    padding: 150px 0;
    background-color: var(--white);
}

.our-team .section-title span{
    color: var(--primary);
}

.our-team .section-title .title-underline  {
    background-color: var(--primary);
}

.our-team .teams-member{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 100px;
}

.our-team .teams-member .team-details{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.our-team .teams-member .team-photos{
    height: 290px;
    width: 290px;
    background-color: #EDEDED;
    border-radius: 50%;
    position: relative;
}

.our-team .teams-member .team-photos:hover{
    background-color: var(--primary);
    transition: .5s;
}

.our-team .teams-member .team-photos img{
    position: absolute;
    bottom: 0;
}

.our-team .teams-member .team-name{
    text-align: center;
}

.our-team .teams-member .team-name .names{
    line-height: 22px;
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
}

.our-team .teams-member .team-name .roles{
    font-size: 14px;
    font-weight: 300;
    color: var(--black);
}

.our-team .teams-member .social-media{
    display: flex;
    gap: 20px;
    justify-content: center;
}

.our-team .teams-member .social-media .social{
    height: 40px;
    width: 40px;
    background-color: var(--primary);
    border-radius: 50%;
    cursor: pointer;
}

.our-team .teams-member .social-media .social:hover{
    background-color: var(--secondary);
    transition: .5s;
}

.our-team .teams-member .social-media .social .facebook{
    height: 40px;
    background: url(/assest/icon_fb_01.png)  no-repeat center ;
    background-size: cover;
}

.our-team .teams-member .social-media .social .facebook:hover{
    background: url(/assest/icon_fb_02.png)  no-repeat center ;
    background-size: cover;
    transition: .5s;
}

.our-team .teams-member .social-media .social .twitter{
    height: 40px;
    background: url(/assest/icon_twitter_01.png) no-repeat center;
    background-size: cover;
}

.our-team .teams-member .social-media .social .twitter:hover{
    background: url(/assest/icon_twitter_02.png) no-repeat center;
    background-size: cover;
    transition: .5s;
}

.our-team .teams-member .social-media .social .instagram{
    height: 40px;
    background: url(/assest/icon_insta_01.png) no-repeat center;
    background-size: cover;
}

.our-team .teams-member .social-media .social .instagram:hover{
    background: url(/assest/icon_insta_02.png) no-repeat center;
    background-size: cover;
    transition: .5s;
}

.some-fact{
    padding: 220px 0;
}

.some-fact.sborders::before{
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 105px;
    background: transparent url(/assest/sborders_04.png) repeat-x center bottom;
}

.some-fact.sborders::after{
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 105px;
    background: transparent url(/assest/sborders_03.png) repeat-x center bottom;
}

.some-fact .all-facts{
    display: flex;
    gap: 50px;
    justify-content: center;
    margin-top: 100px;
}

.some-fact .facts{
    height: 200px;
    width: 200px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    text-align: center;
    padding: 30px;
    transition: .5s;
}

.some-fact .main-facts {
    width: 210px;
    justify-items: center;
}
.some-fact .main-facts:hover {
    transition: .5s;
    width: 210px;
    background: url(/assest/works_trigger_background.png) no-repeat center;
    background-size: cover;
}

.some-fact .main-facts:hover .facts {
    background-color: var(--secondary);
}

.some-fact .main-facts:hover .count,.some-fact .main-facts:hover .details {
    color: var(--white);
}

.some-fact .facts .count{
    font-size: 48px;
    line-height: 48px;
    font-weight: 700;
    color: var(--secondary);
}

.some-fact .facts .details{
    font-size: 16px;
    line-height: 19px;
    color: var(--secondary);
}


.selected-work{
    padding: 120px 0px;
}

.selected-work.sborders::before{
    content: '';
    position: absolute;
    top: -105px;
    width: 100%;
    height: 105px;
    background: transparent url(/assest/sborders_05.png) repeat-x center bottom;
}

.selected-work .title-underline::before {
    content: '';
    height: 10px;
    width: 80px;
    position: absolute;
    right: 0;
    border-radius: 5px;
    background-color: var(--primary);
}

.selected-work .section-title span {
    color: var(--primary);
}

.selected-work .all-works {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    width: 1000px;
    justify-self: center;
    margin-top: 80px;
}

.selected-work .main-work{
    width: 210px;
    text-align: center;
    transition: ease-in-out;
    cursor: pointer;
}

.selected-work .main-work:hover{
    background: url(/assest/works_trigger_background_01.png) no-repeat center;
    transition: 1s;
}

.selected-work .all-works img{
    border-radius: 50%;
}

.modal .selected-work-img{
    position: relative;
}

.modal .selected-work-img .work-details{
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.modal .selected-work-img .work-details .project-title{
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.modal .selected-work-img .work-details .project-des{
    font-size: 14px;
    /* color: var(--white); */
}

.get-in-touch{
    padding: 230px 0;
    background: url(/assest/cta_background.jpg) no-repeat center;
    background-size: cover;
}

.get-in-touch .get-in-touch-inner p{
    font-size: 42px;
    color: var(--white);
    font-weight: 800;
    text-align: center;
}

.get-in-touch .get-in-touch-inner p span{
    color: var(--primary);
}

.get-in-touch.sborders::before{
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 105px;
    background: transparent url(/assest/sborders_06.png) repeat-x center bottom;
}

.get-in-touch.sborders::after{
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 105px;
    background: transparent url(/assest/sborders_01.png) repeat-x center bottom;
}


.cta{
    padding: 80px 0px 180px;
}

.cta.sborders::after{
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 105px;
    background: transparent url(/assest/sborders_05.png) repeat-x center bottom;
}

.cta .section-title{
    justify-items: baseline;
}

.cta .cta-left{
    margin-top: 50px;
}

.cta .cta-left .contacts {
    margin-bottom: 20px;
}

.cta .cta-left .contacts .mail-id, .cta .cta-left .contacts .contact-no {
    color: var(--black);
    font-weight: 500;
}

.cta .cta-left .name{
    line-height: 21px;
    font-size: 16px;
    font-weight: 700;
}
.cta .cta-right{
    height: 450px;
    width: 450px;
    background-color: var(--white);
    border-radius: 50%;
    position: relative;
    margin-inline: auto;
    margin-top: 130px;
}

.cta .cta-right::before{
    content: '';
    position: absolute;
    width: 600px;
    height: 580px;
    bottom: 0;
    right: 0;
    background: url(/assest/contacts_01.png) no-repeat center;
    background-size: contain;
}

.footer .footer-main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 48px 0;
}

.footer .footer-main .social-media{
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer .footer-main .social-media .social{
    height: 60px;
    width: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    cursor: pointer;
}

.footer .footer-main .social-media .social:hover{
    background-color: var(--white);
    transition: .5s;
}

.footer .footer-main .social-media .social .facebook{
    height: 60px;
    background: url(/assest/icon_fb_01.png)  no-repeat center ;
    background-size: cover;
}

.footer .footer-main .social-media .social .instagram{
    height: 60px;
    background: url(/assest/icon_insta_01.png) no-repeat center;
    background-size: cover;
}

.footer .footer-main .social-media .social .linkedin{
    height: 60px;
    background: url(/assest/icon_ln_01.png) no-repeat center;
    background-size: cover;
}

.footer .footer-main .social-media .social .youtube{
    height: 60px;
    background: url(/assest/icon_youtube_01.png) no-repeat center;
    background-size: cover;
}

.footer p {
    color: var(--white);
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    padding: 30px 0;
}


@media screen and (min-width: 1280px) {

}


@media only screen and (max-width: 1440px) {

    p,
    a {
        font-size: 14px;
    }
    
    .btn {
        font-size: 12px;
        padding: 12px 14px;
    }

    .btn img {
        height: 18px;
    }

    input.form-control {
        padding: 8px 12px;
    }

    input::placeholder {
        font-size: 14px;
    }

    textarea.form-control {
        padding: 8px 12px;
    }

    .hero-section {
        height: 680px;
    }

    .hero-section .company-logo img {
        height: 80px;
    }

    .hero-section .top-navbar {
        top: 68px;
    }

    .hero-section .hero-section-inner {
        top: 200px;
    }

    .hero-section .hero-section-inner h1, .hero-section .hero-section-inner p, .hero-section .hero-section-inner span{
        font-size: 60px;
        line-height: 64px;
    }
    
    .hero-section .hero-section-inner a {
        margin-top: 50px;
    }

    .hero-section .scroll-down {
        bottom: 105px;
    }

    .watch-section {
        padding-top: 60px;
        padding-bottom: 150px;
    }

    .about-us {
        padding: 80px 0px 200px 0px;
    }

    .about-slide .slick-dots {
        justify-content: start;
        bottom: -50px;
    }

    .we-provide-services {
        padding: 30px 0px 100px 0px;
    }

    .we-provide-services .provide-inner::after{
        width: 250px;
    }

    .we-provide-services .provide-inner .provide-content{
        margin-top: 45px;
        gap: 300px;
    }

    .we-provide-services .provide-inner::before {
        width: 350px;
        height: 350px;
    }

    .we-provide-services .provide-inner .left-section, .we-provide-services .provide-inner .right-section{
        width: 400px;
    }

    .we-provide-services .provide-inner .title{
        font-size: 22px;
    }

    .we-provide-services .provide-inner .description{
        font-size: 12px;
    }

    .our-client {
        padding: 30px 0 60px 0px;
    }

    .our-client .client-logos{
        margin-top: 20px;
    }

    .testimonial {
        height: 720px;
        padding: 150px 0;
    }

    .our-team {
        padding: 30px 0;
    }

    .some-fact {
        padding: 160px 0;
    }

    .selected-work {
        padding: 30px 0px;
    }

    .selected-work .all-works{
        margin-top: 40px;
    }

    .get-in-touch{
        padding: 160px 0px;
    }

    .get-in-touch .get-in-touch-inner p{
        font-size: 34px;
    }

    .cta {
        padding: 40px 0px 120px;
    }

    .cta .cta-right {
        height: 400px;
        width: 400px;
        margin-top: 80px;
    }

    .cta .cta-right::before {
        width: 530px;
        height: 510px;
    }

    .footer .footer-main {
        padding: 20px 0;
    }


}


@media only screen and (max-width: 1199px) {
    p,
    a {
        font-size: 14px;
    }

    .section-title span{
        font-size: 40px;
    }

    .watch-section {
        padding-top: 20px;
        padding-bottom: 120px;
    }

    .watch-section .video-section{
        margin: 25px 0px 0px;
    }

    .watch-section .video-des p {
        margin-top: 20px;
    }

    .about-us {
        padding: 80px 0px 150px 0px;
    }
    
    .about-us .about-left {
        height: 400px;
        width: 400px;
    }

    .about-us .about-left::before {
        width: 400px;
        height: 475px;
    }

    .about-us .about-slide{
        margin-top: 20px;
    }

    .about-slide .slick-dots {
        bottom: -30px;
    }

    .we-provide-services .provide-inner .title{
        font-size: 18px;
    }

    .we-provide-services .provide-inner .left-section, .we-provide-services .provide-inner .right-section{
        width: 320px;
        margin-bottom: 15px;
    }

    .our-client {
        padding: 30px 0 30px 0px;
    }

    .our-client .client-logos{
        gap: 20px;
    }

    .our-client .client-logos img {
        width: 140px;
    }

    .testimonial {
        height: 660px;
        padding: 130px 0;
    }

    .slick-dots{
        bottom: -70px;
    }

    .our-team {
        padding: 10px 0;
    }

    .some-fact .all-facts {
        gap: 20px;
    }

    .get-in-touch .get-in-touch-inner p {
        font-size: 28px;
    }

}


@media only screen and (max-width: 991px) {


    .hero-section .hero-section-inner {
        width: 640px;
    }

    .hero-section .hero-section-inner h1, .hero-section .hero-section-inner p, .hero-section .hero-section-inner span {
        font-size: 44px;
        line-height: 50px;
    }

    .watch-section .video-section {
        height: 420px;
        background-size: contain;
    }

    .watch-section .play-btn img{
        width: 600px;
    }

    .about-us .about-left {
        justify-self: center;
    }

    .about-us .section-title {
        margin-top: 40px;
        justify-items: center;
    }

    .about-slide .slick-dots {
        justify-content: center;
    }

    .we-provide-services .provide-inner::before{
        display: none;
    }

    .we-provide-services .provide-inner::after {
        left: 20%;
        top: -15px;
        height: 800px;
    }

    .we-provide-services .provide-inner .provide-content{
        flex-direction: column;
        gap: unset;
        justify-self: right;
    }

    .we-provide-services .provide-inner .left-section, .we-provide-services .provide-inner .right-section {
        width: 400px;
    }

    .we-provide-services .provide-inner .provide-inner-left, .we-provide-services .provide-inner .provide-inner-right{
        text-align: left;
    }

    .some-fact .all-facts {
        gap: 40px;
        flex-wrap: wrap;
    }

    .selected-work .all-works{
        width: 650px;
    }

    .get-in-touch .get-in-touch-inner p {
        font-size: 24px;
    }

    .cta {
        padding: 40px 0px 160px;
    }

    .cta .section-title {
        justify-items: center;
    }

    .cta .cta-left{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }
    .cta .cta-left .contacts{
        text-align: center;
    }

}

@media only screen and (max-width: 768px) {

}

@media only screen and (max-width: 575px) {

    input.form-control{
        height: 50px;
        border-radius: 50px;
        border: none;
    }

    textarea.form-control{
        border-radius: 25px;
        border: none;
    }

    .section-title span {
        font-size: 30px;
    }

    .hero-section {
        height: 900px;
    }

    .hero-section .company-logo {
        top: 120px;
        left: 50%;
        transform: translate(-50%);
    }

    .hero-section .company-logo img {
        height: 130px;
    }

    .hero-section .top-navbar{
        width: max-content;
        top: 50px;
    }
    
    .hero-section .hero-section-inner {
        top: 280px;
        width: 350px;
    }

    .watch-section {
        padding-bottom: 160px;
    }

    .watch-section .video-section {
        height: 250px;
    }

    .watch-section .play-btn::before, .watch-section .play-btn:hover::before{
        width: 60px;
        height: 60px;
        background-size: contain;
    }

    .watch-section .play-btn img {
        width: 350px;
    }

    .about-us .about-left {
        height: 350px;
        width: 350px;
    }

    .about-us .about-left::before {
        width: 350px;
        height: 425px;
    }

    .we-provide-services .title-underline{
        display: block;
    }

    .we-provide-services .provide-inner::after{
        display: none;
    }

    .we-provide-services .provide-inner .left-section, .we-provide-services .provide-inner .right-section {
        width: 290px;
        position: relative;
    }

    .we-provide-services .provide-inner .left-section::before, .we-provide-services .provide-inner .right-section::before{
        content: '';
        height: 50px;
        width: 50px;
        position: absolute;
        background: url(/assest/icon_for_services.png) no-repeat center;
        top: 0;
        left: -60px;
    }

    .our-client .client-logos {
        margin-top: 60px;
    }

    .get-in-touch .get-in-touch-inner p {
        font-size: 22px;
    }

    .testimonial {
        height: 840px;
    }

    .testimonial .testimonial-inner{
        flex-direction: column;
    }

    .testimonial .testimonial-inner .feedback{
        width: 340px;
        text-align: center;
    }

    .testimonial .testimonial-inner .feedback-msg p{
        font-size: 14px;
    }

    .some-fact .all-facts {
        gap: 20px;
        margin-top: 50px;
    }

    .some-fact .main-facts {
        width: 160px;
    }

    .some-fact .facts {
        height: 160px;
        width: 160px;
        padding: 15px;
        gap: 0;
    }

    .some-fact .facts .count{
        font-size: 38px;
    }

    .some-fact .facts .details{
        font-size: 14px;
    }

    .some-fact .main-facts:hover{
        width: auto;
        background: none;
    }
    
    .some-fact .main-facts:hover .facts{
        background-color: var(--white);   
    }

    .some-fact .main-facts:hover .count, .some-fact .main-facts:hover .details {
        color: var(--secondary);
    }

    .selected-work .all-works {
        width: 340px;
    }

    .selected-work .main-work {
        width: 150px;
    }

    .selected-work .main-work:hover{
        background: none;
    }

    .cta .cta-right {
        height: 350px;
        width: 350px;
    }

    .cta .cta-right::before {
        width: 467px;
        height: 450px;
    }

}
