
@import url('https://fonts.googleapis.com/css2?family=Poppins: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');
:root {
    /* Fonts */
    --body-font:  'Poppins', sans-serif;
    /* Color */
    --primary: #4340A0;
    --black: #000;
    --white: #fff;
    --defult: #FEC671;
}

body {
    font-family: var(--body-font);
    color: var(--black);
}

h1,
h2,
h3 {
    font-family: var(--body-font);
    font-weight: 700;
}

p{
font-size: 16px;
font-weight: 300;
line-height: 21px;
font-family: var(--body-font);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    transition: 300ms ease-in all;
    color: var(--primary);
    text-decoration: none;
}

/* :::::::::::::::::::::::::::::::::::::::::::::

                    BOOTSTRAP

::::::::::::::::::::::::::::::::::::::::::::: */

.btn {
    text-transform: uppercase;
    font-weight: 500;
}

@media(min-width:575px) {
    .btn:not(.btn-lg) {
        font-size: 1.125rem;
        padding: 12px 28px;
        border-radius: 10px;  
    }
}

.btn-lg {
    padding-left: 1.75em;
    padding-right: 1.75em;
}



.btn-primary {

    font-size: 14px;

    color: var(--white);

    background-color: var(--primary);

    padding: 10px 46px;

    font-weight: 500;

}





/*.input-group-lg>.btn,*/

.input-group-lg>.form-control,

.input-group-lg>.form-select,

.input-group-lg>.input-group-text {

    font-size: 0.75em;

    font-family: var(--body-font);

}

input.form-control{

    border: 1px solid #D9D9D9;

    padding: 18px;

    height: 60px;

    font-size: 14px;

    font-weight: 400;

    line-height: 24px;



}

input.form-control.error-class {

    border-color: red;

}

input.form-control::placeholder{

    font-size: 16px;

    font-weight: 500;

    line-height: 24px;

    color: #6C6C6C;

}

textarea.form-control{

    border: 1px solid #D9D9D9;

    padding: 18;

    font-size: 14px;

    font-weight: 400;

    line-height: 24px;

    height: 240px;

}

textarea.form-control::placeholder{

    font-size: 20px;

    font-weight: 400;

    line-height: 31px;

    color: #4E4747;

}

.form-control:focus{

    border: 3px solid var(--primary);

}

.form-check{

    display: flex;

    align-items: center;

    gap: 8px;

}

.form-check-input{

    width: 20px;

    height: 20px;

    margin-top: 0;

    border: 1px solid var(--black);

}

.form-check-input:checked{

    background-color: var(--primary);

    border-color: var(--primary);;

}



.input-group-with-icon{

    position: relative;

}



.input-group-icon-1{

    position: absolute;

    top: 0;

    bottom: 0;

    left: 10px;

    display: flex;

    align-items: center;

}

.input-group-icon-2{

    position: absolute;

    top: 0;

    bottom: 0;

    right: 14px;

    display: flex;

    align-items: center;

}

.input-group-with-icon i{

    font-size: 22px;

    color: var(--primary);

}

.input-group-with-box{

    display: flex;

    gap: 15px

}

.input-group-with-box input{

    font-size: 24px;

    font-weight: 400;

    line-height: 24px;

    padding: 5px 20px;

    text-align: center;



}

.form-check-inline{

    display: inline-block !important;

}

 form label{

    text-align: left;

    display: block;

    font-size: 16px;

    font-weight: 700;

    line-height: 24px;



}









.relative {

    position: relative;

}



.max-720 {

    max-width: 720px;

}



.max-790 {

    max-width: 790px;

}



.shadow-md {

  box-shadow: 0 0.125rem 1.5rem rgba(0, 0, 0, 0.075) !important;

}

.defult-font{font-family: var(--defult-font);}

.bold-text p{

    font-weight: 700 !important;

}

.sec-title{

    font-size: 40px;

    font-weight: 500;

    line-height: 60px;

}

.title-block{

    max-width: 650px;

    margin: 0 auto;

    text-align: center;

}



.primary-btn{

    font-size: 16px;

    font-weight: 500;

    line-height: 24px;

    padding: 18px 70px;

    color: var(--white);

    background-color: var(--primary);

    border: 1px solid var(--primary);

    box-shadow: 0px 4px 20px 0px #4340A066;

   

}
.banner-content .primary-btn{
     display: inline-block;
}

.primary-btn:hover{

    color: var(--primary);

    background-color: var(--white);

}



/* :::::::::::::::::::::::::::::::::::::::::::::

                    COMMON

::::::::::::::::::::::::::::::::::::::::::::: */



/* :::::::::::::::::::::::::::::::::::::::::::::

                HEADER-START

::::::::::::::::::::::::::::::::::::::::::::: */



.header{

    padding: 10px 0;

    position: fixed;

    left: 0;

    right: 0;

    z-index: 200;

}

.header.header-fixed{

    background-color: var(--black);

}

.header .navbar .navbar-nav{

    gap: 36px;

}

.header .navbar .nav-item{

    margin: 0 4px;

}

.header .navbar .nav-item a{

    font-family: var(--body-font);

    font-size: 14px;

    font-weight: 400;

    line-height: 21px;

    color: var(--white);

}

.header .navbar .nav-item.active a{

    color: var(--defult);

    font-weight: 700;

}

.header .navbar .nav-item:hover a{

    color: var(--defult);

}

/* :::::::::::::::::::::::::::::::::::::::::::::

                 HEADER-END

::::::::::::::::::::::::::::::::::::::::::::: */

/* :::::::::::::::::::::::::::::::::::::::::::::

                 BANNER-START

::::::::::::::::::::::::::::::::::::::::::::: */
.banner{
    overflow: hidden;
}

.main-banner{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 170px 0 82px;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.main-banner::before{
    content: url(../images/right-ar.svg);
    position: absolute;
    left: 0;
    top: 64px;
    z-index: -1;
}

.main-banner::after{
    content: url(../images/left-ar.svg);
    position: absolute;
    right: 0;
    top: 188px;
    z-index: -1;
}

.banner-content{
    display: flex;
    gap: 146px;
}

.banner-text{
    width: 50%;
}
.banner-text h1{
    font-size: 62px;
    font-weight: 600;
    line-height: 93px;
    color: var(--white);
}
.banner-text h2{
    font-size: 69px;
    font-weight: 600;
    line-height: 92px;
    color: var(--defult);
}

.banner-text h3{
    font-size: 82px;
    font-weight: 300;
    line-height: 103px;
    color: var(--white);
}

.banner-text p{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--white);
    margin: 35px 0 50px;
}

.banner-content .image{
    width: 50%;
    position: relative;
    z-index: 0;
}

.banner-content .image::before{
    content: url(../images/img-design.png);
    position: absolute;
    top: -50px;
    left: -50px;
}

.banner-content .image::after{
    content: url(../images/left-ar.svg);
    position: absolute;
    bottom: 180px;
    left: -123px;
    z-index: -1;
}
.banner-content .image img{
    border-radius: 50px;
}

.banner .down-bg{
    position: relative;
    min-height: 260px;
    
}

.banner .down-bg::before{
    content: url(../images/down-bg-left.png);
    position: absolute;
    left: -229px;
    /*top: -108px;*/
    top: -85px;
    max-width: 1300px;
    margin: 0 auto;
    right: 0;
}

.banner .down-bg::after{
    content: url(../images/Frame.png);
    position: absolute;
    right: 0;
    top: -228px;
}

.banner .down-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* :::::::::::::::::::::::::::::::::::::::::::::

                 BANNER-END

::::::::::::::::::::::::::::::::::::::::::::: */





/* :::::::::::::::::::::::::::::::::::::::::::::

                 ABOUT-START

::::::::::::::::::::::::::::::::::::::::::::: */

.about{
    background-color: #EFF2F9;
    position: relative;
}
.about:after{
    content: '';
    height: 60px;
    width: 60%;
    background: linear-gradient(90deg, #CFD4E7 0%, rgba(234, 237, 246, 0) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
}
.about .image{
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
}

.about-block-content{
    position: relative;
    padding: 161px 0 70px;
}

.about-block{
    position: absolute;
    left: 0;
    right: 0;
    top: -125px;
    background-color: var(--white);
    padding: 70px 60px;
}

.about-block ul{
    padding-left: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
}

.about-block ul li{
    display: flex;
    align-items: center;
    gap: 23px;
}

.about-block ul li .icon{
    width: 97px;
    height: 97px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-block ul li .text h3{
    font-size: 40px;
    font-weight: 600;
    line-height: 60px;
    margin-bottom: 10px;
}

.about-block ul li .text p{
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    margin-bottom: 0;
}

.about-content{
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 130px;
}

.about-content .image{
    width: 60%;
}


.about-content .image ul{

    display: flex;

    gap: 23px;

    list-style: none;

    padding-left: 93px;

}

.about-content .image ul li:nth-child(2){

    margin-top: 32px;

}

.about-content .about-text{

    width: 40%;

}

.about-content .about-text .icon{

    width: 67px;

    height: 67px;

    border-radius: 50%;

    background-color: var(--primary);

    display: flex;

    justify-content: center;

    align-items: center;

    margin-bottom: 28px;

}

.about-content .about-text h3{

    font-size: 20px;

    font-weight: 500;

    line-height: 30px;

    margin-bottom: 14px;

}

.about-content .about-text h2{

    margin-bottom: 24px;

}

.about-content .about-text p{

    font-size: 16px;

    font-weight: 400;

    line-height: 24px;

    color: #5E6681;

    margin-bottom: 50px;

}

.about-content .about-text .try-now-btn a{

    box-shadow: 0px 4px 20px 0px #4340A066;



}



/* :::::::::::::::::::::::::::::::::::::::::::::

                ABOUT-END

::::::::::::::::::::::::::::::::::::::::::::: */







/* :::::::::::::::::::::::::::::::::::::::::::::

            FIRST-DRIVING-START

::::::::::::::::::::::::::::::::::::::::::::: */



.first-driving{

    background-repeat: no-repeat;

    background-size: cover;

    background-position: center;

    padding: 78px 0 82px;

    position: relative;

}

.first-driving::before{

    content: url(../images/right-ar.svg); 

}



.first-driving-content{

    position: relative;

}

.first-driving-content::after{

    content: url(../images/mid-ar.png);

    position: absolute;

    right: 0;

    top: 0;

}

.first-driving .title-block{

    text-align: center;

    color: var(--white);

}

.first-driving .title-block h2{

    margin-bottom: 21px;

}



.first-driving-slide{

    margin-top: 80px;

}

.first-driving-slide .block{

    background-color: var(--white);

    padding: 49px 26px 28px 26px;

    text-align: center;

    margin: 0 32px;

}

.first-driving-slide .block .icon{

    width: 88px;

    height: 88px;

    margin: 0 auto;

    border-radius: 50%;

    background-color: var(--primary);

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 27px;

}

.first-driving-slide .block h3{

    font-size: 24px;

    font-weight: 500;

    line-height: 36px;

    margin-bottom: 24px;

}

.first-driving-slide .block p{

    font-size: 14px;

    font-weight: 400;

    line-height: 21px;

    margin-bottom: 24px;

}

.first-driving-slide .block .readmore-btn a{

    font-size: 18px;

    font-weight: 500;

    line-height: 27px;

}

.first-driving-slide .block.slick-current.slick-active.slick-center{

    margin-top: 68px;

}

.first-driving-slide .slick-dots{

    bottom: -68px;

    text-align: right;

}

.first-driving-slide .slick-dots li button{

    font-size: 16px;

    font-weight: 400;

    line-height: 24px;

    color: var(--black);

}

.first-driving-slide .slick-dots li.slick-active{

    margin-right: 36px;

}

.first-driving-slide .slick-dots li.slick-active button::before{

    width: 40px;

    height: 1px;

    top: 16px;

    left: 15px;

    color: transparent;

    background-color: var(--black);



}

.first-driving-slide .slick-dots li:last-child.slick-active button::before{

    display: none;

}



/* :::::::::::::::::::::::::::::::::::::::::::::

            FIRST-DRIVING-END

::::::::::::::::::::::::::::::::::::::::::::: */







/* :::::::::::::::::::::::::::::::::::::::::::::

            WHY-CHOOSE-US-START

::::::::::::::::::::::::::::::::::::::::::::: */



.why-choose-us{

    background-color: #EFF2F9;

}

.why-choose-us-content{

    position: relative;

    padding: 56px 0 202px;

}

.why-choose-us .title-block{

    text-align: center;

}

.why-choose-us .title-block h2{

    margin-bottom: 24px;

}

.why-choose-us .title-block p{

    font-size: 14px;

    font-weight: 400;

    line-height: 21px;

}

.why-choose-us-boxes{

    display: flex;

    gap: 54px;

    margin-top: 60px;

}

.why-choose-us-boxes .block{

    text-align: center;

    width: 25%;

}

.why-choose-us-boxes .block .icon{

    margin-bottom: 27px;

}

.why-choose-us-boxes .block h3{

    font-size: 24px;

    font-weight: 500;

    line-height: 36px;

    text-transform: lowercase;

    margin-bottom: 20px;

}

.why-choose-us-boxes .block h3::first-letter{

    text-transform: capitalize;

}

.why-choose-us-boxes .block p{

    font-size: 14px;

    font-weight: 400;

    line-height: 21px;

}



.schedule{

    background-color: var(--defult);

    padding: 39px 39px 39px 130px;

    display: flex;

    align-items: center;

    gap: 73px;

    position: absolute;

    right: 0;

    left: 0;

    bottom: -129px;

}

.schedule .image{

    width: 13%;

}

.schedule .icon{

    width: 143px;

    height: 143px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background-color: var(--white);

}

.schedule .text{

    width: 87%;

}

.schedule h3{

    font-size: 40px;

    font-weight: 500;

    line-height: 60px;

    margin-bottom: 4px;

}

.schedule p{

    font-size: 20px;

    font-weight: 500;

    line-height: 30px;

    color: #5C5C5C;

    margin-bottom: 30px;

}

.schedule h4 a{

    font-size: 40px;

    font-weight: 500;

    line-height: 60px;

    color: var(--black);



}



/* :::::::::::::::::::::::::::::::::::::::::::::

            WHY-CHOOSE-US-END

::::::::::::::::::::::::::::::::::::::::::::: */







/* :::::::::::::::::::::::::::::::::::::::::::::

            OUR-GALLERY-START

::::::::::::::::::::::::::::::::::::::::::::: */





.our-gallery{

    padding: 203px 0 86px;

    background-color: var(--black);

}

.our-gallery .title-block{

    text-align: center;

    position: relative;

    color: var(--white);

    max-width: 100%;

}

.our-gallery .title-block h6{

    position: absolute;

    right: 0;

    top: 50%;

}

.our-gallery .title-block h6 a{

    color: var(--white);

    display: flex;

    align-items: center;

}

.our-gallery .title-block h6 a i{

    margin-left: 5px;

}





.gallery {
    /*display: grid;
    grid-gap: 20px;   
    margin-top: 40px;*/
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 20px;
  }

  .gallery .image {
    /*grid-row: 2 / 3;
    min-height: 100px;*/
}

    

/*    .gallery .image:first-child {
      grid-row: 1;
      grid-column: 1;
    }

    .gallery .image:nth-child(2) {
      grid-row: 2;
      grid-column: 1;
    }

    .gallery .image:nth-child(3){
      grid-column: 2;
      grid-row: 1 / 3;
    }

    .gallery .image:nth-child(4) {
      grid-row: 1;
      grid-column: 3;
    }

    .gallery .image:nth-child(5){
      grid-row: 1;
      grid-column: 4;
    }

    .gallery .image:nth-child(6) {
      grid-row: 2;
      grid-column: 3/5;
    }*/

  



/* :::::::::::::::::::::::::::::::::::::::::::::

                OUR-GALLERY-END

::::::::::::::::::::::::::::::::::::::::::::: */





/* :::::::::::::::::::::::::::::::::::::::::::::

            OUR-PACKAGES-START

::::::::::::::::::::::::::::::::::::::::::::: */
.our-Packages{
    padding: 53px 0 64px;
    background-color: #FEC671;
    position: relative;
    z-index: 0;
}

.our-Packages::before{
    content: url(../images/left-design.png);
    position: absolute;
    left: 0;
    z-index: -1;
}

.package-boxes{
    display: flex;
    gap: 29px;
    margin: 53px 0 60px;
}

 .package-box{
    width: 33%;
    background-color: var(--white);
}

.package-box .title{
    background-color: #EFF2F9;
    padding: 30px 0;
    text-align: center;
}

.package-box .title h3{
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    color: var(--black);
    margin: 0;
}

.package-box .package-box-content{
    padding: 16px 40px 40px 40px;
}

.package-box .package-box-content h4{
    font-size: 54px;
    font-weight: 600;
    line-height: 81px;
    color: var(--primary);
    text-align: center;
    margin: 0;
}

.package-box .package-box-content h4 span{
    font-size: 21px;
    font-weight: 600;
    line-height: 32px;
}

.package-box .package-box-content h5{
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: center;
    color: #5E6681;
    min-height: 21px;
    margin: 0;
}

.package-box .package-box-content ul{
    margin-top: 28px;
    padding-top: 35px;
    border-top: 1px solid var(--black);
    list-style: none;
    padding-left: 0;
}

.package-box .package-box-content ul li{
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #5E6681;
    margin-bottom: 24px;
    position: relative;
}

.package-box .package-box-content ul li::before{
    content: url(../images/check.svg);
    padding-right: 20px;
    position: relative;
    top: 3px;
}

.package-box .package-box-content ul li:last-child{
    margin-bottom: 0;
}

.our-Packages .start-btn a{
    padding: 18px 160px;
}

/* :::::::::::::::::::::::::::::::::::::::::::::

            OUR-PACKAGES-END

::::::::::::::::::::::::::::::::::::::::::::: */

/* :::::::::::::::::::::::::::::::::::::::::::::

               FOOTER-START

::::::::::::::::::::::::::::::::::::::::::::: */

.upper-footer{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 89px 0 109px;
}



.upper-footer-content{

    display: flex;

    gap: 146px;

}

.upper-footer-content .left-block{

    width: 50%;

}

.upper-footer-content .contact-block{

    width: 50%;

}

/*.upper-footer-content .left-block p{

    font-size: 22px;

    font-weight: 400;

    line-height: 33px;

    color: var(--white);

    margin-right: 40px;

}*/

.upper-footer-content .left-block p {
    font-size: 22px;
    font-weight: 400;
    line-height: 33px;
    color: var(--white);
    margin-right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.upper-footer-content .left-block form{
    margin-top: 42px;
    gap: 14px;
    flex-direction: column;
}

.upper-footer-content .left-block form input{
    max-width: 370px;
    border-radius: 60px;
    padding: 20px 29px;
}

.upper-footer-content .left-block form input::placeholder{
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #6C6C6C;
}

.upper-footer-content .left-block form button{

    font-size: 16px;

    font-weight: 500;

    line-height: 24px;

    padding: 18px 26px;

    background-color: var(--defult);

    color: var(--black);

    border-radius: 60px;

    border: none;

}

.upper-footer-content .footer-title{

    font-size: 46px;

    font-weight: 500;

    line-height: 54px;

    color: var(--white);

    margin-bottom: 27px;

}



.upper-footer-content .contact-block .contact-block-content{

    display: flex;

    gap: 38px;

}

.upper-footer-content .contact-block .contact-block-content .block h4{

    font-size: 18px;

    font-weight: 600;

    line-height: 31px;

    color: var(--white);

    margin-bottom: 16px;



}

.upper-footer-content .contact-block .contact-block-content .block ul{

    list-style: none;

    padding-left: 0;

}

.upper-footer-content .contact-block .contact-block-content .block ul li{

    font-size: 16px;

    font-weight: 400;

    line-height: 31px;

    color: var(--white);

    margin-bottom: 10px;

    display: flex;

    align-items: baseline;

}

.upper-footer-content .contact-block .contact-block-content .block ul li a{

    display: flex;

    align-items: baseline;

    font-size: 16px;

    font-weight: 400;

    line-height: 31px;

    color: var(--white);



}

.upper-footer-content .contact-block .contact-block-content .block ul li i{

    font-size: 20px;

    margin-right: 10px;

}



.bottom-footer{

    background-color: var(--black);

    padding: 32px 0 20px;

}

.bottom-footer ul.footer-menu{

    list-style: none;

    padding: 0 110px;

    display: flex;

    justify-content: space-between;

    padding-bottom: 32px;

    border-bottom: 1px solid #8E8E8E;

}

.bottom-footer ul.footer-menu li a{

    font-size: 16px;

    font-weight: 400;

    line-height: 24px;

    color: var(--white);

}

.bottom-footer .bottom-footer-content{

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    padding: 27px 30px 0 30px;

}

.bottom-footer .bottom-footer-content .block h6{

    font-size: 12px;

    font-weight: 400;

    line-height: 31px;

    color: #8E8E8E;

    margin-top: 9px;



}

.bottom-footer .bottom-footer-content .social-icons{

    padding-left: 0;

    list-style: none;

    display: flex;

    gap: 11px;

}

.bottom-footer .bottom-footer-content .social-icons li a{

    width: 26px;

    height: 26px;

    border-radius: 50%;

    background-color: var(--defult);

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    color: #000;

}

.bottom-footer .bottom-footer-content .social-icons li{

    color: #000;

}

/* :::::::::::::::::::::::::::::::::::::::::::::

                FOOTER-END

::::::::::::::::::::::::::::::::::::::::::::: */





/* :::::::::::::::::::::::::::::::::::::::::::::

            INNER-BANNER-START

::::::::::::::::::::::::::::::::::::::::::::: */



.inner-banner{

    background-position: center;

    background-repeat: no-repeat;

    background-size: cover;

    height: 450px;

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;

}

.inner-banner .main-title{

    font-size: 62px;

    font-weight: 600;

    line-height: 93px;

    color: var(--white);

}



/* :::::::::::::::::::::::::::::::::::::::::::::

            INNER-BANNER-END

::::::::::::::::::::::::::::::::::::::::::::: */









/* :::::::::::::::::::::::::::::::::::::::::::::

            CONTACT-PAGE-START

::::::::::::::::::::::::::::::::::::::::::::: */



.contact-info{

    padding: 60px 0;

    background-color: #EFF2F9;

}

.contact-details{
    display: flex;
    margin-top: 70px;
    justify-content: center;
}

.contact-details .contact-form {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e9e9e9;
}

.contact-details .contact-form h4{

    font-size: 18px;

    font-weight: 400;

    line-height: 31px;

}

.contact-details .contact-form .submit-btn{

    text-align: center;

}

.contact-details .contact-address{

    width: 50%;

    overflow: hidden;

}

.contact-details .contact-address iframe{

    width: 100%;

    height: 100%;

    

}





/* :::::::::::::::::::::::::::::::::::::::::::::

            CONTACT-PAGE-END

::::::::::::::::::::::::::::::::::::::::::::: */





/* :::::::::::::::::::::::::::::::::::::::::::::

            PACKAGE-PAGE-END

::::::::::::::::::::::::::::::::::::::::::::: */



.package-content{

    padding: 60px 0;

}

.pacakage-content-box{

    display: flex;

    gap: 130px;

}

.pacakage-content-box .image{

    width: 40%;

}

.pacakage-content-box .image img{

    width: 100%;

    box-shadow: 0px 4px 20px 0px #4340A066;



}

.pacakage-content-box .text{

    width: 60%;

}

.pacakage-content-box .text p{

    font-size: 16px;

    font-weight: 400;

    line-height: 24px;

    letter-spacing: 0em;

    text-align: left;

    color: #5E6681;

    margin-bottom: 20px;

}



/* :::::::::::::::::::::::::::::::::::::::::::::

            PACKAGE-PAGE-END

::::::::::::::::::::::::::::::::::::::::::::: */





/* :::::::::::::::::::::::::::::::::::::::::::::

            GALLERY-PAGE-START

::::::::::::::::::::::::::::::::::::::::::::: */

.our-gallery.innerarea{
    background-color: #EFF2F9;
    padding: 40px 0; 
}

.our-gallery.innerarea .sec-title{

    color: var(--black);

}

.sl-overlay{

    background: #000;

    opacity: 0.9 !important;

}

.sl-wrapper .sl-navigation button{

    color: #fff;

}

.sl-wrapper .sl-close{

    color: #fff;

}





/* :::::::::::::::::::::::::::::::::::::::::::::

            GALLERY-PAGE-END

::::::::::::::::::::::::::::::::::::::::::::: */

form[data-status="invalid"] .wpcf7-response-output{
    color: #dc3232;
}
form[data-status="sent"] .wpcf7-response-output{
    color: #46b450;
}
