@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=League+Spartan:wght@100..900&display=swap');

:root {

    /**
    @color declaration
    */
    --it-common-white: #ffffff;
    --it-common-black: #1F2432;
    --it-common-black-2: #313537;
    --it-common-brown: #272422;
    --it-heading-primary: #0C121D;
    --it-gray-1: #F0F4F5;
    --it-gray-2: #D9D9D9;
    --it-gray-3: #F5F7F9;
    --it-gray-4: #FFF8F4;
    --it-text-body: #6C757D;
    --it-theme-1: #03594E;
    --it-theme-2: #F8C62F;
    --it-theme-3: #1AB69D;
    --it-theme-4: #618269;
    --it-theme-5: #FE8235;
    --it-theme-6: #CD935A;
    --primary-color: #90B820;
    --secondary-color: #0F2540;
    --dark-color: #1A1A1A;
    --accent-color: #024024;
    --primary-font: "Inter", sans-serif;
    --accent-font: "League Spartan", sans-serif;
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1395px;
    }

    .container-1380 {
        max-width: 1380px;
    }

    .container-1200 {
        max-width: 1200px;
    }

    .container-1270 {
        max-width: 1270px;
    }

    .container-1130 {
        max-width: 1130px;
    }

    .container-1370 {
        max-width: 1370px;
    }

    .container-1600 {
        max-width: 1600px;
    }

    .container-1620 {
        max-width: 1620px;
    }

    .container-1750 {
        max-width: 1750px;
    }

    .container-1720 {
        max-width: 1720px;
    }
}

/*---------------------------------
	typography css start 
---------------------------------*/
body {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    font-family: var(--primary-font);
    color: var(--dark-color);
}

a {
    text-decoration: none;
    transition: 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-color);
    line-height: 1.5;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    font-family: var(--accent-font);
}

img {
    max-width: 100%;
}

h4 {
    font-size: 34px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    h4 {
        font-size: 25px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    h4 {
        font-size: 20px;
    }
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

ul {
    margin: 0px;
    padding: 0px;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--dark-color);
    font-family: var(--primary-font);
}

.z-index-1 {
    position: relative;
    z-index: 1;
}

.z-index-2 {
    position: relative;
    z-index: 2;
}

.z-index-3 {
    position: relative;
    z-index: 3;
}

.z-index-4 {
    position: relative;
    z-index: 4;
}

.z-index-5 {
    position: relative;
    z-index: 5;
}

.layer {
    position: relative !important;
}

a,
.btn,
button,
input,
select,
textarea,
li,
img,
.transition-3,
h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

a:focus,
.button:focus {
    text-decoration: none;
    outline: none;
}

a:focus,
a:hover {
    color: inherit;
    text-decoration: none;
}

a,
button {
    color: inherit;
    outline: none;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}

button:focus {
    outline: 0;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

input {
    height: 55px;
    width: 100%;
    border: none;
    outline: none;
    padding: 0 25px;
    line-height: 50px;
    font-size: 16px;
    color: var(--it-common-black);
    background-color: #F6F7F9;
    text-transform: capitalize;
}

input::placeholder {
    color: var(--it-text-body);
    text-transform: capitalize;
}

input:focus {
    border-color: var(--it-theme-1);
}

textarea {
    outline: none;
    width: 100%;
    padding: 20px 25px;
    border: none;
    height: 200px;
    resize: none;
    color: var(--it-common-black);
    background-color: #F6F7F9;
    text-transform: capitalize;
}

textarea::-webkit-input-placeholder {
    color: #797979;
    text-transform: capitalize;
}

textarea:-moz-placeholder {
    color: #797979;
    text-transform: capitalize;
}

textarea::-moz-placeholder {
    color: #797979;
    text-transform: capitalize;
}

textarea:-ms-input-placeholder {
    color: #797979;
    text-transform: capitalize;
}

textarea:focus {
    border-color: var(--it-theme-1);
}

input[type=color] {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    border: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
    padding: 0;
    border-radius: 50%;
}

*::-moz-selection {
    background: var(--it-theme-1);
    color: var(--itt-common-white);
    text-shadow: none;
}

::-moz-selection {
    background: var(--it-theme-1);
    color: var(--it-common-white);
    text-shadow: none;
}

::selection {
    background: var(--it-theme-1);
    color: var(--it-common-white);
    text-shadow: none;
}

*::-moz-placeholder {
    color: var(--it-common-black);
    font-size: var(--it-fz-body);
    opacity: 1;
}

*::placeholder {
    color: var(--it-common-black);
    font-size: var(--it-fz-body);
    opacity: 1;
}

/*---------------------------------
    common classes css start 
---------------------------------*/
.fix {
    overflow: hidden;
}

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

.gx-10 {
    --bs-gutter-x: 10px;
}

.gx-15 {
    --bs-gutter-x: 15px;
}

.gx-20 {
    --bs-gutter-x: 20px;
}

.gx-25 {
    --bs-gutter-x: 25px;
}

.gx-35 {
    --bs-gutter-x: 35px;
}

@media (max-width: 767px) {
    .gx-35 {
        --bs-gutter-x: 30px;
    }
}

.gx-40 {
    --bs-gutter-x: 40px;
}

@media (max-width: 767px) {
    .gx-40 {
        --bs-gutter-x: 30px;
    }
}

.gx-50 {
    --bs-gutter-x: 40px;
}

@media (max-width: 767px) {
    .gx-50 {
        --bs-gutter-x: 30px;
    }
}

.gx-70 {
    --bs-gutter-x: 70px;
}

@media (max-width: 767px) {
    .gx-70 {
        --bs-gutter-x: 30px;
    }
}

/*--
    - Spacing
-----------------------------------------*/
.it-btn-yellow {
    font-size: 19px;
    padding: 15px 29px;
    line-height: 1.1;
    font-weight: 400;
    text-align: center;
    transition: 0.4s;
    border-radius: 8px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--primary-font);
    background-color: var(--secondary-color);
    border: 1px solid #ffffff63;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-btn-yellow {
        font-size: 14px;
        padding: 13px 25px;
    }
}

.it-btn-yellow span {
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
    color: white;
}

.it-btn-yellow span span.text-1 {
    position: relative;
    display: block;
    transition: 0.3s;
}

.it-btn-yellow span span.text-2 {
    position: absolute;
    top: 100%;
    display: block;
    transition: 0.3s;
}

.it-btn-yellow svg {
    width: 14px;
    height: 14px;
    transition: 0.3s;
    margin-left: 10px;
    display: inline-block;
    transform: translateY(-1px);
    color: white;
}

.it-btn-yellow:hover {
    color: var(--it-common-white);
}

.it-btn-yellow:hover span span.text-1 {
    -webkit-transform: translateY(-150%);
    transform: translateY(-150%);
}

.it-btn-yellow:hover span span.text-2 {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.it-btn-yellow.error-btn i {
    margin-left: 0;
    margin-right: 10px;
}

.it-btn-yellow.white-bg span {
    color: var(--it-common-black);
}

.it-btn-yellow.white-bg svg {
    color: var(--it-common-black);
}

.it-btn-yellow.black-bg span {
    color: var(--it-common-white);
}

.it-btn-yellow.black-bg svg {
    color: var(--it-common-white);
}

.it-btn-yellow.theme-bg {
    background-color: var(--it-theme-1);
}

.it-btn-yellow.theme-bg span {
    color: var(--it-common-white);
}

.it-btn-yellow.theme-bg svg {
    color: var(--it-common-white);
}

.it-btn-yellow.theme-4-bg {
    background-color: var(--it-theme-4);
}

.it-btn-yellow.theme-4-bg span {
    color: var(--it-common-white);
}

.it-btn-yellow.theme-4-bg svg {
    color: var(--it-common-white);
}

.it-btn-yellow.theme-5-bg {
    border-radius: 0;
    background-color: var(--it-theme-5);
}

.it-btn-yellow.theme-5-bg span {
    color: var(--it-common-white);
}

.it-btn-yellow.theme-5-bg svg {
    color: var(--it-common-white);
}

.it-btn-yellow.style-2 {
    padding: 11.5px 47px;
    border-radius: 100%;
    background-color: transparent;
    border: 1px solid var(--it-theme-6);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-btn-yellow.style-2 {
        padding: 9px 30px;
    }
}

.it-btn-yellow.style-2 span {
    font-size: 20px;
    color: var(--it-theme-6);
    font-family: var(--it-ff-newyork);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-btn-yellow.style-2 span {
        font-size: 14px;
    }
}

.it-btn-yellow.style-2 svg {
    color: var(--it-theme-6);
}

@-moz-keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }

    100% {
        margin-top: 0;
    }
}

@-ms-keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }

    100% {
        margin-top: 0;
    }
}

@-webkit-keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }

    100% {
        margin-top: 0;
    }
}

@keyframes headerSlideDown {
    0% {
        margin-top: -150px;
    }

    100% {
        margin-top: 0;
    }
}

@keyframes itswing {
    0% {
        -webkit-transform: rotate(4deg);
        -moz-transform: rotate(4deg);
        -ms-transform: rotate(4deg);
        -o-transform: rotate(4deg);
        transform: rotate(4deg);
    }

    100% {
        -webkit-transform: rotate(-4deg);
        -moz-transform: rotate(-4deg);
        -ms-transform: rotate(-4deg);
        -o-transform: rotate(-4deg);
        transform: rotate(-4deg);
    }
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@keyframes img-anim-right {
    0% {
        transform: translateX(5%);
        clip-path: inset(0 0 0 100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

@keyframes img-anim-left {
    0% {
        transform: translateX(-5%);
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

@keyframes img-anim-top {
    0% {
        transform: translateY(-5%);
        clip-path: inset(0 0 100% 0);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

@keyframes img-anim-bottom {
    0% {
        transform: translateY(25%);
        clip-path: inset(0 0 100% 0);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

@keyframes icon-bounce {

    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    60% {
        -webkit-transform: translateY(-5px);
        -moz-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        -o-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

.scroll-top {
    width: 40px;
    height: 40px;
    line-height: 40px;
    position: fixed;
    bottom: -10%;
    right: 50px;
    font-size: 16px;
    z-index: 9;
    text-align: center;
    border-radius: 50%;
    color: var(--it-common-white);
    cursor: pointer;
    background: var(--it-theme-1);
    transition: 1s ease;
    border: none;
}

.scroll-top.open {
    bottom: 80px;
}

.body-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: rgba(24, 24, 24, 0.8);
    visibility: hidden;
    opacity: 0;
    transition: 0.45s ease-in-out;
}

.body-overlay.apply {
    opacity: 1;
    visibility: visible;
}

.body-overlay:hover {
    cursor: url(../img/cross-out.html), pointer;
}

.it-instagram img {
    width: 100%;
}

.itoffcanvas {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -100%;
    width: 450px;
    z-index: 9999;
    padding: 50px;
    opacity: 0;
    z-index: 1000;
    visibility: hidden;
    overflow-y: scroll;
    scrollbar-width: none;
    transition: 0.3s linear;
    overscroll-behavior-y: contain;
    background: var(--it-common-white) none repeat scroll 0 0;
}

.itoffcanvas.opened {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 767px) {
    .itoffcanvas {
        width: 350px;
        padding: 40px 35px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .itoffcanvas {
        width: 72%;
        padding: 40px;
    }
}

.itoffcanvas.opened {
    right: 0;
    -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition-duration: 0.6s;
}

.itoffcanvas__logo {
    margin-bottom: 60px;
}
.it-header-logo img {
    width: 100%;
    height: 60px;
    object-fit: contain;
}

@media (min-width: 1400px) { 
    .it-header-logo img {
    width: 100%;
    height: 80px;
}
}
@media (min-width: 1600px) { 
    .it-header-logo img {
    width: 100%;
    height: 100px;
}
}
@media (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .itoffcanvas__logo {
        padding-top: 0;
    }
}

.itoffcanvas__logo img {
    width: 157px;
    height: 100%;
}

.itoffcanvas__close-btn button {
    font-size: 35px;
    position: absolute;
    right: 50px;
    top: 42px;
    transition: 1s;
    font-weight: 300;
    opacity: 0.6;
    color: var(--it-common-black);
    -webkit-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.4s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition-duration: 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .itoffcanvas__close-btn button {
        font-size: 28px;
        right: 48px;
        top: 52px;
    }
}

@media (max-width: 767px) {
    .itoffcanvas__close-btn button {
        font-size: 28px;
        right: 39px;
        top: 38px;
    }
}

.itoffcanvas__close-btn button:hover {
    opacity: 1;
    color: var(--it-common-black);
}

.itoffcanvas__content {
    margin-bottom: 30px;
}

.itoffcanvas__content p {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 25px;
}

.itoffcanvas__content span {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 5px;
    display: inline-block;
}

.itoffcanvas__content a {
    font-size: 30px;
    line-height: 51px;
    font-weight: 700;
    color: var(--it-common-white);
    display: inline-block;
}

@media (max-width: 767px) {
    .itoffcanvas__content a {
        font-size: 27px;
    }
}

.itoffcanvas__social {
    margin-top: 50px;
}

.itoffcanvas__social .social-icon a {
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 18px;
    background-color: var(--it-theme-1);
    color: var(--it-common-white);
    margin-right: 15px;
    transition: 0.3s;
    display: inline-block;
    border-radius: 50%;
}

@media (max-width: 767px) {
    .itoffcanvas__social .social-icon a {
        margin-right: 3px;
    }
}

.itoffcanvas__social .social-icon a:hover {
    background-color: var(--it-theme-1);
    color: var(--it-common-white);
}

.itoffcanvas__text {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .itoffcanvas__text {
        display: none;
    }
}

.itoffcanvas__text p {
    font-size: 16px;
    color: #414144;
}

.itoffcanvas__info {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 30px;
    margin-bottom: 20px;
}

.itoffcanvas__info .offcanva-title {
    color: var(--it-common-black);
    margin: 30px 0 40px 0;
    font-size: 20px;
    font-weight: 600;
}

.itoffcanvas__info-icon a {
    height: 40px;
    width: 40px;
    background-color: var(--it-theme-1);
    color: var(--it-common-white);
    display: inline-block;
    text-align: center;
    line-height: 50px;
    border-radius: 50px;
    font-weight: 400;
    font-size: 17px;
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.itoffcanvas__info-address span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
}

.itoffcanvas__info-address a {
    display: block;
    color: var(--it-common-black);
    font-size: 18px;
    font-weight: 400;
    transition: 0.3s;
}

@media (max-width: 767px) {
    .itoffcanvas__info-address a {
        font-size: 16px;
    }
}

.itoffcanvas__info-address a:hover {
    color: var(--it-theme-1);
}

.itoffcanvas .it-homemenu-wrapper {
    padding: 0;
}

.itoffcanvas .home-img-thumb {
    padding: 0px;
    height: 135px;
}

.itoffcanvas .it-menu-mobile .home-img-title,
.itoffcanvas .it-category-mobile-menu .home-img-title {
    font-weight: 400;
}

.itoffcanvas .it-megamenu-thumb {
    display: none;
}

.itoffcanvas .it-megamenu-text {
    display: none;
}

.itoffcanvas .it-megamenu-list li a::before {
    display: none;
}

.itoffcanvas .it-megamenu-list li:hover>a {
    padding-left: 0px;
    font-weight: 400;
}

.itoffcanvas .it-megamenu-list li:not(:last-child) {
    margin-bottom: 0;
}

.itoffcanvas .it-menu-mobile ul li>a,
.itoffcanvas .it-category-mobile-menu ul li>a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--dark-color);
}

.itoffcanvas .it-megamenu-title {
    font-size: 16px;
    margin-bottom: 15px;
    padding-bottom: 14px;
    margin-right: 65px;
    margin-top: 30px;
    font-weight: 500;
    color: var(--it-common-black);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.itoffcanvas .home-img:hover .home-img-title a {
    color: var(--it-common-white);
}

.itoffcanvas .home-img:hover .home-img-title {
    background-size: 0% 1px, 100% 1px;
}

.it-offcanva-bottom-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: -1;
}

.it-offcanva-bottom-shape img {
    width: 100%;
}

.spacing-gap {
    padding: 60px 0;
}

@media (max-width: 767px) {
    .spacing-gap {
        padding: 40px 0;
    }
}

.it-section-title {
    font-size: 49px;
    margin-bottom: 57px;
    line-height: 58px;
    font-weight: 500;
    color: var(--dark-color);
    font-family: var(--accent-font);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-section-title {
        font-size: 34px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-section-title {
        font-size: 33px;
    }
}

@media (max-width: 767px) {
    .it-section-title {
        font-size: 35px;
        margin-bottom: 20px;
    }
}

.it-section-subtitle {
    line-height: 1;
    border-radius: 100px;
    padding: 9px 20px;
    padding-bottom: 6px;
    display: inline-block;
    margin-bottom: 30px;
    text-transform: capitalize;
    color: var(--it-theme-1);
    background-color: rgba(26, 182, 157, 0.1);
    font-family: var(--it-ff-spartan-medium);
    border: 1px solid rgba(3, 89, 78, 0.3);
}

.it-section-subtitle.yellow-style {
    border-color: #90B820;
    background-color: rgb(144 184 32 / 7%);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-section-subtitle {
        font-size: 14px;
        padding: 9px 15px;
        padding-bottom: 6px;
    }
}

/*----------------------------------------*/
/*  21. footer css start
/*----------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-footer-col-1-1 {
        margin-right: 40px;
    }
}

.it-footer-col-1-2 {
    margin-left: 105px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-footer-col-1-2 {
        margin-left: 70px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-footer-col-1-2 {
        margin-left: 60px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-footer-col-1-2 {
        margin-left: 40px;
    }
}

@media (max-width: 767px) {
    .it-footer-col-1-2 {
        margin-left: 0px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-footer-col-1-2 {
        margin-left: 30px;
    }
}

.it-footer-col-1-3 {
    margin-left: 80px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-footer-col-1-3 {
        margin-left: 45px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-footer-col-1-3 {
        margin-left: 25px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-footer-col-1-3 {
        margin-left: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-footer-col-1-4 {
        margin-left: 40px;
    }
}

@media (max-width: 767px) {
    .it-footer-col-1-4 {
        margin-left: 0px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-footer-col-1-4 {
        margin-left: 30px;
    }
}

.it-footer-widget-title {
    font-size: 24px;
    line-height: 25px;
    margin-top: 6px;
    margin-bottom: 30px;
    text-transform: capitalize;
    color: white;
    text-decoration: underline;
    text-decoration-color: #ffffff69;
    text-decoration-thickness: .5px;
    text-underline-offset: 10px;
    font-family: var(--accent-font);
    font-weight: 400;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-footer-widget-title {
        font-size: 19px;
    }
}

.it-footer-widget-text p {
    line-height: 1.75;
    margin-bottom: 32px;
    margin-right: 10px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-footer-widget-text p {
        font-size: 14px;
        margin-right: 0;
    }

    .it-footer-widget-text p br {
        display: none;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-footer-widget-text p {
        font-size: 14px;
        margin-right: -15px;
    }

    .it-footer-widget-text p br {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-footer-widget-text p {
        font-size: 14px;
        margin-right: 0;
    }

    .it-footer-widget-text p br {
        display: none;
    }
}

.it-footer-widget-menu ul li {
    list-style-type: none;
}

.it-footer-widget-menu ul li:not(:last-child) {
    margin-bottom: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-footer-widget-menu ul li:not(:last-child) {
        margin-bottom: 16px;
    }
}

.it-footer-widget-menu ul li a {
    position: relative;
    color: #F4F4F4;
    font-size: 16px;
    font-family: var(--primary-font);
    font-weight: 300;
}

.it-footer-widget-menu ul li a::before {
    content: "";
    height: 1px;
    width: 4px;
    transition: 0.3s;
    display: inline-block;
    transform: translateY(-5px);
    opacity: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-footer-widget-menu ul li a {
        font-size: 14px;
    }
}

.it-footer-widget-menu ul li a:hover::before {
    opacity: 1;
    width: 10px;
    margin-right: 10px;
    background-color: var(--it-theme-1);
}

.it-footer-widget-contact ul li {
    list-style-type: none;
    color: #F4F4F4;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    font-family: var(--primary-font);
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.it-footer-widget-contact ul li img {
    position: relative;
    top: 4px;
}

.it-footer-widget-contact ul li:not(:last-child) {
    margin-bottom: 18px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-footer-widget-contact ul li:not(:last-child) {
        margin-bottom: 15px;
    }
}

.it-footer-widget-contact ul li span {
    font-weight: 600;
    margin-right: 5px;
    display: inline-block;
    color: var(--it-common-black);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-footer-widget-contact ul li span {
        font-size: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-footer-widget-contact ul li a {
        font-size: 15px;
    }
}

.it-footer-widget-contact ul li a:hover {
    color: var(--it-common-black);
}

.it-footer-area {
    background: url('../img/footer.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 30px 0;
}

.it-copyright-ptb {
    padding: 18px 0;
    border-top: 4px solid var(--primary-color);
    background: var(--secondary-color);
}
.it-footer-area .it-footer-widget-contact ul li a:hover{
    color: var(--primary-color);
}

.it-footer-area .fb-button{
    padding: 11px;
    background: rgb(233 233 233 / 30%);
    color: white;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: fit-content;
    text-transform: capitalize;
    transition: all 0.3 ease;
}
.it-footer-area .fb-button:hover{
    background: rgb(233 233 233 / 100%) ;
    color: var(--dark-color);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-copyright-ptb {
        padding: 17px 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-copyright-left {
        margin-bottom: 8px;
    }
}

.it-copyright-left p {
    color: white;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-copyright-left p {
        font-size: 14px;
    }
}

.it-copyright-left p a {
    color: var(--it-theme-1);
}

.it-copyright-menu a {
    color: var(--it-common-white);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-copyright-menu a {
        font-size: 16px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-copyright-menu a {
        font-size: 16px;
        color: var(--it-common-black);
    }
}

.it-copyright-menu span {
    color: var(--it-common-white);
    margin: 0 11px;
}

.it-footer-style-2 .it-copyright-right p a {
    color: white;
    font-weight: 400;
    font-size: 16px;
    font-family: var(--primary-font);
    border-right: 1px solid #A6A6A6;
    padding-right: 10px;
}

.it-footer-style-2 .it-copyright-right p a:last-child {
    border-right: 0;
    padding-right: 0;
}

.it-funfact-item:hover .it-funfact-icon svg {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.it-funfact-wrap .it-funfact-icon svg {
    color: var(--it-theme-2);
}

/*----------------------------------------*/
/*  24. header css start
/*----------------------------------------*/
.it-header-transparent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

.it-header-top-ptb {
    padding: 10px 0;
    position: relative;
}

.it-header-top-ptb::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #1ab69d 0%, #ffd500 100%);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-header-top-ptb {
        padding: 12px 0;
    }
}

.it-header-top-contact {
    position: relative;
    padding-left: 33px;
}

.it-header-top-contact span {
    display: inline-block;
    text-align: center;
    position: absolute;
    top: -2px;
    left: 0;
}

.it-header-top-contact span svg,
.it-header-top-contact span i {
    position: relative;
    z-index: 1;
    transition: 0.3s;
    color: var(--it-theme-2);
}

.it-header-top-contact a {
    font-weight: 400;
    font-size: 13px;
    color: var(--dark-color);
    line-height: 24px;
}

.it-header-top-contact-wrap ul li {
    list-style-type: none;
    display: inline-block;
}

.it-header-top-contact-wrap ul li:not(:last-child) {
    padding-right: 20px;
    margin-right: 0;
    border-right: 0;
}
@media (min-width: 1400px) { 
.it-header-top-contact a {
    font-size: 15px;
}
}
@media (min-width: 1600px) { 
.it-header-top-contact a {
    font-size: 16px;
}
}
@media (min-width: 1900px) { 
.it-header-top-contact a {
    font-size: 16px;
}
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header-top-contact-wrap ul li:not(:last-child) {
        padding-right: 10px;
        margin-right: 8px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-header-top-contact-wrap ul li:not(:last-child) {
        padding-right: 0px;
        margin-right: 0px;
        border-right: none;
    }
}

.it-header-top-social-box a:not(:last-child) {
    margin-right: 18px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-header-top-social-box a {
        width: 35px;
        height: 35px;
        line-height: 31px;
    }
}

.it-header-top-social-box a svg,
.it-header-top-social-box a i {
    z-index: 1;
    transition: 0.3s;
    position: relative;
    color: var(--it-common-white);
}

@media only screen and (min-width: 576px) and (max-width: 767px) {

    .it-header-top-social-box a svg,
    .it-header-top-social-box a i {
        width: 14px;
        height: 14px;
    }
}

.it-header-top-social-box a:hover svg,
.it-header-top-social-box a:hover i {
    color: var(--it-theme-2);
}

.it-header-top-social-box span {
    font-size: 14px;
    display: inline;
    margin-right: 30px;
    color: var(--it-common-white);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .it-header-top-social-box span {
        font-size: 15px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-header-top-social-box span {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .it-header-top-list-box {
        text-align: center;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-header-top-list-box {
        text-align: start;
    }
}

.it-header-top-list-box ul li {
    display: inline-block;
    list-style-type: none;
    padding-left: 30px;
    position: relative;
}

@media (max-width: 767px) {
    .it-header-top-list-box ul li {
        padding-right: 0;
        margin-right: 0;
        border-right: none;
    }
}

.it-header-top-list-box ul li:not(:last-child) {
    padding-right: 48px;
    margin-right: 44px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header-top-list-box ul li:not(:last-child) {
        padding-right: 30px;
        margin-right: 26px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-header-top-list-box ul li:not(:last-child) {
        padding-right: 0px;
        margin-right: 0px;
        border-right: none;
    }
}

.it-header-top-list-box ul li span {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.01em;
    display: inline-block;
    font-family: var(--primary-font);
    color: var(--it-common-white);
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-header-top-list-box ul li span {
        font-size: 13px;
    }
}

.it-header-top-list-box ul li span svg,
.it-header-top-list-box ul li span i {
    position: absolute;
    top: 1px;
    left: 0;
    font-size: 20px;
    color: var(--it-theme-1);
}

@media only screen and (min-width: 576px) and (max-width: 767px) {

    .it-header-top-list-box ul li span svg,
    .it-header-top-list-box ul li span i {
        font-size: 16px;
        top: 3px;
    }
}

.it-header-top-list-text {
    margin-left: 10px;
}

.it-header-top-list-text span {
    font-weight: 400;
    font-size: 12px;
    display: block;
    margin-bottom: 6px;
}

.it-header-top-list-text a {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.01em;
    color: var(--it-common-black);
}

.it-header-top-list-icon span {
    display: inline-block;
    height: 53px;
    width: 53px;
    line-height: 49px;
    text-align: center;
    border-radius: 50%;
    text-align: center;
    background-color: #F3F3F3;
    border: 1px solid rgba(121, 121, 121, 0.1);
    position: relative;
    overflow: hidden;
}

.it-header-top-list-icon span svg,
.it-header-top-list-icon span i {
    position: relative;
    z-index: 1;
    color: var(--it-theme-1);
    transition: 0.3s;
}

.it-header-top-list-icon span::after {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    transition: 0.5s ease;
    transform: scale(0);
    background-color: var(--it-theme-1);
}

.it-header-top-list-wrap ul li {
    list-style-type: none;
    display: inline-block;
}

.it-header-top-list-wrap ul li:not(:last-child) {
    margin-right: 55px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-header-top-list-wrap ul li:not(:last-child) {
        margin-right: 0;
    }
}

.it-header-top-list-wrap ul li .it-header-top-list:hover .it-header-top-list-icon span::after {
    top: 50%;
    left: 50%;
    transform: scale(1) translate(-50%, -50%);
}

.it-header-top-list-wrap ul li .it-header-top-list:hover .it-header-top-list-icon span svg,
.it-header-top-list-wrap ul li .it-header-top-list:hover .it-header-top-list-icon span i {
    color: var(--it-common-white);
}

.it-header-top-login-box {
    margin-right: 14px;
    border-right: 0;
    padding: 10px 18px;
    background: rgb(15 37 64 / 13%);
    border-radius: 9px;
}

.register-box {
    margin-right: 14px;
    border-right: 0;
    padding: 7px 18px;
    background: var(--accent-color);
    border-radius: 9px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-header-top-login-box {
        padding-right: 0;
        margin-right: 0;
        border-right: none;
    }
}

.it-header-top-login-box a {
    font-size: 15px;
    font-weight: 500;
    color: var(--secondary-color);
}

.it-header-top-login-box a img {
    padding-left: 10px;
}

.register-box a {
    color: #fff;
}

.register-box a img {
    padding-left: 10px;
}

.it-header-top-login-box a:hover {
    color: var(--secondary-color);
}

.register-box a:hover {
    color: #fff;
}

.it-header-top-login-box span {
    margin: 0 8px;
    color: var(--it-common-white);
}

.it-header-top-style-2 .it-header-top-contact span svg,
.it-header-top-style-2 i {
    color: var(--it-theme-1);
}

.it-header-top-style-2 .it-header-top-ptb::after {
    background: linear-gradient(90deg, #1ab69d 0%, #ff4d4f 100%);
}

.it-header-top-area.it-header-style-6 .it-header-top-contact span i,
.it-header-top-area.it-header-style-6 .it-header-top-contact span svg {
    color: var(--it-theme-5);
}

.it-header-top-area.it-header-style-6 .it-header-top-social-box a svg:hover,
.it-header-top-area.it-header-style-6 .it-header-top-social-box a i:hover {
    color: var(--it-theme-5);
}

.it-header-top-area {
    padding: 10px 0;
}

.it-header-top-2-area {
    padding: 14px 0;
    background-color: var(--it-theme-2);
}

.it-header-top-2-area .it-header-top-social-box {
    margin-left: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-header-top-2-area .it-header-top-social-box {
        margin-left: 0;
    }
}

.it-header-top-2-area .it-header-top-social-box a {
    height: auto;
    width: auto;
    line-height: 1;
}

.it-header-top-2-area .it-header-top-social-box a:not(:last-child) {
    margin-right: 22px;
}

.it-header-top-2-area .it-header-top-social-box a:hover svg,
.it-header-top-2-area .it-header-top-social-box a:hover i {
    color: var(--it-theme-3);
}

.it-header-top-2-area .it-header-top-social-box svg {
    color: var(--it-common-black);
}

.it-header-top-2-text span {
    color: var(--it-common-black);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .it-header-top-2-text span {
        font-size: 14px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-header-top-2-text span {
        font-size: 12px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-header-ptb {
        padding: 20px 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-header-ptb .it-btn-yellow {
        padding: 16px 25px;
    }
}

.it-header-menu>nav>ul {
    padding-left: 0;
}

.it-header-menu>nav>ul>li {
    list-style-type: none;
    display: inline-block;
    margin: 0px 11px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-header-menu>nav>ul>li {
        margin: 0px 10px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header-menu>nav>ul>li {
        margin: 0px 8px;
    }
}

.it-header-menu>nav>ul>li:first-child {
    margin-left: 0;
}

.it-header-menu>nav>ul>li:last-child {
    margin-right: 0;
}

.it-header-menu>nav>ul>li>a {
    line-height: 24px;
    font-weight: 400;
    padding: 32px 0;
    position: relative;
    display: inline-block;
    font-size: 15px;
    text-transform: capitalize;
    color: white;
    font-family: var(--primary-font);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header-menu>nav>ul>li>a {
        font-size: 13px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header-menu>nav>ul>li>a::after {
        font-size: 10px;
    }
}

.it-header-menu>nav>ul>li:hover>a {
    color: white;
}

.it-header-menu>nav>ul>li:hover.has-dropdown a::after {
    color: white;
}

.it-header-search-wrap {
    border-radius: 10px;
    border: 1px solid rgba(108, 117, 125, 0.2);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-header-search-wrap {
        margin-right: 25px;
    }
}

.it-header-search {
    position: relative;
    max-width: 175px;
    border-left: 1px solid rgba(108, 117, 125, 0.2);
}

.it-header-search input {
    height: 100%;
    height: 43px;
    line-height: 43px;
    padding-left: 20px;
    padding-right: 40px;
    background-color: transparent;
    font-size: 14px;
}

.it-header-search input::placeholder {
    font-size: 14px;
}

.it-header-search .icon {
    position: absolute;
    right: 20px;
    top: 46%;
    transform: translateY(-50%);
}

.it-header-search-2 svg {
    height: 20px;
}

.it-header-search-3 button {
    height: 50px;
    width: 50px;
    line-height: 1;
    border-radius: 50%;
    padding: 0;
    text-align: center;
    margin-right: 30px;
    background-color: var(--it-gray-1);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .it-header-search-3 button {
        margin-right: 0;
    }
}

.it-header-user a {
    height: 50px;
    width: 50px;
    line-height: 43px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    margin-right: 30px;
    background-color: var(--it-gray-1);
}

.it-header-categorie {
    font-size: 14px;
    padding: 0 20px 0 15px;
    color: var(--it-common-black);
}

.it-header-categorie span {
    display: inline-block;
    margin-right: 10px;
}

.it-header-categorie i {
    display: inline-block;
    margin-left: 4px;
}

.it-header-categorie .nice-select::after {
    top: 52%;
    right: 20px;
    border-bottom: 1px solid var(--it-common-black);
    border-right: 1px solid var(--it-common-black);
}

.it-header-ml {
    margin-left: 380px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .it-header-ml {
        margin-left: 350px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header-ml {
        margin-left: 310px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-header-ml {
        margin-left: 0;
    }
}

.it-header-login button {
    padding: 0;
    font-weight: 500;
    margin-right: 40px;
    color: var(--it-common-black);
}

.it-header-bar span {
    margin-left: 20px;
    height: 44px;
    width: 44px;
    text-align: center;
    line-height: 43px;
    transition: 0.3s;
    display: inline-block;
    border-radius: 5px;
    color: var(--it-common-white);
    background-color: var(--it-theme-1);
    font-size: 18px;
}

.it-header-cart {
    position: relative;
    display: inline-block;
    margin-left: 30px;
    margin-right: 42px;
}

.it-header-cart span {
    position: absolute;
    top: -11px;
    right: -15px;
    height: 24px;
    width: 24px;
    line-height: 25px;
    font-weight: 500;
    font-size: 12px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    font-family: var(--it-ff-jost);
    color: var(--it-common-white);
    background-color: var(--it-theme-1);
}

.it-header-right-action {
    margin-left: -50px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header-right-action {
        margin-left: -80px;
    }
}

.it-header-area {
    background-color: #0F2540;
}
.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  visibility: visible;
  width: 100%;
  z-index: 999;
  visibility: visible;
  background-color: var(--secondary-color);
  box-shadow: 0 2px 4px rgba(7, 37, 68, 0.1);
  animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
}
.header-sticky .it-header-menu > nav > ul > li > a {
  padding: 27px 0;
}
.header-sticky .it-header-style-2 {
  box-shadow: none;
  margin-top: 0;
  padding-left: 0;
  padding-right: 0;
}
.header-sticky .it-header-style-2::after {
  display: none;
}
.header-sticky.it-header-style-3 .it-header-menu > nav > ul > li > a, .header-sticky.it-header-style-5 .it-header-menu > nav > ul > li > a {
  padding: 27px 0;
}
.header-sticky.header-fashion-style {
  background-color: #2f2925;
}
.header-sticky.header-fashion-style .it-header-menu > nav > ul > li > a {
  padding: 27px 0;
}
.header-sticky.it-header-2-style-3 .it-header-menu > nav > ul > li > a {
  padding: 30px 0;
  color: var(--it-common-black);
}
.header-sticky.it-header-2-style-3 .it-header-menu > nav > ul > li.has-dropdown a::after {
  color: var(--it-theme-1);
}
.header-sticky.it-header-2-style-3 .it-header-logo {
  display: none;
}
.header-sticky.it-header-2-style-3 .it-header-logo-3 {
  display: block;
}
.header-sticky.it-header-2-style-3 .it-btn-yellow.white-bg {
  background-color: var(--it-theme-4);
}
.header-sticky.it-header-2-style-3 .it-btn-yellow.white-bg span, .header-sticky.it-header-2-style-3 .it-btn-yellow.white-bg svg {
  color: var(--it-common-white);
}
.header-sticky.it-header-2-style-3 .it-header-2-contact a {
  color: var(--it-common-black);
}
.header-sticky.it-header-2-style-3 .it-header-2-contact span {
  color: var(--it-common-black);
  background-color: rgba(31, 36, 50, 0.5);
}
.header-sticky.it-header-2-style-3 .it-header-2-contact span svg {
  color: var(--it-common-white);
}
.header-sticky.it-header-style-6 .it-header-top-area {
  display: none;
}


/*----------------------------------------*/
/*  27. menu css start
/*----------------------------------------*/
.it-header-menu nav ul li {
    position: relative;
}

.it-header-menu nav ul li.has-dropdown>a::after {
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
    color: white;
    margin-left: 5px;
}

.it-header-menu nav ul li .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    width: 100%;
    text-align: left;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    transition-duration: 0.1s;
    transform-origin: top;
    border-radius: 0px 0px 8px 8px;
    -webkit-transform: perspective(300px) rotateX(-18deg);
    -moz-transform: perspective(300px) rotateX(-18deg);
    -ms-transform: perspective(300px) rotateX(-18deg);
    -o-transform: perspective(300px) rotateX(-18deg);
    transform: perspective(300px) rotateX(-18deg);
    background-color: white;
    border: 1px solid rgba(48, 48, 47, 0.1);
    box-shadow: 0px 1px 2px 1px rgba(3, 11, 30, 0.06), 0px 1px 1px 0px rgba(3, 11, 30, 0.1);
    z-index: 9999;
}

.it-header-menu nav ul li .submenu li {
    list-style: none;
    display: block;
    padding: 0 20px;
}

.it-header-menu nav ul li .submenu li:not(:last-child) {
    margin-bottom: 13px;
}

.it-header-menu nav ul li .submenu li a {
    font-weight: 600;
    font-size: 14px;
    position: relative;
    display: inline-block;
    letter-spacing: 0.2px;
    text-transform: capitalize;
    color: var(--it-common-black);
}

.it-header-menu nav ul li .submenu li a::before {
    position: absolute;
    top: 10px;
    left: 0;
    content: "";
    height: 1px;
    width: 0px;
    opacity: 0;
    visibility: hidden;
    display: inline-block;
    transition: all 0.3s ease-out 0s;
    background-color: white;
}

.it-header-menu nav ul li .submenu li:hover>a {
    padding-left: 20px;
    color: var(--it-theme-1);
}

.it-header-menu nav ul li .submenu li:hover>a::before {
    width: 15px;
    visibility: visible;
    opacity: 1;
}

.it-header-menu nav ul li .submenu .submenu {
    left: 100%;
    top: 0;
}

.it-header-menu nav ul li:hover.has-dropdown a::after {
    color: white;
    transform: rotate(-180deg);
}

.it-header-menu nav ul li:hover>.submenu {
    visibility: visible;
    opacity: 1;
    transition-duration: 0.2s;
    transform: perspective(300px) rotateX(0deg);
}

.it-header-menu nav ul li .has-home-img {
    position: absolute;
    left: 0;
    right: 0;
    width: 90%;
    opacity: 0;
    margin: 0 auto;
    visibility: hidden;
    text-align: center;
    padding: 55px 70px 20px 70px;
    border-radius: 0px 0px 8px 8px;
    background-color: var(--it-common-white);
    border: 1px solid rgba(48, 48, 47, 0.1);
    box-shadow: 0px 1px 2px 1px rgba(3, 11, 30, 0.06), 0px 1px 1px 0px rgba(3, 11, 30, 0.1);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header-menu nav ul li .has-home-img {
        width: 100%;
        padding: 55px 60px 20px 60px;
    }
}

.it-header-menu nav ul li .has-home-img .home-img {
    padding: 0px 10px;
    position: relative;
}

.it-header-menu nav ul li .has-home-img .home-img-title {
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    text-transform: capitalize;
    display: inline-block;
    color: var(--it-common-black);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header-menu nav ul li .has-home-img .home-img-title {
        font-size: 14px;
    }
}

.it-header-menu nav ul li .it-megamenu-wrap {
    position: absolute;
    left: 0;
    right: 0;
    width: 60%;
    opacity: 0;
    margin: 0 auto;
    visibility: hidden;
    padding: 40px 35px 40px 40px;
    border-radius: 0px 0px 8px 8px;
    background-color: var(--it-common-white);
    border: 1px solid rgba(48, 48, 47, 0.1);
    box-shadow: 0px 1px 2px 1px rgba(3, 11, 30, 0.06), 0px 1px 1px 0px rgba(3, 11, 30, 0.1);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .it-header-menu nav ul li .it-megamenu-wrap {
        width: 75%;
    }
}

.it-header-menu nav ul li .it-megamenu-wrap li {
    padding: 0;
}

.home-img:hover .home-img-thumb img {
    transform: scale(1.1);
}

.home-img:hover .home-img-thumb.home-img-overly::after {
    opacity: 1;
    visibility: visible;
}

.home-img:hover .home-img-title a {
    color: var(--it-theme-1);
}

.home-img-thumb {
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    border: 1px solid #E3E4E9;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
    box-shadow: 0px 1px 1px rgba(1, 15, 28, 0.14);
}

.home-img-thumb img {
    transition: 0.9s;
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.home-img-thumb.home-img-overly::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 15, 28, 0.3);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
}

.home-img-thumb.coming-soon {
    position: relative;
}

.home-img-thumb.coming-soon::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(6px);
}

.home-img-thumb.coming-soon::after {
    display: none;
}

.it-menu-mobile .it-menu-content,
.it-category-mobile-menu .it-menu-content {
    margin-bottom: 70px;
}

.it-menu-mobile .home-img,
.it-category-mobile-menu .home-img {
    margin-bottom: 20px;
}

.it-menu-mobile .home-img:hover .home-img-title a,
.it-category-mobile-menu .home-img:hover .home-img-title a {
    color: var(--it-theme-1);
}

.it-menu-mobile .home-img-title,
.it-category-mobile-menu .home-img-title {
    font-weight: 500;
    font-size: 15px;
    display: inline-block;
    font-family: var(--primary-font);
    color: var(--it-common-black);
}

.it-menu-mobile .home-img-title:hover a,
.it-category-mobile-menu .home-img-title:hover a {
    color: var(--it-theme-1);
}

.it-menu-mobile ul,
.it-category-mobile-menu ul {
    position: static;
    display: block;
    box-shadow: none;
}

.it-menu-mobile ul li,
.it-category-mobile-menu ul li {
    list-style: none;
    position: relative;
    width: 100%;
    padding: 0;
}

.it-menu-mobile ul li:not(:last-child)>a,
.it-category-mobile-menu ul li:not(:last-child)>a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.it-menu-mobile ul li.has-dropdown>a .dropdown-toggle-btn,
.it-category-mobile-menu ul li.has-dropdown>a .dropdown-toggle-btn {
    position: absolute;
    right: 0;
    top: 25%;
    transform: translateY(-2px);
    font-size: 18px;
    color: var(--it-common-black);
    font-family: "Font Awesome 5 Pro";
    transition: all 0.3s ease-in-out;
    z-index: 1;
    width: 25px;
    height: 25px;
    line-height: 21px;
    text-align: center;
    border: 1px solid rgba(176, 162, 162, 0.35);
    transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.it-menu-mobile ul li.has-dropdown>a .dropdown-toggle-btn i,
.it-category-mobile-menu ul li.has-dropdown>a .dropdown-toggle-btn i {
    transition: all 0.3s ease-in-out;
    margin-left: 2px;
}

.it-menu-mobile ul li.has-dropdown>a .dropdown-toggle-btn.dropdown-opened i,
.it-category-mobile-menu ul li.has-dropdown>a .dropdown-toggle-btn.dropdown-opened i {
    transform: rotate(90deg);
}

.it-menu-mobile ul li.has-dropdown>a .dropdown-toggle-btn:hover,
.it-category-mobile-menu ul li.has-dropdown>a .dropdown-toggle-btn:hover {
    background-color: var(--it-theme-1);
    border-color: var(--it-theme-1);
    color: var(--it-common-white);
}

.it-menu-mobile ul li.has-dropdown>a .dropdown-toggle-btn:hover i,
.it-category-mobile-menu ul li.has-dropdown>a .dropdown-toggle-btn:hover i {
    color: var(--it-common-white);
}

.it-menu-mobile ul li.has-dropdown>a.expanded,
.it-category-mobile-menu ul li.has-dropdown>a.expanded {
    color: var(--it-theme-1);
}

.it-menu-mobile ul li.has-dropdown>a.expanded .dropdown-toggle-btn.dropdown-opened,
.it-category-mobile-menu ul li.has-dropdown>a.expanded .dropdown-toggle-btn.dropdown-opened {
    background-color: var(--it-theme-1);
    border-color: var(--it-theme-1);
    color: var(--it-common-white);
}

.it-menu-mobile ul li.has-dropdown>a.expanded .dropdown-toggle-btn.dropdown-opened i,
.it-category-mobile-menu ul li.has-dropdown>a.expanded .dropdown-toggle-btn.dropdown-opened i {
    color: var(--it-common-white);
}

.it-menu-mobile ul li.has-dropdown:hover>a::after,
.it-category-mobile-menu ul li.has-dropdown:hover>a::after {
    color: var(--it-theme-1);
}

.it-menu-mobile ul li.has-dropdown-2>a .dropdown-toggle-btn,
.it-category-mobile-menu ul li.has-dropdown-2>a .dropdown-toggle-btn {
    position: absolute;
    right: 0;
    top: 25%;
    transform: translateY(-2px);
    font-size: 18px;
    color: var(--it-common-black);
    font-family: "Font Awesome 5 Pro";
    transition: all 0.3s ease-in-out;
    z-index: 1;
    width: 25px;
    height: 25px;
    line-height: 21px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.it-menu-mobile ul li.has-dropdown-2>a .dropdown-toggle-btn i,
.it-category-mobile-menu ul li.has-dropdown-2>a .dropdown-toggle-btn i {
    transition: all 0.3s ease-in-out;
    margin-left: 2px;
}

.it-menu-mobile ul li.has-dropdown-2>a .dropdown-toggle-btn.dropdown-opened i,
.it-category-mobile-menu ul li.has-dropdown-2>a .dropdown-toggle-btn.dropdown-opened i {
    transform: rotate(90deg);
}

.it-menu-mobile ul li.has-dropdown-2>a .dropdown-toggle-btn:hover,
.it-category-mobile-menu ul li.has-dropdown-2>a .dropdown-toggle-btn:hover {
    background-color: var(--it-theme-1);
    border-color: var(--it-theme-1);
    color: var(--it-common-white);
}

.it-menu-mobile ul li.has-dropdown-2>a .dropdown-toggle-btn:hover i,
.it-category-mobile-menu ul li.has-dropdown-2>a .dropdown-toggle-btn:hover i {
    color: var(--it-common-white);
}

.it-menu-mobile ul li.has-dropdown-2>a.expanded,
.it-category-mobile-menu ul li.has-dropdown-2>a.expanded {
    color: var(--it-theme-1);
}

.it-menu-mobile ul li.has-dropdown-2>a.expanded .dropdown-toggle-btn.dropdown-opened,
.it-category-mobile-menu ul li.has-dropdown-2>a.expanded .dropdown-toggle-btn.dropdown-opened {
    background-color: var(--it-theme-1);
    border-color: var(--it-theme-1);
    color: var(--it-common-black);
}

.it-menu-mobile ul li.has-dropdown-2>a.expanded .dropdown-toggle-btn.dropdown-opened i,
.it-category-mobile-menu ul li.has-dropdown-2>a.expanded .dropdown-toggle-btn.dropdown-opened i {
    color: var(--it-common-black);
}

.it-menu-mobile ul li.has-dropdown-2:hover>a::after,
.it-category-mobile-menu ul li.has-dropdown-2:hover>a::after {
    color: var(--it-theme-1);
}

.it-menu-mobile ul li:last-child a span,
.it-category-mobile-menu ul li:last-child a span {
    border-bottom: 0;
}

.it-menu-mobile ul li>a,
.it-category-mobile-menu ul li>a {
    display: block;
    font-size: 16px;
    position: relative;
    padding: 10px 0;
    font-weight: 500;
    padding-right: 20px;
    text-transform: capitalize;
    color: var(--it-common-black);
}

.it-menu-mobile ul li>a:hover,
.it-category-mobile-menu ul li>a:hover {
    color: var(--it-theme-1);
}

.it-menu-mobile ul li>a svg,
.it-category-mobile-menu ul li>a svg {
    transform: translateY(-2px);
}

.it-menu-mobile ul li>a>i,
.it-category-mobile-menu ul li>a>i {
    display: inline-block;
    width: 11%;
    margin-right: 13px;
    transform: translateY(4px);
    font-size: 21px;
    line-height: 1;
}

.it-menu-mobile ul li>a .menu-text,
.it-category-mobile-menu ul li>a .menu-text {
    font-size: 16px;
    line-height: 11px;
    border-bottom: 1px solid #EAEBED;
    width: 82%;
    display: inline-block;
    padding: 19px 0 17px;
}

.it-menu-mobile ul li img,
.it-category-mobile-menu ul li img {
    width: 100%;
    height: 100%;
}

.it-menu-mobile ul li ul,
.it-category-mobile-menu ul li ul {
    padding: 0;
}

.it-menu-mobile ul li ul li,
.it-category-mobile-menu ul li ul li {
    padding: 0;
}

.it-menu-mobile ul li ul li a,
.it-category-mobile-menu ul li ul li a {
    margin-left: auto;
    width: 93%;
    padding: 10px 5%;
    text-shadow: none !important;
    visibility: visible;
    padding-left: 0;
    padding-right: 20px;
}

.it-menu-mobile ul li ul li li a,
.it-category-mobile-menu ul li ul li li a {
    width: 88%;
    padding: 10px 7%;
    padding-left: 0;
    padding-right: 20px;
}

.it-menu-mobile ul li ul li li li a,
.it-category-mobile-menu ul li ul li li li a {
    width: 83%;
    padding: 10px 9%;
    padding-left: 0;
    padding-right: 20px;
}

.it-menu-mobile ul li ul li li li li a,
.it-category-mobile-menu ul li ul li li li li a {
    width: 68%;
    padding: 10px 11%;
    padding-left: 0;
    padding-right: 20px;
}

.it-menu-mobile ul li:hover>a::after,
.it-category-mobile-menu ul li:hover>a::after {
    color: var(--it-theme-1);
}

.it-menu-mobile ul li:hover>a .dropdown-toggle-btn i,
.it-category-mobile-menu ul li:hover>a .dropdown-toggle-btn i {
    color: var(--it-theme-1);
}

.it-menu-mobile ul li:hover .mega-menu,
.it-category-mobile-menu ul li:hover .mega-menu {
    visibility: visible;
    opacity: 1;
    top: 0;
}

.it-menu-mobile ul li .mega-menu,
.it-menu-mobile ul li .submenu,
.it-category-mobile-menu ul li .mega-menu,
.it-category-mobile-menu ul li .submenu {
    position: static;
    min-width: 100%;
    padding: 0;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    display: none;
}

.it-menu-mobile ul li .mega-menu li,
.it-menu-mobile ul li .submenu li,
.it-category-mobile-menu ul li .mega-menu li,
.it-category-mobile-menu ul li .submenu li {
    float: none;
    display: block;
    width: 100%;
    padding: 0;
}

.it-menu-mobile ul li .mega-menu li:hover a .dropdown-toggle-btn,
.it-menu-mobile ul li .submenu li:hover a .dropdown-toggle-btn,
.it-category-mobile-menu ul li .mega-menu li:hover a .dropdown-toggle-btn,
.it-category-mobile-menu ul li .submenu li:hover a .dropdown-toggle-btn {
    color: var(--it-theme-1);
}

.it-menu-mobile .it-menu-content ul li:not(:last-child) .home-img-title a,
.it-category-mobile-menu .it-menu-content ul li:not(:last-child) .home-img-title a {
    border-bottom: none;
}

.it-menu-mobile * ul,
.it-menu-mobile * li,
.it-category-mobile-menu * ul,
.it-category-mobile-menu * li {
    transition: none !important;
}

.it-header-menu nav ul li.p-static {
    position: static;
}

.it-category-mobile-menu nav {
    display: none;
}

.it-megamenu-title {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.17px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    color: var(--it-common-black);
    border-bottom: 1px solid #EDEDED;
}

/* header end */

/*----------------------------------------*/
/*  11. categories css start
/*----------------------------------------*/
.it-categories-item {
    padding: 31px 20px;
    padding-bottom: 25px;
    border-radius: 8px;
    margin-bottom: 35px;
    transition: transform 0.5s ease;
    background-color: #F0F4F5;
    border: 1px solid #03594E;
}

.it-categories-item:hover span {
    animation: icon-bounce 0.8s 1;
}

.it-categories-item span {
    display: inline-block;
    margin-bottom: 26px;
    transition: transform 0.5s ease;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-categories-item h6 {
        font-size: 17px;
    }
}

.it-categories-area .it-categories-item h6 {
    font-size: 21px;
    font-family: var(--primary-font);
    color: var(--dark-color);
    line-height: 137%;
    font-weight: 400;
}

.it-categories-item.item-style-2 {
    border-color: #F2963B;
    background-color: #FDF4EC;
}

.it-categories-item.item-style-3 {
    border-color: #1C3664;
    background-color: #F4F8FF;
}

.it-categories-item.item-style-4 {
    border-color: #FF7777;
    background-color: #FFF6F6;
}

.it-categories-item.item-style-5 {
    border-color: #C7C702;
    background-color: #FFFFF6;
}

.it-categories-item.item-style-6 {
    border-color: #A446E2;
    background-color: #FCF6FF;
}

.it-categories-item.item-style-7 {
    border-color: #00A772;
    background-color: #F9FFFD;
}

.it-categories-item.item-style-8 {
    border-color: #DA25CE;
    background-color: #FFF4FE;
}

/* about us  */
.it-about-area .it-about-right .it-section-title {
    font-size: 60px;
    margin-bottom: 23px;
    line-height: 65px;
    font-weight: 500;
    color: var(--dark-color);
    font-family: var(--accent-font);
    text-transform: capitalize;
}

/* Wrapper */
.dps-about-wrapper {
    overflow: hidden;
}

/* Left Green Panel */
.dps-about-left {
    background-color: #024024;
    /* dark green */
    padding: 80px 0;
    display: flex;
    align-items: center;
}

/* Text adjustments */
.dps-about-left .it-section-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
}

.dps-about-left p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

/* Right Image Panel */
.dps-about-right-img {
    background-image: url("../img/slider/slider-3.png");
    background-size: cover;
    background-position: center;
    min-height: 550px;
}

/* Button spacing */
.dps-about-left .it-btn-yellow {
    margin-top: 30px;
    border-radius: 50px;
    padding: 14px 30px;
    gap: 10px;
    background: white;
    color: var(--accent-color);
}

.dps-about-left .it-btn-yellow.theme-bg span {
    color: var(--accent-color);
}

.dps-about-wrapper .it-about-right {
    margin-left: 230px;
}

.dps-about-wrapper .it-section-subtitle.yellow-style {
    border-color: #90B820;
    background-color: rgb(144 184 32 / 7%);
    color: #fff;
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 10px;
    padding: 10px 18px;
}

/* Responsive */
@media only screen and (max-width: 1440px) {
    .dps-about-wrapper .it-about-right {
        margin-left: 20px;
    }
}

@media (max-width: 991px) {
    .dps-about-left {
        padding: 40px 0;
    }

    .dps-about-left .it-section-title {
        font-size: 36px;
    }

    .dps-about-right-img {
        min-height: 350px;
    }

    .it-about-area .it-about-right .it-section-title {
        font-size: 45px;
        margin-bottom: 23px;
        line-height: 53px;
    }

    .dps-about-wrapper .it-about-right {
        margin-left: 20px;
        margin-bottom: 0;
    }
}

/* about us end */


/* testimonial css start */

@media (max-width: 767px) {
    .it-testimonial-area {
        overflow: hidden;
    }
}

.it-testimonial-item {
    padding: 30px;
    border-radius: 11px;
    width: 100%;
    height: 260px;
    display: flex;
    align-items: flex-end;
    justify-content: center;

    /* background image behaviour */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
    overflow: hidden;
}

/* Background images */
.it-testimonial-item.bg-img-1 {
    background-image: url("../img/gallery/img-1.png");
}

.it-testimonial-item.bg-img-2 {
    background-image: url("../img/gallery/img-2.png");
}

.it-testimonial-item.bg-img-3 {
    background-image: url("../img/gallery/img-3.png");
}

.it-testimonial-item.bg-img-4 {
    background-image: url("../img/gallery/img-4.png");
}

.it-testimonial-item::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .7;
    /* Linear Gradient (same for all images) */
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 0%,
            #0F2540 100%);

    z-index: 1;
}

/* Keep content above gradient */
.it-testimonial-content {
    position: relative;
    z-index: 2;
}

@media (max-width: 767px) {
    .it-testimonial-item {
        padding: 15px;
        padding-bottom: 30px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .it-testimonial-item {
        padding: 30px;
    }
}

.it-testimonial-text h5 {
    line-height: 1.5;
    text-align: center;
    color: white;
    font-size: 22px;
    font-weight: 400;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-testimonial-text h5 {
        font-size: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .it-testimonial-quote {
        margin-bottom: 15px !important;
    }
}

.it-testimonial-content {
    margin-right: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
    .it-testimonial-content {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .it-testimonial-content {
        margin-right: 0;
        margin-top: 40px;
        transform: translateX(0);
    }
}

@media (max-width: 767px) {
    .it-testimonial-arrow-wrap {
        display: block;
    }
}

.it-testimonial-arrow-wrap button {
    display: inline-block;
    height: 50px;
    width: 50px;
    line-height: 1;
    text-align: center;
    border-radius: 50%;
    padding: 0;
    border: 1px solid var(--it-theme-1);
    background-color: var(--it-common-white);
}

.it-testimonial-arrow-wrap button.arrow-prev {
    position: absolute;
    top: 50%;
    left: -25px;
    z-index: 1;
    transform: translateY(-50%);
}

.it-testimonial-arrow-wrap button.arrow-next {
    position: absolute;
    top: 50%;
    right: -25px;
    z-index: 1;
    transform: translateY(-50%);
}

/* ===============================
   FULL WIDTH + ALIGNED SECTION
================================ */

.it-funfact-area {
    position: relative;
    width: 100%;
    padding: 0;
}
.it-funfact-area .row [class*=col-]:nth-child(2) .it-funfact-item {
    padding-left: 55px;
}

/* Full-width background while keeping container alignment */
.it-funfact-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: #6f8a73;
    z-index: -1;
}

/* Remove Bootstrap gaps */
.it-funfact-area .row {
    margin: 0;
}

.it-funfact-area [class*="col-"] {
    padding: 0;
}

/* ===============================
   FUNFACT CARD DESIGN
================================ */

.it-funfact-item {
    position: relative;
    height: 230px;
    padding: 30px 55px;
    display: flex;
    align-items: flex-start;
    color: #fff;
    overflow: hidden;
    justify-content: center;
}

/* Background images */
.it-funfact-item.style-1 {
    background: url("../img/service/mission-statement.png") center/cover no-repeat;
}

.it-funfact-item.style-2 {
    background: url("../img/service/society.png") center/cover no-repeat;
}

.it-funfact-item.style-3 {
    background: url("../img/service/objectives.png") center/cover no-repeat;
}

.it-funfact-item.style-4 {
    background: url("../img/service/motto.png") center/cover no-repeat;
}

/* Dark overlay */
.it-funfact-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 0;
}

/* Vertical separators */
.it-funfact-item {
    border-right: 3px solid #9ac40f;
}

.it-funfact-item.style-4 {
    border-right: none;
}

/* ===============================
   ICON STYLE
================================ */

.it-funfact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* ===============================
   TEXT + ARROW
================================ */

.it-funfact-content {
    position: relative;
    z-index: 2;
}

.it-funfact-content span {
    font-size: 21px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--primary-font);
}
.it-funfact-item {
  position: relative;
  flex-direction: column;
    align-items: flex-start;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .it-funfact-item {
    text-align: center;
    padding: 0;
    padding-bottom: 50px;
  }
}
/* .it-funfact-content span::after {
    content: "↗";
    font-size: 14px;
} */

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
    .it-funfact-item {
        height: 200px;
    }
}
@media (max-width: 767px) {
    .it-funfact-area .row [class*=col-]:nth-child(2) .it-funfact-item {
      padding-left: 20px;
  }
  .cards-section .row [class*=col-]:nth-child(4) .it-funfact-item {
    padding-left: 20px;
  }
  .it-funfact-item {
    border-right: 0;
    border-bottom: 3px solid #9ac40f !important;
  } 
  .it-funfact-item:last-child {
    border-bottom: 0;
  } 
  .it-footer-widget{
    padding-bottom: 20px;
  }
  .it-testimonial-arrow-wrap button.arrow-prev {
    position: absolute;
    top: 50%;
    left: -12px;
    z-index: 1;
    transform: translateY(-50%);
}
.it-testimonial-arrow-wrap button.arrow-next {
    position: absolute;
    top: 50%;
    right: -12px;
    z-index: 1;
    transform: translateY(-50%);
}
.it-testimonial-arrow-wrap button {
    display: inline-block;
    height: 36px;
    width: 35px;

}


}
@media (max-width: 575px) {
    .it-funfact-item {
        height: 200px;
        padding: 20px;
    }
}

.it-slider-active .swiper-slide-active .it-slider-content-text p, .it-slider-active .swiper-slide-active .it-slider-title, .it-slider-active .swiper-slide-active .it-slider-btn {
  display: inline-block;
  animation-fill-mode: both;
  animation-name: fadeInUp;
}
.it-slider-wrap .swiper-slide.swiper-slide-active .it-slider-bg img {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.it-slider-wrap .swiper-slide.swiper-slide-active .it-slider-title {
  animation: img-anim-bottom 1.5s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  animation-name: img-anim-bottom;
  animation-duration: 1.5s;
}
.it-slider-wrap .swiper-slide.swiper-slide-active .it-slider-content-text p {
  animation: img-anim-bottom 1.7s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  animation-name: img-anim-bottom;
  animation-duration: 1.7s;
}
.it-slider-wrap .swiper-slide.swiper-slide-active .it-slider-btn {
  animation: img-anim-bottom 1.9s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  animation-name: img-anim-bottom;
  animation-duration: 1.9s;
}
.it-slider-arrow-wrap {
  position: absolute;
  top: 32%;
  right: 9%;
  z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .it-slider-arrow-wrap {
    display: none;
  }
}
.it-slider-arrow-wrap button {
    width: 81px;
    height: 44px;
    padding: 0;
    display: block;
    border-radius: 30px;
    border: 1px solid var(--it-common-white);
    color: white;
    background: var(--primary-color);
}
.it-slider-arrow-wrap button.arrow-next {
  margin-left: 50px;
  margin-bottom: 8px;
}
.it-slider-arrow-wrap button:hover {
      color: white;
    border: 1px solid #03594e;
    background-color: rgb(144 184 32 / 39%);
    backdrop-filter: blur(9px);
}
.it-slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}
.it-slider-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-position: center;
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 9000ms ease, opacity 1500ms ease-in;
  transition: transform 9000ms ease, opacity 1500ms ease-in, -webkit-transform 9000ms ease;
}
.it-slider-overlay::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -2;
    background: linear-gradient(180deg, rgb(15 37 64 / 0%) 0%, rgb(2 64 36) 100%);
    opacity: .7;
}
.it-slider-content {
  padding-top: 160px;
    padding-bottom: 200px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .it-slider-content {
    padding-top: 140px;
    padding-bottom: 240px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .it-slider-content {
    padding-top: 140px;
    padding-bottom: 240px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .it-slider-content {
    padding-top: 130px;
    padding-bottom: 220px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .it-slider-content {
    padding-top: 120px;
    padding-bottom: 230px;
  }
}
@media (max-width: 767px) {
  .it-slider-content {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .it-slider-content {
    padding-top: 120px;
    padding-bottom: 210px;
  }
}
.it-slider-content p {
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .it-slider-content p {
    font-size: 14px;
    line-height: 1.7;
  }
  .it-slider-content p br {
    display: none;
  }
}
.it-slider-title {
    font-size: 80px;
    line-height: 93px;
    font-weight: 600;
    margin-bottom: 23px;
    color: white;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .it-slider-title {
    font-size: 48px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .it-slider-title {
    font-size: 42px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .it-slider-title {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .it-slider-title {
    font-size: 45px;
    line-height: 1.25;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .it-slider-title {
    font-size: 46px;
  }
}
.it-slider-title span svg {
  animation: title-animation 4s infinite;
}

.border-radius-100 {
  border-radius: 100px !important;
}

.it-copyright-left p a {
  color: var(--it-theme-1);
}
.theme-bg {
  background: var(--secondary-color);
}
.it-footer-style-2 .it-copyright-left p a {
    color: var(--primary-color);
    font-weight: 500;
}

.it-funfact-area .row [class*=col-]:nth-child(3) .it-funfact-item {
    padding-left: 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .it-slider-title {
        font-size: 75px;
    }
}
@media (max-width: 1024px) {
    .it-funfact-area .row [class*=col-]:nth-child(2) .it-funfact-item {
        padding-left: 15px;
    }
    .it-funfact-content span {
        font-size: 17px;
        font-weight: 400;
        display: flex;
        align-items: center;
        gap: 8px;
        font-family: var(--primary-font);
        justify-content: flex-start;
    }
    .it-funfact-content {
        position: relative;
        z-index: 2;
        text-align: left;
    }
    .it-funfact-item {
        padding-left: 15px;
    }
    .it-header-top-login-box a img {
        display: none;
    }
}


.it-breadcrumb-area {
    background-position: revert-layer;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 35px;
    padding-bottom: 35px;
    /*background-color: var(--it-gray-3);*/
    background: rgb(2 64 36 / 6%);
}
.it-breadcrumb-title {
    font-size: 45px;
    line-height: 1.56;
    position: relative;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
    color: var(--it-common-black);
}
.it-breadcrumb-list {
    display: inline-block;
    border-radius: 8px;
    padding: 12px 30px;
    background-color: var(--it-theme-1);
}
.it-breadcrumb-list span {
    display: inline-block;
    letter-spacing: 0.01em;
    color: var(--it-common-white);
}
.it-breadcrumb-list span.dvdr {
    margin: 0 12px;
    transform: translateY(-1px);
    color: var(--it-common-white);
}
.it-breadcrumb-list i {
    font-style: normal;
    letter-spacing: 0.01em;
    color: var(--it-common-white);
}

.it-about-thumb img{
    border-radius: 12px;
}


.it-about-area .it-about-text ul li{
    padding-bottom: 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--dark-color);
    font-family: var(--primary-font);
    padding-left: 28px;
    list-style-type: none;
    position: relative;
}
.it-about-area .it-about-text ul li svg{
    position: absolute;
    top: 6px;
    left: 0;
}
.it-about-area .it-about-text ol{
    padding-left: 20px;
}
.it-about-area .it-about-text ol li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--dark-color);
    font-family: var(--primary-font);
    padding-bottom: 15px;
}

.it-blog-item {
    padding: 20px;
    transition: 0.3s;
    border-radius: 9px;
    background-color: var(--it-common-white);
    border: 1px solid rgba(26, 182, 157, 0.1);
    box-shadow: 0 0 16px 0 rgb(1 6 20 / 5%);
    height: 660px;
}
.it-blog-item .it-blog-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #4d4d4d;
    font-family: var(--primary-font);
}
.it-blog-thumb {
    overflow: hidden;
}
.it-blog-thumb img {
    transition: 1.3s all ease;
}
.border-radius-20 img {
    border-radius: 9px;
}
.border-line {
    font-size: 25px;
    color: var(--it-theme-1);
    display: inline;
    background-repeat: no-repeat;
    background-size: 0% 1px, 0 1px;
    background-position: 100% 100%, 0 100%;
    transition: background-size 0.3s linear;
    background-image: linear-gradient(currentcolor, currentcolor), linear-gradient(currentcolor, currentcolor);
}

table {
    caption-side: bottom;
    border-collapse: collapse;
    border: 1px solid;
}
.table>:not(caption)>*>* {
    padding: 15px;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table-content .product-price a{
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cart-area h5{
    font-size: 25px;
    color: var(--primary-color);
}

.it-categories-area .it-categories-item h6 a{
    color: var(--accent-color) !important;
}
.it-blog-tag {
    position: absolute;
    left: 20px;
    top: 20px;
    border-radius: 5px;
    padding: 6.5px 20px;
    padding-bottom: 8px;
    color: var(--it-common-white);
    background-color: var(--it-theme-1);
    border: 1px solid rgba(3, 89, 78, 0.3);
}
.holiday-blog .it-blog-item {
    padding: 20px;
    transition: 0.3s;
    border-radius: 9px;
    background-color: var(--it-common-white);
    border: 1px solid rgba(26, 182, 157, 0.1);
    box-shadow: 0 0 16px 0 rgb(1 6 20 / 5%);
    height: auto;
}
.holiday-blog .it-blog-item .it-btn-yellow {
    font-size: 16px;
    padding: 10px 10px;
    line-height: 1.1;
    font-weight: 400;
    text-align: center;
    transition: 0.4s;
    border-radius: 8px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--primary-font);
    background-color: var(--secondary-color);
    border: 1px solid #ffffff63;
}
.sidebar-widget {
    padding: 45px 37px;
    border-radius: 20px;
    background-color: var(--it-gray-1);
    border: 1px solid rgba(31, 36, 50, 0.1);
}
.sidebar-widget-title {
    font-size: 24px;
    text-transform: capitalize;
    color: var(--it-common-black);
    font-family: var(--it-ff-spartan-semibold);
}

ol li{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--dark-color);
    font-family: var(--primary-font);
}

.exam-area .it-about-text p a {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
    color: var(--accent-color);
    font-family: var(--primary-font);
    cursor: pointer;
}
.exam-area .it-about-text p a:hover {
    color: var(--dark-color);
}

/*.parents-area .it-about-text ul li:before {*/
/*    content: "";*/
/*    display: inline-block;*/
/*    width: 6px;*/
/*    height: 6px;*/
/*    border-radius: 10px;*/
/*    background: var(--accent-color);*/
/*    margin-right: 10px;*/
/*    position: relative;*/
/*    top: -2px;*/
/*}*/
.parents-area .it-about-text ul li {
    padding-bottom: 7px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--dark-color);
    font-family: var(--primary-font);
    padding-left: 0;
    list-style-type: disc;
    position: relative;
}
.parents-area .it-about-text ul li::marker {
    color: var(--primary-color);
}
.parents-area .it-about-text ul {
    margin: 0px;
    padding: 0px;
    margin-left: 22px;
}
.rules .it-about-text ol li {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--dark-color);
    font-family: var(--primary-font);
    padding-bottom: 7px;
}
.rules-content{
    margin-bottom:15px;
}
.rules-content p{
    margin-bottom: 0;
}

/* isolate from theme */
.class-filter-wrapper {
  width: 260px;
  margin: 0 auto;
  position: relative;
}

.class-dropdown {
  border: 1px solid #ced4da;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  position: relative;
  height: 50px;
  width: 100%;
      line-height: 28px;
    padding: 0 15px;
    text-align: left;
    display: flex;
    align-items: center;
}

.class-dropdown ul {
  position: absolute;
  top: 52px;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ced4da;
  border-radius: 6px;
  display: none;
  z-index: 9999;

  /* KILL THEME LIST STYLES */
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.class-dropdown ul li {
  padding: 10px 15px;
  cursor: pointer;

  /* KILL THEME LIST STYLES */
  list-style: none !important;
  margin: 0 !important;
}

.class-dropdown ul li:hover {
  background: #f5f5f5;
}

.news-section .it-blog-item .it-blog-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #4d4d4d;
    font-family: var(--primary-font);
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-section .border-radius-20 img {
    border-radius: 9px;
    height: 250px;
    object-fit: cover;
    object-position: top;
}

.gallery-section .it-blog-item {
    padding: 0;
    transition: 0.3s;
    border-radius: 7px;
    background-color: var(--it-common-white);
    border: 1px solid rgba(26, 182, 157, 0.1);
    box-shadow: 0 0 16px 0 rgb(1 6 20 / 5%);
    height: auto;
}
.gallery-section .it-blog-thumb img {
    transition: 1.3s all ease;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

/* Tabs */
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.gallery-tabs .tab-btn {
      background: #03594e38;
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    color: #03594e;
    transition: 0.3s;
    font-weight: 600;
}

.gallery-tabs .tab-btn.active,
.gallery-tabs .tab-btn:hover {
  background: #8db600;
  color: white;
}

/* Gallery */
.gallery-item { display: none; }
.gallery-item.show { display: block; }

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  transition: transform 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90%;
  max-height: 90%;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  user-select: none;
}

.lightbox-arrow.left { left: 20px; }
.lightbox-arrow.right { right: 20px; }

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
}

.video-card {
  border-radius: 12px;
  overflow: hidden;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  padding: 15px;
  font-size: 16px;
  line-height: 1.6;
}

.alumni-section .class-filter-wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.wrap-location{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-us .it-contact-3-form-box {
    padding: 0;
    padding-bottom: 0;
    border-radius: 10px;
    width: 100%;
}
.wrap-location a {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--dark-color);
    font-family: var(--primary-font);
}

.padding-start{
    padding-left: 30px;
}


@media (max-width: 767px) {
   .it-blog-item {
        padding: 15px;
        height: auto;
    } 
}
