* {
    font-family: "Urbanist", sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

h2 {
    font-size: 36px;
    color: black;
    line-height: 42px;
    padding-bottom: 25px;
}


header {
    background-color: #ffffff;
    /* border-bottom: 1px solid #e9e9e9; */
}

.global-header-wrapper {

    width: auto;
    height: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.global-logo {
    max-width: 93px;
    cursor: pointer;
}

.global-logo a>img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.global-menus {
    width: auto;
}

.global-menus ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    width: auto;
    align-items: center;
    justify-content: space-between;
    list-style: none;
}

.global-menus ul li {
    padding: 5px 25px 5px 30px;
    padding-right: 25px;
}

.global-menus ul li:hover a {
    color: #00747b;

}

.global-menus ul a {
    text-decoration: none;
    color: black;
}



/* .global-hamber a:last-child {
    border: none;
    padding: 10px 50px;
    background: linear-gradient(-100deg, #0e6e74, #2f9087);
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    position: relative;
} */

/* .global-hamber a:last-child::after {
    position:absolute;
    content:"\2192";
    right: 0;
    top:10px;
    font-size: 18px;

} */

.global-hamber a:first-child {
    display: none;
    text-decoration: none;
    color: black;
}

.global-hamber {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}




/* home banner ............................................................ */


.global-banner .container-fluid {
    padding-inline: 0 !important;
    margin-inline: 0 !important;
}

.global-banner .row {
    width: 100%;
    padding-inline: 0;
    margin-inline: 0;
}

.global-banner-imgDiv {
    width: 100%;
    height: 100%;
    height: 540px;

}

.global-banner-imgDiv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-div {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-div::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #0000001a;
}

.video-div video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.global-banner video{
    opacity:0;
    transition:opacity 1s ease-in-out;
}
.global-banner video.fade-in {
opacity:1;

}





.global-banner .col-md-12 {
    position: relative;
    padding-inline: 0;
    margin-inline: 0;
}

.global-content-div {
    max-width: 1320px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    margin: auto;
    padding-inline: 12px;
    display: none;
}

.global-content-div>h1 {
    color: #fff;
    text-align: left;
    font-size: 65px;
    line-height: 70px;
    padding-bottom: 15px;
    width: fit-content;
}

.global-content-div>h1 span {
    display: block;
}

.global-content-div>p {
    font-size: 18px;
    color: #fff;
    text-align: left;
    width: fit-content;
    padding-bottom: 8px;
}

.global-content-div>p span {
    display: block;
}

.common-btn {
    border: none;
    padding: 10px 35px;
    background: linear-gradient(-100deg, #00747b, #348b83);
    border-radius: 25px;
    text-decoration: none;
    color: #fff;
    position: relative;
    display: flex;
    width: fit-content;
    gap: 30px;
    align-items: center;
    z-index: 999;
}

.common-btn span {
    width: 12px;
    height: 12px;
    display: flex;
}

.common-btn span>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
    transform: rotate(0deg);
    backface-visibility: hidden;
    transform-style: preserve-3d;
    -webkit-font-smoothing: antialiased;
    -webkit-transform: translateZ(0);
}

.common-btn:hover span>img {
    transform: rotate(42deg);
}

.common-btn:hover {
    background: linear-gradient(to right, #131313, #76ddd4);
}


/* home 2nd about section .................................................................................... */


.home-about {
    padding-block: 40px;
    background: #f9f9f9;
}

.home-about .container>.row {
    width: 90%;
    margin-inline: auto;
}

.home-about .col-md-12 {
    width: 100%;
}

.home-about-box1 {
    position: relative;
}

.home-about-b1 {
    position: relative;
}

.home-about-b1>div {

    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;


}

.home-about-b1>div h6 {
    font-size: 16px;
    color: #000;
    position: relative;
    padding-left: 30px;
    width: 35%;
    padding-right: 40px;
}

.home-about-b1>div h6::before {

    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    background: url(../images/vision-icon.svg) no-repeat;
    width: 13px;
    height: 17px;
    background-size: contain;
    filter: invert(1);
}

.home-about-b1>div h2 {
    color: #6f6f6f;
    font-size: 36px;
    width: 65%;
    line-height: 42px;
    padding-bottom: 20px;
}

.home-about-b1>div h2 span {
    color: black;
}



.home-about-b2 {

    width: 65%;
    margin-left: auto;
    max-height: 450px;
    margin-top: 35px;
}

.home-about-b2 img {
    width: 100%;
    object-fit: cover;
    border-radius: 13px;
}

.home-about-b1>p {
    color: #8b8b8b;
    width: 65%;
    margin-left: auto;
    margin-bottom: 0;
}

.home-about-b1>a {

    position: absolute;
    left: 0;
    bottom: 0;
}


/* home 3nd section .................................................................................... */

.home-service {
    width: 100%;

    max-width: 100%;
    margin-inline: auto;
    padding-top: 30px;
    padding-bottom: 50px;
    background: #f9f9f9;
}

.home-service .row {
    width: 90%;
    margin-inline: auto;
}

.home-service-div {
    border: 1px solid #e6e6e6;
    padding: 15px 0 0 0;
    border-radius: 10px;
    background: #fff;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    overflow: hidden;
}

/* .home-service .col-md-4>a{

    padding: 0;
    margin: 0;
    border:1px solid red;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
} */

.home-service-div>span>img {
    width: 100%;
    /* height: 41px; */
    object-fit: cover;
}

.home-service-div>span {
    display: flex;
    max-width: 65px;
    max-height: 41px;
    align-items: center;
    justify-content: center;
    padding: 0 10px 0 15px;
}

.home-service-div>div img {}

.home-service-div>img {
    width: 100%;
    max-width: 415px;
    max-height: 172px;
    object-fit: cover;
    margin-top: auto;
    height: 12vw;
}

.home-service-div>a {
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #262626;
    padding-bottom: 4px;
    margin-bottom: 24px;
    width: fit-content;
    margin: 20px 10px 20px 15px;
    margin-top: auto;

}

.home-service-div>a img {
    display: inline-block;
    transition: transform 0.4s ease-in-out;
    transform: rotate(0deg);
    will-change: transform;
}

.home-service-div>a:hover img {

    transform: rotate(44deg);
}

.home-service-div>a>span {
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-service-div>a>span img {
    width: 100%;
    filter: invert(1);
}

.home-service h2 {
    font-size: 40px;
    color: black;
    margin-bottom: 15px;
}

.home-service p {
    color: #8b8b8b;
    line-height: 20px;
    padding: 10px 10px 10px 15px;
}

.home-service h6 {

    color: black;
    padding: 15px 10px 25px 15px;
    font-size: 18px;
    font-weight: 500;
}



/* home 4nd vision section .................................................................................... */

.home-vision {
    width: 100%;
    background-color: #2a8b83;
    padding-block: 90px;
}

.home-vision .row {
    width: 90%;
    margin-inline: auto;
    margin-bottom: 65px;
    margin-top: 0;
}

.home-vision .col-md-6 {
    margin-top: 0;
}

.home-vision .row:last-child {
    margin-bottom: 0;
}

.home-vision-right-img {
    max-width: 630px;
    height: 300px;
}

.home-vision-right-img img {

    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.home-vision-left-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    text-align: left;
    padding-right: 25px;
}

.home-vision-left-content h6 {
    position: relative;
    color: #fff;
    font-weight: 300;
    font-size: 16px;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding-bottom: 15px;
    padding-left: 30px;
}

.home-vision-left-content h6::before {

    position: absolute;
    content: "";
    background: url('../images/vision-icon.svg');
    left: 0;
    top: 1px;
    background-size: 100%;
    width: 14px;
    height: 17px;
}


.home-vision-left-content h4 {
    position: relative;
    color: #fff;
    font-weight: 400;
    font-size: 28px;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding-bottom: 15px;
}


.home-vision-left-content p {
    position: relative;
    color: #fff;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding-bottom: 15px;
}

.home-vision-right-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    text-align: left;
    padding-left: 45px;

}



.home-vision-right-content h6 {
    position: relative;
    color: #fff;
    font-weight: 300;
    font-size: 16px;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding-bottom: 15px;
    padding-left: 30px;
}

.home-vision-right-content h6::before {

    position: absolute;
    content: "";
    background: url('../images/vision-icon.svg');
    left: 0;
    top: 1px;
    background-size: 100%;
    width: 14px;
    height: 17px;
}


.home-vision-right-content h4 {
    position: relative;
    color: #fff;
    font-weight: 400;
    font-size: 28px;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding-bottom: 15px;
}


.home-vision-right-content p {
    position: relative;
    color: #fff;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding-bottom: 15px;
}


/* home 5nd objective section .................................................................................... */

.home-object {
    padding-block: 50px;
    background: #f9f9f9;
}

.home-object .container .row {
    width: 90%;
    margin-inline: auto;
}

.home-object-content {
    height: 100%;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.home-object-content h6 {
    color: #000;
    font-weight: 400;
    font-size: 16px;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding-bottom: 20px;
    padding-left: 30px;
    position: relative;

}

.home-object.about-page {
    background: #f9f9f9;
}

.home-object-content h6::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    background: url(../images/vision-icon.svg) no-repeat;
    width: 13px;
    height: 17px;
    background-size: contain;
    filter: invert(1);
}

.home-object-content h2 {
    font-size: 36px;
    color: black;
    line-height: 42px;
    padding-bottom: 25px;
}

.home-object-content h2>span {
    color: #8b8b8b;
}

.home-object-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
    margin-bottom: 35px;
}

.home-object-content ul li {
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    color: #8b8b8b;
    margin-bottom: 10px;
}

.home-object-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    background: url(../images/vision-icon.svg) no-repeat;
    width: 13px;
    height: 15px;
    background-size: contain;
    filter: invert(1);
}

.home-object.about-page ul li {
    position: relative;
}

.home-object.about-page ul li::after {
    content: "\25CF" !important;
    position: absolute;
    left: 0px;
    top: -5px;
    font-size: 20px;
    color: black;
    width: 0;
}

.home-object.about-page ul li::before {
    display: none;
}

.home-object.about-page ul {
    margin-bottom: 0;
}

.home-object.about-page p {
    padding-bottom: 0px;
}

.home-object-content p {
    color: #8b8b8b;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    /* padding-bottom: 15px; */
}

.home-object-imgDiv>img {
    max-height: 682px;
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}


.commomn-btn2 {
    border: none;
    padding: 10px 35px;
    background: linear-gradient(-100deg, #000000, #000000);
    border-radius: 25px;
    text-decoration: none;
    color: #fff;
    position: relative;
    display: flex;
    width: fit-content;
    gap: 30px;
    align-items: center;
    z-index: 999;
}

.commomn-btn2 span {
    width: 12px;
    height: 12px;
    display: flex;
}

.commomn-btn2 span>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
    transform: rotate(0deg);
    backface-visibility: hidden;
    transform-style: preserve-3d;
    -webkit-font-smoothing: antialiased;
    -webkit-transform: translateZ(0);
}

.commomn-btn2:hover span>img {
    transform: rotate(42deg);
}

.commomn-btn2:hover {
    background: linear-gradient(to right, #131313, #76ddd4);
}




/* about2 object.................................................................  */




.home-object.about-two-obj h6 {}


.home-object.about-two-obj li {
    position: relative;
    padding-left: 25px;
}

.home-object.about-two-obj li::before {
    display: none;
}

.home-object.about-two-obj li::after {
    content: "\25CF" !important;
    position: absolute;
    left: 0px;
    top: -5px;
    font-size: 20px;
    color: black;

}





/* home form section............................................................. */

.home-testi {
    padding-block: 60px;
    background: #f9f9f9;
}

.home-form {
    padding-block: 60px;
    background: #f9f9f9;
}

.home-form .container .row {
    width: 90%;
    margin-inline: auto;
}

.home-form-imgDiv {
    width: 100%;
    height: 100%;
}

.home-form-imgDiv img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    height: 100%;
}

.form-ipsDiv {
    padding: 30px 30px 33px 40px;
    background: #248581;
    height: 100%;
    border-radius: 0px 10px 10px 0px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

.form-ipsDiv h2 {
    font-size: 36px;
    color: #fff;
    line-height: 42px;
    padding-bottom: 25px;
    text-align: left;
}

.home-testi h2:first-child {
    padding-bottom: 3px;
}

.form-ipsDiv h2 span {
    display: block;
}

.form-ipsDiv p {
    color: #fff;
    width: 100%;
    padding-bottom: 15px;
    text-align: left;
    max-width: 400px;
}

.form-ipsDiv p span {
    display: block;
}

.home-form .col-md-5 {

    padding-right: 0;
}

.home-form .col-md-7 {

    padding-left: 0;
}

.form-ipsDiv .form {

    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.form-ipsDiv .form div {

    width: 46%;
    margin-right: 4%;
    display: flex;
    margin-bottom: 20px;
    flex-direction: column;
}

.form-ipsDiv .form div:nth-last-of-type(1) {
    width: 96%;
}

.form-ipsDiv form div:nth-child(2n) {

    margin-right: 0;
}

.form-ipsDiv .form label {

    color: #fff;
    margin-bottom: 4px;
    text-align: left;
}

.form-ipsDiv .form input,
.form-ipsDiv .form textarea {

    height: 30px;
    border: 0;
    border-bottom: 1px solid #fff;
    background: #248581;
    color: #fff;
    outline: none;
}

.form .commomn-btn2 {

    margin-top: 25px;
    background: #fff;
    color: #000;
}

.form .commomn-btn2 img {

    filter: invert(1)
}

.form .commomn-btn2:hover {

    /* background-color: #000; */
    color: #fff;
    background: linear-gradient(to right, #131313, #76ddd4) !important;
}

.form .commomn-btn2:hover img {

    filter: invert(0)
}

.custom-dropdown-wrapper-form {
    position: relative;
    width: 100%;

}


.custom-dropdown-wrapper-form {
    width: 100% !important;
    border-bottom: 1px solid #fff;
    height: 30px;
    margin-right: 0 !important;
}

.contact-drope-form {
    width: 100% !important;
    border: 0;
    padding: 0;
    color: #fff;
    cursor: pointer;
    background: rgba(255, 255, 255, 0);
    margin-bottom: 0 !important;
    margin-right: 0 !important;
    min-height: 20px;
}







.dropdown-options-form {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid #e6e6e6;
    border-top: none;
    position: absolute;
    width: 100%;
    background: white;
    z-index: 10;
    display: none;
    max-height: 200px;
    overflow-y: auto;
    top: 30px;
}

.dropdown-options-form li {
    padding: 10px;
    cursor: pointer;
}

.dropdown-options-form li:hover {
    background: #f0f0f0;
}


/* testimonial page css.............................................. */




.home-testi-box {

    margin-top: 35px;

}

.home-testi .row {
    width: 90%;
    margin-inline: auto;
}


.home-testi-div {

    border: 1px solid #e7e7e7;
    border-radius: 10px;
    padding: 15px;
    background: #ffff;
}

.home-testi-box {

    margin-top: 30px;
}

.home-testi-div>div {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 15px;
    margin-bottom: 10px;
}

.home-testi-div p {
    color: #8b8b8b;
    padding-top: 10px;
    padding-bottom: 3px;
}

.home-testi-div h6 {

    color: #000;
    padding-top: 10px;
    font-size: 16px;

}

.home-testi-div.slick-slide {

    margin-right: 20px;
}

.home-testi-box {
    margin-top: 40px !important;
    position: relative;
}


.home-testi-box .slick-prev {
    left: -25px;
    border: 1px solid #339589;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    position: absolute;
    top: -84px;
    right: 80px;
    left: auto;
    background: #339589;
    font-size: 0 !important;
    opacity: 1 !important;
    display: flex;
    align-items: center;
    justify-content: center;

}

.home-testi-box .slick-next {
    left: -25px;
    border: 1px solid #339589;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    position: absolute;
    top: -84px;
    right: 30px;
    left: auto;
    background: #339589;
    font-size: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-testi-box .slick-prev:before {
    content: "";
    position: absolute;
    width: 14px;
    height: 15px;
    background-size: 100% !important;
    top: 11px;
    background: url(../images/left-arrow.svg) no-repeat;
    z-index: 999;
}

.home-testi-box .slick-next::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 15px;
    background-size: 100% !important;
    top: 11px;
    background: url(../images/right-next.svg)no-repeat;
    z-index: 999;
}

.home-testi-box .slick-next:hover {
    background: black !important;
    border: 1px solid black !important;

}

.home-testi-box .slick-prev:hover {
    border: 1px solid black !important;
    background: black !important;
}

.home-testi-box .slick-next:focus {
    background: #248581 !important;
    border: 1px solid #0e5856 !important;
}

.home-testi-box .slick-prev:focus {
    background: #248581 !important;
    border: 1px solid #0e5856 !important;
}


.home-testi h2 {

    font-size: 36px;
    color: #000;
    line-height: 42px;
    padding-bottom: 0;
}

.home-testi h2 span {

    color: #8b8b8b;
}






/* footer css........................................................ */


footer {

    background: black;
}

.footer-co1 {

    /* border: 1px solid blue; */

}

footer .row div:first-child .footer-co1{
    padding-right: 20px;
     /* border: 1px solid blue; */
} 


.footer-co1 h5 {

    color: #00747b;
    font-size: 16px;
    margin-bottom: 12px;
}


.footer-co1 ul {
    padding: 0;
    margin: 0;
    list-style: none;
}


.footer-co1 ul li {

    margin-bottom: 8px;
}

.footer-co1 ul li a {
    text-decoration: none;
    color: #fff;
    text-align: left;
    font-size: 15px;
}

.footer-co1 ul li a:hover {

    color: #00747b;
}


footer .row:nth-of-type(1) {

    padding-block: 40px;
}

footer .copy .row {
    padding-block: 0 !important;

}

.copy {

    padding-block: 20px;
    border-top: 1px solid rgb(143, 143, 143);
}

.copy p {
    color: #fff;
    text-align: left;
    margin: 0;
    font-size: 15px;
}

.footer-co1>a {

    width: 93px;
    margin-bottom: 25px;
    display: flex;
}

.footer-co1>a img {

    width: 100%;

}

.footer-co1 h4 {

    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
}

.footer-co1 h4 span {

    color: #00747b;
}

.footer-co1 input {

    border: 1px solid #e7e7e7;
    height: 35px;
    border-radius: 5px;
    width: 100%;
    position: relative;
    padding-inline: 10px;
    background-color: #fff;
    padding-right: 34px;
}

.footer-co1 input {

    background: #fff url(../images/arrow-black.svg) right no-repeat;
    background-size: 14px;
    background-position-x: 95%;
    color: #000;
    /* filter: invert(1); */
}

.footer-add {

    cursor: default;
    /* word-break: break-all; */
    word-break: break-word;
    white-space: normal;
}




/* about page style ........................................................................... */


.about-page-counter {
    padding-top: 35px;
    padding-bottom: 15px;
    background: #f9f9f9;
}


.about-page-counter .row {
    width: 90%;
    margin-inline: auto;
}

.about-page-counter-text h6 {
    color: #000;
    font-weight: 400;
    font-size: 16px;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.about-page-counter-text h6::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    background: url(../images/vision-icon.svg) no-repeat;
    width: 13px;
    height: 17px;
    background-size: contain;
    filter: invert(1);
}

.about-page-counter-text h2 {
    font-size: 36px;
    color: black;
    line-height: 42px;
    padding-bottom: 25px;
}

.about-page-counter-text h2 span {

    color: #8b8b8b;
}

.about-page-counter-text {
    padding-right: 15px;
}


.about-page-counter-text p {
    color: #8b8b8b;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding-bottom: 15px;
}

.about-page-num {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.about-page-num>div {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 48%;
    /* border: 1px solid #d9d9d9; */
    border-radius: 5px;
    background-color: #fff;
}

.about-page-num>div div {}

.about-page-num>div div h2 {
    font-size: 60px;
    color: black;
    font-weight: 600;
    padding-bottom: 4px;
    text-align: center;
    width: 100%;
}

.about-page-num>div div p {
    color: #8b8b8b;
    text-align: center;
    width: 100%;
}


.meet-our-team {

    padding-top: 50px;
    padding-bottom: 50px;
    background: #f9f9f9;
}

.meet-our-team .row {
    width: 90%;
    margin-inline: auto;
    background: #000;
    border-radius: 10px;
    padding: 25px 25px;
    justify-content: center;
}

.meet-our-team .row+div {
    width: 100%;
}

.meet-our-team .row h2 {
    color: #fff;
    font-size: 36px;
    text-align: left;
    padding-top: 13px;
    padding-bottom: 25px;
    max-width: 400px;
    width: 100%;
}

.meet-our-team .row h2 span {
    color: #919191;
}

.meet-our-team .row h6 {
    color: #fff;
    font-size: 16px;
    padding-left: 30px;
    position: relative;

}

.meet-our-team .row h6::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    background: url(../images/green-icon.png) no-repeat;
    width: 13px;
    height: 17px;
    background-size: contain;


}

.meet-our-team .col-md-4>div {
    width: 100%;
    margin-top: 10px;
}

.meet-our-team .col-md-4>div p:first-child {
    color: #fff;
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 4px;
}

.meet-our-team .col-md-4>div p:last-child {
    color: #919191;
    font-weight: 300;
    margin-bottom: 0;
}

.meet-our-team .col-md-4>img {
    max-height: 350px;
    object-fit: cover;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-position: top;
}

.meet-our-team .col-md-4 {
    height: 100%;
}


/* unique facility page........................................ */


.unique-facility {
    padding-top: 50px;
    padding-bottom: 50px;
    background: #f9f9f9;
}

.unique-facility .row:last-child {
    width: 90%;
    margin-inline: auto;
    background: #fff;
    border-radius: 8px;
}

.unique-facility .row:last-child .col-md-4>div {
    border-radius: 8px;
    /* border: 1px solid #e5e5e5; */
    padding: 25px;
}

.unique-facility .row:last-child .col-md-4>div>img {

    max-width: 50px;
    height: 50px;
    object-fit: cover;
}

.unique-facility .row:last-child .col-md-6>div {
    border: 1px solid #dbdbdb;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    flex-direction: column;

}

.unique-facility .row:last-child .col-md-6>div>*:last-child {
    padding-bottom: 0;
    margin-bottom: 0
}

.unique-facility .row:last-child .col-md-6>div h6 {
    color: black;
    padding-top: 0px;
    padding-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-left: 25px;

}

.unique-facility .row:last-child .col-md-6>div p {
    display: flex;
    color: #8b8b8b;
    line-height: 20px;
    margin-top: auto;
}

.unique-facility .row:last-child .col-md-6>div ul {
    list-style: none;
    padding-left: 0;

}

.unique-facility .row:last-child .col-md-6>div ul li {
    position: relative;
    padding-left: 25px;
    color: #8b8b8b;
    line-height: 22px;
    margin-bottom: 3px;
}

.unique-facility .row:last-child .col-md-6>div ul li::before {

    content: "\25CF";
    position: absolute;
    left: 0px;
    top: -5px;
    font-size: 18px;
    color: black;

}

.unique-facility .row:last-child .col-md-6>div h6::before {
    position: absolute;
    content: "";
    background: url(../images/vision-icon.svg);
    left: 0;
    top: 1px;
    background-size: 100%;
    width: 14px;
    height: 17px;
    filter: invert(1);
}

.unique-facility .row:first-child {
    width: 90%;
    margin-inline: auto;
    padding-bottom: 25px;
    display: none;
}

.unique-facility .row:first-child .col-md-12 {
    display: flex;
    align-items: flex-start;

}

.unique-facility .row:first-child .col-md-12>div {
    width: 100%;
    max-width: 500px;
    margin-right: auto;

}

.unique-facility .row:first-child .col-md-12>div h2 {
    font-size: 36px;
    color: #000;
    text-align: left;
    padding-bottom: 5px;
}

.unique-facility .row:first-child .col-md-12>div h2 span {
    color: #919191;
}

.unique-facility .row:first-child .col-md-12>p {

    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-bottom: 0;
    text-align: left;
    color: #8b8b8b;
}



.banner-section {
    /* background: url(../images/s-detail.png) no-repeat center; */
    width: 100%;
    height: 200px;
    background-size: cover;
    position: relative;
    background: #07777c;
}

section.banner-section.career {
    background: url(../images/join.png) no-repeat center;
    background-size: 100%;
}

.banner-section .container {
    height: 100%;
}

.banner-section .row {
    margin-inline: auto !important;
    padding-inline: 0;
    width: 90%;
    position: relative;
    height: 100%;
}

.banner-section .row>div {
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
}


.banner-section .row>div h1 {

    color: #fff;
    font-size: 45px;
    width: fit-content;
}

.banner-section .row>div h1 span {
    display: block;
}

.banner-section::before {

    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #00000045;
}


/* service setion details container  ......................................... */

.home-service .home-service-div span {
    display: flex;
    max-width: 65px;
    max-height: 41px;
    align-items: center;
    justify-content: center;
    padding: 0 10px 0 15px;
}


.home-service .home-service-div a>span {
    width: 11px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.home-service-div>div img {
    width: 100%;
}

.home-service .home-service-div span {
    display: flex;
    max-width: 65px;
    max-height: 41px;
    align-items: center;
    justify-content: center;
    padding: 0 10px 0 15px;
}

.service-detail-cont {
    width: 100%;
    height: 100%;
    padding: 40px 0 0px 0;
    background: #f9f9f9;
}

.service-detail-cont .row:first-child {
    width: 90%;
    margin-inline: auto;
}

.hauls-img{
    border: 1px solid #e8e8e8;
    max-height: 320px;
    height: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;

}
.hauls-img img{
    width: 100%;
    object-fit: cover;
height: 100%;
}


.outer {
    display: block;
    width: 100%;
    height: auto;
    float: left;
    padding-block: 25px;
    padding-inline: 0 !important;
}



.service-detail-cont .outer .row {
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;

}
.service-detail-cont .outer .row .col-md-8{
    padding-left: 0;
}


.outer .col-md-8 {
    width: 68%;
}

.outer .col-md-4 {
    width: 32%;
}

.text-div {
    display: block;
    float: left;
    width: 100%;
    padding-right: 25px;
}

.text-div h3 {
    margin-top: 15px;
    margin-bottom: 6px;
    font-weight: 500;
    color: black;
    display: block;
    float: left;
    width: 100%;
    font-size: 35px;
}

.service-detail-cont h2 {
    margin-top: 15px;
    margin-bottom: 6px;
    font-weight: 500;
    color: black;
    display: block;
    float: left;
    width: 100%;
    font-size: 40px;
}

.text-div p {
    color: #8b8b8b;
    display: block;
    float: left;
    width: 100%;
}

.text-div h5 {
    position: relative;
    padding-left: 30px;
    color: black;
    padding-block: 15px;
    margin-block: 20px;
    display: block;
    float: left;
    width: 100%;
}

.text-div h5::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: #d7d7d7;
}

.text-div>*:first-child {
    padding-top: 0;
    margin-top: 0;
}

.right-board {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    /* border: 1px solid #e1e1e1; */
    padding: 15px 15px;
    border-radius: 5px;
    background: #ffff;

}

.right-board>div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    align-items: start;
    gap: 8px;
    margin-bottom: 15px;
    color: black;
    word-break: break-all;
}

.right-board>div a {
    text-decoration: none;
    color: black;
    word-break: break-all;
}

.right-board>div span:first-of-type {
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
}

.right-board>div span:first-of-type img {
    width: 100%;
    object-fit: cover;
}

.right-board h4 {
    color: black;
    font-size: 23px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 23px;
    font-weight: 500;
}

.right-board .common-btn {
    margin-top: 10px;
}

.service-detail h2 {
    text-align: center;
}

.service-detail h2 span {
    display: block;
}

.home-service.service-detail .home-service-div>div {

    /* padding: 0 */
}


.home-service.service-detail .home-service-div span {
    display: flex;
    max-width: 65px;
    max-height: 41px;
    align-items: center;
    justify-content: center;
    padding: 0 10px 0 15px;
}

.home-service.service-detail .home-service-div span>img {
    width: 100%;
    /* height: 41px; */
    object-fit: cover;
}


.home-service.service-detail .home-service-div a {
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #262626;
    padding-bottom: 4px;
    margin-bottom: 24px;
    width: fit-content;
    margin: 20px 10px 15px 15px;
    margin-top: auto;
}

.home-service.service-detail .home-service-div a>span {
    width: 11px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.home-service.service-detail .home-service-div a>span img {
    width: 100%;
    filter: invert(1);
}

.home-service.service-detail .home-service-div a:hover img {
    transform: rotate(44deg);
}

.home-service.service-detail .home-service-div a img {
    display: inline-block;
    transition: transform 0.4s ease-in-out;
    transform: rotate(0deg);
    will-change: transform;
}

.home-service.service-detail .home-service-div>img {
    margin-top: 0;
}

.home-partners-slider .slick-slide {
    /* width: 20%;  */
    box-sizing: border-box;
    /* border:1px solid red;
  border-left:1px solid #e4e4e4; */
    border-radius: 12px;
}


/* career page .............................................................. */

.career-cont {
    padding-block: 20px;
    background: #f9f9f9;
}

.career-cont .container>.row:first-child {
    width: 90%;
    margin-inline: auto;
    padding-block: 20px;
}

.career-inner {
    width: 100%;
    padding-inline: 0;
}

.career-inner .col-md-12 {

    padding-inline: 0;
}

.career-inner .col-md-12>div {
    border-bottom: 1px solid #cbcbcb;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.career-inner .col-md-12>div h6 {
    font-weight: 500;
    font-size: 22px;
    color: black;
    padding-bottom: 12px;
    text-align: left;
    max-width: 500px;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    white-space: nowrap;
}

.career-inner .col-md-12>div p {
    color: #8b8b8b;
    text-align: left;
    max-width: 500px;
    width: 100%;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.career-inner .col-md-12>div a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
}

.career-inner .col-md-12>div a span {
    width: auto;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.career-inner .col-md-12>div a span img {
    transition: all .3s ease-in-out;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(-45deg);
}

.career-inner .col-md-12>div:hover span img {
    transform: rotate(0);
}

.career-inner .col-md-12:last-child>div {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}


/* Career Details ................................................. */
.service-detail-cont.career-detail h3 {
    margin-top: 15px;
    margin-bottom: 6px;
    font-weight: 500;
    color: black;
    display: block;
    float: left;
    width: 100%;
    font-size: 30px;
}

.service-detail-cont.career-detail h2 {
    padding-bottom: 10px;
    margin-bottom: 0;
}

.service-detail-cont ul {
    padding-left: 0px;
    color: #8B8B8B;
    list-style: none;
    display: block;
    width: 100%;
    float: left;
}

.service-detail-cont ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.service-detail-cont ul li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    top: -6px;
    color: #8b8b8b;
    font-size: 22px;

}

.service-detail-cont ol {
    padding-left: 19px;
}

.home-service.service-page {
    padding-top: 50px;
}

.home-service.service-page h2 {

    text-align: center;
}

.unique-facility.service {
    display: none
}

/* Gallery page .......................................................... */


.gallery-container {
    width: 100%;
    height: auto;
    padding-top: 50px;
    background: #f9f9f9;

}

.gallery-container .container>.row {
    width: 90%;
    margin-inline: auto;
}

.gallery-container h2 {
    color: #000;
    font-size: 40px;
    text-align: left;

}

.gallery-inner>.row:nth-child(odd)>.col-md-6 {}

.gallery-inner>.row:nth-child(odd)>.col-md-6>div {
    width: 100%;
    height: 100%;
}

.gallery-inner>.row:nth-child(odd)>.col-md-6>div img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.gallery-inner>.row:nth-child(odd)>.col-md-6>.row {
    /* border:1px solid red; */
    margin: 0;
    padding: 0;

}

.gallery-inner>.row:nth-child(odd)>.col-md-6>.row>div {

    padding: 12px;
    padding-right: 0;
    padding-bottom: 0;
}

.gallery-inner>.row:nth-child(odd)>.col-md-6>.row>div>div {
    width: 100%;
    height: 100%;
}

.gallery-inner>.row:nth-child(odd)>div {
    padding: 0;
}

.gallery-inner>.row:nth-child(odd)>.col-md-6:first-child {
    padding: 12px;
    padding-right: 0;
    padding-bottom: 0;
    border: yellow;
}

/* .gallery-inner .row {
    max-height: 500px;
} */


/* even row images................... */

.gallery-inner>.row:nth-child(even)>.col-md-6 {}

.gallery-inner>.row:nth-child(even)>.col-md-6>div {
    width: 100%;
    height: 100%;
}

.gallery-inner>.row:nth-child(even)>.col-md-6>div img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.gallery-inner>.row:nth-child(even)>.col-md-6>.row {
    margin: 0;
    padding: 0;

}

.gallery-inner>.row:nth-child(even)>.col-md-6>.row>div {
    padding: 12px;
    padding-right: 0;
    padding-bottom: 0;
}

.gallery-inner>.row:nth-child(even)>.col-md-6>.row>div>div {
    width: 100%;
}

.gallery-inner>.row:nth-child(even)>div {
    padding: 0;
}

.gallery-inner>.row:nth-child(even)>.col-md-6:last-child {
    padding: 12px;
    padding-right: 0;
    padding-bottom: 0;
}



.gallery-inner>.row:nth-child(odd)>.col-md-6>.row img {
    max-height: 220px;
    /* border: 1px solid; */
    object-fit: cover;
}

.gallery-inner>.row:nth-child(even)>.col-md-6>.row img {
    max-height: 220px;
    /* border: 1px solid green; */
    object-fit: cover;
}

.featherlight-close {
    display: block !important;
    z-index: 9999;
}

/* contact page ........................................................ */

.contact-section {
    padding-top: 50px;
    padding-bottom: 65px;
    width: 100%;
    background: #f9f9f9;
}

.contact-section>.container>.row {
    width: 90%;
    margin-left: auto;
}

.contact-section h2 {
    color: #000;
    font-size: 40px;
    text-align: left;
    margin-bottom: 20px;
    padding-bottom: 0;
    max-width: 100%;
    width: 52%;
}

.contact-section h2 span {
    color: #6f6f6f
}

.contact-form {
    width: 100%;
    padding: 25px;
    /* border: 1px solid #dfdfdf; */
    border-radius: 7px;
    background: #fff;
}

.input-group1 {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
}

.input-group1>div {
    width: 47%;
    margin-right: 3%;
    display: inline-block;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    /* align-items:center;
    justify-content: flex-start; */

}

.input-group1>div:nth-child(2n) {
    margin-right: 0;
    float: right;
}

.input-group1 label {
    color: black;
    margin-bottom: 5px;
}

.input-group2 label {
    color: black;
    margin-bottom: 5px;
}

.input-group1 input {
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    height: 40px;
    color: #8b8b8b;
    padding-inline: 10px;
}

.input-group2>div {
    width: 100%;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.input-group2>div textarea {
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    height: 60px;
    color: #8b8b8b;
    padding-inline: 10px;
}

.contact-form input[type="submit"] {
    border: 1px solid gray;
}

.contact-detail {
    border-radius: 7px;
    background: linear-gradient(to top, #0d6c72 30%, #2d8f86eb);
    padding: 25px;
    height: 100%;
}

.contact-detail div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    margin-bottom: 15px;
    max-width: 395px;
    gap: 5px;
}

.contact-detail div img {
    filter: invert(1);
    width: 12px;
    margin-right: 10px;
}

.contact-detail p {
    margin-bottom: 90px;
    color: #fff;
    line-height: 22px;
    margin-top: 10px;
}

.contact-detail h3 {
    color: #fff;

}

.contact-detail h6 {
    color: #fff;
    position: relative;
    padding-left: 20px;
    font-size: 16px;
}

.contact-detail h6::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    background: url(../images/vision-icon.svg) no-repeat;
    width: 13px;
    height: 17px;
    background-size: contain;

}

.contact-detail a {
    text-decoration: none;
    color: #fff;
}

.contact-detail h3 {
    font-size: 32px;
    color: #fff;
    line-height: 35px;
    padding-bottom: 5px;
    text-align: left;
    margin-top: 8px;
}



.custom-dropdown-wrapper {
    position: relative;
    width: 100%;
    font-family: Arial, sans-serif;
}

.contact-drope {
    padding: 10px;
    border: 1px solid #e6e6e6;
    cursor: pointer;
    background: white;
    position: relative;
}

.contact-drope::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    right: 10px;
    top: 14px;
    background: url(../images/down-black-angle.svg) no-repeat right;
    /* background-size:16px; */

}

.dropdown-options {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid #e6e6e6;
    border-top: none;
    position: absolute;
    width: 100%;
    background: white;
    z-index: 1111;
    display: none;
    max-height: 200px;
    overflow-y: auto;
}

.dropdown-options li {
    padding: 10px;
    cursor: pointer;
}

.dropdown-options li:hover {
    background: #f0f0f0;
}



/* home partners start style............... */


.home-partners {
    background: #fff;
    padding-block: 50px;
}

.home-partners .row {
    width: 90%;
    margin-inline: auto;
}

.home-partner-div {}

.home-partner-div>div {
    /* border: 1px solid #dddddd; */
    height: 80px;
    padding: 10px;
    border-radius: 10px;
}

.home-partners h2 {
    font-size: 36px;
    color: #000;
    line-height: 42px;
    padding-bottom: 0;
    margin-bottom: 25px;
}

.home-partners h2 span {
    color: #8b8b8b;
}

.home-partner-div>div img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.home-partner-div.slick-slide {

    margin-right: 10px;
}

/* home partners end style............... */



/* feather css ...... */
.featherlight .featherlight-content {
    background: transparent !important;
}

.featherlight .featherlight-image {

    border-radius: 18px;
}

.featherlight .featherlight-close-icon {
    border-radius: 50%;
    color: #00747b !important;
    background: #fff !important;
    position: relative;
    z-index: 99999;
    transition: all .3s ease-in-out;
}

.featherlight .featherlight-close-icon::after {
    position: absolute;
    content: "";
    opacity: 0;
    inset: 0;
    background: linear-gradient(45deg, #00747b, #75ebf1) !important;
    transition: opacity .3s ease-in;
    border-radius: 50%;
   
    z-index: -1;
}
.featherlight .featherlight-close-icon:hover{
  color:#fff !important;
}

.featherlight .featherlight-close-icon:hover::after {
    /* color:#1e2020 !important;
    background:#ffffff5b !important; */
    opacity: 1;
   
}


/* green-icon */
/* responsive ...................................................................................... */

@media (min-width:1441px) {
    .contact-detail p {
        margin-bottom: 110px;
    }

    .contact-detail {
        max-width: 394px;
        width: 100%;
    }
}

@media (min-width:2200px) {
    .global-banner-imgDiv {
        min-height: 650px;
    }
}


@media (max-width:1399px) {
    .global-content-div {
        max-width: 1140px;
        padding-inline: 12px;
    }

    .right-board h4 {
        font-size: 22px;
    }

}



@media (max-width:1199px) {

    .container {
        max-width: 800px !important;
        width: 100%;
        max-width: 100%;
    }

    .global-menus ul li:first-child {
        padding-left: 0;
    }

    .global-menus ul li:last-child {
        padding-right: 0;
    }

    .global-header-wrapper .common-btn {
        padding: 10px 20px;
    }

    .global-menus ul li {
        padding: 5px 0px 5px 0px;
        padding-right: 25px;
    }

    .global-logo {
        max-width: 80px;
    }

    .global-content-div {
        max-width: 800px;
        padding-inline: 12px;
        width: 95%;
    }

    .global-content-div>h1 {
        font-size: 60px;
        line-height: 65px;
    }

    .global-banner-imgDiv {
        height: 500px;
    }
}

@media (max-width:991px) {
    .container {
        width: 95% !important;
    }
}

@media (max-width:767px) {

    .global-menus {
        display: none;
    }

    .global-hamber a:first-child {
        display: flex;
    }

    .global-hamber a:first-child {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border: 2px solid #157d7e;
        border-radius: 50%;
        width: 45px;
        height: 45px;
        position: relative;
    }

    .global-hamber a:first-child img:first-child {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 10px;
        width: 100%;
    }

    .global-hamber a:first-child img:last-child {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 10px;
        width: 100%;
    }

    .global-hamber a:first-child:hover {
        background: linear-gradient(to right, #131313, #76ddd4);
        /* border-color:#fff; */

    }

    .global-hamber a:first-child:hover img:last-child {
        opacity: 0;
    }


    .home-form-imgDiv img {
        border-radius: 10px 10px 0 0;
    }

    .form-ipsDiv {
        border-radius: 0px 0px 10px 10px;
    }

    .home-form .col-md-5 {
        padding-inline: 0;
    }

    .home-form .col-md-7 {
        padding-inline: 0;
    }

    .global-content-div>h1 {
        font-size: 45px;
        line-height: 52px;
    }


    .global-content-div>p {
        font-size: 17px;
        width: 100%;
        max-width: 440px;
        line-height: 23px;
    }

    .global-content-div>p span {
        display: inline;
    }

    .global-banner-imgDiv img {
        object-position: left;
    }

    .global-banner-imgDiv {
        height: 430px;
    }

}


@media (max-width:575px) {
    .global-header-wrapper .common-btn {
        padding: 10px 20px;
        font-size: 15px;
        gap: 18px;
    }

    .global-content-div>h1 {
        font-size: 40px;
        line-height: 48px;
    }

    .global-content-div>p {
        font-size: 16px;

    }

}

@media (max-width:424px) {

    .global-logo {
        max-width: 70px;
    }
}