@charset "UTF-8";
/*======================================================================================
  >> TABLE OF CONTENTS <<
========================================================================================
01. Mixins & Variables
02. Base
03. Components
04. Layouts
05. Sections
======================================================================================*/
/*---------------------------------------
01. Mixins & Variables
---------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&amp;display=swap");
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

:root {
    --body: #FAF6F1;
    --black: #000;
    --blue: #1572f3;
    --white: #fff;
    --theme: #1672f3;
    --header: #16333B;
    --text: #16333B;
    --border: #FCFCFC;
    --bg: #16333B;
    --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
    --gradient-brand: linear-gradient(135deg, #000486 0%, #5b60fe 100%);
}

/*---------------------------------------
02. Base
---------------------------------------*/
.round-20 {
    border-radius: 20px;
}

.text-blue {
    color: #1572f3;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--text);
    background-color: var(--body);
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

@media (max-width: 575px) {
    body {
        font-size: 14px;
    }
}

.text-justify {
    text-align: justify !important;
}

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

button {
    border: none;
    background-color: transparent;
    padding: 0;
}

input:focus {
    color: var(--white);
    outline: none;
}

input {
    color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Quicksand", sans-serif;
    margin: 0px;
    padding: 0;
    color: var(--header);
}

h1 {
    font-size: 88px;
    font-weight: 700;
    line-height: 100%;
}

@media (max-width: 1199px) {
    h1 {
        font-size: 70px;
    }
}

@media (max-width: 991px) {
    h1 {
        font-size: 60px;
        line-height: 110% !important;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 48px;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 45px;
    }
}

@media (max-width: 470px) {
    h1 {
        font-size: 38px;
    }
}

h2 {
    font-size: 64px;
    font-weight: 700;
    line-height: 110%;
}

@media (max-width: 1399px) {
    h2 {
        font-size: 44px;
    }
}

@media (max-width: 1199px) {
    h2 {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    h2 {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    h2 {
        font-size: 36px;
    }
}

@media (max-width: 470px) {
    h2 {
        font-size: 32px;
    }
}

h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 133.333%;
}

@media (max-width: 575px) {
    h3 {
        font-size: 22px;
    }
}

h4 {
    font-size: 18px;
    font-weight: 400;
}

h5 {
    font-size: 18px;
    font-weight: 700;
}

h6 {
    font-size: 16px;
    font-weight: 700;
}

a {
    text-decoration: none;
    outline: none !important;
    cursor: pointer;
    color: var(--header);
    transition: all 0.4s ease-in-out;
}

p {
    margin: 0px;
    transition: all 0.4s ease-in-out;
}

span {
    margin: 0px;
}

.theme-btn {
    font-size: 18px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-weight: 500;
    text-transform: capitalize;
    height: 42px;
    line-height: 42px;
    background: linear-gradient(135deg, #000486 0%, #5b60fe 100%);
    overflow: hidden;
    display: inline-block;
    padding: 0 15px;
    color: #fff;
    border-radius: 0.5rem;
    font-family: "Inter", sans-serif; 
}

.theme-btns {
    font-size: 18px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-weight: 500;
    text-transform: capitalize;
    height: 42px;
    line-height: 42px;
    background: linear-gradient(135deg, #000486 0%, #5b60fe 100%);
    overflow: hidden;
    border: 1px solid #fff;
    display: inline-block;
    padding: 0 15px;
    color: #fff;
    border-radius: 0.5rem;
    font-family: "Inter", sans-serif;
}

.theme-btns:hover {
    background-color: #fff;
    border: 1px solid #df2523;
    color: #df2523;
}

.theme-btns2 {
    font-size: 18px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-weight: 500;
    text-transform: capitalize;
    height: 42px;
    line-height: 42px;
    background-color: transparent;
    overflow: hidden;
    border: 1px solid #fff;
    display: inline-block;
    padding: 0 15px;
    color: #fff;
    border-radius: 0.5rem;
    font-family: "Inter", sans-serif;
}

.theme-btns2:hover {
    background-color: #0d4426;
    border: 1px solid #fff;
    color: #fff;
}

@media (max-width: 575px) {
    .theme-btn {
        padding: 0 22px;
        height: 42px;
        line-height: 42px;
        font-size: 15px;
    }
}

.theme-btn i {
    margin-left: 10px;
}

.theme-btn::before {
    content: "";
    position: absolute;
    width: 0;
    top: -10px;
    height: 0;
    background-color: var(--header);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.8s ease;
    z-index: -1;
}

.theme-btn:hover {
    color: var(--white);
    border: 1px solid #0d4426;
    background-color: #fff;
}

.theme-btn:hover::before {
    width: 800px;
    height: 800px;
    display: inline-block;
}

.theme-btn.header-bg {
    background: linear-gradient(135deg, #000486 0%, #5b60fe 100%);
    color: var(--white);
}

.theme-btn.header-bg::before {
    background-color: var(--theme);
}

.theme-btn.header-bg:hover {
    color: var(--header);
}

@keyframes slideRight {
    49% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    50% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    51% {
        opacity: 1;
    }
}

@keyframes slideUp {
    49% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    51% {
        opacity: 1;
    }
}

/*---------------------------------------
03. Components
---------------------------------------*/
.mean-container a.meanmenu-reveal {
    display: none;
}

.mean-container .mean-nav {
    background: none;
    margin-top: 0;
}

.mean-container .mean-bar {
    padding: 0;
    min-height: auto;
    background: none;
    background: none;
}

.mean-container .mean-nav > ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
    display: block !important;
}

.mean-container a.meanmenu-reveal {
    display: none !important;
}

.mean-container .mean-nav ul li a {
    width: 100%;
    padding: 10px 0;
    color: #fff;
    font-size: 16px;
    line-height: 2;
    font-weight: 500;
    text-transform: capitalize;
    border-bottom: 1px solid rgba(193, 210, 206, 0.0705882353) !important;
    border: none;
    font-family: "Inter", sans-serif;
}

.mean-container .mean-nav ul li a:hover {
    color: var(--theme);
}

.mean-container .mean-nav ul li a:last-child {
    border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
    color: var(--theme);
}

.mean-container .mean-nav ul li a.mean-expand {
    margin-top: 5px;
    padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
    display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
    display: inline-block;
    font-size: 18px;
}

.mean-container .mean-nav > ul > li:first-child > a {
    border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
    transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
    height: 200px;
    width: 100%;
    padding: 0;
    border-top: 0;
    margin-bottom: 20px;
}

.back-to-top {
    background-color: var(--theme);
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: var(--header);
    font-size: 18px;
    position: fixed;
    display: inline-block;
    z-index: 999;
    right: 8px;
    bottom: 20px;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    border-radius: 12px;
}

.back-to-top:hover {
    background-color: var(--header);
    color: var(--white);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translate(0);
}

.cursor-outer {
    margin-inline-start: -12px;
    margin-top: -12px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--header);
    background-color: var(--header);
    box-sizing: border-box;
    z-index: 10000000;
    opacity: 0.34;
    transition: all 0.4s ease-out 0s;
}

.cursor-outer.cursor-hover {
    opacity: 0.14;
}

.cursor-outer.cursor-big {
    opacity: 0;
}

.mouseCursor {
    position: fixed;
    top: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    bottom: 0;
    pointer-events: none;
    border-radius: 50%;
    transform: translateZ(0);
    visibility: hidden;
    text-align: center;
}

.mouseCursor.cursor-big {
    width: 20px;
    height: 20px;
    margin-inline-start: -12px;
    margin-top: -12px;
}

.cursor-inner {
    margin-inline-start: -3px;
    margin-top: -3px;
    width: 10px;
    height: 10px;
    z-index: 10000001;
    background-color: var(--header);
    opacity: 1;
    transition: all 0.24s ease-out 0s;
}

.cursor-inner span {
    color: var(--white);
    line-height: 60px;
    opacity: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.cursor-inner.cursor-big span {
    opacity: 1;
}

.cursor-inner.cursor-hover {
    margin-inline-start: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--header);
    border: 1px solid #686363;
    opacity: 0;
}

.search-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    -webkit-transition: all 1s ease;
    -khtml-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.search-popup__overlay {
    position: fixed;
    width: 224vw;
    height: 224vw;
    top: calc(90px - 112vw);
    right: calc(50% - 112vw);
    z-index: 3;
    display: block;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: scale(0);
    -khtml-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: transform 0.8s ease-in-out;
    -khtml-transition: transform 0.8s ease-in-out;
    -moz-transition: transform 0.8s ease-in-out;
    -ms-transition: transform 0.8s ease-in-out;
    -o-transition: transform 0.8s ease-in-out;
    transition: transform 0.8s ease-in-out;
    transition-delay: 0s;
    transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    background-color: #000000;
    opacity: 0.7;
    cursor: url(../images/close.png), auto;
}

@media (max-width: 767px) {
    .search-popup__overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        width: 100%;
        height: 100%;
        border-radius: 0;
        transform: translateY(-110%);
    }
}

.search-popup__content {
    position: fixed;
    width: 0;
    max-width: 560px;
    padding: 30px 15px;
    left: 50%;
    top: 50%;
    opacity: 0;
    z-index: 3;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    -khtml-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    -moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    -ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    -o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    transition-delay: 0s, 0.8s, 0s;
    transition-delay: 0s, 0.4s, 0s;
    transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
}

.search-popup__form {
    position: relative;
}

.search-popup__form input[type=search],
.search-popup__form input[type=text] {
    width: 100%;
    height: 66px;
    border: none;
    outline: none;
    padding-left: 20px;
    background-color: var(--white);
    font-size: 16px;
    font-weight: 400;
    color: var(--text);
    transition: all 500ms ease;
    border-radius: 4px;
    padding-right: 80px;
}

.search-popup__form input[type=search]:focus,
.search-popup__form input[type=text]:focus {
    color: var(--header);
}

.search-popup__form .search-btn {
    padding: 0;
    width: 66px;
    height: 66px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 4px;
    font-size: 20px;
    color: var(--header);
    background-color: var(--theme);
    transition: all 0.4s ease-in-out;
}

.search-popup__form .search-btn:hover {
    background-color: var(--header);
    color: var(--white);
}

.search-popup__form .eolexi-btn svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.search-popup.active {
    z-index: 999999;
}

.search-popup.active .search-popup__overlay {
    top: auto;
    bottom: calc(90px - 112vw);
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    transition-delay: 0s;
    -webkit-transition-delay: 0s;
    opacity: 0.7;
    -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}

@media (max-width: 767px) {
    .search-popup.active .search-popup__overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        width: 100%;
        height: 100%;
        border-radius: 0;
        transform: translateY(0%);
    }
}

.search-popup.active .search-popup__content {
    width: 100%;
    opacity: 1;
    transition-delay: 0.7s;
    -webkit-transition-delay: 0.7s;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.loader {
    width: fit-content;
    font-size: 120px;
    line-height: 1.5;
    font-family: "Quicksand", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0);
    -webkit-text-stroke: 1px #db2c1d;
    background: radial-gradient(1.13em at 50% 1.6em, #db2c1d 99%, rgba(0, 0, 0, 0) 101%) calc(50% - 1.6em) 0/3.2em 100% text, radial-gradient(1.13em at 50% -0.8em, rgba(0, 0, 0, 0) 99%, #db2c1d 101%) 50% 0.8em/3.2em 100% repeat-x text;
    animation: l9 2s linear infinite;
}

@media (max-width: 575px) {
    .loader {
        font-size: 70px;
    }
}

.loader:before {
    content: "Heartly";
}

@keyframes l9 {
    to {
        background-position: calc(50% + 1.6em) 0, calc(50% + 3.2em) 0.8em;
    }
}

@-webkit-keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}

@keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}

@keyframes gelatine {

    from,
    to {
        transform: scale(1, 1);
    }

    25% {
        transform: scale(0.7, 1.1);
    }

    50% {
        transform: scale(1.1, 0.7);
    }

    75% {
        transform: scale(0.95, 1.05);
    }
}

@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rounded {
    50% {
        transform: rotate(15deg);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@-webkit-keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@keyframes spinner {
    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg);
    }
}

@-webkit-keyframes letters-loading {

    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }

    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@keyframes letters-loading {

    0%,
    75%,
    100% {
        opacity: 0;
        transform: rotateY(-90deg);
    }

    25%,
    50% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

@keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes tpswing {
    0% {
        -webkit-transform: rotate(20deg);
        -ms-transform: rotate(20deg);
        transform: rotate(20deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes width {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@-webkit-keyframes width {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@-webkit-keyframes loaderspin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes loaderpulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

@keyframes rounded {
    50% {
        transform: rotate(20deg);
    }
}

@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}

.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

@keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

.float-bob-x {
    -webkit-animation-name: float-bob-x;
    animation-name: float-bob-x;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(30px);
    }

    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}

@keyframes float-bob-x {
    0% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }

    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}

@keyframes bounce-x {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.bounce-x {
    -webkit-animation: bounce-x 7s infinite linear;
    animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
    0% {
        left: -20px;
    }

    50% {
        left: 50%;
        width: 20px;
        height: 20px;
    }

    100% {
        left: 50%;
        width: 375px;
        height: 375px;
    }
}

@keyframes criss-cross-right {
    0% {
        right: -20px;
    }

    50% {
        right: 50%;
        width: 20px;
        height: 20px;
    }

    100% {
        right: 50%;
        width: 375px;
        height: 375px;
    }
}

@keyframes rotated2 {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes zoom {
    0% {
        transform: scale(0.5);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.5);
    }
}

@keyframes translateY2 {
    0% {
        -webkit-transform: translateY(-30px);
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -o-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    100% {
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
        transform: translateY(20px);
    }
}

@keyframes translateX2 {
    0% {
        -webkit-transform: translateX(-30px);
        -moz-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        -o-transform: translateX(-30px);
        transform: translateX(-30px);
    }

    100% {
        -webkit-transform: translatXY(20px);
        -moz-transform: translateX(20px);
        -ms-transform: translateX(20px);
        -o-transform: translateX(20px);
        transform: translateX(20px);
    }
}

@keyframes moving {
    0% {
        transform: translatey(0px);
    }

    20% {
        transform: translateX(-50px);
    }

    50% {
        transform: translatey(-40px);
    }

    100% {
        transform: translatey(0px);
    }
}

/*img-animation**********************/
.img-custom-anim-right {
    animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@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;
    }
}

.img-custom-anim-left {
    animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
    opacity: 0;
}

@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;
    }
}

.img-custom-anim-top {
    animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
}

@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 animate-positive {
    0% {
        width: 0;
    }
}

@keyframes scale {
    0% {
        top: -1000px;
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.animation-infinite {
    animation: ShapeAnim 50s linear infinite;
    height: 30px;
    width: 100%;
    background-repeat: repeat;
    overflow: hidden;
}

@keyframes ShapeAnim {
    0% {
        background-position: top left;
    }

    100% {
        background-position: top left 3000px;
    }
}

.splt-txt .whitespace {
    width: 8px;
}

.splt-txt.animated .char {
    -webkit-animation: fadeIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    animation: fadeIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    -webkit-animation-delay: calc(30ms * var(--char-index));
    animation-delay: calc(30ms * var(--char-index));
}

.splt-txt-bounce .whitespace {
    width: 20px;
}

@media (max-width: 991px) {
    .splt-txt-bounce .whitespace {
        width: 10px;
    }
}

.splt-txt-bounce.animated .char {
    -webkit-animation: bounceIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    animation: bounceIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
    -webkit-animation-delay: calc(30ms * var(--char-index));
    animation-delay: calc(30ms * var(--char-index));
}

/*---------------------------------------
04. Layouts
---------------------------------------*/
@media (max-width: 1199px) {
    .menu-thumb {
        display: none !important;
    }
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0;
    position: relative;
}

.header-main .main-menu ul {
    margin-bottom: 0;
}

.header-main .main-menu ul .menu-thumb {
    position: inherit;
}

.header-main .main-menu ul li {
    position: relative;
    list-style: none;
    display: inline-block;
    margin-inline-end: 15px;
}

.header-main .main-menu ul li:last-child {
    margin-inline-end: 0;
}

.header-main .main-menu ul li a {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: #16333B;
    font-family: "Inter", sans-serif;
    padding: 20px 0;
    text-align: left;
    position: relative;
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li a i {
    margin-left: 4px;
    font-size: 12px;
}

.header-main .main-menu ul li a:hover {
    color: #e1181a;
}

.header-main .main-menu ul li .submenu {
    position: absolute;
    top: 100%;
    inset-inline-start: 0;
    min-width: 290px;
    background: var(--white);
    border-radius: 4px;
    z-index: 99999;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    border: 1px solid var(--theme);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transform: scaleY(0);
    transform-origin: top;
    visibility: hidden;
    gap: 0;
    padding: 10px 0;
    transition: 0.4s;
}

.header-main .main-menu ul li .submenu li {
    display: block;
    width: 100%;
    margin: 0;
}

.header-main .main-menu ul li .submenu li a {
    position: relative;
    z-index: 11;
    font-size: 14px;
    font-weight: 500;
    color: #16333B;
    line-height: 38px;
    padding: 0px 0px 0px 27px;
    padding-right: 12px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-main .main-menu ul li .submenu li a::before {
    content: "";
    position: absolute;
    width: 0px;
    height: 2px;
    background: var(--theme);
    left: 14px;
    bottom: 18px;
    transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li .submenu li a:hover {
    color: var(--theme) !important;
}

.header-main .main-menu ul li .submenu li:last-child a {
    border: none;
}

.header-main .main-menu ul li .submenu li .submenu {
    inset-inline-start: 100%;
    top: 0;
    visibility: hidden;
    opacity: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.header-main .main-menu ul li .submenu li:hover > a {
    color: var(--theme) !important;
    margin-left: 10px;
}

.header-main .main-menu ul li .submenu li:hover > a::before {
    width: 10px;
}

.header-main .main-menu ul li .submenu li:hover > a::after {
    color: var(--theme);
}

.header-main .main-menu ul li .submenu li:hover > .submenu {
    -webkit-transform: translateY(1);
    -moz-transform: translateY(1);
    -ms-transform: translateY(1);
    -o-transform: translateY(1);
    transform: translateY(1);
    visibility: visible;
    opacity: 1;
}

.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
    position: absolute;
    top: 50%;
    inset-inline-end: 25px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--theme);
}

.header-main .main-menu ul li .has-homemenu {
    padding: 20px 20px 10px 20px !important;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    right: 0;
    padding: 0;
    width: 100%;
    z-index: 999;
    overflow: hidden;
    margin: auto;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
    position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
    position: relative;
    border-radius: 10px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    margin-top: 20px;
    left: 25px;
    right: 25px;
}

@media (max-width: 1399px) {
    .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .gt-theme-btn {
        font-size: 14px;
        min-width: 140px;
    }
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
    justify-content: center;
    line-height: 1;
    background-color: var(--theme);
    color: var(--black);
    border-radius: 30px;
    max-width: 180px;
    margin: 0 auto;
    height: 50px;
    line-height: 50px;
    padding: 0 28px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn i {
    font-size: 16px;
    margin-left: 10px;
    margin-right: 0;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
    color: var(--white) !important;
    background-color: var(--header);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
    background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: "";
    border-radius: 10px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
    visibility: visible;
    opacity: 1;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
    opacity: 1;
    visibility: visible;
    bottom: 50%;
    transform: translateY(50%);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
    width: 100%;
    border-radius: 10px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb a {
    padding: 0;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
    text-align: center;
    margin: 15px auto;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title a {
    color: #16333B;
}

.header-main .main-menu ul li:hover > a {
    color: var(--theme);
}

.header-main .main-menu ul li:hover > a::after {
    color: var(--theme);
}

.header-main .main-menu ul li:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
    transition: all 0.5s ease;
}

.header-main .header-right {
    gap: 30px;
}

@media (max-width: 1399px) {
    .header-main .header-right {
        gap: 20px;
    }
}

.header-main .header__hamburger {
    line-height: 1;
}

.header-main .sidebar__toggle {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 6px;
    width: 25px;
    height: 25px;
    position: relative;
    top: 10px;
    inset-inline-start: 0;
    -webkit-margin-start: 5px;
    margin-inline-start: 5px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.header-main .sidebar__toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background-color: var(--white);
    border-radius: 10px;
    margin-inline-end: auto;
    backface-visibility: hidden;
    transition: all 0.3s;
}

.header-main .sidebar__toggle span:last-child,
.header-main .sidebar__toggle span:first-child {
    width: 25px;
}

.header-main .sidebar__toggle.mobile_menu_bar {
    width: 50px;
    height: 50px;
    padding: 12px;
    background: var(--white);
    border-radius: 7px;
}

.header-main .sidebar__toggle.mobile_menu_bar span {
    background-color: var(--white);
}

.header-main .sidebar__toggle:hover span {
    width: 100%;
}

.header-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

@media (max-width: 1199px) {
    .header-1 .logo img {
        width: 150px;
    }
}

@media (max-width: 575px) {
    .header-1 .logo img {
        width: 150px;
    }
}

.header-1 .container {
    max-width: 1824px;
}

.header-1 .sidebar__toggle span {
    background-color: var(--header);
}

.header-1 .sidebar__toggle span:last-child,
.header-1 .sidebar__toggle span:first-child {
    width: 25px;
}

.header-1 .sidebar__toggle:hover span {
    width: 100%;
}

.header-1 .header-right .theme-btn {
    font-size: 16px;
    height: 55px;
    line-height: 55px;
    padding: 0px 26px;
}

@media (max-width: 1199px) {
    .header-1 .header-right .theme-btn {
        display: none;
    }
}

@media (max-width: 1199px) {
    .header-2 .logo img {
        width: 150px;
    }
}

@media (max-width: 575px) {
    .header-2 .logo img {
        width: 150px;
    }
}

.header-2 .sidebar__toggle span {
    background-color: var(--header);
}

.header-2 .sidebar__toggle span:last-child,
.header-2 .sidebar__toggle span:first-child {
    width: 25px;
}

.header-2 .sidebar__toggle:hover span {
    width: 100%;
}

.header-2 .header-right .theme-btn {
    font-size: 16px;
    height: 55px;
    line-height: 55px;
    padding: 0px 26px;
}

@media (max-width: 1199px) {
    .header-2 .header-right .theme-btn {
        display: none;
    }
}

.header-3 .logo img {
    text-align: center;
    width: 255px;
}

.header-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: rgb(255,255,255,0.6);
}

@media (max-width: 1199px) {
    .header-3 .logo img {
        width: 150px;
    }
}

@media (max-width: 575px) {
    .header-3 .logo img {
       width: 223px;
    margin-top: 12px;
    }

    .header-3 {
        background-color: #fff !important;
        height: 105px;
    }
}

.header-3 .sidebar__toggle span {
    background-color: #47984c;
}

.header-3 .sidebar__toggle span:last-child,
.header-3 .sidebar__toggle span:first-child {
    width: 25px;
}

.header-3 .sidebar__toggle:hover span {
    width: 100%;
}

.header-3 .header-right .theme-btn {
    font-size: 16px;
    height: 42px;
    line-height: 42px;
    padding: 0px 12px;
    color: #fff;
}

@media (max-width: 1199px) {
    .header-3 .header-right .theme-btn {
        display: none;
    }
}

.header-3 .header-right .theme-btn:before {
    background-color: var(--white);
}

.header-3 .header-right .theme-btn:hover {
    color: var(--header);
}

.header-3 .header-main .main-menu ul li a {
    color: #0e0e0e;
}

.header-3 .header-main .main-menu ul li a:hover {
    color: var(--theme) !important;
}

.header-3 .header-main .main-menu ul li .submenu {
    color: #16333B;
}

.header-3 .header-main .main-menu ul li .submenu li a {
    color: #16333B;
}

.header-3 .header-main .main-menu ul li .submenu li a:hover {
    color: var(--theme) !important;
}

.header-3 .header-main .main-menu ul li .submenu li:hover > a {
    color: var(--theme) !important;
}

.header-3 .header-main .main-menu ul li .submenu li:hover > a::after {
    color: var(--theme);
}

.header-3 .header-main .main-menu ul li .submenu li.has-dropdown > a::after {
    color: var(--theme);
}

.header-3 .header-main .main-menu ul li:hover > a {
    color: var(--theme);
}

.header-3 .header-main .main-menu ul li:hover > a::after {
    color: var(--theme);
}

.header-3 .search-toggler {
    color: var(--white);
}

.header-4 {
    background-color: #FFFCF8;
}

.header-4 .header-right .number {
    font-size: 17px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 1399px) {
    .header-4 .header-right .number {
        display: none;
    }
}

.header-section-5 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #FFFCF8;
}

.header-section-5 .container {
    max-width: 1824px;
}

.header-section-5 .header-5 {
    position: relative;
}

.header-section-5 .header-5 .header-right .number {
    font-size: 17px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 1399px) {
    .header-section-5 .header-5 .header-right .number {
        display: none;
    }
}

.header-section-5 .header-top-5 {
    background-color: var(--theme);
    padding: 8px 0;
}

@media (max-width: 767px) {
    .header-section-5 .header-top-5 {
        display: none;
    }
}

.header-section-5 .header-top-5 .header-top-wrapper-5 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-section-5 .header-top-5 .header-top-wrapper-5 .head-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-section-5 .header-top-5 .header-top-wrapper-5 .head-left .number {
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-section-5 .header-top-5 .header-top-wrapper-5 .social-icon {
    gap: 16px;
}

.header-section-5 .header-top-5 .header-top-wrapper-5 .social-icon span {
    font-size: 17px;
    font-weight: 400;
}

.header-inner-page .sidebar__toggle span {
    background-color: var(--white);
}

.header-inner-page .sidebar__toggle span:last-child,
.header-inner-page .sidebar__toggle span:first-child {
    width: 25px;
}

.header-inner-page .sidebar__toggle:hover span {
    width: 100%;
}

.header-inner-page .header-right .theme-btn {
    font-size: 16px;
    height: 55px;
    line-height: 55px;
    padding: 0px 26px;
}

@media (max-width: 1199px) {
    .header-inner-page .header-right .theme-btn {
        display: none;
    }
}

.header-inner-page .header-right .theme-btn:before {
    background-color: var(--white);
}

.header-inner-page .header-right .theme-btn:hover {
    color: var(--header);
}

.header-inner-page .header-main .main-menu ul li a {
    color: #fff;
}

.header-inner-page .header-main .main-menu ul li a:hover {
    color: var(--theme) !important;
}

.header-inner-page .header-main .main-menu ul li .submenu {
    color: #16333B;
}

.header-inner-page .header-main .main-menu ul li .submenu li a {
    color: #16333B;
}

.header-inner-page .header-main .main-menu ul li .submenu li a:hover {
    color: var(--theme) !important;
}

.header-inner-page .header-main .main-menu ul li .submenu li:hover > a {
    color: var(--theme) !important;
}

.header-inner-page .header-main .main-menu ul li .submenu li:hover > a::after {
    color: var(--theme);
}

.header-inner-page .header-main .main-menu ul li .submenu li.has-dropdown > a::after {
    color: var(--theme);
}

.header-inner-page .header-main .main-menu ul li:hover > a {
    color: var(--theme);
}

.header-inner-page .header-main .main-menu ul li:hover > a::after {
    color: var(--theme);
}

.header-inner-page .search-toggler {
    color: var(--white);
}

.sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.9s;
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    background-color: var(--white);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.sticky.header-3 {
    background-color: rgb(255,255,255,0.6);
    box-shadow: 0 20px 50px rgba(22, 51, 59, 0.3);
}

.sticky.header-inner-page {
    background-color: #fff;
    box-shadow: 0 20px 50px rgba(22, 51, 59, 0.3);
}

.offcanvas__info {
    background-color: #17689b;
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    -webkit-transform: translateX(calc(100% + 80px));
    -moz-transform: translateX(calc(100% + 80px));
    -ms-transform: translateX(calc(100% + 80px));
    -o-transform: translateX(calc(100% + 80px));
    transform: translateX(calc(100% + 80px));
    -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    z-index: 9999999;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
    top: 15px;
    width: 470px;
    height: calc(100% - 30px);
    -webkit-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
    box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-y: scroll;
    border-start-start-radius: 12px;
    border-end-start-radius: 12px;
    border-radius: 12px;
}

.offcanvas__info::-webkit-scrollbar {
    display: none;
}

.offcanvas__info.info-open {
    opacity: 1;
    transform: translateX(-15px);
}

.offcanvas__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    padding: 40px;
    overflow: auto;
    height: 100%;
}

.offcanvas__wrapper .offcanvas__top {
    margin-bottom: 30px;
}

.offcanvas__wrapper .offcanvas__logo img {
    width: 190px;
}
.logo img{  height: 120px;
  width: 125px;}
@media (max-width: 575px) {
    .offcanvas__wrapper .offcanvas__logo img {
        width: 130px;
    }
}

.offcanvas__wrapper .offcanvas__close {
    color: var(--theme);
    display: inline-block;
    font-size: 35px;
    line-height: 1;
    transition: all 0.4s ease-in-out;
}

.offcanvas__wrapper .offcanvas__close i {
    color: var(--white);
}

.offcanvas__wrapper .offcanvas__close:hover {
    transform: rotate(90deg);
}

.offcanvas__wrapper .offcanvas__close:hover i {
    color: var(--theme);
}

.offcanvas__wrapper .text {
    color: #C1D2CE;
    font-size: 15px;
}

.offcanvas__wrapper .off-contact-info {
    margin-top: 30px;
}

.offcanvas__wrapper .off-contact-info .info-title {
    font-size: 24px;
    color: var(--white);
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
}

@media (max-width: 575px) {
    .offcanvas__wrapper .off-contact-info .info-title {
        font-size: 20px;
    }
}

.offcanvas__wrapper .off-contact-info .contact-details {
    margin-top: 14px;
}

.offcanvas__wrapper .off-contact-info .contact-details .sub-info {
    color: #C1D2CE;
}

@media (max-width: 575px) {
    .offcanvas__wrapper .off-contact-info .contact-details .sub-info {
        font-size: 14px;
    }
}

.offcanvas__wrapper .off-contact-info .contact-details p {
    color: var(--white);
    font-family: "Quicksand", sans-serif;
    font-size: 17px;
    font-weight: 600;
}

@media (max-width: 575px) {
    .offcanvas__wrapper .off-contact-info .contact-details p {
        font-size: 15px;
    }
}

.offcanvas__wrapper .off-contact-info .contact-details p a {
    color: var(--white);
}

.offcanvas__wrapper .social-icon-list {
    margin-top: 30px;
}

.offcanvas__wrapper .social-icon-list .follow-title {
    font-size: 24px;
    color: var(--white);
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
}

@media (max-width: 575px) {
    .offcanvas__wrapper .social-icon-list .follow-title {
        font-size: 20px;
    }
}

.offcanvas__wrapper .social-icon-list .social-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
}

.offcanvas__wrapper .social-icon-list .social-icon a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    background: rgba(193, 210, 206, 0.0705882353);
    color: var(--white);
    font-size: 14px;
}

.offcanvas__wrapper .social-icon-list .social-icon a:hover {
    background-color: var(--theme);
    color: var(--header);
}

.offcanvas__overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(10px);
    z-index: 99999;
    top: 0;
    opacity: 0;
    visibility: hidden;
    right: 0;
}

.offcanvas__overlay.overlay-open {
    opacity: 0.8;
    visibility: visible;
}

@media (max-width: 575px) {
    .offcanvas__wrapper {
        padding: 20px;
    }

    .offcanvas__info {
        width: 93%;
    }
}

@media (max-width: 450px) {
    .offcanvas__info {
        width: 340px;
    }
}

.header-section-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: var(--white);
}

.header-top-bar {
    background-color: var(--theme);
    padding: 10px 0;
}

@media (max-width: 991px) {
    .header-top-bar {
        display: none;
    }
}

.header-top-bar .top-head-items {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.header-top-bar .top-head-items .theme-btn {
    border-radius: 4px;
    height: 27px;
    line-height: 27px;
    font-size: 13px;
    line-height: 27px;
    padding: 0 10px;
}

.header-top-bar .top-head-items .theme-btn::before {
    background-color: var(--white);
}

.header-top-bar .top-head-items p {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}

.header-top-bar .top-head-items p a {
    text-decoration: underline;
    display: inline-block;
    margin-left: 5px;
}

.breadcrumb-wrapper {
    position: relative;
    overflow: hidden;
    z-index: 9;
}

.breadcrumb-wrapper::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #16333B;
    opacity: 0.6;
}

.breadcrumb-wrapper .bottom-shape {
    position: absolute;
    z-index: 9;
    bottom: 0;
    left: 0;
}

.breadcrumb-wrapper .bottom-shape img {
    width: 100%;
}

.breadcrumb-wrapper .page-heading {
    position: relative;
    padding: 145px 0 90px;
    z-index: 9;
    text-align: center;
}

@media (max-width: 1199px) {
    .breadcrumb-wrapper .page-heading {
        padding: 150px 0 140px;
    }
}

@media (max-width: 767px) {
    .breadcrumb-wrapper .page-heading {
        text-align: center;
        padding-top: 150px;
        padding-bottom: 120px;
    }
}

.breadcrumb-wrapper .page-heading h1 {
    color: var(--white);
    font-size: 56px;
    position: relative;
    z-index: 9;
    font-weight: 700;
}

@media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading h1 {
        font-size: 50px;
    }
}

@media (max-width: 470px) {
    .breadcrumb-wrapper .page-heading h1 {
        font-size: 40px;
    }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items {
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
    justify-content: center;
}

@media (max-width: 575px) {
    .breadcrumb-wrapper .page-heading .breadcrumb-items {
        margin-top: 15px;
    }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li {
    color: var(--white);
    text-transform: capitalize;
    font-weight: 600;
    font-size: 16px;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
    color: var(--white);
    transition: all 0.4s ease-in-out;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a i {
    color: var(--theme);
    margin-right: 9px;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
    color: var(--theme);
    opacity: 1;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a i {
    color: #fff;
    margin-right: 5px;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
    color: var(--white);
}

.error-items {
    text-align: center;
    position: relative;
}

.error-items .error-image {
    max-width: 695px;
    margin: 0 auto 20px;
}

.error-items .error-image img {
    width: 100%;
    height: 100%;
}

.error-items h2 {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 25px;
}

@media (max-width: 575px) {
    .error-items h2 {
        font-size: 30px;
    }
}

.error-items p {
    margin: 0 auto 40px;
}

@media (max-width: 767px) {
    .error-items p {
        margin-bottom: 30px;
    }
}

.coming-soon-section {
    height: 100dvh;
    display: flex;
    align-items: center;
    position: relative;
}

.coming-soon-section .social-icon {
    gap: 16px;
    position: absolute;
    left: 60px;
    bottom: 30px;
}

@media (max-width: 767px) {
    .coming-soon-section .social-icon {
        left: 20px;
    }
}

@media (max-width: 575px) {
    .coming-soon-section .social-icon {
        text-align: center;
        right: 0;
        left: 0;
        justify-content: center;
        bottom: 70px;
    }
}

.coming-soon-section .copyright-text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    text-align: center;
    font-weight: 500;
    color: var(--header);
}

@media (max-width: 767px) {
    .coming-soon-section .copyright-text {
        left: initial;
        text-align: right;
        right: 20px;
    }
}

@media (max-width: 575px) {
    .coming-soon-section .copyright-text {
        text-align: center;
        right: 0;
        left: 0;
    }
}

.coming-soon-wrapper {
    text-align: center;
}

.coming-soon-wrapper .title {
    font-size: 54px;
    font-weight: 700;
}

@media (max-width: 575px) {
    .coming-soon-wrapper .title {
        font-size: 38px;
    }
}

.coming-soon-wrapper .coming-soon-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    margin-bottom: 100px;
}

@media (max-width: 1199px) {
    .coming-soon-wrapper .coming-soon-time {
        margin-bottom: 40px;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .coming-soon-wrapper .coming-soon-time {
        gap: 25px;
    }
}

@media (max-width: 575px) {
    .coming-soon-wrapper .coming-soon-time {
        flex-wrap: wrap;
    }
}

.coming-soon-wrapper .coming-soon-time .timer-content h2 {
    font-size: 110px;
    font-weight: 700;
}

@media (max-width: 1199px) {
    .coming-soon-wrapper .coming-soon-time .timer-content h2 {
        font-size: 90px;
    }
}

@media (max-width: 991px) {
    .coming-soon-wrapper .coming-soon-time .timer-content h2 {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .coming-soon-wrapper .coming-soon-time .timer-content h2 {
        font-size: 38px;
    }
}

.coming-soon-wrapper .coming-soon-time .timer-content p {
    font-size: 18px;
    text-transform: capitalize;
}

.coming-soon-wrapper .timer-dot {
    display: grid;
    align-items: center;
    gap: 20px;
    margin-top: -10px;
}

.coming-soon-wrapper .timer-dot span {
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 18px;
    background-color: var(--header);
}

@media (max-width: 991px) {
    .coming-soon-wrapper .timer-dot span {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 767px) {
    .coming-soon-wrapper .timer-dot span {
        width: 5px;
        height: 5px;
        border-radius: 5px;
    }
}

.coming-soon-wrapper h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
}

.coming-soon-wrapper form {
    max-width: 510px;
    margin: 0 auto;
    position: relative;
}

.coming-soon-wrapper form input {
    width: 100%;
    background-color: var(--white);
    border: 1px solid rgb(22, 51, 59);
    padding: 0 25px;
    color: var(--text);
    height: 62px;
    line-height: 62px;
    padding-right: 70px;
}

.coming-soon-wrapper form button {
    width: 52px;
    height: 52px;
    border-radius: 4px;
    background-color: var(--theme);
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 0;
}

.coming-soon-wrapper .terms-check {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    user-select: none;
    margin-top: 20px;
    max-width: 510px;
    margin: 20px auto 0;
}

.coming-soon-wrapper .terms-check input {
    display: none;
}

.coming-soon-wrapper .checkmark {
    width: 22px;
    height: 22px;
    background-color: var(--header);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.coming-soon-wrapper .checkmark i {
    color: #fff;
    font-size: 14px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.25s ease;
}

.coming-soon-wrapper .terms-check input:checked + .checkmark {
    background: #0C2F36;
}

.coming-soon-wrapper .terms-check input:checked + .checkmark i {
    opacity: 1;
    transform: scale(1);
}

.coming-soon-wrapper .terms-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--header);
}

.grt-footer-section {
    background-color: var(--header);
    position: relative;
}

.grt-footer-wrapper {
    padding: 90px 0 120px;
}

@media (max-width: 1199px) {
    .grt-footer-wrapper {
        padding: 70px 0 100px;
    }
}

@media (max-width: 991px) {
    .grt-footer-wrapper {
        padding: 50px 0 80px;
    }
}

.grt-footer-wrapper .grt-footer-widget-items {
    margin-top: 30px;
}

.grt-footer-wrapper .grt-footer-widget-items .widget-head {
    margin-bottom: 30px;
}

.grt-footer-wrapper .grt-footer-widget-items .widget-head .title {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
}

.grt-footer-wrapper .grt-footer-widget-items .footer-content {
    max-width: 400px;
}

.grt-footer-wrapper .grt-footer-widget-items .footer-content p {
    color: #C1D2CE;
}

.grt-footer-wrapper .grt-footer-widget-items .footer-content .theme-btn {
    margin-top: 35px;
}

.grt-footer-wrapper .grt-footer-widget-items .footer-content .theme-btn::before {
    background-color: var(--white);
}

.grt-footer-wrapper .grt-footer-widget-items .footer-content .theme-btn:hover {
    color: var(--header);
}

.grt-footer-wrapper .grt-footer-widget-items .footer-content .support-info .number {
    font-size: 22px;
    font-weight: 600;
    font-family: "Quicksand", sans-serif;
    color: var(--theme);
    display: inline-block;
    margin-top: 15px;
}

.grt-footer-wrapper .grt-footer-widget-items .contact-list li {
    color: #C1D2CE;
}

.grt-footer-wrapper .grt-footer-widget-items .contact-list li:not(:last-child) {
    margin-bottom: 16px;
}

.grt-footer-wrapper .grt-footer-widget-items .contact-list li a {
    color: #C1D2CE;
}

.grt-footer-wrapper .grt-footer-widget-items .contact-list li .phone {
    font-size: 19px;
    font-weight: 700;
    font-family: "Quicksand", sans-serif;
    color: var(--theme);
}

.grt-footer-wrapper .grt-footer-widget-items .grt-list-area li {
    transition: all 0.4s ease-in-out;
}

.grt-footer-wrapper .grt-footer-widget-items .grt-list-area li:not(:last-child) {
    margin-bottom: 15px;
}

.grt-footer-wrapper .grt-footer-widget-items .grt-list-area li a {
    color: #C1D2CE;
}

.grt-footer-wrapper .grt-footer-widget-items .grt-list-area li:hover {
    margin-left: 5px;
}

.grt-footer-wrapper .grt-footer-widget-items .grt-list-area li:hover a {
    color: var(--theme);
}

.footer-bottom {
    border-top: 1px solid rgb(61, 72, 87);
    padding: 25px 0;
}

.footer-bottom .footer-bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .footer-bottom .footer-bottom-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }
}

.footer-bottom .footer-bottom-wrapper p {
    color: rgb(255, 255, 255);
    font-family: "Quicksand", sans-serif;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    z-index: 9;
}

.footer-bottom .footer-bottom-wrapper p b {
    color: var(--theme);
}

.footer-bottom .footer-bottom-wrapper .footer-list {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 9;
}

.footer-bottom .footer-bottom-wrapper .footer-list .dotss {
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background-color: var(--theme);
}

.footer-bottom .footer-bottom-wrapper .footer-list li {
    font-size: 16px;
}

.footer-bottom .footer-bottom-wrapper .footer-list li a {
    color: #C1D2CE;
}

.footer-bottom .footer-bottom-wrapper .footer-list li a:hover {
    color: var(--theme);
}

.footer-bottom .footer-text {
    font-weight: 700;
    font-size: 503.653px;
    line-height: 1;
    font-family: "Quicksand", sans-serif;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, #1E414B 0%, #1B3A43 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-align: center;
}

@media (max-width: 1899px) {
    .footer-bottom .footer-text {
        font-size: 420px;
    }
}

@media (max-width: 1600px) {
    .footer-bottom .footer-text {
        font-size: 350px;
    }
}

@media (max-width: 1399px) {
    .footer-bottom .footer-text {
        font-size: 300px;
    }
}

@media (max-width: 1199px) {
    .footer-bottom .footer-text {
        font-size: 200px;
    }
}

@media (max-width: 767px) {
    .footer-bottom .footer-text {
        font-size: 130px;
    }
}

@media (max-width: 575px) {
    .footer-bottom .footer-text {
        font-size: 90px;
    }
}

.footer-bottom-2 {
    border-top: 1px solid rgb(61, 72, 87);
    padding: 25px 0;
}

.footer-bottom-2 .footer-bottom-wrapper-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .footer-bottom-2 .footer-bottom-wrapper-2 {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.footer-bottom-2 .footer-bottom-wrapper-2 .title {
    font-size: 70px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
}

@media (max-width: 1199px) {
    .footer-bottom-2 .footer-bottom-wrapper-2 .title {
        font-size: 60px;
    }
}

@media (max-width: 991px) {
    .footer-bottom-2 .footer-bottom-wrapper-2 .title {
        font-size: 55px;
    }
}

@media (max-width: 767px) {
    .footer-bottom-2 .footer-bottom-wrapper-2 .title {
        font-size: 48px;
    }
}

@media (max-width: 575px) {
    .footer-bottom-2 .footer-bottom-wrapper-2 .title {
        font-size: 38px;
    }
}

.footer-bottom-2 .footer-bottom-wrapper-2 .bottom-content p {
    color: rgb(255, 255, 255);
    font-family: "Quicksand", sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.footer-bottom-2 .footer-bottom-wrapper-2 .bottom-content p b {
    color: var(--theme);
}

.footer-bottom-2 .footer-bottom-wrapper-2 .bottom-content ul {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 10px;
}

.footer-bottom-2 .footer-bottom-wrapper-2 .bottom-content ul li {
    font-size: 14px;
    font-weight: 400;
}

.footer-bottom-2 .footer-bottom-wrapper-2 .bottom-content ul li a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-2 .footer-bottom-wrapper-2 .bottom-content ul li a:hover {
    color: var(--theme);
    text-decoration: underline;
}

.grt-footer-box-section {
    background-color: var(--theme);
}

.grt-footer-box-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 1199px) {
    .grt-footer-box-items {
        display: block;
    }
}

.grt-footer-box-items .content .title {
    font-size: 32px;
    margin-bottom: 10px;
}

@media (max-width: 1199px) {
    .grt-footer-box-items .content .title {
        font-size: 27px;
    }
}

@media (max-width: 1600px) {
    .grt-footer-box-items .content p {
        font-size: 15px;
    }
}

.grt-footer-box-items .content .news-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    font-family: "Quicksand", sans-serif;
    color: var(--header);
    overflow: hidden;
    text-transform: capitalize;
    margin-top: 15px;
}

.grt-footer-box-items .content .news-btn .text {
    position: relative;
    display: inline-block;
    height: 22px;
    overflow: hidden;
}

.grt-footer-box-items .content .news-btn .text-default,
.grt-footer-box-items .content .news-btn .text-hover {
    display: block;
    transition: transform 0.4s ease;
}

.grt-footer-box-items .content .news-btn .text-hover {
    position: absolute;
    left: 0;
    top: 100%;
}

.grt-footer-box-items .content .news-btn:hover .text-default {
    transform: translateY(-100%);
}

.grt-footer-box-items .content .news-btn:hover .text-hover {
    transform: translateY(-100%);
}

.grt-footer-box-items .content .news-btn i {
    transition: transform 0.4s ease;
}

.grt-footer-box-items .thumb {
    flex-basis: 40%;
    overflow: hidden;
    position: relative;
}

@media (max-width: 1600px) {
    .grt-footer-box-items .thumb {
        flex-basis: 30%;
    }
}

@media (max-width: 1199px) {
    .grt-footer-box-items .thumb {
        flex-basis: initial;
        height: 400px;
        margin-top: 30px;
    }

    .grt-footer-box-items .thumb img {
        object-fit: cover;
    }
}

.grt-footer-box-items .thumb::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    pointer-events: none;
}

.grt-footer-box-items .thumb img {
    width: 100%;
    height: 220px;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    object-fit: cover;
    transition: all 1s;
}

.grt-footer-box-items:hover .thumb:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.grt-footer-box-items:hover .thumb img {
    transform: scale(1.2);
}

.grt-footer-box-wrapper {
    padding-left: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

@media (max-width: 1899px) {
    .grt-footer-box-wrapper {
        gap: 30px;
    }
}

@media (max-width: 1399px) {
    .grt-footer-box-wrapper {
        padding-left: 25px;
    }
}

@media (max-width: 1199px) {
    .grt-footer-box-wrapper {
        grid-template-columns: repeat(2, 1fr);
        padding: 25px;
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .grt-footer-box-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.grt-footer-section-3 {
    position: relative;
    z-index: 9;
}

.grt-footer-section-3::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: -1;
}

.grt-footer-section-3 .footer-title {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    color: var(--white);
}

@media (max-width: 575px) {
    .grt-footer-section-3 .footer-title {
        font-size: 34px;
    }
}

.grt-footer-section-3 .footer-title span {
    color: var(--theme);
}

.grt-footer-wrapper-3 {
    padding: 15px 0px 40px 0px;
    justify-content: space-between;
}

.grt-footer-wrapper-3 .grt-footer-widget-items .widget-head {
    margin-bottom: 30px;
}

.grt-footer-wrapper-3 .grt-footer-widget-items .widget-head .title {
    color: var(--white);
}

.grt-footer-wrapper-3 .grt-footer-widget-items .footer-content p {
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
}

.grt-footer-wrapper-3 .grt-footer-widget-items .footer-content .price-text {
    color: var(--theme);
    font-size: 32px;
    font-weight: 700;
    font-family: "Quicksand", sans-serif;
}

.grt-footer-wrapper-3 .grt-footer-widget-items .footer-info p {
    color: #C1D2CE;
}

.grt-footer-wrapper-3 .grt-footer-widget-items .footer-info ul {
    margin-top: 10px;
}

.grt-footer-wrapper-3 .grt-footer-widget-items .footer-info ul li {
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.grt-footer-wrapper-3 .grt-footer-widget-items .footer-info ul li:not(:last-child) {
    margin-bottom: 10px;
}

.grt-footer-wrapper-3 .grt-footer-widget-items .footer-info ul li a {
    color: #b6bdcb;
}

.grt-footer-wrapper-3 .grt-footer-widget-items .footer-text-3 {
    color: #b6bdcb;
}

.grt-footer-wrapper-3 .grt-footer-widget-items .footer-text-3 a {
    color: #b6bdcb;
}

.grt-footer-wrapper-3 .grt-footer-widget-items .footer-text-4 {
    font-size: 18px;
    font-weight: 700;
    font-family: "Quicksand", sans-serif;
}

.grt-footer-wrapper-3 .grt-footer-widget-items .social-icon {
    gap: 45px;
    text-align: center;
}

.grt-footer-wrapper-3 .grt-footer-widget-items .social-icon a {
    font-size: 19px;
    color: var(--white);
    margin-right: 10px;
}

.grt-footer-wrapper-3 .grt-footer-widget-items .social-icon a:hover {
    color: var(--theme);
}

.footer-bottom-3 {
    border-top: 1px solid #b6bdcb;
    position: relative;
    padding: 12px 0;
}

.footer-bottom-3 .footer-bottom-list {
    text-align: left;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom-3 .copyrgt b {
    color: #b6bdcb;
}

.footer-bottom-3 .copyrgt a,
.footer-bottom-3 .copyrgt {
    color: #b6bdcb;
}

@media (max-width: 991px) {
    .footer-bottom-3 .footer-bottom-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }
}

.footer-bottom-3 .footer-bottom-list ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 991px) {
    .footer-bottom-3 .footer-bottom-list ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

.footer-bottom-3 .footer-bottom-list ul li a {
    color: var(--white);
}

.footer-bottom-3 .footer-bottom-list p {
    color: #b6bdcb;
}

.footer-bottom-3 .footer-bottom-list p b {
    color: #b6bdcb;
    font-weight: 500
}

.grt-footer-section-4 {
    background-color: #16333B;
}

.grt-footer-section-4 .grt-footer-top-items-4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 80px;
    padding-top: 80px;
}

@media (max-width: 767px) {
    .grt-footer-section-4 .grt-footer-top-items-4 {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        text-align: center;
    }
}

.grt-footer-section-4 .grt-footer-top-items-4 .title {
    font-size: 70px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--white);
}

@media (max-width: 1199px) {
    .grt-footer-section-4 .grt-footer-top-items-4 .title {
        font-size: 55px;
    }
}

@media (max-width: 991px) {
    .grt-footer-section-4 .grt-footer-top-items-4 .title {
        font-size: 48px;
    }
}

@media (max-width: 575px) {
    .grt-footer-section-4 .grt-footer-top-items-4 .title {
        font-size: 38px;
    }
}

.grt-footer-section-4 .grt-footer-top-items-4 .title span {
    display: block;
    color: var(--theme);
}

.grt-footer-section-4 .grt-footer-top-items-4 .theme-btn {
    font-size: 22px;
    font-weight: 700;
    font-family: "Quicksand", sans-serif;
    letter-spacing: -1px;
}

@media (max-width: 991px) {
    .grt-footer-section-4 .grt-footer-top-items-4 .theme-btn {
        font-size: 16px;
    }
}

.grt-footer-section-4 .grt-footer-top-items-4 .theme-btn::before {
    background-color: var(--white);
}

.grt-footer-section-4 .grt-footer-top-items-4 .theme-btn:hover {
    color: var(--header);
}

.footer-widget-wrapper-4 {
    padding: 50px 0 80px;
}

.footer-widget-wrapper-4 .footer-newsletter-box-4 {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 60px 30px;
    border-radius: 8px;
    max-width: 560px;
    margin-top: 30px;
}

@media (max-width: 1199px) {
    .footer-widget-wrapper-4 .footer-newsletter-box-4 {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .footer-widget-wrapper-4 .footer-newsletter-box-4 {
        padding: 40px 25px;
    }
}

.footer-widget-wrapper-4 .footer-newsletter-box-4 .title {
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
}

@media (max-width: 575px) {
    .footer-widget-wrapper-4 .footer-newsletter-box-4 .title {
        font-size: 24px;
    }
}

.footer-widget-wrapper-4 .footer-newsletter-box-4 p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 360px;
    margin-top: 15px;
}

.footer-widget-wrapper-4 .footer-newsletter-box-4 form {
    position: relative;
    width: 100%;
    margin-top: 26px;
}

.footer-widget-wrapper-4 .footer-newsletter-box-4 form input {
    width: 100%;
    border: none;
    background-color: var(--white);
    padding: 0 30px;
    border-radius: 4px;
    line-height: 60px;
    height: 60px;
    color: var(--text);
    padding-right: 80px;
}

.footer-widget-wrapper-4 .footer-newsletter-box-4 form input::placeholder {
    color: var(--text);
}

.footer-widget-wrapper-4 .footer-newsletter-box-4 form .email-btn {
    background: var(--header);
    width: 52px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 4px;
    color: var(--white);
    transition: all 0.4s ease-in-out;
    position: absolute;
    top: 6px;
    right: 6px;
    bottom: 6px;
    font-size: 18px;
}

.footer-widget-wrapper-4 .footer-newsletter-box-4 form .email-btn:hover {
    background-color: var(--theme);
    color: var(--header);
}

.footer-widget-wrapper-4 .footer-newsletter-box-4 .terms-check {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    user-select: none;
    margin-top: 20px;
}

.footer-widget-wrapper-4 .footer-newsletter-box-4 .terms-check input {
    display: none;
}

.footer-widget-wrapper-4 .footer-newsletter-box-4 .checkmark {
    width: 22px;
    height: 22px;
    background-color: var(--white);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.footer-widget-wrapper-4 .footer-newsletter-box-4 .checkmark i {
    color: var(--header);
    font-size: 14px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.25s ease;
}

.footer-widget-wrapper-4 .footer-newsletter-box-4 .terms-check input:checked + .checkmark {
    background: var(--theme);
}

.footer-widget-wrapper-4 .footer-newsletter-box-4 .terms-check input:checked + .checkmark i {
    opacity: 1;
    transform: scale(1);
}

.footer-widget-wrapper-4 .footer-newsletter-box-4 .terms-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
}

.footer-widget-wrapper-4 .grt-footer-widget-items {
    margin-top: 30px;
}

.footer-widget-wrapper-4 .grt-footer-widget-items .widget-head {
    margin-bottom: 30px;
}

.footer-widget-wrapper-4 .grt-footer-widget-items .widget-head .title {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
}

.footer-widget-wrapper-4 .grt-footer-widget-items .grt-list-area li {
    transition: all 0.4s ease-in-out;
}

.footer-widget-wrapper-4 .grt-footer-widget-items .grt-list-area li:not(:last-child) {
    margin-bottom: 15px;
}

.grt-footer-widget-items .grt-list-area li {
    margin-bottom: 5px;
}

.grt-footer-widget-items .grt-list-area li a {
    color: #b6bdcb !important;
    margin-bottom: 10px;
}

.footer-widget-wrapper-4 .grt-footer-widget-items .grt-list-area li a {
    color: #C1D2CE;
}

.footer-widget-wrapper-4 .grt-footer-widget-items .grt-list-area li:hover {
    margin-left: 5px;
}

.footer-widget-wrapper-4 .grt-footer-widget-items .grt-list-area li:hover a {
    color: var(--theme);
}

.footer-bottom-4 {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom-4 .footer-bottom-wrapper-4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .footer-bottom-4 .footer-bottom-wrapper-4 {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
}

.footer-bottom-4 .footer-bottom-wrapper-4 p {
    color: var(--white);
}

.footer-bottom-4 .footer-bottom-wrapper-4 p span {
    color: var(--theme);
}

.footer-bottom-4 .footer-bottom-wrapper-4 .social-icon {
    gap: 20px;
}

.footer-bottom-4 .footer-bottom-wrapper-4 .social-icon a {
    gap: 18px;
    color: var(--white);
}

.footer-bottom-4 .footer-bottom-wrapper-4 .social-icon a:hover {
    color: var(--theme);
}

.footer-bottom-4 .footer-bottom-wrapper-4 .footer-list {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 9;
}

.footer-bottom-4 .footer-bottom-wrapper-4 .footer-list .dotss {
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background-color: var(--theme);
}

.footer-bottom-4 .footer-bottom-wrapper-4 .footer-list li {
    font-size: 16px;
}

.footer-bottom-4 .footer-bottom-wrapper-4 .footer-list li a {
    color: #C1D2CE;
}

.footer-bottom-4 .footer-bottom-wrapper-4 .footer-list li a:hover {
    color: var(--theme);
}

.grt-footer-section-5 {
    background-color: #16333B;
    padding-top: 80px;
}

.grt-footer-section-5 .grt-titles {
    color: var(--white);
    font-size: 38px;
    text-align: center;
}

.grt-footer-section-5 .grt-titles span {
    color: var(--theme);
}

.footer-widget-wrapper-5 {
    padding: 70px 0 100px;
}

@media (max-width: 991px) {
    .footer-widget-wrapper-5 {
        padding: 50px 0 80px;
    }
}

.footer-widget-wrapper-5 .grt-footer-widget-items {
    margin-top: 30px;
}

.footer-widget-wrapper-5 .grt-footer-widget-items .widget-head {
    margin-bottom: 30px;
}

.footer-widget-wrapper-5 .grt-footer-widget-items .widget-head .widget-title {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
}

.footer-widget-wrapper-5 .grt-footer-widget-items .grt-content p {
    color: #C1D2CE;
}

.footer-widget-wrapper-5 .grt-footer-widget-items .grt-content .theme-btn {
    margin-top: 30px;
    font-size: 16px;
    padding: 0 24px;
}

.footer-widget-wrapper-5 .grt-footer-widget-items .grt-content .theme-btn::before {
    background-color: var(--white);
}

.footer-widget-wrapper-5 .grt-footer-widget-items .grt-content .theme-btn:hover {
    color: var(--header);
}

.footer-widget-wrapper-5 .grt-footer-widget-items .grt-list-area li {
    transition: all 0.4s ease-in-out;
}

.footer-widget-wrapper-5 .grt-footer-widget-items .grt-list-area li:not(:last-child) {
    margin-bottom: 15px;
}

.footer-widget-wrapper-5 .grt-footer-widget-items .grt-list-area li a {
    color: #C1D2CE;
}

.footer-widget-wrapper-5 .grt-footer-widget-items .grt-list-area li:hover {
    margin-left: 5px;
}

.footer-widget-wrapper-5 .grt-footer-widget-items .grt-list-area li:hover a {
    color: var(--theme);
}

.footer-widget-wrapper-5 .grt-footer-widget-items .footer-info p {
    color: #C1D2CE;
}

.footer-widget-wrapper-5 .grt-footer-widget-items .footer-info ul {
    margin-top: 20px;
}

.footer-widget-wrapper-5 .grt-footer-widget-items .footer-info ul li {
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-widget-wrapper-5 .grt-footer-widget-items .footer-info ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-widget-wrapper-5 .grt-footer-widget-items .footer-info ul li a {
    color: var(--white);
}

.footer-widget-wrapper-5 .grt-footer-widget-items .footer-content2 p {
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
}

.footer-widget-wrapper-5 .grt-footer-widget-items .footer-content2 .price-text {
    color: var(--theme);
    font-size: 32px;
    font-weight: 700;
    font-family: "Quicksand", sans-serif;
}

.footer-widget-wrapper-5 .grt-footer-widget-items .social-icon {
    gap: 16px;
    margin-bottom: 18px;
}

.footer-widget-wrapper-5 .grt-footer-widget-items .social-icon a {
    font-size: 18px;
    color: var(--white);
}

.footer-widget-wrapper-5 .grt-footer-widget-items .social-icon a:hover {
    color: var(--theme);
}

.grt-footer-section-5 {
    position: relative;
    z-index: 9;
    margin-top: 90px;
}

@media (max-width: 1899px) {
    .grt-footer-section-5 {
        margin-top: 80px;
    }
}

@media (max-width: 1399px) {
    .grt-footer-section-5 {
        margin-top: 0;
    }
}

.grt-footer-section-5 .top-shape {
    position: absolute;
    top: -90px;
    left: 0;
    right: 0;
    z-index: -1;
}

@media (max-width: 1899px) {
    .grt-footer-section-5 .top-shape {
        top: -80px;
    }
}

.grt-footer-section-5 .top-shape img {
    width: 100%;
}

.grt-section-title {
    position: relative;
    z-index: 99;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .grt-section-title {
        margin-bottom: 0;
    }

    .grt-section-title br {
        display: none;
    }
}

.grt-section-title .grt-sub-title {
   position: relative;
  font-size: 16px;
  font-weight: 700;
  color: #000486;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 18px;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.1em;
  display: inline-block;
  background-color: #dff3fe;
  padding: 5px 10px;
  border-radius: 10px;
}

.grt-section-title .grt-sub-text {
    position: relative;
    font-weight: 700;
    background-image: linear-gradient(135deg, #000486 0%, #5b60fe 100%);
    color: #0000;
    background-clip: text; 
    line-height: 1;
    margin-bottom: 18px;
    font-family: "Quicksand", sans-serif;
    letter-spacing: 0.1em;
}

.grt-blue-text {
    position: relative;
    font-weight: 700;
    color: #4aa7f3;
    text-transform: capitalize;
    line-height: 1;
    margin-bottom: 18px;
    font-family: "Quicksand", sans-serif;
    letter-spacing: 0.1em;
    display: inline-block;
}

.grt-counter-content-4 p {
    padding-right: 60px;
    color: #6b6e75;
    font-size: 18px;
    text-align: justify;
}

.grt-section-title .grt-sub-title i {
    margin-left: 10px;
}

.grt-section-title .grt-sub-title.color-yellow {
    color: var(--theme);
}

.grt-section-title h2 {
    color: var(--header);
    font-size: 38px;
    font-family: "Space Grotesk", sans-serif;
}

.abttxt {
    color: #585b73;
    line-height: 1.625;
    font-size: 1.125rem;
    text-align: justify
}

.abtyearexpe {
    font-weight: 600;
    position: relative;
    width: 200px;
    top: -41px;
    box-shadow: rgb(0, 0, #0000), rgb(0, 0, #0000), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    color: #fff;
    background-image: var(--gradient-brand);
    left: 72%;
    z-index: 1;
    padding: 20px 20px;
    border-radius: 10px;
}

.vert-move {
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

.lines {
    height: 3px;
    width: 100px;
    background-color: #2c974c;
    margin-bottom: 20px
}

.abtyearexpe .year {
    font-size: 30px;
    text-align: center;
}

.line {
    height: 3px;
    width: 100px;
    background-color: #2c974c;
    margin-bottom: 20px;
    margin: anchor-size;
    margin: auto;
}

.lines2 {
    height: 3px;
    width: 100px;
    background-color: #2c974c;
    margin: auto;
    text-align: center;
    margin-bottom: 20px
}

.hlines {
    width: 2px;
    height: 50px;
    background-color: #ccc;
    text-align: center;
}

.grt-section-title-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .grt-section-title-area {
        margin-bottom: 0;
    }

    .grt-section-title-area br {
        display: none;
    }
}

.grt-section-title-area .grt-section-title {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .grt-section-title-area {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.center {
    text-align: center;
    margin: 0 auto;
}

.section-bg {
    background-color: var(--bg);
}

.section-bg-white {
    background-color: #ffffff !important;
}


.section-abt-bg {
    background-color: #e0eee8 !important;
    padding: 20px;
}

.section-bg-2 {
    background-color: #ECF1FC !important;
}

.theme-bg {
    background-color: var(--theme);
}

.section-padding {
    padding: 60px 0;
}

@media (max-width: 1199px) {
    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 40px 0;
    }
}

.section-padding-2 {
    padding: 60px 0;
}

/*---------------------------------------
05. Sections
---------------------------------------*/
.grt-hero-1 {
    padding: 200px 0 0;
    position: relative;
    background-color: #F5F5F5;
}

@media (max-width: 1199px) {
    .grt-hero-1 {
        padding: 150px 0 0;
    }
}

@media (max-width: 767px) {
    .grt-hero-1 {
        padding: 120px 0 0;
    }
}

.grt-hero-1 .grt-hero-shape {
    position: absolute;
    left: 0;
    top: 20%;
}

@media (max-width: 1399px) {
    .grt-hero-1 .grt-hero-shape {
        opacity: 0.3;
        display: none;
    }
}

.grt-hero-1 .grt-hero-shape-2 {
    position: absolute;
    right: 0;
    top: 15%;
}

@media (max-width: 1399px) {
    .grt-hero-1 .grt-hero-shape-2 {
        opacity: 0.3;
        display: none;
    }
}

.grt-hero-1 .grt-hero-content {
    text-align: center;
}

.grt-hero-1 .grt-hero-content .hero-sub {
    background-color: var(--theme);
    display: inline-block;
    font-family: "Quicksand", sans-serif;
    font-size: 36px;
    font-weight: 700;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 12px;
    transform: rotate(-7deg);
}

@media (max-width: 767px) {
    .grt-hero-1 .grt-hero-content .hero-sub {
        font-size: 22px;
        transform: rotate(0deg);
    }
}

@media (max-width: 1199px) {
    .grt-hero-1 .grt-hero-content h1 br {
        display: none;
    }
}

.grt-hero-1 .grt-hero-content p {
    margin-top: 30px;
}

@media (max-width: 575px) {
    .grt-hero-1 .grt-hero-content p {
        margin-top: 25px;
    }

    .grt-hero-1 .grt-hero-content p br {
        display: none;
    }
}

.grt-hero-1 .grt-hero-content .grt-hero-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 48px;
    gap: 16px;
}

@media (max-width: 991px) {
    .grt-hero-1 .grt-hero-content .grt-hero-button {
        margin-top: 35px;
        flex-wrap: wrap;
    }
}

@media (max-width: 575px) {
    .grt-hero-1 .grt-hero-content .grt-hero-button {
        margin-top: 25px;
    }
}

.grt-hero-1 .grt-hero-image-items {
    margin: 0 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 70px;
    align-items: end;
    margin-top: 100px;
}

@media (max-width: 1600px) {
    .grt-hero-1 .grt-hero-image-items {
        gap: 48px;
    }
}

@media (max-width: 1399px) {
    .grt-hero-1 .grt-hero-image-items {
        gap: 30px;
    }
}

@media (max-width: 1199px) {
    .grt-hero-1 .grt-hero-image-items {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .grt-hero-1 .grt-hero-image-items {
        grid-template-columns: repeat(2, 1fr);
        align-items: initial;
    }
}

@media (max-width: 767px) {
    .grt-hero-1 .grt-hero-image-items {
        gap: 15px;
        margin-left: 15px;
        margin-right: 15px;
        margin-top: 50px;
    }
}

.grt-hero-1 .grt-hero-image-items .hero-thumb {
    max-width: 400px;
    border-radius: 12px;
}

.grt-hero-1 .grt-hero-image-items .hero-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.grt-hero-2 {
    padding: 250px 0 150px;
    position: relative;
    background-color: #ECF1FC;
    z-index: 9;
}

@media (max-width: 1199px) {
    .grt-hero-2 {
        padding: 180px 0 120px;
    }
}

@media (max-width: 991px) {
    .grt-hero-2 {
        padding: 180px 0 120px;
    }
}

@media (max-width: 767px) {
    .grt-hero-2 {
        padding: 160px 0 120px;
    }
}

@media (max-width: 575px) {
    .grt-hero-2 {
        padding: 120px 0 120px;
    }
}

@media (max-width: 991px) {
    .grt-hero-2 .grt-hero-content {
        text-align: center;
    }
}

.grt-hero-2 .grt-hero-sub {
    display: inline-block;
    color: var(--header);
    font-family: "Quicksand", sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    line-height: 1;
    margin-bottom: 18px;
}

.grt-hero-2 p {
    font-size: 18px;
    color: var(--header);
    max-width: 519px;
    margin-top: 30px;
    margin-bottom: 40px;
}

@media (max-width: 1199px) {
    .grt-hero-2 p {
        font-size: 16px;
        max-width: 470px;
        margin-bottom: 25px;
        margin-top: 25px;
    }
}

@media (max-width: 991px) {
    .grt-hero-2 p {
        margin: 25px auto 25px;
    }
}

.grt-hero-2 .hero-image {
    position: absolute;
    top: 0;
    right: -100px;
    bottom: 0;
}

@media (max-width: 1899px) {
    .grt-hero-2 .hero-image {
        right: -150px;
    }
}

@media (max-width: 1600px) {
    .grt-hero-2 .hero-image {
        right: -310px;
    }
}

@media (max-width: 1399px) {
    .grt-hero-2 .hero-image {
        right: -310px;
    }
}

@media (max-width: 1199px) {
    .grt-hero-2 .hero-image {
        right: -300px;
    }
}

.grt-hero-2 .hero-image img {
    height: 100%;
}

@media (max-width: 991px) {
    .grt-hero-2 .hero-image2 {
        height: 580px;
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .grt-hero-2 .hero-image2 {
        height: 400px;
    }
}

.grt-hero-2 .hero-image2 img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.grt-hero-2 .hero-line {
    position: absolute;
    top: 0;
    right: 0;
}

@media (max-width: 1399px) {
    .grt-hero-2 .hero-line {
        display: none;
    }
}

.grt-hero-2 .hero-line2 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

@media (max-width: 1899px) {
    .grt-hero-2 .hero-line2 {
        display: none;
    }
}

@media (max-width: 1399px) {
    .grt-hero-2 h1 {
        font-size: 70px;
    }
}

@media (max-width: 1199px) {
    .grt-hero-2 h1 {
        font-size: 55px;
        line-height: 110% !important;
    }
}

@media (max-width: 767px) {
    .grt-hero-2 h1 {
        font-size: 48px;
    }
}

@media (max-width: 575px) {
    .grt-hero-2 h1 {
        font-size: 45px;
    }
}

@media (max-width: 470px) {
    .grt-hero-2 h1 {
        font-size: 38px;
    }
}

.headsld {
    color: hsl(44, 69%, 47%);
    border: 1px solid hsl(44, 69%, 47%);
    font-weight: 500;
    font-size: 16px;
    display: initial;
    line-height: 1.25rem;
    padding: 10px 20px;
    background-color: #4a602e;
    color: hsl(44, 69%, 47%);
    border-radius: 25px;
    margin-bottom: 10px;

}

.grt-hero-3 {
    padding: 165px 0 48px;
    position: relative;
    z-index: 9;
}

@media (max-width: 1199px) {
    .grt-hero-3 {
        padding: 190px 0 170px;
    }
}

@media (max-width: 767px) {
    .grt-hero-3 {
        padding: 170px 0 150px;
    }
}

@media (max-width: 575px) {
    .grt-hero-3 {
        padding: 125px 0 25px;
    }
}

.grt-hero-3 .hero-shape {
    position: absolute;
    bottom: 0;
    right: 0;
}

@media (max-width: 1199px) {
    .grt-hero-3 .hero-shape {
        display: none;
    }
}

@media (max-width: 767px) {
    .grt-hero-3 .hero-content {
        text-align: center;
    }
}

.grt-hero-3::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(180deg, #16333B 0%, rgba(22, 51, 59, 0) 100%);
    background-blend-mode: overlay;
    z-index: -1;
}

.grt-hero-3 h1 {
    color: var(--white);
    font-size: 71px;
    font-family: "Playfair Display", serif;
    margin-top: 10px;
}

.grt-hero-3 h1 span {
  color: #0000;
    background-image: linear-gradient(120deg,#fff 0%,#9aa0ff 60%,#5b60fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

@media (max-width: 1399px) {
    .grt-hero-3 h1 {
        font-size: 100px;
    }
}

@media (max-width: 1199px) {
    .grt-hero-3 h1 {
        font-size: 90px;
    }
}

@media (max-width: 991px) {
    .grt-hero-3 h1 {
        font-size: 75px;
        line-height: 110% !important;
    }
}

@media (max-width: 767px) {
    .grt-hero-3 h1 {
        font-size: 58px;
    }
}

@media (max-width: 575px) {
    .grt-hero-3 h1 {
        font-size: 23px;
    }
}

@media (max-width: 470px) {
    .grt-hero-3 h1 {
        font-size: 44px;
    }

    .grt-hero-3 p {
        font-size: 14px;
        max-width: 100%;
        line-height: 20px;
    }
}

.grt-hero-3 p {
    font-size: 23px;
    color: var(--white);
    max-width: 755px;
    margin-top: 30px;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .grt-hero-3 p {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

.grt-hero-3 .theme-btn {
    color: var(--white);
}

.grt-hero-3 .theme-btn::before {
    background-color: var(--white);
}

.grt-hero-3 .theme-btn:hover {
    color: var(--header);
}

.grt-hero-4 {
    padding: 190px 0 140px;
}

@media (max-width: 1600px) {
    .grt-hero-4 {
        padding: 180px 0 140px;
    }
}

@media (max-width: 767px) {
    .grt-hero-4 {
        padding: 170px 0 140px;
    }
}

@media (max-width: 575px) {
    .grt-hero-4 {
        padding: 150px 0 130px;
    }
}

@media (max-width: 470px) {
    .grt-hero-4 {
        padding: 130px 0 110px;
    }
}

.grt-hero-4 .grt-hero-content .grt-hero-sub {
    display: inline-block;
    color: var(--header);
    font-family: "Quicksand", sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    line-height: 1;
    margin-bottom: 18px;
}

.grt-hero-4 .grt-hero-content h1 {
    font-size: 93px;
}

@media (max-width: 1399px) {
    .grt-hero-4 .grt-hero-content h1 {
        font-size: 70px;
    }
}

@media (max-width: 991px) {
    .grt-hero-4 .grt-hero-content h1 {
        font-size: 60px;
        line-height: 110% !important;
    }
}

@media (max-width: 767px) {
    .grt-hero-4 .grt-hero-content h1 {
        font-size: 58px;
    }
}

@media (max-width: 575px) {
    .grt-hero-4 .grt-hero-content h1 {
        font-size: 48px;
    }
}

@media (max-width: 470px) {
    .grt-hero-4 .grt-hero-content h1 {
        font-size: 38px;
    }
}

.grt-hero-4 .grt-hero-content p {
    font-size: 18px;
    color: var(--header);
    max-width: 519px;
    margin-top: 30px;
    margin-bottom: 40px;
}

@media (max-width: 1199px) {
    .grt-hero-4 .grt-hero-content p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .grt-hero-4 .grt-hero-content p {
        margin-bottom: 25px;
        margin-top: 20px;
    }
}

@media (max-width: 470px) {
    .grt-hero-4 .grt-hero-content p {
        font-size: 15px;
        margin-bottom: 20px;
        margin-top: 20px;
    }
}

.grt-hero-4 .hero-image img {
    width: 100%;
    height: 100%;
}

.hero-5 {
    position: relative;
    padding-top: 150px;
    overflow: hidden;
    height: 100dvh;
    z-index: 9;
}

.hero-5::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(22, 51, 59, 0.2);
}

.hero-5 .hero-content {
    max-width: 780px;
    position: relative;
    opacity: 0;
    z-index: 3;
    position: relative;
    transform: translateY(-150px);
    margin: 0;
    text-align: left;
}

.hero-5 .hero-content h1 {
    line-height: 100%;
    font-size: 72px;
    font-weight: 700;
    color: var(--white);
}

.hero-5 .hero-content h1 span {

    color: #10a0e9;
}

@media (max-width: 1399px) {
    .hero-5 .hero-content h1 {
        font-size: 70px;
    }
}

@media (max-width: 991px) {
    .hero-5 .hero-content h1 {
        font-size: 60px;
        line-height: 110% !important;
    }
}

@media (max-width: 767px) {
    .hero-5 .hero-content h1 {
        font-size: 58px;
    }
}

@media (max-width: 575px) {
    .hero-5 .hero-content h1 {
        font-size: 48px;
    }
}

@media (max-width: 470px) {
    .hero-5 .hero-content h1 {
        font-size: 30px;
    }
}

.hero-5 .hero-content p {
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    margin-top: 30px;
}

@media (max-width: 1199px) {
    .hero-5 .hero-content p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .hero-5 .hero-content p {
        margin-top: 20px;
    }
}

@media (max-width: 470px) {
    .hero-5 .hero-content p {
        font-size: 15px;
    }
}

.hero-5 .hero-button {
    margin-top: 50px;
    transform: translateY(250px);
    opacity: 0;
    position: relative;
    z-index: 9;
}

@media (max-width: 767px) {
    .hero-5 .hero-button {
        margin-top: 30px;
    }
}

.hero-5 .hero-button .theme-btn::before {
    background-color: var(--white);
}

.hero-5 .hero-button .theme-btn:hover {
    color: var(--header);
}

.showcase-slider-wrappper .hero-line {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    z-index: 99;
}

@media (max-width: 1199px) {
    .showcase-slider-wrappper .hero-line {
        display: none;
    }
}

.showcase-slider-wrappper .hero-line img {
    width: 100%;
}

.tp-showcase-arrow-box {
    position: absolute;
    top: 50%;
    right: 80px;
    z-index: 2;
    transform: translateY(-40%);
}

.tp-showcase-arrow-box button {
    display: block;
    height: 60px;
    width: 60px;
    font-size: 20px;
    margin-bottom: 10px;
    transform: translateY(-50%);
    color: var(--tp-common-white);
    background: var(--tp-theme-secondary);
    z-index: 2;
}

.tp-showcase-arrow-box button:hover {
    color: var(--tp-theme-secondary);
    background: var(--tp-common-white);
}

.tp-slider-dot {
    z-index: 3;
}

.showcase-slider-wrappper {
    height: 100vh;
}

.showcase-slider-wrappper .swiper-slide-active .hero-content {
    opacity: 1;
    transform: translateY(0px);
    transition: all 2500ms ease;
}

.showcase-slider-wrappper .swiper-slide-active .hero-button {
    opacity: 1;
    transform: translateY(0px);
    transition: all 2500ms ease;
}

.showcase-slider-wrappper .tp-hero-7-slider-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(58%);
    left: 30px;
    z-index: 99;
    display: flex;
    align-items: center;
    right: 30px;
    justify-content: space-between;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 1199px) {
    .showcase-slider-wrappper .tp-hero-7-slider-arrow {
        display: none;
    }
}

.showcase-slider-wrappper .tp-hero-7-slider-arrow .tp-hero-prev {
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    transition: all 0.4s ease-in-out;
    font-size: 18px;
}

.showcase-slider-wrappper .tp-hero-7-slider-arrow .tp-hero-prev:hover {
    background-color: var(--theme);
    color: var(--header);
    border-color: var(--theme);
}

.showcase-slider-wrappper .tp-hero-7-slider-arrow .tp-hero-next {
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    transition: all 0.4s ease-in-out;
    font-size: 18px;
}

.showcase-slider-wrappper .tp-hero-7-slider-arrow .tp-hero-next:hover {
    background-color: var(--theme);
    color: var(--header);
    border-color: var(--theme);
}

.showcase-slider-wrappper:hover .tp-hero-7-slider-arrow {
    transform: translateY(-50%);
    opacity: 1;
    visibility: visible;
}

#canvas-slider {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    right: 0;
    overflow: hidden;
    -webkit-transition: width 0.5s ease-in-out 0;
    transition: width 0.5s ease-in-out 0s;
    z-index: 1;
}

#canvas-slider .slider-img {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    background-size: cover;
    background-position: center center;
    -webkit-transform: scale(1.01);
    transform: scale(1.01);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#showcase-slider-holder {
    width: 100%;
    object-fit: cover;
    position: absolute;
    overflow: hidden;
    opacity: 1;
    z-index: 2;
}

.port-showcase-slider-item {
    height: 100vh;
}

.tp-slider__thumb-bg {
    position: absolute;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.parallax-slider-active .swiper-slide {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
}

.parallax-slider-active .swiper-container {
    width: 100%;
    height: 100vh;
}

.slide-transtion {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

.tp-hover-distort-wrapper {
    position: relative;
}

.tp-hover-distort-wrapper .canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.tp-hover-distort-img {
    opacity: 0;
    object-fit: cover;
}

.tp-hover-distort-img.back {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.grt-about-wrapepr {
    margin: 0 50px;
    position: relative;
}

@media (max-width: 1399px) {
    .grt-about-wrapepr {
        margin: 0 40px;
    }
}

@media (max-width: 1199px) {
    .grt-about-wrapepr {
        margin: 0 35px;
    }
}

@media (max-width: 991px) {
    .grt-about-wrapepr {
        margin: 0 28px;
    }
}

@media (max-width: 767px) {
    .grt-about-wrapepr {
        margin: 0 22px;
    }
}

@media (max-width: 575px) {
    .grt-about-wrapepr {
        margin: 0 18px;
    }
}

.grt-about-wrapepr .about-shape1 {
    position: absolute;
    top: 5%;
    right: 21%;
}

@media (max-width: 1399px) {
    .grt-about-wrapepr .about-shape1 {
        display: none;
    }
}

.grt-about-wrapepr .about-shape2 {
    position: absolute;
    right: -7%;
    bottom: 0;
}

@media (max-width: 1399px) {
    .grt-about-wrapepr .about-shape2 {
        display: none;
    }
}

.grt-about-wrapepr .grt-about-image {
    border-radius: 12px;
}

.grt-about-wrapepr .grt-about-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.grt-about-wrapepr .grt-about-content {
    margin-left: 125px;
}

@media (max-width: 1899px) {
    .grt-about-wrapepr .grt-about-content {
        margin-left: 90px;
    }
}

@media (max-width: 1600px) {
    .grt-about-wrapepr .grt-about-content {
        margin-left: 50px;
    }
}

@media (max-width: 1600px) {
    .grt-about-wrapepr .grt-about-content {
        margin-left: 50px;
    }
}

@media (max-width: 1199px) {
    .grt-about-wrapepr .grt-about-content {
        margin-left: 0;
    }
}

@media (max-width: 1600px) {
    .grt-about-wrapepr .grt-about-content .grt-section-title h2 {
        font-size: 55px;
    }
}

@media (max-width: 1399px) {
    .grt-about-wrapepr .grt-about-content .grt-section-title h2 {
        font-size: 44px;
    }
}

@media (max-width: 1199px) {
    .grt-about-wrapepr .grt-about-content .grt-section-title h2 {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .grt-about-wrapepr .grt-about-content .grt-section-title h2 {
        font-size: 55px;
    }
}

@media (max-width: 767px) {
    .grt-about-wrapepr .grt-about-content .grt-section-title h2 {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .grt-about-wrapepr .grt-about-content .grt-section-title h2 {
        font-size: 36px;
    }
}

@media (max-width: 470px) {
    .grt-about-wrapepr .grt-about-content .grt-section-title h2 {
        font-size: 32px;
    }
}

.grt-about-wrapepr .grt-about-content .grt-text {
    margin-top: 30px;
    max-width: 570px;
    margin-bottom: 38px;
}

@media (max-width: 1199px) {
    .grt-about-wrapepr .grt-about-content .grt-text {
        max-width: initial;
    }

    .grt-about-wrapepr .grt-about-content .grt-text br {
        display: none;
    }
}

.grt-about-wrapper-3 {
    position: relative;
    z-index: 1;
}

.grt-about-wrapper-3 .grt-thumb img {
    width: 100%;
    height: 100%;
}

.grt-about-wrapper-3 .grt-about-content {
    max-width: 570px;
    margin-left: auto;
    position: relative;
}

@media (max-width: 991px) {
    .grt-about-wrapper-3 .grt-about-content {
        margin-left: initial;
    }
}

.grt-about-wrapper-3 .grt-about-content .text {
    color: var(--white);
    font-size: 18px;
    max-width: 495px;
    margin-top: 30px;
}

@media (max-width: 767px) {
    .grt-about-wrapper-3 .grt-about-content .text {
        margin-top: 20px;
        font-size: 16px;
    }
}

.grt-about-wrapper-3 .grt-about-content ul {
    margin-top: 25px;
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    .grt-about-wrapper-3 .grt-about-content ul {
        margin-top: 20px;
    }
}

.grt-about-wrapper-3 .grt-about-content ul li {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    font-family: "Quicksand", sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 767px) {
    .grt-about-wrapper-3 .grt-about-content ul li {
        font-size: 16px;
    }
}

.grt-about-wrapper-3 .grt-about-content ul li:not(:last-child) {
    margin-bottom: 15px;
}

.grt-about-wrapper-3 .grt-about-content .theme-btn::before {
    background-color: var(--white);
}

.grt-about-wrapper-3 .grt-about-content .theme-btn:hover {
    color: var(--header);
}

.grt-about-section-3 {
    position: relative;
}

.grt-about-section-3 .about-line-1 {
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 1399px) {
    .grt-about-section-3 .about-line-1 {
        display: none;
    }
}

.grt-about-section-3 .about-line-2 {
    position: absolute;
    bottom: 0;
    right: 0;
}

@media (max-width: 1399px) {
    .grt-about-section-3 .about-line-2 {
        display: none;
    }
}

.about-wrapper-4 .about-image-items {
    position: relative;
}

.about-wrapper-4 .about-image-items .thumb {
    max-width: 576px;
}

.about-wrapper-4 .about-image-items .thumb img {
    width: 100%;
    height: 100%;
}

.about-wrapper-4 .about-image-items .thumb-2 {
    position: absolute;
    bottom: 0;
    left: 0;
}

.about-wrapper-4 .about-image-items .thumb-2 img {
    border-radius: 50%;
    border: 6px solid var(--white);
}

.about-wrapper-4 .about-image-items .thumb-3 {
    position: absolute;
    top: 0;
    right: 30px;
}

@media (max-width: 1199px) {
    .about-wrapper-4 .about-image-items .thumb-3 {
        max-width: 180px;
    }

    .about-wrapper-4 .about-image-items .thumb-3 img {
        width: 100%;
        height: 100%;
    }
}

.about-wrapper-4 .about-image-items .thumb-3 img {
    border-radius: 50%;
    border: 6px solid var(--white);
}

.about-wrapper-4 .about-content .text {
    font-size: 22px;
    font-weight: 500;
    line-height: 145%;
    margin-top: 25px;
    max-width: 550px;
}

@media (max-width: 1199px) {
    .about-wrapper-4 .about-content .text {
        font-size: 18px;
    }
}

.about-wrapper-4 .about-content .text-2 {
    max-width: 500px;
    margin-top: 25px;
}

.about-wrapper-4 .about-content .theme-btn {
    margin-top: 45px;
}

@media (max-width: 767px) {
    .about-wrapper-4 .about-content .theme-btn {
        margin-top: 25px;
    }
}

.about-wrapper-4 .about-content .theme-btn::before {
    background-color: var(--white);
}

.about-wrapper-4 .about-content .theme-btn:hover {
    color: var(--header);
}

.grt-about-wrapper-5 .about-content {
    margin-left: 50px;
}

@media (max-width: 1199px) {
    .grt-about-wrapper-5 .about-content {
        margin-left: 0;
    }
}

.grt-about-wrapper-5 .about-content .text {
    font-size: 22px;
    font-weight: 500;
    line-height: 145%;
    margin-top: 25px;
    max-width: 550px;
}

@media (max-width: 1199px) {
    .grt-about-wrapper-5 .about-content .text {
        font-size: 18px;
    }
}

.grt-about-wrapper-5 .about-content .text-2 {
    max-width: 500px;
    margin-top: 25px;
}

.grt-about-wrapper-5 .about-content .theme-btn {
    margin-top: 45px;
}

@media (max-width: 767px) {
    .grt-about-wrapper-5 .about-content .theme-btn {
        margin-top: 25px;
    }
}

.grt-about-wrapper-5 .about-content .theme-btn::before {
    background-color: var(--white);
}

.grt-about-wrapper-5 .about-content .theme-btn:hover {
    color: var(--header);
}

.grt-about-wrapper-5 {
    background-color: #16333B;
    margin: 0 30px;
    border-radius: 16px;
}

@media (max-width: 1600px) {
    .grt-about-wrapper-5 {
        margin: 0 25px;
    }
}

@media (max-width: 1199px) {
    .grt-about-wrapper-5 {
        margin: 0 20px;
    }
}

@media (max-width: 470px) {
    .grt-about-wrapper-5 {
        margin: 0 15px;
    }
}

.grt-about-wrapper-5 .grt-thumb {
    border-radius: 16px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

@media (max-width: 1600px) {
    .grt-about-wrapper-5 .grt-thumb {
        height: 700px;
    }
}

@media (max-width: 1199px) {
    .grt-about-wrapper-5 .grt-thumb {
        height: 620px;
    }
}

@media (max-width: 991px) {
    .grt-about-wrapper-5 .grt-thumb {
        height: 520px;
    }
}

@media (max-width: 767px) {
    .grt-about-wrapper-5 .grt-thumb {
        height: 480px;
    }
}

.grt-about-wrapper-5 .grt-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    object-fit: cover;
}

@media (max-width: 1199px) {
    .grt-about-wrapper-5 .about-content {
        padding-right: 20px;
    }
}

@media (max-width: 991px) {
    .grt-about-wrapper-5 .about-content {
        margin-top: 30px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 50px;
    }
}

.grt-about-inner-warpper .about-image {
    max-width: 533px;
    position: relative;
}

@media (max-width: 1199px) {
    .grt-about-inner-warpper .about-image {
        max-width: initial;
    }
}

@media (max-width: 991px) {
    .grt-about-inner-warpper .about-image {
        height: 520px;
    }
}

@media (max-width: 767px) {
    .grt-about-inner-warpper .about-image {
        height: 480px;
    }
}

.grt-about-inner-warpper .about-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.grt-about-inner-warpper .about-image .small-image {
    border: 7px solid var(--white);
    border-radius: 12px;
    position: absolute;
    right: -22%;
    bottom: 70px;
}

@media (max-width: 1399px) {
    .grt-about-inner-warpper .about-image .small-image {
        right: -15%;
    }
}

@media (max-width: 1199px) {
    .grt-about-inner-warpper .about-image .small-image {
        right: 20px;
        bottom: 20px;
    }
}

@media (max-width: 470px) {
    .grt-about-inner-warpper .about-image .small-image {
        max-width: 180px;
    }
}

.grt-about-inner-warpper .about-image .small-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.grt-about-inner-warpper .about-content {
    margin-left: 70px;
}

@media (max-width: 1199px) {
    .grt-about-inner-warpper .about-content {
        margin-left: 0;
    }
}

.grt-about-inner-warpper .about-content .text {
    font-size: 22px;
    font-weight: 500;
    line-height: 145%;
    margin-top: 25px;
    max-width: 550px;
}

@media (max-width: 1199px) {
    .grt-about-inner-warpper .about-content .text {
        font-size: 18px;
    }
}

.grt-about-inner-warpper .about-content .text-2 {
    max-width: 500px;
    margin-top: 25px;
}

.grt-about-inner-warpper .about-content .bottom-box {
    background-color: var(--theme);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 30px;
    font-weight: 600;
    max-width: 560px;
    padding: 20px 20px;
    line-height: 1;
    border-radius: 8px;
    margin-top: 30px;
}

@media (max-width: 1399px) {
    .grt-about-inner-warpper .about-content .bottom-box {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .grt-about-inner-warpper .about-content .bottom-box {
        font-size: 18px;
    }
}

.grt-core-box-2 {
    margin-top: 30px;
    background-color: var(--white);
    border-radius: 8px;
}

.grt-core-box-2 .thumb {
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.grt-core-box-2 .thumb::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    pointer-events: none;
}

.grt-core-box-2 .thumb img {
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    object-fit: cover;
    transition: all 1s;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.grt-core-box-2 .content {
    padding: 30px;
    padding-top: 22px;
    margin-top: -61px;
    position: relative;
    z-index: 9;
    transition: all 0.4s ease-in-out;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

@media (max-width: 1399px) {
    .grt-core-box-2 .content {
        padding: 25px;
    }
}

.grt-core-box-2 .content .icon {
    margin-bottom: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.grt-core-box-2 .content .title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

@media (max-width: 1399px) {
    .grt-core-box-2 .content .title {
        font-size: 20px;
    }
}

.grt-core-box-2.active .thumb:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.grt-core-box-2.active .thumb img {
    transform: scale(1.2);
}

.grt-core-box-2.active .content {
    background-color: var(--theme);
}

.grt-core-box-2.active .content .icon {
    opacity: 1;
    visibility: visible;
}

.marquee {
    position: relative;
    --duration: 50s;
    --gap: 0px;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 50px;
    margin-top: -25px;
}

.marquee .marquee-group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 50px;
    min-width: 100%;
    animation: scroll var(--duration) linear infinite;
}

.marquee .text {
    font-size: 150px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--header);
    display: flex;
    align-items: center;
    gap: 50px;
    transition: all 0.4s ease-in-out;
    font-family: "Quicksand", sans-serif;
}

@media (max-width: 1399px) {
    .marquee .text {
        letter-spacing: initial;
        font-size: 100px;
        gap: 25px;
    }
}

@media (max-width: 1199px) {
    .marquee .text {
        font-size: 80px;
    }

    .marquee .text img {
        width: 80px;
    }
}

@media (max-width: 767px) {
    .marquee .text {
        font-size: 60px;
    }
}

@media (max-width: 575px) {
    .marquee .text {
        font-size: 50px;
    }
}

.marquee .text span {
    margin-top: -10px;
    display: inline-block;
    transition: all 0.4s ease-in-out;
}

.marquee .text.style-font {
    font-size: 127px;
    letter-spacing: -3.82192px;
    line-height: 1;
    padding-top: 20px;
    padding-bottom: 40px;
}

@media (max-width: 1399px) {
    .marquee .text.style-font {
        letter-spacing: initial;
        font-size: 100px;
        gap: 25px;
    }
}

@media (max-width: 1199px) {
    .marquee .text.style-font {
        font-size: 80px;
    }

    .marquee .text.style-font img {
        width: 80px;
    }
}

@media (max-width: 767px) {
    .marquee .text.style-font {
        font-size: 60px;
    }
}

@media (max-width: 575px) {
    .marquee .text.style-font {
        font-size: 50px;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

.grt-counter-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 70px;
    margin-bottom: 135px;
}

@media (max-width: 1199px) {
    .grt-counter-wrapper {
        gap: 30px;
        margin-bottom: 0;
    }
}

@media (max-width: 991px) {
    .grt-counter-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .grt-counter-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 470px) {
    .grt-counter-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.grt-counter-wrapper .grt-counter-items {
    text-align: center;
}

.grt-counter-wrapper .grt-counter-items .title {
    font-size: 72px;
    font-weight: 600;
    color: var(--white);
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(-50%);
}

@media (max-width: 1199px) {
    .grt-counter-wrapper .grt-counter-items .title {
        font-size: 50px;
    }
}

.grt-counter-wrapper .grt-counter-items .counter-bg {
    position: relative;
    display: inline-block;
}

.grt-counter-wrapper .grt-counter-items p {
    font-size: 23px;
    font-weight: 700;
    font-family: "Quicksand", sans-serif;
    color: var(--white);
    margin-top: 25px;
}

@media (max-width: 1199px) {
    .grt-counter-wrapper .grt-counter-items p {
        font-size: 16px;
    }
}

.grt-mission-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 991px) {
    .grt-mission-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .grt-mission-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .grt-mission-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

.grt-mission-wrapper .grt-mission-box-items {
    margin-top: 30px;
    max-width: 212px;
    margin: 30px auto 0;
    text-align: center;
}

.grt-mission-wrapper .grt-mission-box-items .grt-mission-thumb {
    position: relative;
}

.grt-mission-wrapper .grt-mission-box-items .grt-mission-thumb .thumb {
    width: 200px;
    height: 200px;
    border-radius: 200px;
    position: relative;
    overflow: hidden;
}

.grt-mission-wrapper .grt-mission-box-items .grt-mission-thumb .thumb::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    pointer-events: none;
}

.grt-mission-wrapper .grt-mission-box-items .grt-mission-thumb .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 200px;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    object-fit: cover;
    transition: all 1s;
}

.grt-mission-wrapper .grt-mission-box-items .grt-mission-thumb .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: var(--theme);
    text-align: center;
    position: absolute;
    bottom: 0px;
    right: 15px;
}

.grt-mission-wrapper .grt-mission-box-items .grt-content {
    margin-top: 20px;
}

.grt-mission-wrapper .grt-mission-box-items .grt-content .title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.grt-mission-wrapper .grt-mission-box-items:hover .grt-mission-thumb .thumb:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.grt-mission-wrapper .grt-mission-box-items:hover .grt-mission-thumb .thumb img {
    transform: scale(1.2);
}

.grt-mission-section .raising-text {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 600;
    color: var(--header);
    font-family: "Quicksand", sans-serif;
    gap: 10px;
    margin-top: 50px;
}

@media (max-width: 767px) {
    .grt-mission-section .raising-text {
        margin-top: 30px;
        flex-wrap: wrap;
    }
}

.grt-counter-wrapper-2 .titles {
    font-size: 45px;
    font-weight: 700;
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
}

@media (max-width: 767px) {
    .grt-counter-wrapper-2 .titles {
        margin-bottom: 30px;
        font-size: 35px;
    }
}

.grt-counter-wrapper-2 .grt-counter-box-2 {
    background-color: #1E414B;
    padding: 30px 20px;
    border-radius: 6px;
    text-align: center;
    padding-top: 20px;
    position: relative;
    z-index: 9;
}

.grt-counter-wrapper-2 .grt-counter-box-2 .counter-title {
    font-size: 80px;
    font-weight: 700;
    color: var(--theme);
    line-height: 1;
    margin-bottom: 15px;
}

@media (max-width: 575px) {
    .grt-counter-wrapper-2 .grt-counter-box-2 .counter-title {
        font-size: 60px;
    }
}

.grt-counter-wrapper-2 .grt-counter-box-2 p {
    font-size: 24px;
    font-weight: 700;
    font-family: "Quicksand", sans-serif;
    color: var(--white);
}

@media (max-width: 1399px) {
    .grt-counter-wrapper-2 .grt-counter-box-2 p {
        font-size: 18px;
    }
}

@media (max-width: 1199px) {
    .grt-counter-wrapper-2 .grt-counter-box-2 p {
        font-size: 16px;
    }
}

.grt-counter-section-2 {
    position: relative;
}

.grt-counter-section-2 .line-1 {
    position: absolute;
    bottom: 0;
    right: 0;
}

@media (max-width: 1399px) {
    .grt-counter-section-2 .line-1 {
        display: none;
    }
}

.grt-counter-wrapper-3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

@media (max-width: 1199px) {
    .grt-counter-wrapper-3 {
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .grt-counter-wrapper-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .grt-counter-wrapper-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .grt-counter-wrapper-3 {
        grid-template-columns: repeat(1, 1fr);
        text-align: center;
    }
}

.grt-counter-wrapper-3 .grt-counter-items-3 .title {
    font-size: 90px;
    font-weight: 600;
    color: var(--theme);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 15px;
    margin-bottom: 25px;
}

@media (max-width: 1399px) {
    .grt-counter-wrapper-3 .grt-counter-items-3 .title {
        font-size: 80px;
    }
}

@media (max-width: 1199px) {
    .grt-counter-wrapper-3 .grt-counter-items-3 .title {
        font-size: 70px;
    }
}

@media (max-width: 991px) {
    .grt-counter-wrapper-3 .grt-counter-items-3 .title {
        font-size: 60px;
    }
}

.grt-counter-wrapper-3 .grt-counter-items-3 p {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    font-family: "Quicksand", sans-serif;
}

@media (max-width: 1399px) {
    .grt-counter-wrapper-3 .grt-counter-items-3 p {
        font-size: 18px;
    }
}

@media (max-width: 1199px) {
    .grt-counter-wrapper-3 .grt-counter-items-3 p {
        font-size: 16px;
    }
}

.grt-mission-box-items-2 {
    margin-top: 30px;
    border-radius: 8px;
    background-color: #ECF1FC;
    padding: 30px;
}

@media (max-width: 1399px) {
    .grt-mission-box-items-2 {
        padding: 20px;
    }
}

.grt-mission-box-items-2 .thumb {
    border-radius: 6px 6px 6px 26px;
    position: relative;
    overflow: hidden;
}

.grt-mission-box-items-2 .thumb .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: var(--theme);
    text-align: center;
    position: absolute;
    bottom: 0px;
    left: 0;
}

.grt-mission-box-items-2 .thumb::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    pointer-events: none;
}

.grt-mission-box-items-2 .thumb .hover-image {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    object-fit: cover;
    transition: all 1s;
    width: 100%;
    height: 100%;
    border-radius: 6px 6px 6px 26px;
}

.grt-mission-box-items-2 .content {
    margin-top: 25px;
}

.grt-mission-box-items-2 .content .title {
    margin-bottom: 5px;
}

.grt-mission-box-items-2:hover .thumb:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.grt-mission-box-items-2:hover .thumb .icon img {
    animation: wobble 1.5s ease-in-out;
}

.grt-mission-box-items-2:hover .thumb .hover-image {
    transform: scale(1.2);
}

.grt-mission-section-2 .raising-text {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 600;
    color: var(--header);
    font-family: "Quicksand", sans-serif;
    gap: 10px;
    margin-top: 50px;
}

@media (max-width: 767px) {
    .grt-mission-section-2 .raising-text {
        margin-top: 30px;
        flex-wrap: wrap;
        font-size: 25px;
    }
}

.core-feature-box-items {
    margin-top: 30px;
    position: relative;
    z-index: 9;
    padding: 35px 0;
    padding-top: 0;
}

.core-feature-box-items::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: transparent;
    z-index: -1;
    border-radius: 8px;
    top: 50px;
    height: initial;
}

.core-feature-box-items .icon {
    width: 95px;
    height: 95px;
    line-height: 95px;
    text-align: center;
    border-radius: 50%;
    background-color: #e7f3ed;
    position: relative;
    margin: 0 auto;
    z-index: 1;
}

.core-feature-box-items .icon::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    width: 80px;
    height: 80px;
    background-color: #d2e6c6;
    border-radius: 50%;
    z-index: -1;
}

.core-feature-box-items:hover .icon::before {
    background-color: #f9eae9
}

.core-feature-box-items .content {
    text-align: center;
    border-top: 0px solid rgba(22, 51, 59, 0.1);
    padding: 10px 20px 0;
    margin-top: 10px;
}

.core-feature-box-items .content .title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.grt-impact-number-section {
    background-color: #16333B;
    border-radius: 16px;
    margin: 0 30px;
}

@media (max-width: 1600px) {
    .grt-impact-number-section {
        margin: 0 25px;
    }
}

@media (max-width: 1199px) {
    .grt-impact-number-section {
        margin: 0 20px;
    }
}

@media (max-width: 470px) {
    .grt-impact-number-section {
        margin: 0 15px;
    }
}

.grt-impact-number-section .grt-section-title-area .theme-btn::before {
    background-color: var(--white);
}

.grt-impact-number-section .grt-section-title-area .theme-btn:hover {
    color: var(--header);
}

grt-impact-number-items {
    margin-top: 30px;
    position: relative;
    min-height: 140px;
    display: block;
    height: 140px;
    margin-bottom: 15px;
}

.grt-impact-number-items img {
    width: 100%;
    height: 100%;
}

.grt-impact-number-items .content {
    text-align: center;
    position: absolute;
    top: 47%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
}

.grt-impact-number-items .content .title {
    color: var(--white);
    font-size: 96px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 9px;
}

@media (max-width: 470px) {
    .grt-impact-number-items .content .title {
        font-size: 70px;
    }
}

.grt-impact-number-items .content p {
    font-size: 23px;
    font-weight: 600;
    font-family: "Quicksand", sans-serif;
    color: var(--white);
}

@media (max-width: 1600px) {
    .grt-impact-number-items .content p {
        font-size: 20px;
    }
}

@media (max-width: 1199px) {
    .grt-impact-number-items .content p {
        font-size: 18px;
    }
}

@media (max-width: 470px) {
    .grt-impact-number-items .content p {
        font-size: 16px;
    }
}

.gallery-card-item .gallery-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-card-item .gallery-image::before {
    top: 15px;
    left: 15px;
    height: 100%;
    width: 100%;
    transform: scale(0.7);
    content: "";
    position: absolute;
    background: #16333B;
    z-index: 1;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
}

.gallery-card-item .gallery-image .icon {
    position: absolute;
    font-size: 24px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    color: var(--white);
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.gallery-card-item .gallery-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    object-fit: cover;
    transition: all 1s;
}

.gallery-card-item .gallery-image:hover::before {
    transform: scale(1);
    opacity: 0.7;
    visibility: visible;
}

.gallery-card-item .gallery-image:hover img {
    transform: scale(1.2);
}

.gallery-card-item .gallery-image:hover .icon {
    opacity: 1;
}

.project-box-items .thumb {
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.project-box-items .thumb::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    pointer-events: none;
}

.project-box-items .thumb img {
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    object-fit: cover;
    transition: all 1s;
}

.project-box-items .content {
    background-color: #ECF1FC;
    border-radius: 6px;
    padding: 30px 30px;
    margin: 0 30px;
    position: relative;
    margin-top: -90px;
    z-index: 9;
}

.project-box-items .content .icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme);
    color: var(--header);
    font-size: 22px;
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.project-box-items .content .icon:hover {
    background-color: var(--header);
    color: var(--white);
}

.project-box-items .content .tag-box {
    display: inline-block;
    background-color: var(--theme);
    color: var(--header);
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 4px;
    line-height: 1;
    margin-bottom: 15px;
}

.project-box-items .content .tag-box:hover {
    background-color: var(--header);
    color: var(--white);
}

.project-box-items .content .title {
    font-size: 24px;
    font-weight: 600;
    line-height: 138%;
}

@media (max-width: 1600px) {
    .project-box-items .content .title {
        font-size: 20px;
    }
}

@media (max-width: 1399px) {
    .project-box-items .content .title {
        font-size: 17px;
    }
}

.project-box-items .content .title a:hover {
    color: var(--theme);
}

.project-box-items:hover .thumb:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.project-box-items:hover .thumb img {
    transform: scale(1.2);
}

.project-box-items.style-2 .thumb {
    position: relative;
}

.project-box-items.style-2 .thumb .icon {
    display: inline-block;
    width: 52px;
    height: 52px;
    line-height: 52px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme);
    color: var(--header);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 9;
}

.project-box-items.style-2 .content {
    margin: 0;
}

.project-box-items.style-2:hover .thumb .icon {
    opacity: 1;
    visibility: visible;
}

.project-section-4 {
    margin: 0 30px;
}

@media (max-width: 1600px) {
    .project-section-4 {
        margin: 0 25px;
    }
}

@media (max-width: 1199px) {
    .project-section-4 {
        margin: 0 20px;
    }
}

@media (max-width: 470px) {
    .project-section-4 {
        margin: 0 15px;
    }
}

.project-details-wrapper .details-thumb {
    border-radius: 10px;
}

.project-details-wrapper .details-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.project-details-wrapper .details-content {
    margin-top: 25px;
}

.project-details-wrapper .details-content .box-items {
    background-color: #ECF1FC;
    border-radius: 8px;
    padding: 19px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .project-details-wrapper .details-content .box-items {
        flex-wrap: wrap;
        gap: 30px;
    }
}

.project-details-wrapper .details-content .box-items .tag-list .tag {
    display: inline-block;
    background-color: var(--theme);
    font-size: 16px;
    font-weight: 600;
    font-family: "Quicksand", sans-serif;
    color: var(--header);
    padding: 7px 8px;
    line-height: 1;
    border-radius: 3px;
    margin-bottom: 15px;
}

.project-details-wrapper .details-content .box-items .tag-list .tag2 {
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: var(--header);
    font-family: "Quicksand", sans-serif;
}

@media (max-width: 991px) {
    .project-details-wrapper .details-content .box-items .tag-list .tag2 {
        font-size: 20px;
    }
}

.project-details-wrapper .details-content .box-items .tag-list .social-icon {
    gap: 15px;
}

.project-details-wrapper .details-content .box-items .tag-list .social-icon a:hover {
    color: var(--theme);
}

.project-details-wrapper .details-content .box-items .lines {
    width: 1px;
    height: 125px;
    background-color: rgba(22, 51, 59, 0.15);
    display: inline-block;
}

.project-details-wrapper .details-content .title-2 {
    font-size: 48px;
    margin-top: 40px;
}

@media (max-width: 575px) {
    .project-details-wrapper .details-content .title-2 {
        font-size: 40px;
    }
}

@media (max-width: 470px) {
    .project-details-wrapper .details-content .title-2 {
        font-size: 38px;
    }
}

.project-details-wrapper .thumb-2 img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.project-details-wrapper .tag-share-wrap {
    border-top: 1px solid rgba(22, 51, 59, 0.1);
    border-bottom: 1px solid rgba(22, 51, 59, 0.1);
    padding: 30px 0;
    margin-top: 30px;
    margin-bottom: 30px;
}

.project-details-wrapper .tag-share-wrap .tagcloud a {
    display: inline-block;
    padding: 12px 26px;
    line-height: 1;
    background: #ECF1FC;
    margin-right: 8px;
    text-transform: capitalize;
    font-weight: 500;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    border-radius: 4px;
}

@media (max-width: 575px) {
    .project-details-wrapper .tag-share-wrap .tagcloud a {
        margin-bottom: 5px;
    }
}

.project-details-wrapper .tag-share-wrap .tagcloud a:hover {
    background-color: var(--theme);
    color: var(--header);
}

.project-details-wrapper .tag-share-wrap .social-share span {
    font-size: 18px;
    color: var(--header);
    font-weight: 600;
}

.project-details-wrapper .tag-share-wrap .social-share a {
    font-size: 18px;
    color: var(--header);
}

.project-details-wrapper .tag-share-wrap .social-share a:not(:last-child) {
    margin-right: 10px;
}

.project-details-wrapper .tag-share-wrap .social-share a:hover {
    color: var(--theme);
}

.project-details-wrapper .slider-button {
    background-color: #ECF1FC;
    padding: 25px 25px;
    border-radius: 10px;
}

.project-details-wrapper .slider-button span {
    font-weight: 500;
}

.project-details-wrapper .slider-button .cmn-next i,
.project-details-wrapper .slider-button .cmn-prev i {
    color: var(--header);
    font-size: 18px;
    transition: all 0.4s;
}

.project-details-wrapper .slider-button .previus-text {
    font-size: 18px;
    color: var(--header);
}

.project-details-wrapper .slider-button .icon-gird {
    font-size: 40px;
    color: var(--header);
}

.grt-causes-section {
    position: relative;
}

.grt-causes-section .hand-shape {
    position: absolute;
    right: 170px;
    top: 158px;
    transform-origin: bottom center;
    animation: handSignal 2.8s ease-in-out infinite;
}

@media (max-width: 1399px) {
    .grt-causes-section .hand-shape {
        opacity: 0.2;
    }
}

.grt-causes-section .line-shape {
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 1399px) {
    .grt-causes-section .line-shape {
        opacity: 0.2;
    }
}

.grt-causes-section .line-shape2 {
    position: absolute;
    bottom: 0;
    right: 0;
}

@media (max-width: 1399px) {
    .grt-causes-section .line-shape2 {
        opacity: 0.2;
    }
}

@keyframes handSignal {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-8deg);
    }

    50% {
        transform: rotate(6deg);
    }

    75% {
        transform: rotate(-4deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.grt-causes-box-items {
    margin-top: 30px;
    background: #1E414B;
    border-radius: 10px;
    padding: 50px;
    transition: all 0.4s ease-in-out;
    text-align: center;
}

@media (max-width: 1199px) {
    .grt-causes-box-items {
        padding: 30px;
    }
}

.grt-causes-box-items .grt-content {
    text-align: center;
    margin-bottom: 30px;
}

.grt-causes-box-items .grt-content .title {
    margin-bottom: 5px;
}

.grt-causes-box-items .grt-content .title a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
    color: var(--white);
}

.grt-causes-box-items .grt-content .title a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.grt-causes-box-items .grt-content p {
    font-size: 14px;
    color: var(--white);
}

.grt-causes-box-items .grt-thumb {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 35px;
    position: relative;
}

.grt-causes-box-items .grt-thumb::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    pointer-events: none;
}

.grt-causes-box-items .grt-thumb img {
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    border-radius: 8px;
    object-fit: cover;
    transition: all 1s;
}

.grt-causes-box-items .donate-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    font-family: "Quicksand", sans-serif;
    color: var(--white);
    overflow: hidden;
    text-transform: capitalize;
}

.grt-causes-box-items .donate-btn .text {
    position: relative;
    display: inline-block;
    height: 22px;
    overflow: hidden;
}

.grt-causes-box-items .donate-btn .text-default,
.grt-causes-box-items .donate-btn .text-hover {
    display: block;
    transition: transform 0.4s ease;
}

.grt-causes-box-items .donate-btn .text-hover {
    position: absolute;
    left: 0;
    top: 100%;
    color: var(--theme);
}

.grt-causes-box-items .donate-btn:hover .text-default {
    transform: translateY(-100%);
}

.grt-causes-box-items .donate-btn:hover .text-hover {
    transform: translateY(-100%);
}

.grt-causes-box-items .donate-btn i {
    transition: transform 0.4s ease;
}

.grt-causes-box-items:hover {
    transform: translateY(-10px);
}

.grt-causes-box-items:hover .grt-thumb:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.grt-causes-box-items:hover .grt-thumb img {
    -webkit-transform: scale(1.2) rotate(10deg);
    -ms-transform: scale(1.2) rotate(10deg);
    transform: scale(1.2) rotate(10deg);
}

.grt-causes-box-items-2 {
    margin-top: 30px;
}

.grt-causes-box-items-2 .grt-causes-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.grt-causes-box-items-2 .grt-causes-thumb .tag {
    display: inline-block;
    background-color: var(--white);
    font-size: 12px;
    font-weight: 600;
    color: var(--header);
    font-family: "Quicksand", sans-serif;
    text-transform: uppercase;
    border-radius: 4px;
    padding: 10px 9px;
    position: absolute;
    line-height: 1;
    font-weight: 700;
    z-index: 2;
    top: 20px;
    right: 20px;
    z-index: 99;
}

.grt-causes-box-items-2 .grt-causes-thumb::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    pointer-events: none;
    border-radius: 8px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.grt-causes-box-items-2 .grt-causes-thumb img {
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    object-fit: cover;
    transition: all 1s;
    border-radius: 8px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.grt-causes-box-items-2 .grt-causes-content {
    padding: 50px 50px;
    padding-top: 45px;
    background-color: var(--header);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

@media (max-width: 1399px) {
    .grt-causes-box-items-2 .grt-causes-content {
        padding: 30px;
    }
}

.grt-causes-box-items-2 .grt-causes-content .title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.grt-causes-box-items-2 .grt-causes-content .title a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
    color: var(--white);
}

.grt-causes-box-items-2 .grt-causes-content .title a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.grt-causes-box-items-2 .grt-causes-content .skill-feature {
    margin-top: 60px;
    margin-bottom: 15px;
}

.grt-causes-box-items-2 .grt-causes-content .skill-feature .progress-value {
    color: var(--header);
    text-transform: capitalize;
}

.grt-causes-box-items-2 .grt-causes-content .skill-feature .progress {
    position: relative;
    height: 7px;
    background-color: var(--white);
    border-radius: 3px;
    overflow: visible;
}

.grt-causes-box-items-2 .grt-causes-content .skill-feature .progress-bar {
    background-color: var(--theme);
    height: 7px;
    margin: 0;
    border-radius: 3px;
    overflow: visible;
    position: relative;
    margin-top: 0;
}

.grt-causes-box-items-2 .grt-causes-content .skill-feature .progress-value {
    position: absolute;
    top: -38px;
    right: -8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--header);
    font-family: "Inter", sans-serif;
    height: 35px;
    line-height: 26px;
    background-color: var(--theme);
    border-radius: 2px;
    padding: 0 6px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
}

.grt-causes-box-items-2 .grt-causes-content .skill-feature .price-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.grt-causes-box-items-2 .grt-causes-content .skill-feature .price-list span {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
}

.grt-causes-box-items-2 .grt-causes-content p {
    text-align: center;
    color: var(--white);
}

@media (max-width: 1399px) {
    .grt-causes-box-items-2 .grt-causes-content p br {
        display: none;
    }
}

.grt-causes-box-items-2 .grt-causes-content .donate-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    font-family: "Quicksand", sans-serif;
    color: var(--white);
    overflow: hidden;
    text-transform: capitalize;
}

.grt-causes-box-items-2 .grt-causes-content .donate-btn .text {
    position: relative;
    display: inline-block;
    height: 22px;
    overflow: hidden;
}

.grt-causes-box-items-2 .grt-causes-content .donate-btn .text-default,
.grt-causes-box-items-2 .grt-causes-content .donate-btn .text-hover {
    display: block;
    transition: transform 0.4s ease;
}

.grt-causes-box-items-2 .grt-causes-content .donate-btn .text-hover {
    position: absolute;
    left: 0;
    top: 100%;
    color: var(--theme);
}

.grt-causes-box-items-2 .grt-causes-content .donate-btn:hover .text-default {
    transform: translateY(-100%);
}

.grt-causes-box-items-2 .grt-causes-content .donate-btn:hover .text-hover {
    transform: translateY(-100%);
}

.grt-causes-box-items-2 .grt-causes-content .donate-btn i {
    transition: transform 0.4s ease;
}

.grt-causes-box-items-2 .grt-causes-content.style-2 {
    background-color: transparent;
    padding: 30px;
    padding-top: 50px;
    border: 1px solid rgba(22, 51, 59, 0.1);
}

.grt-causes-box-items-2 .grt-causes-content.style-2 .skill-feature {
    margin-top: 0;
    margin-bottom: 20px;
}

.grt-causes-box-items-2 .grt-causes-content.style-2 .skill-feature .progress-value {
    color: var(--header);
    text-transform: capitalize;
}

.grt-causes-box-items-2 .grt-causes-content.style-2 .skill-feature .progress {
    background-color: var(--header);
}

.grt-causes-box-items-2 .grt-causes-content.style-2 .skill-feature .progress-bar {
    background-color: var(--theme);
}

.grt-causes-box-items-2 .grt-causes-content.style-2 .skill-feature .price-list span {
    color: var(--header);
}

.grt-causes-box-items-2 .grt-causes-content.style-2 .title-2 a:hover {
    color: var(--theme);
}

.grt-causes-box-items-2 .grt-causes-content.style-2 .text-2 {
    color: var(--text);
    text-align: left;
    margin-bottom: 0;
    margin-top: 10px;
}

.grt-causes-box-items-2 .grt-causes-content.style-2 .theme-btn {
    height: 54px;
    line-height: 54px;
    padding: 0 25px;
    margin-top: 22px;
}

.grt-causes-box-items-2 .grt-causes-content.style-2 .theme-btn i {
    margin-left: 5px;
}

.grt-causes-box-items-2:hover .grt-causes-thumb .tag {
    background-color: var(--theme);
}

.grt-causes-box-items-2:hover .grt-causes-thumb:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.grt-causes-box-items-2:hover .grt-causes-thumb img {
    transform: scale(1.2);
}

.grt-causes-box-items-2.style-2 {
    padding: 30px;
    border-radius: 8px;
    background-color: #ECF1FC;
    border: none;
    transition: all 0.4s ease-in-out;
}

.grt-causes-box-items-2.style-2 .title {
    margin-bottom: 20px;
}

.grt-causes-box-items-2.style-2 .title a:hover {
    color: var(--theme);
}

.grt-causes-box-items-2.style-2 .grt-causes-thumb {
    border-radius: 8px;
}

.grt-causes-box-items-2.style-2 .grt-causes-thumb img {
    border-radius: 8px;
}

.grt-causes-box-items-2.style-2 .grt-causes-content {
    border: none;
    padding: 0;
    margin: 0;
    margin-top: 30px;
}

.grt-causes-box-items-2.style-2 .grt-causes-content p {
    color: var(--header);
    text-align: left;
    margin-bottom: 50px;
}

.grt-causes-box-items-2.style-2:hover {
    background-color: #16333B;
}

.grt-causes-box-items-2.style-2:hover .title a {
    color: var(--white);
}

.grt-causes-box-items-2.style-2:hover p {
    color: var(--white);
}

.grt-causes-box-items-2.style-2:hover .skill-feature .progress {
    background-color: var(--white);
}

.grt-causes-box-items-2.style-2:hover .price-list span {
    color: var(--white) !important;
}

.grt-causes-box-items-2.style-2:hover .theme-btn::before {
    background-color: var(--white);
}

.grt-causes-box-items-2.style-2:hover .theme-btn:hover {
    color: var(--header);
}

.grt-causes-box-items-2.bg-style {
    border: none;
    margin-top: 0;
    background-color: #ECF1FC;
}

.grt-causes-box-items-2.bg-style .grt-causes-content {
    border: none;
}

.grt-causes-box-items-2.bg-style .grt-causes-content .title-2 {
    font-size: 24px;
    font-weight: 700;
}

@media (max-width: 1199px) {
    .grt-causes-box-items-2.bg-style .grt-causes-content .title-2 {
        font-size: 20px;
    }
}

.grt-causes-box-items-3 {
    margin-top: 30px;
}

.grt-causes-box-items-3 .grt-thumb {
    border-radius: 4px;
    position: relative;
    z-index: 9;
    overflow: hidden;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

@media (max-width: 991px) {
    .grt-causes-box-items-3 .grt-thumb {
        height: 380px;
    }
}

.grt-causes-box-items-3 .grt-thumb::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    pointer-events: none;
    border-radius: 8px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.grt-causes-box-items-3 .grt-thumb::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 4px;
    background: rgba(22, 51, 59, 0.3);
    border-radius: 6px 6px 0px 0px;
    z-index: 11;
}

.grt-causes-box-items-3 .grt-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    object-fit: cover;
    transition: all 1s;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.grt-causes-box-items-3 .grt-thumb .grt-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 99;
}

@media (max-width: 991px) {
    .grt-causes-box-items-3 .grt-thumb .grt-content {
        left: 20px;
        bottom: 20px;
        right: 20px;
    }
}

.grt-causes-box-items-3 .grt-thumb .grt-content .post-box {
    display: inline-block;
    background-color: var(--white);
    font-size: 14px;
    font-weight: 600;
    font-family: "Quicksand", sans-serif;
    padding: 15px 10px;
    line-height: 0;
    border-radius: 4px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.grt-causes-box-items-3 .grt-thumb .grt-content .title {
    font-size: 32px;
}

@media (max-width: 1199px) {
    .grt-causes-box-items-3 .grt-thumb .grt-content .title {
        font-size: 25px;
    }
}

@media (max-width: 767px) {
    .grt-causes-box-items-3 .grt-thumb .grt-content .title {
        font-size: 22px;
    }
}

.grt-causes-box-items-3 .grt-thumb .grt-content .title a {
    color: var(--white);
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.grt-causes-box-items-3 .grt-thumb .grt-content .title a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.grt-causes-box-items-3 .skill-feature {
    background-color: var(--theme);
    padding: 25px 30px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

@media (max-width: 991px) {
    .grt-causes-box-items-3 .skill-feature {
        padding: 20px 20px;
    }
}

.grt-causes-box-items-3 .skill-feature .progress-value {
    color: var(--header);
    text-transform: capitalize;
}

.grt-causes-box-items-3 .skill-feature .progress {
    position: relative;
    height: 7px;
    background-color: var(--white);
    border-radius: 3px;
    overflow: visible;
}

.grt-causes-box-items-3 .skill-feature .progress-bar {
    background-color: var(--header);
    height: 7px;
    margin: 0;
    border-radius: 3px;
    overflow: visible;
    position: relative;
    margin-top: 0;
}

.grt-causes-box-items-3 .skill-feature .price-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.grt-causes-box-items-3 .skill-feature .price-list span {
    color: var(--header);
    font-size: 16px;
    font-weight: 400;
}

.grt-causes-box-items-3 .skill-feature .price-list span b {
    font-weight: 600;
}

.grt-causes-box-items-3:hover .grt-thumb:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.grt-causes-box-items-3:hover .grt-thumb img {
    transform: scale(1.2);
}

.grt-causes-box-items-3:hover .grt-thumb .grt-content .post-box {
    background-color: var(--theme);
}

.grt-causes-pocess {
    padding: 1rem 1rem 1rem 1rem;
    background-color: #f6f7f9;
    margin: auto;
    text-align: center;
    --tw-border-opacity: 1;
    min-height: 180px;
    border-radius: .75rem;
    margin-bottom: 30px;
    border: 1px solid #c3cee3
}

.grt-causes-pocess .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 10px;
    background-color: #d9e8fa;
    display: block;
    margin: auto;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50%;
    border: 1px solid #cfcfde;
    margin-bottom: 10px
}

.grt-causes-support-box {
    opacity: 1;
    transform: none;
    animation-duration: .3s;
    transition-duration: .3s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    padding: 1rem 1rem 1rem 1rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255, 255, 255);
    --tw-border-opacity: 1;
    min-height: 235px;
    border-radius: .75rem;
    margin-bottom: 30px;
    border: 1px solid #c3cee3
}

    .welnes .grt-causes-support-box {
  opacity: 1;
  transform: none;
  animation-duration: .3s;
  transition-duration: .3s;
  transition-property: all;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-duration: .15s;
  padding: 0rem 1rem 1rem 1rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255, 255, 255);
  --tw-border-opacity: 1;
  min-height: 140px;
  border-radius: .75rem;
  margin-bottom: 11px;
  border: 1px solid #c3cee3;
}

.grt-causes-boxes {
    opacity: 1;
    transform: none;
    animation-duration: .3s;
    transition-duration: .3s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    padding: 1rem 1rem 1rem 1rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255, 255, 255);
    --tw-border-opacity: 1;
    min-height: 235px;
    border-radius: .75rem;
    margin-bottom: 30px;
    border: 1px solid #c3cee3;
    color: #9fa5b4;
}


.about-wrapper .grt-charity-impact-box-items .content .title {
    color: var(--white);
    font-size: 42px;
    font-weight: 700;
}

.grt-causes-boxes.lft ul li {
    font-size: 18px;
    line-height: 26px;
    color: #6c7283;
    margin-top: 8px;
    text-align: justify;
}

.grt-causes-boxes.lft ul li span {
    color: #17689b
}

.grt-causes-boxes.rgt ul li,
.grt-causes-boxes.lft p {
    font-size: 18px;
    line-height: 26px;
    color: #6c7283;
    margin-top: 8px;
    text-align: justify;
}

.grt-causes-boxes.rgt ul li span {
    color: #159cec
}

.iwsbox .icon {
    background-color: #17689b;
    border: 1px solid #fff;
    color: #17689b;
    border-radius: 10px;
    padding: 8px 5px 5px 5px;
    width: 51px;
    height: 51px;
    text-align: center
}

.swiper-slide .grt-causes-support-box {
    min-height: 170px;
    text-align: center;
}

.grt-causes-support-box2 {
    opacity: 1;
    transform: none;
    animation-duration: .3s;
    transition-duration: .3s;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    padding: 1rem 1rem 1rem 1rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255, 255, 255);
    --tw-border-opacity: 1;
    min-height: 235px;
    margin-bottom: 30px;
    border: 0px solid #c3cee3
}

.grt-causes-support-box .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 10px;
    background-image: var(--gradient-brand);
    color: #fff;
}

.grt-causes-support-box2 .icon {
    background-color: #eef0ff;color: #fff
}

.grt-causes-support-box2 p {
    color: #9fa5b4;
    line-height: 21px;
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
}

.grt-causes-support-box:hover {
    box-shadow: 0 0 20px -12px rgb(13, 63, 133);
}

.grt-causes-support  .corsrvc .grt-causes-support-box{ 
    background-color: rgb(255, 255, 255);
    --tw-border-opacity: 1;
    min-height: 235px;
    border-radius: .75rem;
    margin-bottom: 30px;
    border: 1px solid #c3cee3;
    color: #9fa5b4;
}
.grt-causes-support .corsrvc .grt-causes-support-box .content .iccon svg{ color:#ccc}
.grt-causes-support .corsrvc .grt-causes-support-box:hover .content .iccon svg{ color:var(--gradient-brand);}
.grt-causes-support .corsrvc .grt-causes-support-box .icon{ 
   background-color: #eef0ff;
  color: #3337a0;
  background-image: none;margin-bottom: 20px;
}
.grt-causes-support .corsrvc .grt-causes-support-box:hover .icon{ 
   background-color: #eef0ff;
  color: #fff; 
    background-image: var(--gradient-brand);
}
.grt-causes-support .corsrvc .grt-causes-support-box .content p {
  font-size: 16px;
  line-height: 28px;
  color: #585b73;
}

.grt-causes-support  .sdfe .grt-causes-support-box{ 
    background-color: rgb(255, 255, 255);
    --tw-border-opacity: 1;
    min-height: 235px;
    border-radius: .75rem;
    margin-bottom: 30px;
    border: 1px solid #c3cee3;
    color: #9fa5b4;
}

.grt-causes-support .sdfe .grt-causes-support-box .content .iccon svg{ color:#ccc}
.grt-causes-support .sdfe .grt-causes-support-box:hover .content .iccon svg{ color:var(--gradient-brand);}
.grt-causes-support .sdfe .grt-causes-support-box .icon{ 
   background-color: #eef0ff;
  color: #3337a0;
  background-image: none;margin-bottom: 20px;
}
.grt-causes-support .sdfe .grt-causes-support-box:hover .icon{ 
   background-color: #eef0ff;
  color: #000;  
}
.grt-causes-support .sdfe .grt-causes-support-box .content p {
  font-size: 16px;
  line-height: 28px;
  color: #000;
}

@media (max-width: 1199px) {
    .grt-causes-support-box {
        padding: 25px;
    }
}

.swiper-slide .grt-causes-support-box .content .title {
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
}

.swiper-slide .grt-causes-support-box .icon {
    margin: auto;
}

@media (max-width: 1199px) {
    .grt-causes-support-box .icon {
        width: 70px;
        height: 70px;
        line-height: 70px;
    }

    .grt-causes-support-box .icon img {
        width: 30px;
    }
}

.grt-causes-support-box .content {
    margin-top: 20px;
}

.grt-causes-support-box .content .title {
    font-size: 23px;
    font-weight: 600;
    border-bottom: 0px solid #E0E0E0;
    padding-bottom: 0px;
    margin-bottom: 10px;
}

.grt-causes-support-box .content .title {
    font-size: 20px;
    font-weight: 800;
}



.corsrvc .grt-causes-support-box .content {
    margin-top: 2px;
}

.srvc .grt-causes-support-box .icon {
    text-align: center;
    border-radius: 10px;
    background-color: #fbdfdc;
    float: left;
    margin-right: 10px;
}


.srvc .grt-causes-support-box {
    border-width: 1px;
    border-radius: .75rem;
    margin-bottom: 30px;
}

.srvc .grt-causes-support-box .content .title {
    font-size: 23px;
    font-weight: 600;
    border-bottom: 0px solid #E0E0E0;
    padding-bottom: 0px;
    margin-bottom: -2px;
}



@media (max-width: 991px) {
    .grt-causes-support-box .content .title {
        font-size: 20px;
        padding-bottom: 18px;
        margin-bottom: 18px;
    }
}

.grt-causes-support-box .content p {
    font-size: 16px;
    line-height: 28px;
}

.grt-causes-support-box:hover .icon img {
    animation: wobble 1.5s ease-in-out;
}

.grt-counter-content-4 .grt-counter-wrapper4 {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.grt-counter-content-4 p {
    padding-right: 60px;
}

@media (max-width: 767px) {
    .grt-counter-content-4 .grt-counter-wrapper4 {
        margin-top: 30px;
        flex-wrap: wrap;
    }
}

.grt-counter-content-4 .grt-counter-wrapper4 ul {
    width: 100%;
}

.grt-counter-content-4 .grt-counter-wrapper4 ul li {
    padding: 10px;
    border-radius: 6px;
    background-color: #FFFCF8;
    text-align: center;
}

.grt-counter-content-4 .grt-counter-wrapper4 ul li:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

@media (max-width: 1399px) {
    .grt-counter-content-4 .grt-counter-wrapper4 ul li {
        padding: 22px;
    }
}

.grt-counter-content-4 .grt-counter-wrapper4 ul li:not(:last-child) {
    margin-bottom: 30px;
}

@media (max-width: 1399px) {
    .grt-counter-content-4 .grt-counter-wrapper4 ul li:not(:last-child) {
        margin-bottom: 20px;
    }
}

.grt-counter-content-4 .grt-counter-wrapper4 ul li .icon {
    max-width: 50px;
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme);
}

.grt-counter-content-4 .grt-counter-wrapper4 ul li .content .title {
    font-size: 60px;
    font-weight: 600;
    line-height: 1;
    color: #27684e;
}

@media (max-width: 1399px) {
    .grt-counter-content-4 .grt-counter-wrapper4 ul li .content .title {
        font-size: 45px;
    }
}

.grt-counter-content-4 .grt-counter-wrapper4 ul li .content p {
    text-align: center;
    margin-top: 10px;
}

.grt-counter-content-4 .grt-counter-wrapper4 ul li:hover .icon img {
    animation: wobble 1.5s ease-in-out;
}

@media (max-width: 1199px) {
    .grt-couns-image {
        max-width: 650px;
    }
}

@media (max-width: 1399px) {
    .grt-couns-image img {
        width: 100%;
        height: 100%;
    }
}

.program-card-items {
    display: flex;
    align-items: center;
    background-color: #16333B;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
}

@media (max-width: 1199px) {
    .program-card-items {
        display: block;
    }
}

.program-card-items:hover {
    transform: translateY(-6px);
}

.program-card-items .program-thumb {
    overflow: hidden;
    max-width: 315px;
    width: 100%;
    position: relative;
}

@media (max-width: 1399px) {
    .program-card-items .program-thumb {
        max-width: 300px;
    }
}

@media (max-width: 1199px) {
    .program-card-items .program-thumb {
        max-width: initial;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }

    .program-card-items .program-thumb img {
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }
}

.program-card-items .program-thumb::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    pointer-events: none;
}

.program-card-items .program-thumb img {
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    border-radius: 8px;
    object-fit: cover;
    transition: all 1s;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.program-card-items:hover .program-thumb:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.program-card-items:hover .program-thumb img {
    transform: scale(1.2);
}

.program-card-items .program-content {
    padding: 30px;
}

@media (max-width: 1399px) {
    .program-card-items .program-content {
        padding: 24px;
    }
}

.program-card-items .program-content .program-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 127%;
}

.program-card-items .program-content p {
    font-size: 15px;
    color: var(--white);
    margin-bottom: 25px;
    max-width: 240px;
}

.program-card-items .program-content .theme-btn {
    padding: 0 24px;
    height: 56px;
    line-height: 56px;
}

@media (max-width: 1399px) {
    .program-card-items .program-content .theme-btn {
        height: 48px;
        line-height: 48px;
        font-size: 16px;
    }
}

.program-card-items .program-content .theme-btn::before {
    background-color: var(--white);
}

.program-card-items .program-content .theme-btn:hover {
    color: var(--header);
}

.grt-charity-impact-box-items {
    margin-top: 30px;
    position: relative;
}

.grt-charity-impact-box-items .thumb {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .grt-charity-impact-box-items .thumb {
        height: 480px;
    }
}

.grt-charity-impact-box-items .thumb::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #16333B;
    opacity: 0.4;
    border-radius: 10px;
    z-index: 1;
}

.grt-charity-impact-box-items .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    object-fit: cover;
    transition: all 1s;
}

.grt-charity-impact-box-items .content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 9;
}

.grt-charity-impact-box-items .content .icon {
    margin-bottom: 20px;
}

.grt-charity-impact-box-items .content .title {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
}

.grt-charity-impact-box-items .content .news-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    font-family: "Quicksand", sans-serif;
    color: var(--white);
    overflow: hidden;
    text-transform: capitalize;
    margin-top: 15px;
}

.grt-charity-impact-box-items .content .news-btn .text {
    position: relative;
    display: inline-block;
    height: 22px;
    overflow: hidden;
}

.grt-charity-impact-box-items .content .news-btn .text-default,
.grt-charity-impact-box-items .content .news-btn .text-hover {
    display: block;
    transition: transform 0.4s ease;
}

.grt-charity-impact-box-items .content .news-btn .text-hover {
    position: absolute;
    left: 0;
    top: 100%;
    color: var(--theme);
}

.grt-charity-impact-box-items .content .news-btn:hover .text-default {
    transform: translateY(-100%);
}

.grt-charity-impact-box-items .content .news-btn:hover .text-hover {
    transform: translateY(-100%);
}

.grt-charity-impact-box-items .content .news-btn i {
    transition: transform 0.4s ease;
}

.grt-charity-impact-box-items:hover .thumb img {
    transform: scale(1.2);
}

.grt-causes-details-wrapper .top-content .tag {
    display: inline-block;
    background-color: var(--theme);
    color: var(--header);
    font-size: 14px;
    font-weight: 600;
    font-family: "Quicksand", sans-serif;
    padding: 9px 14px;
    border-radius: 4px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.grt-causes-details-wrapper .right-content .skill-feature p {
    font-size: 16px;
    font-weight: bold;
    font-family: "Quicksand", sans-serif;
    margin-bottom: 10px;
    margin-top: 20px;
}

.grt-causes-details-wrapper .right-content .skill-feature .price-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.grt-causes-details-wrapper .right-content .skill-feature .price-list span {
    color: var(--header);
    font-size: 16px;
    font-weight: 400;
}

.grt-causes-details-wrapper .right-content .skill-feature .progress-value {
    color: var(--header);
    text-transform: capitalize;
}

.grt-causes-details-wrapper .right-content .skill-feature .progress {
    position: relative;
    height: 7px;
    background-color: var(--header);
    border-radius: 3px;
    overflow: visible;
}

.grt-causes-details-wrapper .right-content .skill-feature .progress-bar {
    background-color: var(--theme);
    height: 7px;
    margin: 0;
    border-radius: 3px;
    overflow: visible;
    position: relative;
    margin-top: 0;
}

.grt-causes-details-wrapper .right-content .skill-feature .progress-value {
    position: absolute;
    top: -38px;
    right: -8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--header);
    font-family: "Inter", sans-serif;
    height: 35px;
    line-height: 26px;
    background-color: var(--theme);
    border-radius: 2px;
    padding: 0 6px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
}

.grt-causes-details-wrapper .causes-details-thumb {
    border-radius: 8px;
    overflow: hidden;
    margin-top: 60px;
}

.grt-causes-details-wrapper .causes-details-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.grt-causes-details-wrapper .grt-donation-wrapper {
    max-width: 895px;
    background-color: #ECF1FC;
    margin-top: -75px !important;
    position: relative;
    z-index: 99;
}

.grt-causes-details-wrapper .grt-donation-wrapper .currency {
    background-color: var(--white) !important;
}

.grt-causes-details-wrapper .grt-donation-wrapper .amount-list {
    grid-template-columns: repeat(5, 1fr) !important;
}

@media (max-width: 767px) {
    .grt-causes-details-wrapper .grt-donation-wrapper .amount-list {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media (max-width: 575px) {
    .grt-causes-details-wrapper .grt-donation-wrapper .amount-list {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 470px) {
    .grt-causes-details-wrapper .grt-donation-wrapper .amount-list {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

.grt-causes-details-wrapper .grt-donation-wrapper .amount-list .amount-btn {
    background-color: var(--white) !important;
}

.grt-causes-details-wrapper .grt-donation-wrapper .amount-list .amount-btn.active {
    background-color: var(--theme) !important;
    color: var(--white) !important;
}

.grt-causes-details-wrapper .grt-donation-wrapper .custom-amount {
    background: transparent !important;
}

.grt-causes-details-wrapper .grt-donation-wrapper .secure-text {
    background: transparent !important;
    height: initial !important;
    line-height: initial !important;
    margin-top: 20px !important;
}

.grt-causes-details-wrapper .grt-contents {
    max-width: 895px;
    margin: 60px auto 0;
}

@media (max-width: 991px) {
    .grt-causes-details-wrapper .grt-contents {
        margin-top: 30px;
    }
}

.grt-causes-details-wrapper .grt-contents .title {
    margin-bottom: 20px;
}

.grt-causes-details-wrapper .grt-contents ul {
    margin-top: 15px;
}

.grt-causes-details-wrapper .grt-contents ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    font-family: "Quicksand", sans-serif;
    text-transform: capitalize;
}

@media (max-width: 575px) {
    .grt-causes-details-wrapper .grt-contents ul li {
        font-size: 15px;
    }
}

.grt-causes-details-wrapper .grt-contents ul li:not(:last-child) {
    margin-bottom: 12px;
}

.grt-causes-details-wrapper .thumb-1 {
    border-radius: 8px;
}

.grt-causes-details-wrapper .thumb-1 img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.grt-causes-details-section {
    border-bottom: 1px solid rgba(22, 51, 59, 0.1);
}

.grt-testimonial-wrapper {
    margin: 0 50px;
    margin-top: -160px;
}

@media (max-width: 1399px) {
    .grt-testimonial-wrapper {
        margin: 0 40px;
        margin-top: -160px;
    }
}

@media (max-width: 1199px) {
    .grt-testimonial-wrapper {
        margin: 0 35px;
        margin-top: 100px !important;
    }
}

@media (max-width: 991px) {
    .grt-testimonial-wrapper {
        margin: 0 28px;
        margin-top: 80px !important;
    }
}

@media (max-width: 767px) {
    .grt-testimonial-wrapper {
        margin: 0 22px;
    }
}

@media (max-width: 575px) {
    .grt-testimonial-wrapper {
        margin: 0 18px;
    }
}

.grt-testimonial-wrapper .grt-testimonial-image {
    border-radius: 12px;
}

.grt-testimonial-wrapper .grt-testimonial-image img {
    border-radius: 12px;
    width: 100%;
    height: 100%;
}

.grt-testimonial-wrapper .testimonial-content {
    max-width: 575px;
    margin-top: 100px;
}

@media (max-width: 1399px) {
    .grt-testimonial-wrapper .testimonial-content {
        margin-top: 150px;
    }
}

@media (max-width: 1199px) {
    .grt-testimonial-wrapper .testimonial-content {
        margin-top: 0;
    }
}

.grt-testimonial-wrapper .testimonial-content .star {
    color: #FA7C46;
    margin-bottom: 10px;
}

.grt-testimonial-wrapper .testimonial-content .title {
    font-size: 40px;
    font-weight: 600;
    line-height: 125%;
}

@media (max-width: 1600px) {
    .grt-testimonial-wrapper .testimonial-content .title {
        font-size: 33px;
    }
}

@media (max-width: 1399px) {
    .grt-testimonial-wrapper .testimonial-content .title {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .grt-testimonial-wrapper .testimonial-content .title {
        font-size: 24px;
    }
}

.grt-testimonial-wrapper .testimonial-content .client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.grt-testimonial-wrapper .testimonial-content .client-info .name {
    font-size: 20px;
    font-weight: 700;
}

@media (max-width: 575px) {
    .grt-testimonial-wrapper .testimonial-content .client-info .name {
        font-size: 17px;
    }
}

.grt-testimonial-wrapper .testimonial-content .client-info p {
    font-size: 15px;
}

.grt-testimonial-wrapper .array-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.grt-testimonial-wrapper .array-buttons .array-prev,
.grt-testimonial-wrapper .array-buttons .array-next {
    color: var(--header);
    transition: all 0.4s ease-in-out;
}

.grt-testimonial-wrapper .array-buttons .array-prev:hover,
.grt-testimonial-wrapper .array-buttons .array-next:hover {
    color: var(--theme);
}

.grt-testimonial-section {
    position: relative;
}

.grt-testimonial-section .testimonial-shape {
    position: absolute;
    left: 100px;
    top: -30px;
}

.grt-testimonial-box-items-2 {
    margin-top: 30px;
    padding: 50px 30px;
    background-color: #ECF1FC;
    border-radius: 6px;
    position: relative;
}

.grt-testimonial-box-items-2 .quote-icon {
    position: absolute;
    bottom: 60px;
    right: 40px;
}

@media (max-width: 575px) {
    .grt-testimonial-box-items-2 .quote-icon {
        bottom: 30px;
    }
}

@media (max-width: 575px) {
    .grt-testimonial-box-items-2 {
        padding: 30px 25px;
    }
}

.grt-testimonial-box-items-2 .star {
    color: #FA7C46;
    margin-bottom: 20px;
}

.grt-testimonial-box-items-2 p {
    font-size: 32px;
    font-weight: 600;
    font-family: "Quicksand", sans-serif;
    line-height: 125%;
    letter-spacing: 0.01em;
}

@media (max-width: 1399px) {
    .grt-testimonial-box-items-2 p {
        font-size: 26px;
    }
}

@media (max-width: 1199px) {
    .grt-testimonial-box-items-2 p {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .grt-testimonial-box-items-2 p {
        font-size: 20px;
    }
}

.grt-testimonial-box-items-2 .client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

@media (max-width: 767px) {
    .grt-testimonial-box-items-2 .client-info {
        margin-top: 25px;
    }
}

.grt-testimonial-box-items-2 .client-info .thumb img {
    border-radius: 50%;
}

.grt-testimonial-box-items-2 .client-info .info-content .name {
    font-size: 20px;
    font-weight: 600;
    font-family: "Quicksand", sans-serif;
    display: block;
}

.grt-testimonial-box-items-2 .client-info .info-content .text {
    color: var(--header);
    font-size: 15px;
}

.grt-testimonial-box-items-2.style-5 {
    padding-top: 88px;
    padding-bottom: 88px;
    margin-top: 0;
    height: 100%;
}

@media (max-width: 1199px) {
    .grt-testimonial-box-items-2.style-5 {
        padding-top: 50px;
        padding-bottom: 40px;
    }
}

.grt-testimonial-box-items-2.testimonial-inner-box p {
    font-size: 19px;
    text-align: justify;
    line-height: 20px;
}

.grt-testimonial-box-items-3 {
    margin-top: 15px;
    background-color: var(--white);
    padding: 30px 30px;
    border-radius: 6px;
    text-align: center;
}

.grt-testimonial-box-items-3 p {
    font-size: 17px;
    font-weight: 600;
    font-family: "Quicksand", sans-serif;
    color: #6b6e75;
    letter-spacing: 0.01em;
    line-height: 25px;
    margin-top: 20px;
}

@media (max-width: 1600px) {
    .grt-testimonial-box-items-3 p {}
}

@media (max-width: 1399px) {
    .grt-testimonial-box-items-3 p {}
}

.grt-testimonial-box-items-3 .star {
    color: #2094f3;
    margin-top: 10px;
}

.grt-testimonial-box-items-3 .name {
    font-size: 20px;
    margin-top: 5px;
}

@media (max-width: 1399px) {
    .grt-testimonial-box-items-3 .name {
        font-size: 18px;
    }
}

.grt-testimonial-box-items-3 span {
    color: #16333B;
}

.testimonial-slider-4 {
    margin-left: -2%;
    margin-right: -2%;
}

@media (max-width: 1199px) {
    .testimonial-slider-4 {
        margin: 0;
    }
}

.grt-testimonial-image-5 {
    border-radius: 12px;
    overflow: hidden;
}

.grt-testimonial-image-5 img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.testimonial-right-items-5 {
    position: relative;
}

.testimonial-right-items-5 .array-buttons {
    gap: 20px;
    bottom: 30px;
    right: 30px;
    z-index: 9;
    position: absolute;
}

.testimonial-slider-inner {
    margin-left: -20%;
    margin-right: -20%;
}

@media (max-width: 1199px) {
    .testimonial-slider-inner {
        margin: 0;
    }
}

.pricing-box-items {margin-top: 10px;
  border-radius: 12px;
  background-color: #f6fafe;
  padding: 30px 30px;
  box-shadow: inset 0 0 5px #ECF1FC;
  transition: all 0.4s ease-in-out;
}

.pricing-box-items:hover {
    background-image: radial-gradient(circle at -35% 10%, #7655fd 12%, #0000 60%), radial-gradient(circle at -35% 100%, #7655fd 35%, #0000 60%), radial-gradient(circle at 70% -30%, #23daff 22%, #0000 50%), radial-gradient(circle at 48% 30%, #062ae0 20%, #0000 70%), radial-gradient(circle at 65% 110%, #062ae0 15%, #0000 45%), radial-gradient(circle at 100% 100%, #23daff 40%, #0000 70%);
    color: #fff;
}

@media (max-width: 767px) {
    .pricing-box-items {
        padding: 30px;
    }
}

.pricing-box-items .pricing-header {
    border-bottom: 1px solid rgba(22, 51, 59, 0.1);
  padding-bottom: 6px;
}
 
   .pricing-box-items .pricing-header .pricing-sub {
  font-size: 24px;
  font-weight: 900;
  font-family: "Quicksand", sans-serif;
  margin-bottom: 20px; 
}

.pricing-box-items .pricing-header h2 {
    font-size: 48px;
    font-weight: 600;
}

.pricing-box-items .pricing-header h2 sub {
    font-size: 18px;
    font-weight: 500;
    left: -15px;
    bottom: 0;
}

.pricing-box-items .pricing-header .text {
    margin-top: 15px;
}

.pricing-box-items .pricing-list {
    margin-top: 20px;
    margin-bottom: 10px;
    min-height: 200px;
}

@media (max-width: 767px) {
    .pricing-box-items .pricing-list {
        margin-top: 35px;
        margin-bottom: 30px;
    }
}

.pricing-box-items .pricing-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-box-items .pricing-list li:not(:last-child) {
    margin-bottom: 12px;
}

.pricing-box-items .theme-btn {
    width: 100%;
    text-align: center;
}

.pricing-box-items:hover {
    transform: translateY(-10px);
}

.pricing-box-items.active {
    background-color: #0779c2
}

.pricing-box-items.active .pricing-header {
    border-bottom: 1px solid rgba(255, 252, 248, 0.1);
}

.pricing-box-items.active .pricing-header .pricing-sub {
    color: var(--white);
}

.pricing-box-items.active .pricing-header h2 {
    color: var(--white);
}

.pricing-box-items.active .pricing-header .text {
    margin-top: 10px;
    color: var(--white);
    font-size: 14px;
}

.pricing-box-items.active .pricing-list li {
    color: var(--white);
}

.pricing-box-items.active .pricing-list li img {
    filter: brightness(0) invert(1);
}

.pricing-box-items.active .theme-btn::before {
    background-color: var(--white);
}

.pricing-box-items.active .theme-btn:hover {
    color: var(--header);
}

.team-box-item-3 {
    border-radius: 8px;
    border: 1px solid rgba(22, 51, 59, 0.1);
    padding: 15px;
}

.team-box-item-3 .thumb {
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.team-box-item-3 .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    display: block;
    object-fit: cover;
    transition: all 500ms ease;
}

.team-box-item-3 .thumb img:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    transform: translateX(50%) scaleX(2);
    opacity: 0;
    filter: blur(10px);
}

.team-box-item-3 .thumb .social-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    left: 0;
    right: 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.team-box-item-3 .thumb .social-icon a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    color: var(--white);
    background-color: var(--theme);
    font-size: 14px;
    transition: all 0.3s ease;
}

.team-box-item-3 .thumb .social-icon a:hover {
    background-color: var(--header);
}

.team-box-item-3 .content {
    margin-top: 20px;
    position: relative;
}

.team-box-item-3 .content .icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 32px;
    border-radius: 50%;
    text-align: center;
    background-color: rgba(31, 41, 55, 0.35);
    color: var(--white);
    position: absolute;
    right: 0;
    top: 0;
}

.team-box-item-3 .content .icon:hover {
    background-color: var(--theme);
}

.team-box-item-3 .content .title {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 5px;
}

.team-box-item-3 .content .title a {
    color: var(--header);
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
    transition: all 0.3s ease;
}

.team-box-item-3 .content .title a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.team-box-item-3.style-2 .thumb .social-icon a {
    width: 40px;
    color: var(--header);
    background-color: var(--theme);
}

.team-box-item-3.style-2 .thumb .social-icon a:hover {
    background-color: var(--header);
    color: var(--white);
}

.team-box-item-3.style-2 .content .icon {
    background-color: rgba(31, 41, 55, 0.35);
}

.team-box-item-3.style-2 .content .icon:hover {
    background-color: var(--theme);
}

.team-box-item-3.style-2 .content .title {
    font-weight: 600;
    font-size: 24px;
}

.team-box-item-3.style-2 .content .title a {
    color: var(--header);
}

.team-box-item-3.style-2 .content .title a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.team-box-item-3:hover .thumb img:first-child {
    transform: translateX(0) scaleX(1);
    opacity: 1;
    filter: blur(0);
}

.team-box-item-3:hover .thumb img:nth-child(2) {
    transform: translateX(-50%) scaleX(2);
    opacity: 0;
    filter: blur(10px);
}

.team-box-item-3:hover .thumb .social-icon {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
}

.team-details-wrapper .team-details-image {
    border-radius: 12px;
}

.team-details-wrapper .team-details-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.team-details-wrapper .team-details-content {
    margin-left: 30px;
    background-color: #ECF1FC;
    border-radius: 10px;
    padding: 45px 40px;
}

@media (max-width: 1199px) {
    .team-details-wrapper .team-details-content {
        margin-left: 0;
    }
}

.team-details-wrapper .team-details-content .offer {
    background-color: var(--theme);
    color: var(--header);
    padding: 8px 10px;
    border-radius: 6px;
}

.team-details-wrapper .team-details-content h2 {
    margin-top: 30px;
    font-size: 48px;
}

@media (max-width: 1399px) {
    .team-details-wrapper .team-details-content h2 {
        font-size: 44px;
    }
}

@media (max-width: 1199px) {
    .team-details-wrapper .team-details-content h2 {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .team-details-wrapper .team-details-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .team-details-wrapper .team-details-content h2 {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .team-details-wrapper .team-details-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 470px) {
    .team-details-wrapper .team-details-content h2 {
        font-size: 32px;
    }
}

.team-details-wrapper .team-details-content p {
    color: #16333B;
    opacity: 0.8;
}

.team-details-wrapper .team-details-content .team-infrom {
    margin-top: 30px;
}

.team-details-wrapper .team-details-content .team-infrom li {
    display: flex;
    gap: 100px;
    align-items: center;
    color: var(--header);
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 1199px) {
    .team-details-wrapper .team-details-content .team-infrom li {
        display: grid;
        gap: 20px;
    }
}

.team-details-wrapper .team-details-content .team-infrom li span {
    color: var(--header);
    font-size: 16px;
    font-weight: 500;
    flex-basis: 28%;
}

.team-details-wrapper .team-details-content .team-infrom li:not(:last-child) {
    margin-bottom: 12px;
}

.team-details-wrapper .team-details-content .follow {
    font-size: 16px;
    font-weight: 700;
    margin-top: 60px;
    text-transform: capitalize;
}

.team-details-wrapper .team-details-content .social-icon {
    display: flex;
    margin-top: 30px;
    gap: 20px;
}

.team-details-wrapper .team-details-content .social-icon a {
    color: var(--header);
    display: inline-block;
    text-align: center;
    font-size: 20px;
}

.team-details-wrapper .team-details-content .social-icon a:hover {
    color: var(--theme);
}

.team-details-wrapper .team-middle-items h2 {
    font-size: 48px;
}

@media (max-width: 1399px) {
    .team-details-wrapper .team-middle-items h2 {
        font-size: 44px;
    }
}

@media (max-width: 1199px) {
    .team-details-wrapper .team-middle-items h2 {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .team-details-wrapper .team-middle-items h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .team-details-wrapper .team-middle-items h2 {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .team-details-wrapper .team-middle-items h2 {
        font-size: 36px;
    }
}

@media (max-width: 470px) {
    .team-details-wrapper .team-middle-items h2 {
        font-size: 32px;
    }
}

.team-details-wrapper .team-middle-items .team-skill-area {
    margin-top: 60px;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content {
    margin-right: 60px;
}

@media (max-width: 1199px) {
    .team-details-wrapper .team-middle-items .team-skill-area .skill-content {
        margin-right: 0;
    }
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items {
    width: 100%;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items:not(:last-child) {
    margin-bottom: 30px;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .pro-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .pro-head .title {
    color: var(--header);
    font-size: 18px;
    font-weight: 600;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .pro-head .point {
    font-size: 18px;
    font-weight: 600;
    color: var(--header);
    font-family: var(--header);
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .progress {
    background: #16333B;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    display: flex;
    height: 6px;
    width: 100%;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .progress-value {
    animation: load 3s normal forwards;
    border-radius: 0;
    background: var(--theme);
    height: 6px;
    width: 0;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .style-two {
    animation: load2 3s normal forwards;
}

.team-details-wrapper .team-middle-items .team-skill-area .skill-content .progress-wrap .pro-items .style-three {
    animation: load3 3s normal forwards;
}

@keyframes load {
    0% {
        width: 0;
    }

    100% {
        width: 69%;
    }
}

@keyframes load2 {
    0% {
        width: 0;
    }

    100% {
        width: 80%;
    }
}

@keyframes load3 {
    0% {
        width: 0;
    }

    100% {
        width: 98%;
    }
}

.team-details-wrapper .team-middle-items .team-skill-area .career-content .career {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.team-details-wrapper .team-middle-items .team-skill-area .career-content ul li {
    display: flex;
    gap: 20px;
}

.team-details-wrapper .team-middle-items .team-skill-area .career-content ul li:not(:last-child) {
    margin-bottom: 20px;
}

.team-details-wrapper .team-middle-items .team-skill-area .career-content ul li .year {
    color: var(--header);
    font-size: 24px;
    font-weight: 600;
}

.team-details-wrapper .team-bottom-items {
    margin-top: 120px;
    border-radius: 10px;
    background: #ECF1FC;
    padding: 80px 60px;
}

@media (max-width: 1199px) {
    .team-details-wrapper .team-bottom-items {
        margin-top: 100px;
        padding: 50px;
    }
}

@media (max-width: 991px) {
    .team-details-wrapper .team-bottom-items {
        margin-top: 80px;
    }
}

@media (max-width: 767px) {
    .team-details-wrapper .team-bottom-items {
        padding: 40px 30px;
    }
}

@media (max-width: 575px) {
    .team-details-wrapper .team-bottom-items {
        padding: 30px;
    }
}

.team-details-wrapper .team-bottom-items h2 {
    font-size: 48px;
}

@media (max-width: 1399px) {
    .team-details-wrapper .team-bottom-items h2 {
        font-size: 44px;
    }
}

@media (max-width: 1199px) {
    .team-details-wrapper .team-bottom-items h2 {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .team-details-wrapper .team-bottom-items h2 {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .team-details-wrapper .team-bottom-items h2 {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .team-details-wrapper .team-bottom-items h2 {
        font-size: 36px;
    }
}

@media (max-width: 470px) {
    .team-details-wrapper .team-bottom-items h2 {
        font-size: 32px;
    }
}

.team-details-wrapper .team-bottom-items .team-left-items p {
    margin-top: 20px;
}

.team-details-wrapper .team-bottom-items .team-left-items .phone-icon {
    margin-top: 30px;
}

.team-details-wrapper .team-bottom-items .team-left-items .phone-icon .theme-btn {
    padding: 0 25px;
}

.team-details-wrapper .team-bottom-items .team-left-items .phone-icon .theme-btn i {
    margin-left: 0;
    margin-right: 8px;
}

.team-details-wrapper .team-bottom-items .team-left-items .phone-icon .icon {
    color: var(--header);
}

.team-details-wrapper .team-bottom-items .team-right-items {
    margin-left: 80px;
}

@media (max-width: 1199px) {
    .team-details-wrapper .team-bottom-items .team-right-items {
        margin-left: 0;
    }
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box {
    margin-top: 30px;
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt input,
.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt textarea {
    outline: none;
    width: 100%;
    color: var(--header);
    border: none;
    background: #FFFCF8;
    border: 1px solid rgba(22, 51, 59, 0.1);
    border-radius: 8px;
    text-transform: capitalize;
    padding: 18px 20px;
    line-height: 1;
    font-size: 14px;
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt input::placeholder,
.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt textarea::placeholder {
    color: var(--header);
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt textarea {
    padding-bottom: 120px;
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt .form .single-select {
    border: none;
    background: #FFFCF8;
    border: 1px solid rgba(22, 51, 59, 0.1);
    border-radius: 8px;
    width: 100%;
    height: initial;
    line-height: initial;
    text-transform: capitalize;
    color: var(--header);
    border: 1px solid rgba(22, 51, 59, 0.1);
    border-radius: 8px;
    text-transform: capitalize;
    padding: 18px 20px;
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt .form .single-select .current {
    color: var(--header);
    font-size: 14px;
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt .form .single-select::after {
    border-bottom: 2px solid var(--header);
    border-right: 2px solid var(--header);
    width: 8px;
    height: 8px;
    right: 12px;
}

.team-details-wrapper .team-bottom-items .team-right-items .contact-form-box .form-clt .form .single-select .list {
    width: 100%;
}

.volunteer-left-items .text {
    margin-top: 20px;
}

.volunteer-left-items .theme-btn {
    font-size: 16px;
    font-weight: 600;
    padding: 0 25px;
    height: 54px;
    line-height: 54px;
    margin-top: 30px;
}

.volunteer-left-items .theme-btn i {
    margin-left: 0;
    margin-right: 8px;
}

.volunteer-left-items .volunter-image {
    border-radius: 10px;
    max-width: 533px;
    margin-top: 50px;
}

.volunteer-left-items .volunter-image img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
}

.volunteer-form-items {
    background-color: #ECF1FC;
    border-radius: 10px;
    padding: 40px 36px;
}

@media (max-width: 767px) {
    .volunteer-form-items {
        padding: 35px 25px;
    }
}

.volunteer-form-items .title {
    font-size: 40px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 25px;
}

@media (max-width: 991px) {
    .volunteer-form-items .title {
        font-size: 36px;
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    .volunteer-form-items .title {
        font-size: 34px;
        margin-bottom: 15px;
    }
}

@media (max-width: 1199px) {
    .volunteer-form-items .title br {
        display: none;
    }
}

.volunteer-form-items p {
    opacity: 0.8;
    margin-bottom: 30px;
}

.volunteer-form-items .form-clt input {
    display: inline-block;
    border: 1px solid rgba(22, 51, 59, 0.1);
    width: 100%;
    padding: 18px 22px;
    line-height: 1;
    border-radius: 8px;
    color: var(--text);
}

.volunteer-form-items .form-clt textarea,
.volunteer-form-items .form-clt select {
    display: inline-block;
    border: 1px solid rgba(22, 51, 59, 0.1);
    background-color: #fff;
    width: 100%;
    padding: 18px 22px;
    line-height: 1;
    border-radius: 8px;
    color: var(--text);
}

.grt-news-box-items {
    margin-top: 30px;
    background-color: var(--white);
    border-radius: 8px;
    padding: 8px;
}

.grt-news-box-items .grt-thumb {
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.grt-news-box-items .grt-thumb::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    pointer-events: none;
}

.grt-news-box-items .grt-thumb img {
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    object-fit: cover;
    transition: all 1s;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.grt-news-box-items .grt-content {
    padding: 25px 22px 18px;
}

.grt-news-box-items .grt-content .tag-items {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 15px;
}

@media (max-width: 1199px) {
    .grt-news-box-items .grt-content .tag-items {
        flex-wrap: wrap;
    }
}

.grt-news-box-items .grt-content .tag-items a {
    background: rgba(22, 51, 59, 0.15);
    display: inline-block;
    font-size: 14px;
    font-family: "Quicksand", sans-serif;
    border-radius: 2px;
    height: 30px;
    line-height: 30px;
    color: var(--header);
    font-weight: 500;
    padding: 0 12px;
}

.grt-news-box-items .grt-content .tag-items .dotss {
    width: 3px;
    height: 3px;
    border-radius: 3px;
    background-color: var(--header);
    display: inline-block;
}

.grt-news-box-items .grt-content .tag-items .date {
    display: inline-block;
    color: var(--header);
    font-weight: 500;
    font-size: 14px;
    font-family: "Quicksand", sans-serif;
}

.grt-news-box-items .grt-content .title {
    font-size: 24px;
    font-weight: 700;
}

@media (max-width: 1199px) {
    .grt-news-box-items .grt-content .title {
        font-size: 20px;
    }
}

.grt-news-box-items .grt-content .title a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.grt-news-box-items .grt-content .title a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.grt-news-box-items .grt-content .news-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    font-family: "Quicksand", sans-serif;
    color: var(--header);
    overflow: hidden;
    text-transform: capitalize;
    margin-top: 15px;
}

.grt-news-box-items .grt-content .news-btn .text {
    position: relative;
    display: inline-block;
    height: 22px;
    overflow: hidden;
}

.grt-news-box-items .grt-content .news-btn .text-default,
.grt-news-box-items .grt-content .news-btn .text-hover {
    display: block;
    transition: transform 0.4s ease;
}

.grt-news-box-items .grt-content .news-btn .text-hover {
    position: absolute;
    left: 0;
    top: 100%;
    color: var(--theme);
}

.grt-news-box-items .grt-content .news-btn:hover .text-default {
    transform: translateY(-100%);
}

.grt-news-box-items .grt-content .news-btn:hover .text-hover {
    transform: translateY(-100%);
}

.grt-news-box-items .grt-content .news-btn i {
    transition: transform 0.4s ease;
}

.grt-news-box-items:hover .grt-thumb:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.grt-news-box-items:hover .grt-thumb img {
    transform: scale(1.2);
}

.grt-news-box-items:hover .grt-content .tag-items a {
    background-color: var(--theme);
}

.grt-news-box-items-2 {
    margin-top: 30px;
    background-color: #ECF1FC;
    display: flex;
    align-items: center;
    gap: 30px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

@media (max-width: 991px) {
    .grt-news-box-items-2 {
        display: block;
    }
}

.grt-news-box-items-2 .grt-thumb {
    max-width: 272px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 314px;
}

@media (max-width: 991px) {
    .grt-news-box-items-2 .grt-thumb {
        max-width: initial;
    }
}

.grt-news-box-items-2 .grt-thumb::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    pointer-events: none;
}

.grt-news-box-items-2 .grt-thumb img {
    width: 100%;
    height: 100%;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    object-fit: cover;
    transition: all 1s;
}

.grt-news-box-items-2 .grt-content {
    max-width: 240px;
}

@media (max-width: 991px) {
    .grt-news-box-items-2 .grt-content {
        padding: 28px;
        max-width: initial;
    }
}

.grt-news-box-items-2 .grt-content .title {
    font-size: 22px;
    margin-bottom: 10px;
}

@media (max-width: 1600px) {
    .grt-news-box-items-2 .grt-content .title {
        font-size: 20px;
    }
}

.grt-news-box-items-2 .grt-content .title a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.grt-news-box-items-2 .grt-content .title a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.grt-news-box-items-2 .grt-content .theme-btn {
    margin-top: 22px;
    padding: 0px 22px;
    height: 52px;
    line-height: 52px;
}

.grt-news-box-items-2:hover .grt-thumb:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.grt-news-box-items-2:hover .grt-thumb img {
    transform: scale(1.2);
}

.grt-news-section-2 {
    margin: 0 32px;
}

@media (max-width: 991px) {
    .grt-news-section-2 {
        margin: 0 20px;
    }
}

.grt-news-box-items-3 {
    margin-top: 30px;
}

.grt-news-box-items-3 .grt-thumb {
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.grt-news-box-items-3 .grt-thumb::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    pointer-events: none;
}

.grt-news-box-items-3 .grt-thumb img {
    width: 100%;
    height: 285px;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    object-fit: cover;
    transition: all 1s;
    border-radius: 8px;
}

.grt-news-box-items-3 .grt-content {
    padding: 15px 16px 8px 16px;
    background-color: var(--white);
    margin: 0 0px;
    margin-top: -5px;
    position: relative;
    z-index: 9;
    border-radius: 8px;
}

.grt-news-box-items-3 .grt-content .tag-items {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 15px;
}

.grt-news-box-items-3 .grt-content .tag-items .date .fa {
    color: #17689b;
}

@media (max-width: 1199px) {
    .grt-news-box-items-3 .grt-content .tag-items {
        flex-wrap: wrap;
    }
}

.grt-news-box-items-3 .grt-content .tag-items a {
    background: rgba(22, 51, 59, 0.15);
    display: inline-block;
    font-size: 14px;
    font-family: "Quicksand", sans-serif;
    border-radius: 2px;
    height: 30px;
    line-height: 30px;
    color: var(--header);
    font-weight: 500;
    padding: 0 12px;
}

.grt-news-box-items-3 .grt-content .tag-items .dotss {
    width: 3px;
    height: 3px;
    border-radius: 3px;
    background-color: var(--header);
    display: inline-block;
}

.grt-news-box-items-3 .grt-content .tag-items .date {
    display: inline-block;
    color: var(--header);
    font-weight: 500;
    font-size: 14px;
    font-family: "Quicksand", sans-serif;
}

@media (max-width: 1199px) {
    .grt-news-box-items-3 .grt-content .title {
        font-size: 20px;
    }
}

.grt-news-box-items-3 .grt-content .title a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
    font-size: 23px;
    text-align: justify;
}

.grt-news-box-items-3 .grt-content .title a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.grt-news-box-items-3 .grt-content .news-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    font-family: "Quicksand", sans-serif;
    color: var(--header);
    overflow: hidden;
    text-transform: capitalize;
    margin-top: 15px;
}

.grt-news-box-items-3 .grt-content .news-btn .text {
    position: relative;
    display: inline-block;
    height: 22px;
    overflow: hidden;
}

.grt-news-box-items-3 .grt-content .news-btn .text-default,
.grt-news-box-items-3 .grt-content .news-btn .text-hover {
    display: block;
    transition: transform 0.4s ease;
}

.grt-news-box-items-3 .grt-content .news-btn .text-hover {
    position: absolute;
    left: 0;
    top: 100%;
    color: var(--theme);
}

.grt-news-box-items-3 .grt-content .news-btn:hover .text-default {
    transform: translateY(-100%);
}

.grt-news-box-items-3 .grt-content .news-btn:hover .text-hover {
    transform: translateY(-100%);
}

.grt-news-box-items-3 .grt-content .news-btn i {
    transition: transform 0.4s ease;
}

.grt-news-box-items-3:hover .grt-thumb:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.grt-news-box-items-3:hover .grt-thumb img {
    transform: scale(1.2);
}

.grt-news-box-items-3:hover .grt-content .tag-items a {
    background-color: var(--theme);
}

.grt-news-box-items-4 {
    margin-top: 30px;
    border: 1px solid rgba(22, 51, 59, 0.1);
    border-radius: 8px;
}

.grt-news-box-items-4 .grt-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.grt-news-box-items-4 .grt-thumb::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    pointer-events: none;
}

.grt-news-box-items-4 .grt-thumb img {
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    object-fit: cover;
    transition: all 1s;
    border-radius: 8px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.grt-news-box-items-4 .grt-content {
    padding: 30px 28px;
    padding-top: 22px;
    padding-bottom: 25px;
}

@media (max-width: 575px) {
    .grt-news-box-items-4 .grt-content {
        padding: 28px 20px;
    }
}

.grt-news-box-items-4 .grt-content .title {
    font-size: 28px;
    margin-bottom: 10px;
}

@media (max-width: 1399px) {
    .grt-news-box-items-4 .grt-content .title {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .grt-news-box-items-4 .grt-content .title {
        font-size: 23px;
    }
}

@media (max-width: 575px) {
    .grt-news-box-items-4 .grt-content .title {
        font-size: 22px;
    }
}

@media (max-width: 470px) {
    .grt-news-box-items-4 .grt-content .title {
        font-size: 20px;
    }
}

.grt-news-box-items-4 .grt-content .title a:hover {
    color: var(--theme);
}

.grt-news-box-items-4 .tag-items {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(22, 51, 59, 0.1);
    padding: 20px 28px;
}

.grt-news-box-items-4 .tag-items .dotss {
    width: 3px;
    height: 3px;
    border-radius: 3px;
    background-color: var(--header);
    display: inline-block;
}

.grt-news-box-items-4 .tag-items .date {
    display: inline-block;
    color: var(--header);
    font-weight: 500;
    font-size: 14px;
    font-family: "Quicksand", sans-serif;
}

.grt-news-box-items-4:hover .grt-thumb:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.grt-news-box-items-4:hover .grt-thumb img {
    transform: scale(1.2);
}

.grt-news-wrap-5 .grt-news-left-items {
    background-color: #ECF1FC;
    border-radius: 0px 0px 4px 4px;
    margin-top: 30px;
}

.grt-news-wrap-5 .grt-news-left-items .thumb {
    overflow: hidden;
    position: relative;
    border-radius: 4px 4px 0px 0px;
}

.grt-news-wrap-5 .grt-news-left-items .thumb::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    pointer-events: none;
}

.grt-news-wrap-5 .grt-news-left-items .thumb img {
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    object-fit: cover;
    transition: all 1s;
    border-radius: 4px 4px 0px 0px;
}

.grt-news-wrap-5 .grt-news-left-items .content {
    padding: 30px;
    padding-top: 22px;
}

@media (max-width: 767px) {
    .grt-news-wrap-5 .grt-news-left-items .content {
        padding: 25px;
    }
}

.grt-news-wrap-5 .grt-news-left-items .content .title {
    font-size: 24px;
    font-weight: 600;
    margin-top: 5px;
    text-transform: capitalize;
}

@media (max-width: 991px) {
    .grt-news-wrap-5 .grt-news-left-items .content .title {
        font-size: 20px;
    }
}

.grt-news-wrap-5 .grt-news-left-items .content .title a:hover {
    color: var(--theme);
}

.grt-news-wrap-5 .grt-news-left-items:hover .thumb:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.grt-news-wrap-5 .grt-news-left-items:hover .thumb img {
    transform: scale(1.2);
}

.grt-news-wrap-5 .news-box-items-5 {
    background-color: #ECF1FC;
    margin-top: 30px;
}

.grt-news-wrap-5 .news-box-items-5 .thumb {
    overflow: hidden;
    position: relative;
    border-radius: 4px 4px 0px 0px;
}

.grt-news-wrap-5 .news-box-items-5 .thumb::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    pointer-events: none;
}

.grt-news-wrap-5 .news-box-items-5 .thumb img {
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    object-fit: cover;
    transition: all 1s;
    border-radius: 4px 4px 0px 0px;
}

.grt-news-wrap-5 .news-box-items-5 .content {
    padding: 28px 30px;
    padding-top: 22px;
}

.grt-news-wrap-5 .news-box-items-5 .content .title {
    font-size: 30px;
    font-weight: 600;
    margin-top: 8px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .grt-news-wrap-5 .news-box-items-5 .content .title {
        font-size: 20px;
    }
}

.grt-news-wrap-5 .news-box-items-5 .content .title a:hover {
    color: var(--theme);
}

.grt-news-wrap-5 .news-box-items-5 .content .news-bottom {
    margin-top: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .grt-news-wrap-5 .news-box-items-5 .content .news-bottom {
        margin-top: 30px;
    }
}

.grt-news-wrap-5 .news-box-items-5 .content .news-bottom li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.grt-news-wrap-5 .news-box-items-5:hover .thumb:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.grt-news-wrap-5 .news-box-items-5:hover .thumb img {
    transform: scale(1.2);
}

.grt-news-wrap-5 .grt-news-right-list {
    margin-top: 30px;
    background-color: #ECF1FC;
    border-radius: 4px;
    padding-top: 30px;
    padding-bottom: 15px;
}

@media (max-width: 1399px) {
    .grt-news-wrap-5 .grt-news-right-list {
        padding-top: 0;
        padding-bottom: 0;
    }
}

.grt-news-wrap-5 .grt-news-right-list li {
    padding: 30px 45px;
}

@media (max-width: 767px) {
    .grt-news-wrap-5 .grt-news-right-list li {
        padding: 30px;
    }
}

.grt-news-wrap-5 .grt-news-right-list li .content .news-title {
    font-size: 24px;
    font-weight: 600;
    margin-top: 10px;
}

@media (max-width: 767px) {
    .grt-news-wrap-5 .grt-news-right-list li .content .news-title {
        font-size: 20px;
    }
}

.grt-news-wrap-5 .grt-news-right-list li .content .news-title a:hover {
    color: var(--theme);
}

.grt-news-wrap-5 .grt-news-right-list li:not(:last-child) {
    border-bottom: 1px solid rgba(22, 51, 59, 0.1);
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 {
    margin-bottom: 30px;
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-image {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-image::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    pointer-events: none;
    border-radius: 12px;
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-image img {
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    object-fit: cover;
    transition: all 1s;
    border-radius: 12px;
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .gt-date-list {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
    margin-bottom: 15px;
}

@media (max-width: 1199px) {
    .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .gt-date-list {
        flex-wrap: wrap;
        gap: 10px;
    }
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .gt-date-list li i {
    margin-right: 10px;
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .news-title {
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 138%;
}

@media (max-width: 1199px) {
    .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .news-title {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .news-title {
        font-size: 25px;
    }
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .news-title a {
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline;
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .news-title a:hover {
    color: var(--theme);
    background-size: 100% 2px;
    background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .theme-btn {
    margin-top: 24px;
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4:hover .gt-news-image:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4:hover .gt-news-image img {
    transform: scale(1.2);
}

.news-details-area .blog-post-details .single-blog-post .post-featured-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.news-details-area .blog-post-details .single-blog-post .post-content {
    margin-top: 30px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .post-list {
    gap: 30px;
    margin-bottom: 10px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .post-list li {
    font-size: 14px;
    font-weight: 500;
}

.news-details-area .blog-post-details .single-blog-post .post-content .post-list li i {
    color: var(--theme);
    margin-right: 5px;
}

@media (max-width: 767px) {
    .news-details-area .blog-post-details .single-blog-post .post-content p {
        font-size: 14px;
    }
}

.news-details-area .blog-post-details .single-blog-post .post-content h2 {
    margin-bottom: 20px;
    font-size: 42px;
}

@media (max-width: 575px) {
    .news-details-area .blog-post-details .single-blog-post .post-content h2 {
        font-size: 25px;
    }
}

.news-details-area .blog-post-details .single-blog-post .post-content h2 a:hover {
    color: var(--theme);
}

.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text {
    border-left: 4px solid var(--theme);
    padding: 40px;
    background-color: var(--theme);
    border-radius: 8px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text p {
    max-width: 650px;
    font-weight: 500;
    text-transform: capitalize;
    font-style: italic;
    line-height: 26px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text svg {
    float: right;
    margin-top: -30px;
}

.news-details-area .blog-post-details .single-blog-post .post-content .details-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.news-details-area .blog-post-details .tag-share-wrap {
    border-top: 1px solid rgba(22, 51, 59, 0.1);
    border-bottom: 1px solid rgba(22, 51, 59, 0.1);
    padding: 30px 0;
}

.news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
    display: inline-block;
    padding: 12px 26px;
    line-height: 1;
    background: #ECF1FC;
    margin-right: 8px;
    text-transform: capitalize;
    font-weight: 500;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    border-radius: 4px;
}

@media (max-width: 575px) {
    .news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
        margin-bottom: 5px;
    }
}

.news-details-area .blog-post-details .tag-share-wrap .tagcloud a:hover {
    background-color: var(--theme);
    color: var(--header);
}

.news-details-area .blog-post-details .tag-share-wrap .social-share span {
    font-size: 18px;
    color: var(--header);
    font-weight: 600;
}

.news-details-area .blog-post-details .tag-share-wrap .social-share a {
    font-size: 18px;
    color: var(--header);
}

.news-details-area .blog-post-details .tag-share-wrap .social-share a:not(:last-child) {
    margin-right: 10px;
}

.news-details-area .blog-post-details .tag-share-wrap .social-share a:hover {
    color: var(--theme);
}

.news-details-area .blog-post-details .comments-area {
    margin-top: 40px;
    padding: 50px 40px;
    background: #ECF1FC;
    border-radius: 8px;
}

@media (min-width: 1200px) {
    .news-details-area .blog-post-details .comments-area {
        padding: 35px;
    }
}

@media (max-width: 767px) {
    .news-details-area .blog-post-details .comments-area {
        padding: 32px;
    }
}

@media (max-width: 575px) {
    .news-details-area .blog-post-details .comments-area {
        padding: 28px;
    }
}

.news-details-area .blog-post-details .comments-area .comments-heading {
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .news-details-area .blog-post-details .comments-area .comments-heading {
        margin-bottom: 20px;
    }
}

.news-details-area .blog-post-details .comments-area .comments-heading h3 {
    font-size: 32px;
    font-weight: 700;
}

@media (max-width: 575px) {
    .news-details-area .blog-post-details .comments-area .comments-heading h3 {
        font-size: 28px;
    }
}

.news-details-area .blog-post-details .comments-area .blog-single-comment {
    border-bottom: 1px solid rgba(22, 51, 59, 0.1);
}

.news-details-area .blog-post-details .comments-area .blog-single-comment.bb-none {
    border: none;
}

@media (max-width: 575px) {
    .news-details-area .blog-post-details .comments-area .blog-single-comment {
        flex-wrap: wrap;
        gap: 20px;
    }
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .con h4 {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 20px;
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .star i {
    color: var(--header);
    font-size: 14px;
}

.news-details-area .blog-post-details .comments-area .blog-single-comment .content .reply {
    border-radius: 30px;
    padding: 5px 15px;
    font-weight: 400;
    background-color: var(--white);
    color: var(--header);
}

.news-details-area .blog-post-details .comment-form-wrap {
    background-color: #ECF1FC;
    border-radius: 8px;
    padding: 50px 40px;
    margin-top: 40px;
}

@media (min-width: 1200px) {
    .news-details-area .blog-post-details .comment-form-wrap {
        padding: 35px;
    }
}

@media (max-width: 767px) {
    .news-details-area .blog-post-details .comment-form-wrap {
        padding: 32px;
    }
}

@media (max-width: 575px) {
    .news-details-area .blog-post-details .comment-form-wrap {
        padding: 28px;
    }
}

.news-details-area .blog-post-details .comment-form-wrap h3 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
}

@media (max-width: 575px) {
    .news-details-area .blog-post-details .comment-form-wrap h3 {
        font-size: 28px;
        margin-bottom: 20px;
    }
}

.news-details-area .blog-post-details .comment-form-wrap .form-clt input,
.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
    width: 100%;
    outline: none;
    border: none;
    background-color: var(--white);
    border: none;
    padding: 16px 20px;
    font-weight: 400;
    border-radius: 5px;
}

.news-details-area .blog-post-details .comment-form-wrap .form-clt input::placeholder,
.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea::placeholder {
    color: var(--text);
}

.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
    padding-bottom: 100px;
}

.gt-main-sideber .gt-single-sideber-widget {
    margin-bottom: 30px;
    background-color: #ECF1FC;
    padding: 30px;
    border-radius: 14px;
}

.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form {
    width: 100%;
    position: relative;
}

.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form input {
    background-color: var(--white);
    font-size: 18px;
    font-weight: 400;
    padding: 16px 20px;
    width: 100%;
    border: none;
    color: var(--text);
    border-radius: 6px;
}

.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form button {
    position: absolute;
    right: -2px;
    top: 0;
    width: 58px;
    border-radius: 6px;
    font-size: 18px;
    height: 100%;
    background-color: var(--theme);
    color: var(--header);
    text-align: center;
    transition: all 0.3s ease-in-out;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form button:hover {
    background-color: var(--header);
    color: var(--white);
}

.gt-main-sideber .gt-single-sideber-widget .gt-widget-title {
    margin-bottom: 20px;
}

.gt-main-sideber .gt-single-sideber-widget .gt-widget-title h3 {
    font-weight: 600;
    font-size: 22px;
}

.gt-main-sideber .gt-single-sideber-widget .gt-widget-title span {
    font-weight: 600;
    font-size: 22px;
    font-family: "Quicksand", sans-serif;
}

.gt-main-sideber .gt-single-sideber-widget .amenities-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}

.gt-main-sideber .gt-single-sideber-widget .amenities-list li:not(:last-child) {
    margin-bottom: 20px;
}

.gt-main-sideber .gt-single-sideber-widget .gt-category-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    color: var(--header);
    transition: all 0.4s ease-in-out;
    background-color: var(--white);
    padding: 22px 25px;
    font-family: "Quicksand", sans-serif;
    line-height: 1;
    text-transform: capitalize;
    border-radius: 8px;
}

.gt-main-sideber .gt-single-sideber-widget .gt-category-list li a {
    color: var(--header);
}

.gt-main-sideber .gt-single-sideber-widget .gt-category-list li i {
    transition: all 0.4s ease-in-out;
    color: var(--header);
}

.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:not(:last-child) {
    margin-bottom: 20px;
}

.gt-main-sideber .gt-single-sideber-widget .gt-category-list li span b {
    font-weight: 400;
    color: var(--theme);
}

.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover {
    background-color: var(--theme);
}

.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover a {
    color: var(--header);
}

.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover i,
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover span {
    color: var(--header);
}

.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-thumb {
    position: relative;
    overflow: hidden;
    max-width: 110px;
    width: 100%;
    border-radius: 8px;
}

.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-thumb::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    pointer-events: none;
    border-radius: 8px;
}

.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-thumb img {
    border-radius: 8px;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    object-fit: cover;
    transition: all 1s;
    width: 100%;
    height: 100%;
}

.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items:not(:last-child) {
    margin-bottom: 20px;
}

.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content .title {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    font-family: "Quicksand", sans-serif;
    display: inline-block;
}

.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content .title a:hover {
    color: var(--theme);
}

.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content ul li {
    color: var(--text);
    font-size: 14px;
}

.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items:hover .gt-recent-thumb:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items:hover .gt-recent-thumb img {
    transform: scale(1.2);
}

.gt-main-sideber .gt-single-sideber-widget .tagcloud a {
    display: inline-block;
    padding: 12px 18px;
    line-height: 1;
    font-weight: 600;
    background: var(--white);
    font-family: "Quicksand", sans-serif;
    margin-right: 10px;
    margin-bottom: 10px;
    text-transform: capitalize;
    border-radius: 4px;
}

.gt-main-sideber .gt-single-sideber-widget .tagcloud a:last-child {
    margin-right: 0;
}

.gt-main-sideber .gt-single-sideber-widget .tagcloud a:hover {
    background-color: var(--theme);
    color: var(--header);
}

.grt-brand-section {
    margin: 0 100px;
}

@media (max-width: 1600px) {
    .grt-brand-section {
        margin: 0 50px;
    }
}

@media (max-width: 1399px) {
    .grt-brand-section {
        margin: 0 40px;
    }
}

@media (max-width: 1199px) {
    .grt-brand-section {
        margin: 0 35px;
    }
}

@media (max-width: 991px) {
    .grt-brand-section {
        margin: 0 28px;
    }
}

@media (max-width: 767px) {
    .grt-brand-section {
        margin: 0 22px;
    }
}

@media (max-width: 575px) {
    .grt-brand-section {
        margin: 0 18px;
    }
}

.grt-brand-section .grt-brand-text {
    text-align: center;
    font-size: 19px;
    font-weight: bold;
    font-family: "Quicksand", sans-serif;
    margin-bottom: 65px;
}

.grt-brand-box-1 {
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.grt-brand-box-1 .grt-brand-img-1 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grt-brand-box-1 .grt-brand-img-1 img {
    opacity: 0.4;
    transition: all 0.6s ease;
    transform: translateY(0);
}

.grt-brand-box-1 .grt-brand-img-1:last-child img {
    transform: translateY(-350%);
    opacity: 0;
}

.grt-brand-box-1:hover .grt-brand-img-1:first-child img {
    transform: translateY(100%);
    opacity: 0;
}

.grt-brand-box-1:hover .grt-brand-img-1:last-child img {
    transform: translateY(0);
    opacity: 1;
}

.grt-brand-box-2 {
    height: 123px;
    line-height: 123px;
    text-align: center;
    border-radius: 108px;
    position: relative;
    overflow: hidden;
    background-color: #FAF6F1;
    transition: all 0.4s ease-in-out;
    width: 285px;
}

.grt-brand-box-2 img {
    opacity: 0.4;
    transition: all 0.6s ease;
    transform: translateY(0);
}

.grt-brand-box-2 .grt-brand-img-1 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grt-brand-box-2 .grt-brand-img-1 img {
    opacity: 0.4;
    transition: all 0.6s ease;
    transform: translateY(0);
}

.grt-brand-box-2 .grt-brand-img-1:last-child img {
    transform: translateY(-350%);
    opacity: 0;
}

.grt-brand-box-2:hover {
    background-color: var(--theme);
}

.grt-brand-box-2:hover img {
    opacity: 1;
}

.brand-marquee-wrapper {
    overflow: hidden;
    width: 100%;
}

.brand-marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeMove 25s linear infinite;
    gap: 30px;
}

.brand-marquee-group {
    display: flex;
    align-items: center;
    gap: 30px;
}

@keyframes marqueeMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.brand-section-5 {
    margin: 0 30px;
}

.brand-section-5 .brand-text-5 {
    font-size: 19px;
    font-weight: 600;
    font-family: "Quicksand", sans-serif;
    text-align: center;
    color: var(--header);
    text-transform: uppercase;
    margin-bottom: 50px;
}

.brand-section-5 .brand-text-5 i {
    margin-right: 8px;
}

.grt-faq-content-1 .accordion-box {
    position: relative;
    margin-top: 40px;
}

@media (max-width: 767px) {
    .grt-faq-content-1 .accordion-box {
        margin-top: 30px;
    }
}

.grt-faq-content-1 .accordion-box .block {
    position: relative;
  background-color: #fff;
  border: 1px solid rgba(22, 51, 59, 0.1);
  margin-bottom: 17px;
  line-height: 1;
  border-radius: 8px;
  padding: 20.5px 25px;
}

@media (max-width: 991px) {
    .grt-faq-content-1 .accordion-box .block {
        padding: 25px 20px;
    }
}

.grt-faq-content-1 .accordion-box .block .acc-btn {
    position: relative;
    font-size: 22px;
    color: var(--header);
    font-weight: 600;
    font-family: "Quicksand", sans-serif;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

@media (max-width: 1399px) {
    .grt-faq-content-1 .accordion-box .block .acc-btn {
        padding-right: 40px;
        line-height: 1.4;
        font-size: 20px;
    }
}

@media (max-width: 470px) {
    .grt-faq-content-1 .accordion-box .block .acc-btn {
        font-size: 18px;
    }
}

.grt-faq-content-1 .accordion-box .block .acc-btn .icon {
    position: absolute;
    right: 0;
    top: -7px;
    width: 35px;
    height: 35px;
    font-size: 16px;
    line-height: 35px;
    background-color: #fff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-radius: 50%;
    color: var(--header);
    text-align: center;
}

.grt-faq-content-1 .accordion-box .block .acc-content {
    position: relative;
    display: none;
    margin-top: 22px;
}

@media (max-width: 470px) {
    .grt-faq-content-1 .accordion-box .block .acc-content {
        margin-top: 10px;
    }
}

.grt-faq-content-1 .accordion-box .block .acc-content .content {
    position: relative;
}

.grt-faq-content-1 .accordion-box .block .acc-content .content .text {
    line-height: 175%;
    font-size: 17px;
    font-weight: 400;
    color: rgba(22, 51, 59, 0.8);
    max-width: 560px;
}

@media (max-width: 1199px) {
    .grt-faq-content-1 .accordion-box .block .acc-content .content .text {
        font-size: 14px;
    }
}

@media (max-width: 470px) {
    .grt-faq-content-1 .accordion-box .block .acc-content .content .text {
        font-size: 13px;
    }
}

.grt-faq-content-1 .accordion-box.style-2 {
    margin-top: 30px;
}

.grt-faq-content-1 .accordion-box.style-2 .block .acc-btn {
    font-size: 24px;
}

.grt-faq-content-1 .accordion-box.style-2 .block .acc-content .content .text {
    max-width: 1190px;
}

.grt-faq-content-1 .accordion-box.style-2 .active-block {
    background-color: #fff;
  border-color: #e6e8f5;
  border-radius: 25px; box-shadow: inset 0 0 5px #ECF1FC;
}

.grt-faq-content-1 .accordion-box.style-2 .active-block .icon {
    background-color: #fff;
}

.grt-faq-content-1 .accordion-box.style-2 .active-block .icon::before {
    color: #000 !important;
}

.grt-faq-content-1 .accordion-box .block .acc-content.current {
    display: block;
}

.grt-faq-content-1 .accordion-box .block .acc-btn.active .icon:before {
    content: "\f00d";
    color: var(--header);
}

.grt-faq-content-1 .accordion-box .block .acc-btn.active {
    color: var(--header);
}

.grt-faq-content-1 .accordion-box .block:last-child {
    margin-bottom: 0;
}

.faq-image {
    border-radius: 10px;
    margin-left: 18px;
}

@media (max-width: 1199px) {
    .faq-image {
        margin-left: 0;
    }
}

@media (max-width: 991px) {
    .faq-image {
        height: 520px;
    }
}

@media (max-width: 767px) {
    .faq-image {
        height: 480px;
    }
}

.faq-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.grt-faq-section-2 {
    border-top: 1px solid rgba(22, 51, 59, 0.1);
}

.grt-banner-image {
    height: 710px;
    position: relative;
}

@media (max-width: 991px) {
    .grt-banner-image {
        height: 500px;
    }
}

.grt-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grt-banner-image .content-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    padding: 50px 40px;
    position: absolute;
    right: 100px;
    top: 100px;
    max-width: 410px;
}

@media (max-width: 991px) {
    .grt-banner-image .content-box {
        padding: 40px 30px;
        right: 30px;
        left: 30px;
        bottom: 30px;
        margin: 0 auto;
        text-align: center;
    }
}

.grt-banner-image .content-box .title {
    font-size: 47px;
    font-weight: 700;
    color: var(--white);
}

@media (max-width: 991px) {
    .grt-banner-image .content-box .title {
        font-size: 38px;
    }

    .grt-banner-image .content-box .title br {
        display: none;
    }
}

.grt-banner-image .content-box .title span {
    color: var(--theme);
}

.grt-banner-image .content-box .text {
    color: var(--white);
    margin-top: 30px;
}

.grt-banner-image .content-box .donate-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    color: var(--white);
    overflow: hidden;
    text-transform: capitalize;
    margin-top: 100px;
}

@media (max-width: 991px) {
    .grt-banner-image .content-box .donate-btn {
        margin-top: 0;
    }
}

.grt-banner-image .content-box .donate-btn .text {
    position: relative;
    display: inline-block;
    height: 22px;
    overflow: hidden;
}

.grt-banner-image .content-box .donate-btn .text-default,
.grt-banner-image .content-box .donate-btn .text-hover {
    display: block;
    transition: transform 0.4s ease;
}

.grt-banner-image .content-box .donate-btn .text-hover {
    position: absolute;
    left: 0;
    top: 100%;
    color: var(--theme);
}

.grt-banner-image .content-box .donate-btn:hover .text-default {
    transform: translateY(-100%);
}

.grt-banner-image .content-box .donate-btn:hover .text-hover {
    transform: translateY(-100%);
}

.grt-banner-image .content-box .donate-btn i {
    transition: transform 0.4s ease;
}

.grt-volunteer-cta-wrapper {
    position: relative;
    background-color: #FFFCF8;
    margin-top: 60px;
    border-radius: 8px;
}

@media (max-width: 767px) {
    .grt-volunteer-cta-wrapper {
        margin-top: 30px;
    }
}

.grt-volunteer-cta-wrapper .vec-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 52%;
    transform: translateX(-50%);
}

@media (max-width: 1199px) {
    .grt-volunteer-cta-wrapper .vec-line {
        display: none;
    }
}

.grt-volunteer-cta-wrapper .vec-line img {
    height: 100%;
}

.grt-volunteer-cta-wrapper .grt-content {
    padding: 100px 90px;
}

@media (max-width: 1399px) {
    .grt-volunteer-cta-wrapper .grt-content {
        padding: 90px 80px;
    }
}

@media (max-width: 1199px) {
    .grt-volunteer-cta-wrapper .grt-content {
        padding: 50px 40px;
    }
}

@media (max-width: 575px) {
    .grt-volunteer-cta-wrapper .grt-content {
        padding: 40px 30px;
    }
}

.grt-volunteer-cta-wrapper .grt-content .title {
    font-size: 45px;
    margin-bottom: 25px;
}

@media (max-width: 767px) {
    .grt-volunteer-cta-wrapper .grt-content .title {
        font-size: 35px;
    }
}

@media (max-width: 575px) {
    .grt-volunteer-cta-wrapper .grt-content .title {
        font-size: 30px;
        margin-top: 18px;
    }
}

.grt-volunteer-cta-wrapper .grt-content p {
    font-size: 17px;
    max-width: 400px;
    margin-bottom: 30px;
}

@media (max-width: 575px) {
    .grt-volunteer-cta-wrapper .grt-content p {
        margin-bottom: 20px;
    }
}

.grt-volunteer-cta-wrapper .grt-thumb {
    border-bottom-right-radius: 8px;
    border-top-right-radius: 8px;
}

@media (max-width: 767px) {
    .grt-volunteer-cta-wrapper .grt-thumb img {
        width: 100%;
        height: 100%;
    }
}

.grt-volunteer-cta-wrapper .grt-thumb img {
    border-bottom-right-radius: 8px;
    border-top-right-radius: 8px;
}

.grt-newsletter-section {
    background-color: var(--theme);
    padding: 80px 0;
    position: relative;
    z-index: 9;
}

.grt-newsletter-section .line-shape {
    position: absolute;
    bottom: -85px;
    left: 0;
    right: 0;
    z-index: -1;
}

@media (max-width: 1600px) {
    .grt-newsletter-section .line-shape {
        bottom: -75px;
    }
}

@media (max-width: 1399px) {
    .grt-newsletter-section .line-shape {
        bottom: -65px;
    }
}

@media (max-width: 1199px) {
    .grt-newsletter-section .line-shape {
        display: none;
    }
}

.grt-newsletter-section .line-shape img {
    width: 100%;
}

.grt-newsletter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1199px) {
    .grt-newsletter-wrapper {
        flex-wrap: wrap;
        gap: 25px;
    }
}

.grt-newsletter-wrapper .content .title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.grt-newsletter-wrapper .content p {
    max-width: 370px;
}

.grt-newsletter-wrapper form {
    position: relative;
    max-width: 560px;
    width: 100%;
}

.grt-newsletter-wrapper form input {
    width: 100%;
    border: none;
    background-color: var(--white);
    padding: 0 30px;
    border-radius: 4px;
    line-height: 60px;
    height: 60px;
    color: var(--text);
    padding-right: 80px;
}

.grt-newsletter-wrapper form input::placeholder {
    color: var(--text);
}

.grt-newsletter-wrapper form .email-btn {
    background: var(--header);
    width: 52px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 4px;
    color: var(--white);
    transition: all 0.4s ease-in-out;
    position: absolute;
    top: 6px;
    right: 6px;
    bottom: 6px;
    font-size: 18px;
}

.grt-newsletter-wrapper form .email-btn:hover {
    background-color: var(--theme);
    color: var(--header);
}

.grt-newsletter-wrapper .terms-check {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    user-select: none;
    margin-top: 20px;
}

.grt-newsletter-wrapper .terms-check input {
    display: none;
}

.grt-newsletter-wrapper .checkmark {
    width: 22px;
    height: 22px;
    background-color: var(--header);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.grt-newsletter-wrapper .checkmark i {
    color: #fff;
    font-size: 14px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.25s ease;
}

.grt-newsletter-wrapper .terms-check input:checked + .checkmark {
    background: #0C2F36;
}

.grt-newsletter-wrapper .terms-check input:checked + .checkmark i {
    opacity: 1;
    transform: scale(1);
}

.grt-newsletter-wrapper .terms-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--header);
}

.grt-cta-banner-section-3 {
    position: relative;
    z-index: 9;
    margin-bottom: -30px;
}

.grt-cta-banner-section-3::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--header);
    top: 35%;
}

.grt-cta-banner-section-3 .grt-section-title-area .theme-btn::before {
    background-color: var(--white);
}

.grt-cta-banner-section-3 .grt-section-title-area .theme-btn:hover {
    color: var(--header);
}

.grt-cta-banner-section-3 .banner-thumb {
    border-radius: 10px;
    overflow: hidden;
    height: 600px;
    margin-bottom: 50px;
}

.grt-cta-banner-section-3 .banner-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.grt-cta-banner-section4 .thumb {
    border-radius: 10px;
    position: relative;
    z-index: 9;
}

@media (max-width: 1199px) {
    .grt-cta-banner-section4 .thumb {
        height: 590px;
    }
}

@media (max-width: 991px) {
    .grt-cta-banner-section4 .thumb {
        height: 500px;
    }
}

@media (max-width: 767px) {
    .grt-cta-banner-section4 .thumb {
        height: 470px;
    }
}

@media (max-width: 575px) {
    .grt-cta-banner-section4 .thumb {
        height: 400px;
    }
}

.grt-cta-banner-section4 .thumb::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(180deg, rgba(22, 51, 59, 0) 0%, #16333B 100%);
    border-radius: 10px;
}

.grt-cta-banner-section4 .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.grt-cta-banner-section4 .thumb .grt-section-title-area {
    position: absolute;
    bottom: 60px;
    left: 60px;
    right: 60px;
}

.grt-cta-banner-section4 .thumb .grt-section-title-area .theme-btn::before {
    background-color: var(--white);
}

.grt-cta-banner-section4 .thumb .grt-section-title-area .theme-btn:hover {
    color: var(--header);
}

.grt-cta-banner-section4 {
    position: relative;
}

.grt-cta-banner-section4::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: #ECF1FC;
    height: 50%;
}

.grt-cta-banner-section42::before {
    display: none;
}

.grt-cta-banner-section42 .skill-feature {
    margin-top: 20px;
}

.grt-cta-banner-section42 .skill-feature p {
    font-size: 17px;
    font-weight: bold;
    font-family: "Quicksand", sans-serif;
    margin-bottom: 10px;
}

.grt-cta-banner-section42 .skill-feature .progress-value {
    color: var(--header);
    text-transform: capitalize;
}

.grt-cta-banner-section42 .skill-feature .progress {
    position: relative;
    height: 7px;
    background-color: var(--header);
    border-radius: 3px;
    overflow: visible;
}

.grt-cta-banner-section42 .skill-feature .progress-bar {
    background-color: var(--theme);
    height: 7px;
    margin: 0;
    border-radius: 3px;
    overflow: visible;
    position: relative;
    margin-top: 0;
}

.grt-cta-banner-section42 .skill-feature .progress-value {
    position: absolute;
    top: -38px;
    right: -8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--header);
    font-family: "Inter", sans-serif;
    height: 35px;
    line-height: 26px;
    background-color: var(--theme);
    border-radius: 2px;
    padding: 0 6px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
}

.grt-donation-wrapper {
    max-width: 100%;
    margin: 60px auto 0;
    border-radius: 6px;
}

@media (max-width: 991px) {
    .grt-donation-wrapper {
        margin-top: 30px;
    }
}

.grt-donation-wrapper .text {
    font-size: 15px;
    font-weight: 600;
    color: var(--header);
    text-align: center;
    line-height: 1;
    padding: 40px 20px;
    border-bottom: 1px solid #D6D6D6;
    padding-bottom: 20px;
}

.grt-donation-wrapper .grt-donation-wrap {
    padding: 40px 32px;
}

@media (max-width: 575px) {
    .grt-donation-wrapper .grt-donation-wrap {
        padding: 32px 28px;
    }
}

.grt-donation-wrapper .grt-donation-wrap .donation-amount-form-box::placeholder {
    color: var(--text);
}

.grt-donation-wrapper .grt-donation-wrap .donation-amount-form-box .donation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    margin-top: 25px;
}

.grt-donation-wrapper .grt-donation-wrap .donation-amount-form-box .donation-header span {
    font-size: 16px;
    color: var(--header);
}

.grt-donation-wrapper .grt-donation-wrap .donation-amount-form-box .donation-header .currency {
    background: #F0F0F0;
    padding: 12px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
}

.grt-donation-wrapper .grt-donation-wrap .donation-amount-form-box .amount-list {
    gap: 10px;
    margin-bottom: 16px;
    width: 100%;
    text-align: center;
}

.grt-donation-wrapper .grt-donation-wrap .donation-amount-form-box .amount-list .amount-btn {
    padding: 0 25px;
    border-radius: 50px;
    border: 1px solid #CCCCCC;
    background: #f6f7f9;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    color: var(--text);
    font-weight: 400;
    height: 56px;
    line-height: 56px;
    margin: auto;
    margin-bottom: auto;
    text-align: center;
    margin-bottom: 10px;
}

@media (max-width: 575px) {
    .grt-donation-wrapper .grt-donation-wrap .donation-amount-form-box .amount-list .amount-btn {
        padding: 0 8px;
        font-size: 13px;
        height: 48px;
        line-height: 48px;
    }
}

.grt-donation-wrapper .grt-donation-wrap .donation-amount-form-box .amount-list .amount-btn.active {
    background-color: var(--theme);
    border: 1px solid #db2c1d;
    color: #fff !important;
}

.grt-donation-wrapper .grt-donation-wrap .donation-amount-form-box .amount-list .amount-btn.active svg {
    color: #fff !important;
}

.grt-donation-wrapper .grt-donation-wrap .donation-amount-form-box .custom-amount {
    width: 100%;
    padding: 0 18px;
    border-radius: 30px;
    border: 1px solid #73828C;
    font-size: 16px;
    outline: none;
    text-align: center;
    margin-bottom: 18px;
    color: var(--text);
    height: 56px;
    line-height: 56px;
}

.grt-donation-wrapper .grt-donation-wrap .donation-amount-form-box .theme-btn {
    height: 56px;
    line-height: 56px;
    width: 100%;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.grt-donation-wrapper .grt-donation-wrap .donation-amount-form-box .theme-btn::before {
    display: none;
}

.grt-donation-wrapper .grt-donation-wrap .donation-amount-form-box .theme-btn:hover {
    background: var(--header);
}

.grt-donation-wrapper .grt-donation-wrap .donation-amount-form-box .secure-text {
    margin-top: 14px;
    background: #FAF6F1;
    padding: 0 12px;
    border-radius: 50px;
    text-align: center;
    font-size: 14px;
    color: var(--text);
    height: 56px;
    line-height: 56px;
}

.grt-donation-wrapper .grt-donation-wrap .donation-amount-form-box .secure-text i {
    margin-right: 5px;
}

.grt-donation-section {
    position: relative;
}

.grt-donation-section .shape-1 {
    position: absolute;
    top: 0;
    left: -10%;
}

.grt-donation-section .shape-2 {
    position: absolute;
    bottom: 0;
    right: -6%;
}

@media (max-width: 991px) {
    .grt-donate-wrapprt-2 .grt-section-title {
        text-align: center;
    }
}

.grt-donate-wrapprt-2 .grt-section-title p {
    font-size: 18px;
    /*max-width: 560px;*/
    margin-top: 30px;
}

@media (max-width: 991px) {
    .grt-donate-wrapprt-2 .grt-section-title p {
        margin: 30px auto 0;
    }
}

@media (max-width: 767px) {
    .grt-donate-wrapprt-2 .grt-section-title p {
        margin-top: 20px;
        font-size: 16px;
    }
}

.grt-donate-wrapprt-2 .grt-section-title .theme-btn {
    margin-top: 45px;
}

@media (max-width: 767px) {
    .grt-donate-wrapprt-2 .grt-section-title .theme-btn {
        margin-top: 25px;
    }
}

.grt-donate-wrapprt-2 .grt-section-title .theme-btn::before {
    background-color: var(--white);
}

.grt-donate-wrapprt-2 .grt-section-title .theme-btn:hover {
    color: var(--header);
}

.grt-donate-wrapprt-2 .grt-section-title.style-2 .text-2 {
    color: var(--header);
    letter-spacing: -0.2px;
    font-weight: 500;
}

.grt-donate-wrapprt-2 .grt-section-title.style-2 .text-3 {
    color: var(--header);
    max-width: 545px;
}

.grt-donate-wrapprt-2 .grt-donation-wrapper {
    margin-left: auto;
}

.grt-donate-section-2 {
    position: relative;
}

.grt-donate-section-2 .line-1 {
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 1399px) {
    .grt-donate-section-2 .line-1 {
        display: none;
    }
}

.contact-left-items {
    margin-top: 30px;
}

.contact-left-items .contact-map {
    margin-bottom: 55px;
}

@media (max-width: 991px) {
    .contact-left-items .contact-map {
        margin-bottom: 30px;
    }
}

.contact-left-items .contact-map iframe {
    width: 100%;
    border-radius: 12px;
    height: 556px;
}

.contact-left-items .contact-info-list li {
    display: flex;
    align-items: center;
    gap: 70px;
    margin-bottom: 14px;
    margin-top: 20px;
}

@media (max-width: 1399px) {
    .contact-left-items .contact-info-list li {
        gap: 30px;
    }
}

@media (max-width: 1199px) {
    .contact-left-items .contact-info-list li {
        flex-wrap: wrap;
        margin-bottom: 14px;
        margin-top: 20px;
    }
}

.contact-left-items .contact-info-list li:not(:last-child) {}

@media (max-width: 1199px) {
    .contact-left-items .contact-info-list li:not(:last-child) {
        gap: 30px;
    }
}

.contact-left-items .contact-info-list li .contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-left-items .contact-info-list li .icon {
    width: 56px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme);
    font-size: 19px;
    color: #fff;
}

.contact-left-items .contact-info-list li .icon .fa {
    color: #fff;
}

.contact-left-items .contact-info-list li .info {
    font-size: 18px;
    font-weight: 600;
    color: var(--header);
    font-family: "Quicksand", sans-serif;
}

@media (max-width: 1399px) {
    .contact-left-items .contact-info-list li .info {
        font-size: 18px;
    }
}

.contact-left-items .contact-info-list li .info a {
    color: var(--header);
}

.contact-left-items .contact-info-list li .social-icon {
    display: flex;
    align-items: center;
    gap: 18px;
}

.contact-left-items .contact-info-list li .social-icon span {
    font-size: 16px;
    font-weight: 600;
}

.contact-form2 {
    background-color: #ECF1FC;
    padding: 60px 36px;
    margin-top: 30px;
    border-radius: 12px;
}

@media (max-width: 1199px) {
    .contact-form2 {
        padding: 30px;
    }
}

@media (max-width: 575px) {
    .contact-form2 {
        padding: 30px 25px;
    }
}

.contact-form2 h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

@media (max-width: 575px) {
    .contact-form2 h2 {
        font-size: 30px;
    }
}

.contact-form2 form {
    margin-top: 25px;
}

.contact-form2 .form-clt input,
.contact-form2 .form-clt textarea {
    display: inline-block;
    border: 1px solid rgba(22, 51, 59, 0.1);
    width: 100%;
    padding: 18px 22px;
    line-height: 1;
    border-radius: 8px;
    color: var(--header);
    font-weight: 400;
}

.contact-form2 .form-clt input::placeholder,
.contact-form2 .form-clt textarea::placeholder {
    color: var(--header);
}

.contact-form2 .form-clt .single-select {
    display: inline-block;
    border: 1px solid rgba(22, 51, 59, 0.1);
    width: 100%;
    padding: 18px 22px;
    line-height: 1;
    border-radius: 8px;
    color: var(--text);
    font-weight: 400;
}

.contact-form2 .form-clt .single-select .list {
    width: 100%;
}

.contact-form2 .form-clt textarea {}

.contact-form2 .theme-btn {
    width: 100%;
    text-align: center;
    background-color: #df2523;
    border: 1px solid #fff;
    color: #fff;
}

.contact-form2 .theme-btn:hover {
    width: 100%;
    text-align: center;
    background-color: #fff !important;
    border: 1px solid #df2523;
    color: #df2523;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #ECF1FC;
    border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--theme);
    border-radius: 0;
}

.array-button {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 999;
}

.array-button .array-prev,
.array-button .array-next {
    border-radius: 100px;
    border: 1px solid #E6E8EB;
    width: 54px;
    height: 54px;
    line-height: 54px;
    text-align: center;
    border-radius: 50%;
    color: var(--header);
    transition: all 0.4s ease-in-out;
    cursor: pointer;
}

.array-button .array-prev:hover,
.array-button .array-next:hover {
    background-color: var(--theme);
    color: var(--white);
}

.bg-cover {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
}

.fix {
    overflow: hidden;
}

.ralt {
    position: relative;
}

.sticky-style {
    position: sticky !important;
    top: 100px;
}

.gt-slide-transtion {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

.gt-brand-slide-element {
    width: auto;
    display: inline-block;
}

.p-relative {
    position: relative;
}

/* ================================
   Split Text Styles
================================ */
.split-title .word {
    display: inline-block;
    white-space: nowrap;
}

/* char animation */
.split-title .char {
    display: inline-block;
    transform-origin: left center;
    clip-path: inset(0 100% 0 0);
    opacity: 0;
}

.body-bg-2 {
    background-color: #FFFCF8;
}

.array-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.array-buttons .array-prev,
.array-buttons .array-next {
    transition: all 0.4s ease-in-out;
}

.array-buttons .array-prev:hover,
.array-buttons .array-next:hover {
    color: var(--theme);
}

.page-nav-wrap {
    margin-top: 50px;
}

.page-nav-wrap ul li {
    display: inline-block;
}

.page-nav-wrap ul li.active .page-numbers {
    background-color: var(--theme);
    color: var(--header);
}

.page-nav-wrap ul li .page-numbers.current {
    background-color: var(--theme);
    color: var(--white);
}

.page-nav-wrap ul li .page-numbers {
    display: inline-block;
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 48px;
    border-radius: 0;
    background: var(--header);
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    margin: 0 2px;
    border-radius: 50%;
    font-family: "Quicksand", sans-serif;
}

@media (max-width: 767px) {
    .page-nav-wrap ul li .page-numbers {
        margin-top: 10px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
    }
}

.page-nav-wrap ul li .page-numbers i {
    margin-top: 2px;
    color: var(--white);
    transition: all 0.4s ease-in-out;
}

.page-nav-wrap ul li .page-numbers:hover {
    background-color: var(--theme);
    color: var(--header);
}

.page-nav-wrap ul li .page-numbers:hover i {
    color: var(--header);
}

.pyears h3 {
    font-family: "Playfair Display"
}

.pyears .years {
    float: left;
    margin-right: 20px;
    padding: 5px;
    text-align: center;
    width: 75px;
    height: 75px;
    align-content: center;
    color: #fff;
    background-color: green;
    border-radius: 50%
}

.wchsus .grt-sub-title {
    color: #4aa7f3
}

.wchsus h2 {
    font-size: 46px;
    font-weight: 700;
    line-height: 54px;
}

.wchsus p {
    font-size: 20px;
    line-height: 26px;
}

.wchsus h2 span {
    background-clip: text;
    color: transparent;
    background-image: linear-gradient(135deg, hsl(215 90% 52%), hsl(215 90% 52%));
}

.wchsus li i {
    color: #3180a5;
    margin-right: 20px;
}

.numberes {
    font-weight: 700 !important;
    color: #dfe9f8 !important;
    font-size: 45px !important;
    margin-bottom: 5px;
}

.ourcorstrg {
    background: linear-gradient(160deg, #050513 0%, #0a0c4a 60%, #1b1f8c 100%)
}

.ourcorstrg .split-title {
    color: #fff;
    font-family: "Space Grotesk", sans-serif;
}

.ourcorstrg .grt-causes-support-box {
    backdrop-filter: blur(18px)saturate(140%);
    background: #0a0c3c66;
    border: 1px solid #ffffff1f;
    border-radius: 1rem;
    --tw-duration: .3s;
    transition-duration: .3s;
}

.ourcorstrg .grt-causes-support-box .icon {
    background: linear-gradient(135deg, #000486 0%, #5b60fe 100%);
    border-radius: 50%;
    border: 1px solid #444c5a;
    text-align: center;
    color: #16c9f3;
}

.ourcorstrg .grt-causes-support-box:hover {
   background-color: rgb(255,255,255,0.1);
}

.ourcorstrg .grt-causes-support-box .content .title,
.ourcorstrg .grt-causes-support-box .content .title a {
    color: #fff;
}

.ourcorstrg .grt-causes-support-box .content p {
    color: #99badb;
}

.kybenft img {
    height: 250px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #0e528a;
}

.kybenft ul li {
    font-size: 18px;
    margin: 10px 0px;
    text-align: justify;
    background-color: #fff;
    padding: 12px 10px;
    border: 1px solid #0e528a;
    border-left: 5px solid #0e528a;
    color: #0f131c;
    font-weight: 500;
    border-radius: 10px;
}

.bbheass ul li {
    font-size: 18px;
    margin: 10px 0px;
    text-align: justify;
    background-color: #fff;
    padding: 15px 10px;
    border: 1px solid #b8c7e5;
    color: #0f131c;
    font-weight: 500;
    border-radius: 10px;
}

.bbheas ul li {
    font-size: 18px;
    margin: 10px 0px;
    text-align: justify
}

.header-top-wrapper-5 {
    background-color: #e8edf8;
    padding: 3px 0px;
}

.btn-iwsbtn {
    border-radius: 10px;
    color: #fff;
    background-color: #17689b;
    padding: 5px 10px;
    margin-right: 5px;
    text-align: center
}

.btn-iwsbtn:hover {
    color: #fff;
    background-color: #000;
}
.boxsds-bdr{border-radius: 10px;text-align: center;padding: 10px 20px;
    box-shadow: 0 0 20px -12px rgb(13, 63, 133);width:15%; border: 1px solid #ccc;margin: auto;margin-left: 10px;margin-right: 10px;}
.numbers{background-image: var(--gradient-brand);
    color: #0000;
    -webkit-background-clip: text;
    background-clip: text; margin-top: 20px;font-weight: 600;font-size: 40px;line-height: 50px}
.contactbgs{background-image: linear-gradient(160deg, #050513 0%, #0a0c4a 60%, #1b1f8c 100%);border-radius: 40px;text-align: center;padding: 50px 40px}
.contactbgs p{font-size: 20px;}
.boxx{
    background-color: rgba(112, 92, 247, 0.4);
  padding: 6px;
  border-radius: 12px;color: #fff;
}
.specl{margin-top: 50px;}
.specl .boxx{
    background-color: #181936;
  padding: 6px;border: 1px solid rgba(112, 92, 247, 0.4);
  border-radius: 12px;color: #fff;line-height: 20px;
}
.specl .boxx svg{ 
    float: left;margin-top: 3px;margin-right: 5px;
}

@media (min-width: 320px) and (max-width: 640px) {
    
.specl{margin-top: 10px;}
    .boxsds-bdr { 
    width: 50%;
    padding: 7px 4px;
    border: 1px solid #ccc;
    margin: auto; 
    font-size: 12px;
    margin-bottom: 9px;
    height: 40px;
    float: left;
  } 
.contactbgs p {
  font-size: 14px;
}
    .offcanvas__info {
        width: 300px;
    }

    .hero-5 .hero-content p {
        font-size: 13px;
        line-height: 22px;
    }

    .hero-5 .hero-content h1 {
        font-size: 27px;
    }

    .abtts p {
        padding-right: 60px;
        color: #6b6e75;
        font-size: 16px;
        text-align: justify;
        line-height: 22px;
    }

    .numberes {
        font-weight: 700;
        color: #dfe9f8;
        font-size: 25px;
    }
.contactbgs { 
  padding: 20px 20px;
}
    .header-3 {
        background-color: #fff !important;
        height: 70px;
    }

    .section-padding {
        padding: 45px 0;
    }

    .grt-hero-3 h1 {
        font-size: 23px;
    }

    .grt-hero-3 p {
        font-size: 14px;
        max-width: 100%;
        line-height: 20px;
    }

    .grt-counter-content-4 p {
        padding-right: 2px;
    }

    .grt-section-title h2 {
        color: var(--header);
        font-size: 26px;
    }

    .grt-causes-support-box .content .title {
        font-size: 19px;
        padding-bottom: 5px;
        margin-bottom: 5px;
    }

    .grt-causes-support-box {
        margin-top: 10px;
    }

    .grt-causes-support-box {
        min-height: 215px;padding:20px 12px
    }

    .grt-causes-box-items {
        padding: 16px;
    }

    .grt-counter-wrapper-3 .grt-counter-items-3 .title {
        font-size: 40px;
        border-bottom: 0px solid rgba(255, 255, 255, 0.12);
        padding-bottom: 8px;
        margin-bottom: 8px;
    }

    .grt-donation-wrapper .grt-donation-wrap {
        padding: 2px 15px;
    }

    .grt-news-box-items-3 .grt-content {
        padding: 15px 12px 10px;
    }

    .grt-news-box-items-3 .grt-content .title {
        font-size: 17px;
    }

    .grt-footer-box-items .thumb {
        flex-basis: initial;
        height: 215px;
        margin-top: 30px;
    }

    .grt-footer-box-items .thumb {
        flex-basis: 30%;
    }

    .grt-footer-wrapper-3 .grt-footer-widget-items .widget-head {
        margin-bottom: 15px;
        margin-top: 10px;
    }

    .grt-footer-box-wrapper {
        gap: 14px;
    }

    .grt-testimonial-box-items-3 {
        margin-top: 20px;
        background-color: var(--white);
        padding: 17px 22px;
        border-radius: 6px;
        text-align: center;
    }

    .grt-footer-wrapper-3 {
        padding: 15px 0px 10px 0px;
        justify-content: space-between;
    }

    .pyears h3 {
        font-family: "Playfair Display";
        font-size: 19px;
    }

    .hero-5 {
        padding-top: 150px;
    }

    .wchsus h2 {
        font-size: 35px;
        font-weight: 700;
        line-height: 44px;
    }

    .parallax-slider-active .swiper-slide {
        height: 85vh
    }

    .showcase-slider-wrappper {
        height: 85vh;
    }

    .mainlgs {
        background-color: #fff;
    }
 .boxsds-bdr { 
    width: 49%;
    padding: 9px 3px; 
    margin: auto; 
    margin-left: 1px;
    margin-right: 2px;
    float: left;
    margin-bottom: 10px;
    min-height: 40px;
    line-height: 12px;
    }

}