:root {
    --black-color: #000000;
    /** var(--black-color) **/
    --white-color: #ffffff;
    /** var(--white-color) **/
    --primary-color: #1d174c;
    /** var(--primary-color) **/
    --secondary-color: #d1ac2b;
    /** var(--secondary-color) **/
    --text-color: #58595b;
    /** var(--text-color) **/
    --title-color: #b96c6c;
    /** var(--title-color) **/
    --bg-color: #f4ecd5;
    /** var(--bg-color) **/
    --primary-font: "Playfair Display", serif;
    /** var(--primary-font) **/
    --secondary-font: "Lato", sans-serif;
    /** var(--secondary-font) **/
    --third-font: "Noto Serif", serif;
    /** var(--third-font) **/
    --forth-font: "DM Serif Display", serif;
    /** var(--forth-font) **/
    --fifth-font: "Outfit", sans-serif;
    /** var(--fifth-font) **/
}


/*==================================:: WOW CSS Start ::==================================*/

.animated {
    animation-duration: 0.5s;
    animation-fill-mode: both
}

.animated.infinite {
    animation-iteration-count: infinite
}

.animated.hinge {
    animation-duration: 2s
}

.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
    animation-duration: .75s
}

@keyframes bounce {
    0%,
    20%,
    53%,
    80%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        transform: translateZ(0)
    }
    40%,
    43% {
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -30px, 0)
    }
    70% {
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -15px, 0)
    }
    90% {
        transform: translate3d(0, -4px, 0)
    }
}

.bounce {
    animation-name: bounce;
    transform-origin: center bottom
}

@keyframes flash {
    0%,
    50%,
    to {
        opacity: 1
    }
    25%,
    75% {
        opacity: 0
    }
}

.flash {
    animation-name: flash
}

@keyframes pulse {
    0% {
        transform: scaleX(1)
    }
    50% {
        transform: scale3d(1.05, 1.05, 1.05)
    }
    to {
        transform: scaleX(1)
    }
}

.pulse {
    animation-name: pulse
}

@keyframes rubberBand {
    0% {
        transform: scaleX(1)
    }
    30% {
        transform: scale3d(1.25, .75, 1)
    }
    40% {
        transform: scale3d(.75, 1.25, 1)
    }
    50% {
        transform: scale3d(1.15, .85, 1)
    }
    65% {
        transform: scale3d(.95, 1.05, 1)
    }
    75% {
        transform: scale3d(1.05, .95, 1)
    }
    to {
        transform: scaleX(1)
    }
}

.rubberBand {
    animation-name: rubberBand
}

@keyframes shake {
    0%,
    to {
        transform: translateZ(0)
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translate3d(-10px, 0, 0)
    }
    20%,
    40%,
    60%,
    80% {
        transform: translate3d(10px, 0, 0)
    }
}

.shake {
    animation-name: shake
}

@keyframes headShake {
    0% {
        transform: translateX(0)
    }
    6.5% {
        transform: translateX(-6px) rotateY(-9deg)
    }
    18.5% {
        transform: translateX(5px) rotateY(7deg)
    }
    31.5% {
        transform: translateX(-3px) rotateY(-5deg)
    }
    43.5% {
        transform: translateX(2px) rotateY(3deg)
    }
    50% {
        transform: translateX(0)
    }
}

.headShake {
    animation-timing-function: ease-in-out;
    animation-name: headShake
}

@keyframes swing {
    20% {
        transform: rotate(15deg)
    }
    40% {
        transform: rotate(-10deg)
    }
    60% {
        transform: rotate(5deg)
    }
    80% {
        transform: rotate(-5deg)
    }
    to {
        transform: rotate(0deg)
    }
}

.swing {
    transform-origin: top center;
    animation-name: swing
}

@keyframes tada {
    0% {
        transform: scaleX(1)
    }
    10%,
    20% {
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }
    30%,
    50%,
    70%,
    90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
    }
    40%,
    60%,
    80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
    }
    to {
        transform: scaleX(1)
    }
}

.tada {
    animation-name: tada
}

@keyframes wobble {
    0% {
        transform: none
    }
    15% {
        transform: translate3d(-25%, 0, 0) rotate(-5deg)
    }
    30% {
        transform: translate3d(20%, 0, 0) rotate(3deg)
    }
    45% {
        transform: translate3d(-15%, 0, 0) rotate(-3deg)
    }
    60% {
        transform: translate3d(10%, 0, 0) rotate(2deg)
    }
    75% {
        transform: translate3d(-5%, 0, 0) rotate(-1deg)
    }
    to {
        transform: none
    }
}

.wobble {
    animation-name: wobble
}

@keyframes jello {
    0%,
    11.1%,
    to {
        transform: none
    }
    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }
    77.7% {
        transform: skewX(.390625deg) skewY(.390625deg)
    }
    88.8% {
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

.jello {
    animation-name: jello;
    transform-origin: center
}

@keyframes bounceIn {
    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
    20% {
        transform: scale3d(1.1, 1.1, 1.1)
    }
    40% {
        transform: scale3d(.9, .9, .9)
    }
    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03)
    }
    80% {
        transform: scale3d(.97, .97, .97)
    }
    to {
        opacity: 1;
        transform: scaleX(1)
    }
}

.bounceIn {
    animation-name: bounceIn
}

@keyframes bounceInDown {
    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: translate3d(0, -3000px, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(0, 25px, 0)
    }
    75% {
        transform: translate3d(0, -10px, 0)
    }
    90% {
        transform: translate3d(0, 5px, 0)
    }
    to {
        transform: none
    }
}

.bounceInDown {
    animation-name: bounceInDown
}

@keyframes bounceInLeft {
    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: translate3d(-3000px, 0, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(25px, 0, 0)
    }
    75% {
        transform: translate3d(-10px, 0, 0)
    }
    90% {
        transform: translate3d(5px, 0, 0)
    }
    to {
        transform: none
    }
}

.bounceInLeft {
    animation-name: bounceInLeft
}

@keyframes bounceInRight {
    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: translate3d(3000px, 0, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(-25px, 0, 0)
    }
    75% {
        transform: translate3d(10px, 0, 0)
    }
    90% {
        transform: translate3d(-5px, 0, 0)
    }
    to {
        transform: none
    }
}

.bounceInRight {
    animation-name: bounceInRight
}

@keyframes bounceInUp {
    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: translate3d(0, 3000px, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }
    75% {
        transform: translate3d(0, 10px, 0)
    }
    90% {
        transform: translate3d(0, -5px, 0)
    }
    to {
        transform: translateZ(0)
    }
}

.bounceInUp {
    animation-name: bounceInUp
}

@keyframes bounceOut {
    20% {
        transform: scale3d(.9, .9, .9)
    }
    50%,
    55% {
        opacity: 1;
        transform: scale3d(1.1, 1.1, 1.1)
    }
    to {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
}

.bounceOut {
    animation-name: bounceOut
}

@keyframes bounceOutDown {
    20% {
        transform: translate3d(0, 10px, 0)
    }
    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }
    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}

.bounceOutDown {
    animation-name: bounceOutDown
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px, 0, 0)
    }
    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
}

.bounceOutLeft {
    animation-name: bounceOutLeft
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px, 0, 0)
    }
    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}

.bounceOutRight {
    animation-name: bounceOutRight
}

@keyframes bounceOutUp {
    20% {
        transform: translate3d(0, -10px, 0)
    }
    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, 20px, 0)
    }
    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}

.bounceOutUp {
    animation-name: bounceOutUp
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.fadeIn {
    animation-name: fadeIn
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -10%, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDown {
    animation-name: fadeInDown
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDownBig {
    animation-name: fadeInDownBig
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-10%, 0, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeft {
    animation-name: fadeInLeft
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeftBig {
    animation-name: fadeInLeftBig
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(10%, 0, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRight {
    animation-name: fadeInRight
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRightBig {
    animation-name: fadeInRightBig
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 10%, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUp {
    animation-name: fadeInUp
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUpBig {
    animation-name: fadeInUpBig
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

.fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, 10%, 0)
    }
}

.fadeOutDown {
    animation-name: fadeOutDown
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}

.fadeOutDownBig {
    animation-name: fadeOutDownBig
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(-10%, 0, 0)
    }
}

.fadeOutLeft {
    animation-name: fadeOutLeft
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
}

.fadeOutLeftBig {
    animation-name: fadeOutLeftBig
}

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(10%, 0, 0)
    }
}

.fadeOutRight {
    animation-name: fadeOutRight
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}

.fadeOutRightBig {
    animation-name: fadeOutRightBig
}

@keyframes fadeOutUp {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, -10%, 0)
    }
}

.fadeOutUp {
    animation-name: fadeOutUp
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}

.fadeOutUpBig {
    animation-name: fadeOutUpBig
}

@keyframes flip {
    0% {
        transform: perspective(400px) rotateY(-1turn);
        animation-timing-function: ease-out
    }
    40% {
        transform: perspective(400px) translateZ(150px) rotateY(-190deg);
        animation-timing-function: ease-out
    }
    50% {
        transform: perspective(400px) translateZ(150px) rotateY(-170deg);
        animation-timing-function: ease-in
    }
    80% {
        transform: perspective(400px) scale3d(.95, .95, .95);
        animation-timing-function: ease-in
    }
    to {
        transform: perspective(400px);
        animation-timing-function: ease-in
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    animation-name: flip
}

@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        transform: perspective(400px) rotateX(-20deg);
        animation-timing-function: ease-in
    }
    60% {
        transform: perspective(400px) rotateX(10deg);
        opacity: 1
    }
    80% {
        transform: perspective(400px) rotateX(-5deg)
    }
    to {
        transform: perspective(400px)
    }
}

.flipInX {
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important;
    animation-name: flipInX
}

@keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        transform: perspective(400px) rotateY(-20deg);
        animation-timing-function: ease-in
    }
    60% {
        transform: perspective(400px) rotateY(10deg);
        opacity: 1
    }
    80% {
        transform: perspective(400px) rotateY(-5deg)
    }
    to {
        transform: perspective(400px)
    }
}

.flipInY {
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important;
    animation-name: flipInY
}

@keyframes flipOutX {
    0% {
        transform: perspective(400px)
    }
    30% {
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1
    }
    to {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

.flipOutX {
    animation-name: flipOutX;
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important
}

@keyframes flipOutY {
    0% {
        transform: perspective(400px)
    }
    30% {
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1
    }
    to {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

.flipOutY {
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important;
    animation-name: flipOutY
}

@keyframes lightSpeedIn {
    0% {
        transform: translate3d(10%, 0, 0) skewX(-30deg);
        opacity: 0
    }
    60% {
        transform: skewX(20deg);
        opacity: 1
    }
    80% {
        transform: skewX(-5deg);
        opacity: 1
    }
    to {
        transform: none;
        opacity: 1
    }
}

.lightSpeedIn {
    animation-name: lightSpeedIn;
    animation-timing-function: ease-out
}

@keyframes lightSpeedOut {
    0% {
        opacity: 1
    }
    to {
        transform: translate3d(10%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

.lightSpeedOut {
    animation-name: lightSpeedOut;
    animation-timing-function: ease-in
}

@keyframes rotateIn {
    0% {
        transform-origin: center;
        transform: rotate(-200deg);
        opacity: 0
    }
    to {
        transform-origin: center;
        transform: none;
        opacity: 1
    }
}

.rotateIn {
    animation-name: rotateIn
}

@keyframes rotateInDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(-45deg);
        opacity: 0
    }
    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInDownLeft {
    animation-name: rotateInDownLeft
}

@keyframes rotateInDownRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(45deg);
        opacity: 0
    }
    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInDownRight {
    animation-name: rotateInDownRight
}

@keyframes rotateInUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(45deg);
        opacity: 0
    }
    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInUpLeft {
    animation-name: rotateInUpLeft
}

@keyframes rotateInUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(-90deg);
        opacity: 0
    }
    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInUpRight {
    animation-name: rotateInUpRight
}

@keyframes rotateOut {
    0% {
        transform-origin: center;
        opacity: 1
    }
    to {
        transform-origin: center;
        transform: rotate(200deg);
        opacity: 0
    }
}

.rotateOut {
    animation-name: rotateOut
}

@keyframes rotateOutDownLeft {
    0% {
        transform-origin: left bottom;
        opacity: 1
    }
    to {
        transform-origin: left bottom;
        transform: rotate(45deg);
        opacity: 0
    }
}

.rotateOutDownLeft {
    animation-name: rotateOutDownLeft
}

@keyframes rotateOutDownRight {
    0% {
        transform-origin: right bottom;
        opacity: 1
    }
    to {
        transform-origin: right bottom;
        transform: rotate(-45deg);
        opacity: 0
    }
}

.rotateOutDownRight {
    animation-name: rotateOutDownRight
}

@keyframes rotateOutUpLeft {
    0% {
        transform-origin: left bottom;
        opacity: 1
    }
    to {
        transform-origin: left bottom;
        transform: rotate(-45deg);
        opacity: 0
    }
}

.rotateOutUpLeft {
    animation-name: rotateOutUpLeft
}

@keyframes rotateOutUpRight {
    0% {
        transform-origin: right bottom;
        opacity: 1
    }
    to {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0
    }
}

.rotateOutUpRight {
    animation-name: rotateOutUpRight
}

@keyframes hinge {
    0% {
        transform-origin: top left;
        animation-timing-function: ease-in-out
    }
    20%,
    60% {
        transform: rotate(80deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out
    }
    40%,
    80% {
        transform: rotate(60deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
        opacity: 1
    }
    to {
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

.hinge {
    animation-name: hinge
}

@keyframes jackInTheBox {
    0% {
        opacity: 0;
        transform: scale(.1) rotate(30deg);
        transform-origin: center bottom
    }
    50% {
        transform: rotate(-10deg)
    }
    70% {
        transform: rotate(3deg)
    }
    to {
        opacity: 1;
        transform: scale(1)
    }
}

.jackInTheBox {
    animation-name: jackInTheBox
}

@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translate3d(-10%, 0, 0) rotate(-120deg)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.rollIn {
    animation-name: rollIn
}

@keyframes rollOut {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(10%, 0, 0) rotate(120deg)
    }
}

.rollOut {
    animation-name: rollOut
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
    50% {
        opacity: 1
    }
}

.zoomIn {
    animation-name: zoomIn
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInDown {
    animation-name: zoomInDown
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInLeft {
    animation-name: zoomInLeft
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInRight {
    animation-name: zoomInRight
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInUp {
    animation-name: zoomInUp
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }
    50% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
    to {
        opacity: 0
    }
}

.zoomOut {
    animation-name: zoomOut
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    to {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomOutDown {
    animation-name: zoomOutDown
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }
    to {
        opacity: 0;
        transform: scale(.1) translate3d(-2000px, 0, 0);
        transform-origin: left center
    }
}

.zoomOutLeft {
    animation-name: zoomOutLeft
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }
    to {
        opacity: 0;
        transform: scale(.1) translate3d(2000px, 0, 0);
        transform-origin: right center
    }
}

.zoomOutRight {
    animation-name: zoomOutRight
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    to {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomOutUp {
    animation-name: zoomOutUp
}

@keyframes slideInDown {
    0% {
        transform: translate3d(0, -10%, 0);
        visibility: visible
    }
    to {
        transform: translateZ(0)
    }
}

.slideInDown {
    animation-name: slideInDown
}

@keyframes slideInLeft {
    0% {
        transform: translate3d(-10%, 0, 0);
        visibility: visible
    }
    to {
        transform: translateZ(0)
    }
}

.slideInLeft {
    animation-name: slideInLeft
}

@keyframes slideInRight {
    0% {
        transform: translate3d(10%, 0, 0);
        visibility: visible
    }
    to {
        transform: translateZ(0)
    }
}

.slideInRight {
    animation-name: slideInRight
}

@keyframes slideInUp {
    0% {
        transform: translate3d(0, 10%, 0);
        visibility: visible
    }
    to {
        transform: translateZ(0)
    }
}

.slideInUp {
    animation-name: slideInUp
}

@keyframes slideOutDown {
    0% {
        transform: translateZ(0)
    }
    to {
        visibility: hidden;
        transform: translate3d(0, 10%, 0)
    }
}

.slideOutDown {
    animation-name: slideOutDown
}

@keyframes slideOutLeft {
    0% {
        transform: translateZ(0)
    }
    to {
        visibility: hidden;
        transform: translate3d(-10%, 0, 0)
    }
}

.slideOutLeft {
    animation-name: slideOutLeft
}

@keyframes slideOutRight {
    0% {
        transform: translateZ(0)
    }
    to {
        visibility: hidden;
        transform: translate3d(10%, 0, 0)
    }
}

.slideOutRight {
    animation-name: slideOutRight
}

@keyframes slideOutUp {
    0% {
        transform: translateZ(0)
    }
    to {
        visibility: hidden;
        transform: translate3d(0, -10%, 0)
    }
}

.slideOutUp {
    animation-name: slideOutUp
}


/*==================================:: WOW CSS End ::==================================*/


/*Slick Slider Css Start*/

.slick-slider {
    position: relative;
    display: block;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
    min-width: 100%;
}

.slick-list.dragging {
    cursor: pointer;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    min-width: 100%;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: "";
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 0.063rem;
}

.slick-initialized .slick-slide {
    display: block;
    list-style: none;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 0.063rem solid transparent;
}

.slick-arrow {
    display: block;
    position: absolute;
    top: 50%;
    z-index: 2;
    padding: 0;
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 0;
    color: var(--primary-color);
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    opacity: 1;
    outline: none;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    overflow: hidden;
    transform: translate(0, -50%);
}

.slick-arrow:before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 70% 50%;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.slick-arrow.slick-next:before {
    background-image: url("../images/next-icon.svg");
}

.slick-arrow.slick-prev:before {
    background-image: url("../images/next-icon.svg");
    transform: rotate(180deg);
}

.slick-arrow.slick-next {
    right: -14px;
}

.slick-arrow.slick-prev {
    left: -30px;
}

.slick-arrow:hover {
    outline: none;
    background: var(--title-color);
}

.slick-arrow.slick-next:hover:before {
    background-image: url("../images/next-icon1.svg");
}

.slick-arrow.slick-prev:hover:before {
    background-image: url("../images/next-icon1.svg");
}

.slick-arrow:hover:before {
    color: var(--white-color);
}

.slick-dots {
    display: -webkit-flex;
    display: flex;
    align-content: center;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 9px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.slick-dots li {
    margin: 0 5px;
    padding: 0;
    list-style: none;
    display: inline-block;
    vertical-align: top;
}

.slick-dots li button {
    display: block;
    width: 10px;
    height: 10px;
    font-size: 0;
    padding: 0;
    background: var(--primary-color);
    position: relative;
    border: 0;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    cursor: pointer;
    transition: all 0.4s ease;
    opacity: 1;
}

.slick-dots li.slick-active button:focus,
.slick-dots li.slick-active button:hover,
.slick-dots li.slick-active button,
.slick-dots li button:focus,
.slick-dots li button:hover {
    outline: none;
    box-shadow: none;
    background: var(--secondary-color);
    opacity: 1;
}

.slick-arrow.slick-disabled {
    cursor: not-allowed;
}

.slider-3 .slick-dots {
    bottom: -50px;
}


/*Slick Slider Css End*/


/* Resources Details start */

.details-content ul,
.details-content ol {
    display: inline-block;
    padding: 0;
    margin: 0 0 1.875rem 0;
}

.details-content ul ol,
.details-content ol ul,
.details-content ul ul,
.details-content ol ol {
    display: block;
    margin-top: 0.625rem;
}

.details-content ul li {
    list-style: none;
    padding: 0 0 0 15px;
    margin: 0 0 5px 0;
    position: relative;
    font-family: var(--secondary-font);
    font-size: 18px;
    color: var(--text-color);
}

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

.details-content ul li:before {
    display: block;
    content: "";
    width: 5px;
    height: 5px;
    background: var(--text-color);
    border-radius: 50px;
    position: absolute;
    left: 0;
    top: 12px;
}

.details-content ol {
    margin-left: 0;
    counter-reset: item;
}

.details-content li li {
    padding-left: 0.875rem;
    list-style: none !important;
}

.details-content ol li {
    list-style-type: none;
    list-style-image: none;
    list-style-position: outside;
    margin: 0 0 5px 0;
    padding-left: 24px;
    position: relative;
    font-family: var(--secondary-font);
    font-size: 18px;
    color: var(--text-color);
}

.details-content ol li:before {
    content: counter(item) ". ";
    counter-increment: item;
    font-weight: 600;
    position: absolute;
    left: 0;
}

.details-content h1,
.details-content h2,
.details-content h3,
.details-content h4 {
    margin-bottom: clamp(30px, 2.51vw, 48px);
    font-family: var(--primary-font);
    font-weight: 400;
}

.details-content h1,
.details-content .h1 {
    font-size: clamp(30px, 2.51vw, 48px);
}

.details-content h2,
.details-content .h2 {
    font-size: clamp(24px, 1.68vw, 32px);
}

.details-content h3,
.details-content .h3 {
    font-size: clamp(20px, 1.26vw, 24px);
}

.details-content h4,
.details-content .h4 {
    font-size: clamp(18px, 1.05vw, 20px);
}

.details-content p {
    line-height: 1.56;
    font-family: var(--text-color);
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 24px;
}

.details-content a {
    color: var(--secondary-color);
    font-weight: 700;
}

.details-content a:hover {
    color: var(--text-color);
}

.resources-details-banner {
    min-height: clamp(300px, 29.18vw, 560px);
}

.details-content {
    max-width: 1100px;
}

.details-content .list {
    margin-bottom: clamp(40px, 4.18vw, 80px);
}

.details-content .list {
    border-block: solid 2px var(--secondary-color);
    padding: 24px 0;
}

.details-content .date {
    font-weight: 600;
    color: var(--primary-color);
}

.details-content strong {
    color: var(--text-color);
}

.resourcesd-details img {
    margin: clamp(20px, 2.61vw, 50px) 0;
    display: block;
}

.line-css {
    margin: clamp(30px, 3.14vw, 60px) 0;
    border: solid 1px var(--secondary-color);
}


/* Resources Details end */


/* Global start */

body {
    font-family: var(--secondary-font);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--text-color);
    background-color: var(--white-color);
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    transition: all 0.4s ease;
}

:focus {
    text-decoration: none;
    outline: none;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    outline: none;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

a:hover {
    text-decoration: none;
    color: var(--secondary-color);
}

a:focus {
    outline: 0;
    outline: none;
}

hr {
    display: block;
    height: 0.125rem;
    max-width: 100%;
    border: 0;
    border-top: 0.063rem solid #E8E8E9;
    margin: 3.75rem 0;
    padding: 0;
    opacity: 1;
}

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

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--primary-font);
    line-height: 110%;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0;
}

.h1,
h1 {
    font-size: clamp(32px, 2.51vw, 48px);
}

.h2,
h2 {
    font-size: clamp(32px, 2.51vw, 48px);
}

.h3,
h3 {
    font-size: clamp(28px, 2.20vw, 42px);
}

.h4,
h4 {
    font-size: clamp(24px, 1.68vw, 32px);
}

.h5,
h5 {
    font-size: clamp(20px, 1.26vw, 24px);
}

.h6,
h6 {
    font-size: clamp(18px, 1.05vw, 20px);
}

p {
    margin: 0 0 24px;
}

p:last-child {
    margin: 0;
}

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

em {
    font-style: italic;
}

h2 strong,
h2 b {
    font-weight: 700;
    color: var(--secondary-color);
}

strong,
b {
    font-weight: 700;
    color: var(--primary-color);
}

.ptb-200 {
    padding: clamp(60px, 10.43vw, 200px) 0 !important;
}

.pt-200 {
    padding-top: clamp(60px, 10.43vw, 200px) !important;
}

.pb-200 {
    padding-bottom: clamp(60px, 10.43vw, 200px) !important;
}

.ptb-160 {
    padding: clamp(60px, 8.34vw, 160px) 0 !important;
}

.pt-160 {
    padding-top: clamp(60px, 8.34vw, 160px) !important;
}

.pb-160 {
    padding-bottom: clamp(60px, 8.34vw, 160px) !important;
}

.ptb-130 {
    padding: clamp(60px, 6.78vw, 130px) 0 !important;
}

.pt-130 {
    padding-top: clamp(60px, 6.78vw, 130px) !important;
}

.pb-130 {
    padding-bottom: clamp(60px, 6.78vw, 130px) !important;
}

.ptb-120 {
    padding: clamp(60px, 6.26vw, 120px) 0 !important;
}

.pt-120 {
    padding-top: clamp(60px, 6.26vw, 120px) !important;
}

.pb-120 {
    padding-bottom: clamp(60px, 6.26vw, 120px) !important;
}

.ptb-100 {
    padding: clamp(60px, 5.22vw, 100px) 0 !important;
}

.pt-100 {
    padding-top: clamp(60px, 5.22vw, 100px) !important;
}

.pb-100 {
    padding-bottom: clamp(60px, 5.22vw, 100px) !important;
}

.pt-260 {
    padding-top: clamp(150px, 13.55vw, 260px) !important;
}

.primary-btn,
.secondary-btn {
    font-family: var(--primary-font);
    border-radius: 0px;
    border: solid 1px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    display: inline-flex;
    -webkit-transition: all 0.7s;
    -o-transition: all 0.7s;
    transition: all 0.7s;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.primary-btn {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white-color);
}

.primary-btn:hover,
.primary-btn:focus {
    background: var(--white-color);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.secondary-btn {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.secondary-btn:hover,
.secondary-btn:focus {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

section *:last-child {
    margin-bottom: 0;
}

.container {
    width: 100%;
    max-width: 1440px;
    padding: 0 20px;
    margin: 0 auto;
}

.container2 {
    width: 100%;
    max-width: 1760px;
    padding: 0 20px;
    margin: 0 auto;
}

.img-cover {
    width: 100%;
    height: auto;
}

.img-cover iframe,
.img-cover video,
.img-cover img {
    width: 100% !important;
    height: 100% !important;
    transition: all 0.4s ease;
    transform: scale(1);
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover;
    object-position: center;
    display: block;
}


/*Form Input Field*/

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
    font-family: var(--primary-font);
    width: 100%;
    border: none;
    border-top: solid 2px var(--primary-color);
    background: var(--white-color);
    border-radius: 0px;
    height: 50px;
    padding: 14px 0px;
    font-size: clamp(18px, 1.16vw, 22px);
    font-weight: 700;
    line-height: 120%;
    color: var(--primary-color);
    display: block;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.contact-form .selector-block select {
    appearance: none;
    border: none;
}

.selector-block,
.contact-form .selector-block {
    position: relative;
    display: inline-block;
}

.selector-block:after,
.selector-block:after,
.contact-form .selector-block:after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 70% 50%;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    pointer-events: none;
    background-image: url(../images/arrow-banner1.svg);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
}

.form-section .field p {
    max-width: 100%;
}

.select-service {
    border-top: solid 2px var(--primary-color);
}

.contact-form .selector-block select {
    appearance: none;
    border: none;
    min-width: 190px !important;
    width: auto;
    padding-right: 35px;
    height: 40px;
}

.contact-form .selector-block .primary-btn:hover,
.contact-form .selector-block .primary-btn:focus {
    background-color: var(--secondary-color);
    color: var(--white-color);
    border: solid 1px var(--secondary-color) !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

textarea {
    min-height: 100px;
    border: solid 2px var(--primary-color);
    padding: 20px;
}

input::placeholder,
textarea::placeholder {
    color: var(--primary-color);
}

label {
    margin: 14px 0;
    font-size: clamp(18px, 1.16vw, 22px);
    font-weight: 700;
    line-height: 130%;
    color: var(--primary-color);
    font-family: var(--primary-font);
}

.wpcf7-radio label {
    cursor: pointer;
}

.wpcf7-radio label span.wpcf7-list-item-label {
    margin: 0;
    color: var(--black-color);
}

::-webkit-input-placeholder {
    color: var(--primary-color);
    opacity: 1;
}

:-moz-placeholder {
    color: var(--primary-color);
    opacity: 1;
}


/* Firefox 18- */

::-moz-placeholder {
    color: var(--primary-color);
    opacity: 1;
}


/* Firefox 19+ */

:-ms-input-placeholder {
    color: var(--primary-color);
    opacity: 1;
}

.bottom-line {
    position: relative;
}

.bottom-line:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 90px;
    height: 3px;
    border-radius: 10px;
    background-color: var(--secondary-color);
}


/* Header start */

.header {
    padding: clamp(30px, 3.14vw, 60px) 0;
    background: #e7e8eb;
}

.header-right {
    padding-bottom: 20px;
}

.header .logo img {
    width: 100%;
    max-width: clamp(170px, 15.12vw, 290px);
    height: auto;
}

.header-right nav>ul>li {
    position: relative;
    margin-left: 20px;
}

.header-right nav>ul>li:first-child {
    margin: 0;
    padding: 0;
}

.header-right nav>ul>li>a {
    color: var(--primary-color);
    line-height: 100%;
    display: block;
    font-weight: 400;
    font-size: clamp(16px, 0.90vw, 17px);
    font-family: var(--primary-font);
}

.header-right nav>ul>li>a:hover,
.header-right nav>ul>li.active>a {
    font-weight: 700;
}

.header-right nav>ul>li>a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    transform-origin: 0% 100%;
    transform: scaleX(0);
    border-radius: 20px;
    transition: transform 0.5s ease-in-out;
}

.header-right nav>ul>li>a:hover:before,
.header-right nav>ul>li.active>a:before {
    transform: scaleX(1);
}

.social-links {
    padding-left: 25px;
}

.social-links a {
    width: 17px;
    height: 17px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px transparent;
    padding: 15px;
}

.social-links a:hover {
    border-color: var(--primary-color);
}

.social-links a:first-child {
    margin: 0;
}

.social-links a.instagram-icon {
    background-image: url(../images/insta-icon.svg);
}

.social-links a.facebook-icon {
    background-image: url(../images/facebook-icon.svg);
}

.social-links a.linkedin-icon {
    background-image: url(../images/linkedin-icon.svg);
}


/* Sticky nav */

.sticky-menu {
    right: 110px;
    top: 95px;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: all ease 1s;
}

.nav-fixed .sticky-menu {
    visibility: visible;
    z-index: 99;
    opacity: 1;
}

.sticky-menu.active .navbar-collapse {
    display: block;
}

.sticky-menu .navbar-collapse {
    background: var(--white-color);
    padding: 15px 20px;
    margin-top: 15px;
    display: none;
}

.sticky-menu .navbar-collapse ul li+li {
    margin-top: 10px;
}

.sticky-menu .navbar-collapse ul li {
    text-align: end;
}

.sticky-menu .navbar-collapse ul li a {
    color: var(--primary-color);
    line-height: 100%;
    display: inline-block;
    font-weight: 400;
    font-size: clamp(16px, 0.90vw, 17px);
    font-family: var(--primary-font);
    text-align: right;
    position: relative;
}

.sticky-menu .navbar-collapse ul li.active>a,
.sticky-menu .navbar-collapse ul li a:hover {
    font-weight: 700;
}

.sticky-menu .navbar-collapse ul li a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    transform-origin: 0% 100%;
    transform: scaleX(0);
    border-radius: 20px;
    transition: transform 0.5s ease-in-out;
}

.sticky-menu .navbar-collapse ul li a:hover:before,
.sticky-menu .navbar-collapse ul li.active>a:before {
    transform: scaleX(1);
}

.sticky-menu .navbar-toggler {
    width: 55px;
    padding: 0;
    height: 46px;
    border: 0;
    margin: 0 0 0 auto;
    border-radius: 0;
    cursor: pointer;
    background: var(--white-color);
    padding: 10px;
}

.sticky-menu .navbar-toggler span {
    display: block;
    position: relative;
    background: #cba258;
    height: 2px;
    top: 12px;
}

.sticky-menu .navbar-toggler span:after,
.sticky-menu .navbar-toggler span:before {
    content: '';
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    position: absolute;
    top: -12px;
    transition: all ease 0.5s;
    border-radius: 5px;
}

.sticky-menu .navbar-toggler span:before {
    top: auto;
    bottom: -12px;
}

.sticky-menu.active .navbar-toggler span {
    background: transparent;
}

.sticky-menu.active .navbar-toggler span:after {
    transform: rotate(45deg);
    top: 0;
}

.sticky-menu.active .navbar-toggler span:before {
    transform: rotate(-45deg);
    bottom: 0;
}


/* .Header css end */


/* Home Section 1 start  */

.home-section1 {
    padding: clamp(80px, 6.78vw, 130px) 0 clamp(250px, 18.76vw, 360px) 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home-section1 .img-cover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

.home-section1 .img-cover:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 2;
}

.home-section1 .bird-img {
    position: absolute;
    top: -8%;
    right: 38%;
    width: clamp(80px, 6.83vw, 131px);
}

.home-section1 .hero-caption-wrapper {
    width: 100%;
    max-width: 85%;
}

.home-section1 .hero-caption-wrapper h1 {
    margin-bottom: clamp(30px, 2.87vw, 55px);
    font-weight: 500;
}

.home-section1 .hero-caption-wrapper h2 {
    margin-top: clamp(30px, 2.87vw, 55px);
    font-weight: 500;
}

.home-section1 .hero-caption-wrapper p {
    color: var(--text-color);
    font-family: var(--secondary-font);
    width: 100%;
    max-width: 710px;
    font-weight: 500;
    line-height: 155%;
    font-size: 16px;
}

.home-section1 .hero-caption-wrapper strong {
    font-weight: 700;
    display: block;
}

.sec-arrow {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.sec-arrow a {
    width: clamp(40px, 2.6vw, 50px);
    height: clamp(40px, 2.6vw, 50px);
    border-radius: 100px;
    border: solid 2px transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    animation: jump 3s linear alternate infinite;
}

.sec-arrow img {
    width: 16px;
    height: 16px;
    margin-top: 3px;
}

.sec-arrow a:hover {
    background: var(--white-color);
}


/* Home Section 1 end */


/* Home Section 2 start  */

.home-section2 .right-img {
    width: min(50%);
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.home-section2 .right-img img {
    margin: 0 auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-section2 .content {
    padding-right: clamp(0px, 2.61vw, 50px);
}

.home-section2 .content h2 {
    margin-bottom: clamp(30px, 2.87vw, 55px);
    color: var(--title-color);
}

.home-section2 .content p {
    width: 100%;
    max-width: 557px;
    line-height: 156%;
}

.home-section2 .content p:last-of-type {
    margin-bottom: 0;
}


/* Home Section 2 end */


/* Home Section 3 start  */

.home-section3 .content-block {
    padding: clamp(20px, 6.26vw, 120px) clamp(20px, 7.30vw, 140px);
    background-color: var(--white-color);
}

.home-section3 .content-block>.row {
    margin: -35px;
    position: relative;
}

.home-section3 .content-block>.row>div {
    padding: 35px;
}

.home-section3 .content-block .img-cover {
    --bs-aspect-ratio: 116.55%;
    width: calc(33.33333333% - 70px);
    height: calc(100% - 70px);
    position: absolute;
    top: 50%;
    left: 35px;
    transform: translateY(-50%);
}

.home-section3 .content-block h2 {
    margin-bottom: clamp(50px, 3.66vw, 70px);
    color: var(--title-color);
    font-weight: 500;
    letter-spacing: 1.2px;
}

.home-section3 .content-block h3 {
    font-weight: 500;
    letter-spacing: 0;
}

.home-section3 .content-block .row.inner-row {
    margin: -65px;
}

.home-section3 .content-block .row.inner-row>div {
    padding: 65px;
}

.home-section3 .content-block .box:before {
    content: "";
    position: absolute;
    top: 0;
    right: -65px;
    height: 100%;
    width: 3px;
    background-color: var(--secondary-color);
}

.home-section3 .content-block .row.inner-row>div:nth-child(2n+2) .box:before {
    display: none;
}

.home-section3 .content-block:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    width: 100vw;
    height: 100%;
    background-color: var(--white-color);
}

.home-section3 .bg-img:before {
    content: "";
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    width: 100vw;
    height: 100%;
    background-image: url("../images/s3h-bgimg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


/* Home Section 3 end */


/* Home Section 4 start */

.home-section4 .quote-icon img {
    width: clamp(50px, 9.65vw, 185px);
    height: auto;
    object-fit: contain;
}

.home-section4 .top-content {
    width: 100%;
    max-width: 80%;
}

.home-section4 .row {
    margin: -5px;
}

.home-section4 .row>div {
    padding: 5px;
}


/* Home Section 4 end */


/* Home Section 5 start */

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

.home-section5 .bottom-line:before {
    left: 50%;
    transform: translateX(-50%);
}

.icon img {
    width: auto;
    height: clamp(70px, 5.22vw, 100px);
    object-fit: scale-down;
}

.home-section5 .content h3 {
    font-weight: 500;
    letter-spacing: -0.2px;
}

.home-section5 .content p {
    font-family: var(--secondary-font);
    line-height: 150%;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.home-section5 .content,
.home-section5 .content>div {
    height: 100%;
}

.home-section5 .content:before {
    content: "";
    position: absolute;
    top: 0;
    right: -14px;
    height: 100%;
    width: 3px;
    background-color: var(--secondary-color);
}

.home-section5 .row>div:last-of-type .content:before {
    display: none;
}

.home-section5 .bottom-content {
    width: 100%;
    max-width: 60%;
    margin: 0 auto;
}

.home-section5 .bottom-content h3:before {
    content: "";
    position: absolute;
    top: 5%;
    left: -23%;
    width: clamp(90px, 9.65vw, 185px);
    height: clamp(75px, 7.72vw, 148px);
    background-image: url(../images/quote-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}


/* Home Section 5 end */


/* Home Section 6 start */

.home-section6 .top-content {
    padding-bottom: clamp(50px, 4.18vw, 80px);
}

.home-section6 .bottom-line:before {
    left: 50%;
    transform: translateX(-50%);
}

.home-section6 .content .img-cover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

.home-section6 .content .img-cover:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 2;
}

.home-section6 .content .img-cover img {
    transition: all 1s ease-in-out;
    transform: scale(1.02);
}

.home-section6 .content:hover .img-cover img {
    transform: scale(1.2);
}

.home-section6 .content h3 {
    margin-bottom: 40px;
}

.home-section6 .content p {
    font-weight: 900;
    font-family: var(--secondary-font);
    line-height: 150%;
    width: 100%;
    max-width: 402px;
    margin: 0 auto;
    letter-spacing: 0;
}

.home-section6 .row {
    margin: -0px;
}

.home-section6 .row>div {
    padding: 0px;
}

.home-section6 .content {
    padding: clamp(80px, 7.82vw, 150px) 20px;
    height: 100%;
}


/* Home Section 6 end */


/* Home Section 7 start  */

.home-section7 .content-block {
    padding: clamp(20px, 6.26vw, 120px) clamp(20px, 5.22vw, 100px);
    padding-right: 0 !important;
    background-color: var(--white-color);
}

.home-section7 .content-block:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    width: 100vw;
    height: 100%;
    background-color: var(--white-color);
}

.home-section7 .bg-img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    width: 100vw;
    height: 100%;
    background-image: url("../images/s7h-bgimg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.home-section7 .content-block h2 {
    margin-bottom: clamp(50px, 3.14vw, 60px);
    color: var(--title-color);
    padding-left: 20px;
}

.home-section7 .bottom-line:before {
    left: 20px;
}

.home-section7 .content-block p {
    font-size: clamp(16px, 1.0vw, 19px);
    font-weight: 700;
    line-height: 152%;
    color: var(--primary-color);
    margin-bottom: clamp(24px, 1.57vw, 30px);
    letter-spacing: 0.3px;
    font-family: var(--primary-font);
}

.home-section7 .content-block span {
    font-size: 15px;
    font-style: italic;
    font-family: var(--primary-font);
    color: var(--text-color);
}

.home-section7 .icon img {
    width: 60px;
    height: auto;
    object-fit: contain;
}

.home-section7 .content-block .box {
    width: 100%;
    max-width: 355px;
}

.home-section7 .content-block .box:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -36px;
    height: calc(100% - 65px);
    width: 3px;
    background-color: var(--secondary-color);
}

.home-section7 .content-block .items:first-of-type .box:before {
    display: none;
}

.home-section7 .slick-track {
    display: flex !important;
    align-items: stretch;
}

.home-section7 .items.slick-slide {
    height: auto !important;
    display: flex !important;
    align-items: stretch;
    padding: 0 30px;
}

.home-section7 .slider-1:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 15px;
    height: 100%;
    background-color: var(--white-color);
    z-index: 2;
}

.slick-disabled {
    opacity: 0;
    pointer-events: none;
}


/* Home Section 7 end */


/* Home Section 8 Start */

.home-section8 .right-img {
    width: min(50%);
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.home-section8 .right-img img {
    margin: 0 auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-section8 .content {
    padding-right: clamp(0px, 2.61vw, 50px);
}

.home-section8 .content h2 {
    margin-bottom: clamp(30px, 2.87vw, 55px);
    color: var(--title-color);
}

.home-section8 .content p {
    width: 100%;
    max-width: 560px;
    line-height: 156%;
}

.home-section8 .content p:last-of-type {
    margin-bottom: 0;
}

.home-section8 .list-items img {
    width: auto;
    height: clamp(70px, 5.22vw, 100px);
    object-fit: scale-down;
}

.home-section8 .list-items {
    gap: 0px 100px;
    margin-top: clamp(30px, 2.87vw, 55px);
}

.home-section8 .list-items li {
    width: 100%;
    max-width: calc(50% - 50px);
    gap: clamp(20px, 1.26vw, 24px);
    padding-bottom: 40px;
    position: relative;
}

.home-section8 .list-items li:nth-child(2n+2):before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -38%;
    height: 100%;
    width: 3px;
    background-color: var(--secondary-color);
}

.home-section8 .list-items li:nth-last-of-type(-n+2) {
    padding-bottom: 0 !important;
}

.home-section8 .list-items p {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--secondary-font);
    margin-top: 10px;
    width: 100%;
    max-width: 200px;
}


/* Home Section 8 end */


/* Home Section 9 Start */

.home-section9 h2 {
    color: var(--title-color);
}

.home-section9 .email-field {
    width: 100%;
    max-width: 575px;
}

.home-section9 input[type="email"] {
    border: solid 1px var(--secondary-color);
    padding: 10px 20px;
    font-size: 18px;
    height: 60px;
}


/* Home Section 9 end */


/* About Section 1 Start */

.about-section1 {
    margin-top: -40px;
    z-index: 9;
}

.about-section1 .img-cover img {
    object-position: top !important;
}


/* About Section 1 end */


/* About Section 2 Start */

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

.about-section2 h2 {
    font-weight: 400;
}

.about-section2 h2 strong {
    font-weight: 700;
    color: var(--primary-color);
}


/* About Section 2 end */


/* About Section 3 start  */

.about-section3 .bg-img:before {
    background-image: url(../images/s3a-bg-img.jpg);
    left: 0;
    right: auto;
}

.about-section3 .content-block {
    padding-right: 0 !important;
}


/* About Section 3 end */


/* About Section 4 start  */

.about-section4 .top-content {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
}

.about-section4 h2 {
    font-weight: 400;
}

.about-section4 h2 strong {
    font-weight: 700;
    display: block;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.about-section4 .row {
    margin: -60px -15px;
}

.about-section4 .row>div {
    padding: 60px 15px;
}

.about-section4 .row>div:nth-child(1) .content {
    margin: 0 0 0 auto;
}

.about-section4 .row>div:nth-child(2) .content {
    margin: 0 auto 0 0;
}

.about-section4 .row>div:nth-child(2) .content:before {
    display: none;
}

.about-section4 .content {
    width: 100%;
    max-width: 475px;
}


/* About Section 4 end */


/* About Section 5 start  */

.about-section5 .right-img {
    width: 100%;
    --bs-aspect-ratio: 117.25%;
    position: relative;
}

.about-section5 .content {
    padding-right: 0;
    padding-left: clamp(0px, 2.61vw, 50px);
}

.about-section5 .content p {
    max-width: 650px;
}


/* About Section 5 end */


/* About Section 6 start  */

.about-section6 .content h2 {
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 0;
}

.about-section6 .content h2:before {
    content: "";
    background-image: url("../images/s6a-icon.svg");
    display: block;
    width: clamp(50px, 7.93vw, 152px);
    height: clamp(50px, 7.93vw, 152px);
    flex: 0 0 clamp(50px, 7.93vw, 152px);
    margin-right: clamp(10px, 1.57vw, 30px);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.about-section6 .content h2 strong {
    font-weight: 700;
    display: block;
    color: var(--primary-color);
}

.about-section6 .right-img {
    width: min(32%);
}

.about-section6 .content {
    padding-right: clamp(80px, 7.82vw, 150px);
}


/* About Section 6 end */


/* About Section 7 start  */

.about-section7 .bg-img:before {
    background-image: url(../images/s7a-bg-img.jpg);
}

.about-section7 .content-block h2 {
    font-size: clamp(28px, 1.83vw, 35px);
}

.about-section7 .content-block .box:before {
    display: none;
}

.about-section7 .content-block ul {
    display: inline-block;
    padding: 0;
    margin: 0;
}

.about-section7 .content-block ul li {
    list-style: none;
    padding: 0 0 0 30px;
    margin: 0 0 10px 0;
    position: relative;
    font-family: var(--secondary-font);
    font-size: clamp(20px, 1.26vw, 24px);
    color: var(--text-color);
    font-weight: 700;
    line-height: 120%;
}

.about-section7 .content-block ul li:last-of-type {
    margin-bottom: 0;
}

.about-section7 .content-block ul li:before {
    display: block;
    content: "";
    width: 10px;
    height: 10px;
    background: var(--text-color);
    border-radius: 24px;
    position: absolute;
    left: 0;
    top: 13px;
}

.about-section7 .content-block .img-cover {
    --bs-aspect-ratio: 70%;
    width: calc(50% - 70px);
}


/* About Section 7 end */


/* About Section 8 start  */

.about-section8 .content h2 {
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 0;
}

.about-section8 .content h2:before {
    content: "";
    background-image: url("../images/quote-icon.svg");
    display: block;
    width: clamp(50px, 7.93vw, 152px);
    height: clamp(50px, 7.93vw, 152px);
    flex: 0 0 clamp(50px, 7.93vw, 152px);
    margin-right: clamp(10px, 1.57vw, 30px);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.about-section8 .content h2 strong {
    font-weight: 700;
    display: block;
    color: var(--primary-color);
}

.about-section8 .right-img {
    width: min(44%);
}

.about-section8 .content {
    padding-right: clamp(80px, 7.82vw, 150px);
    padding-top: 50px;
    padding-bottom: 50px;
    width: 100%;
    max-width: 885px;
}


/* About Section 8 end */


/* About Section 9 start  */

.about-section9 .content-wrapper .bottom-line:before {
    left: 50%;
    transform: translateX(-50%);
}

.about-section9 .content-wrapper h2 {
    color: var(--title-color);
}


/* About Section 9 end */


/* Service Section 2 start  */

.service-section2 .top-content {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

.service-section2 h2 {
    font-weight: 400;
    margin-bottom: clamp(30px, 2.87vw, 55px);
}

.service-section2 h3 {
    margin-top: clamp(30px, 2.87vw, 55px);
    font-weight: 500;
}

.service-section2 h2 strong {
    font-style: normal;
    font-weight: 700;
    display: block;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.service-section2 .row {
    margin: -60px -15px;
}

.service-section2 .row>div {
    padding: 60px 15px;
}

.service-section2 .content:before {
    height: calc(100% - clamp(95px, 6.52vw, 125px));
    top: auto;
    bottom: 0;
}

.service-section2 .row>div:nth-child(3n+3) .content:before {
    display: none;
}

.service-section2 .content p {
    max-width: 335px;
}


/* Service Section 2 end */


/* Service Section 3 start  */

.service-section3 .content {
    padding-top: 0px;
    padding-bottom: 0px;
}

.service-section3 .content h2:before {
    background-image: url(../images/s6a-icon.svg);
}

.service-section3 .content h2 {
    font-weight: 400;
}

.service-section3 .content h2 strong {
    font-style: normal;
    font-weight: 700;
    display: inline;
}


/* Service Section 3 end */


/* Service Section 4 start  */

.service-section4 .content-block h2,
.service-section4 .content-block h3 {
    font-weight: 400;
    color: var(--title-color);
}

.service-section4 .content-block .img-cover {
    --bs-aspect-ratio: 100%;
    width: calc(33.33333333% - 70px);
}

.service-section4 .bg-img:before {
    background-image: url(../images/s4s-bg-img.jpg);
}

.service-section4 .content-block p {
    width: 100%;
    max-width: 560px;
}


/* Service Section 4 end */


/* Service Section 5 start  */

.service-section5 .content p {
    max-width: 330px;
}


/* Service Section 5 end */


/* Service Section 7 start  */

.service-section7 .top-content {
    max-width: 1020px;
}


/* Service Section 7 end  */


/* Service Section 10 start  */

.service-section10 .bg-img:before {
    background-image: url(../images/s10s-bgimg.jpg);
}

.service-section10 .content-block {
    padding-right: 0;
}

.service-section10 .content-block h2,
.service-section10 .content-block h3 {
    color: var(--title-color);
    position: relative;
}

.service-section10 .content-block h3 {
    margin-bottom: clamp(50px, 3.66vw, 70px);
    font-size: clamp(28px, 1.83vw, 35px);
}

.service-section10 .content-block h2 {
    margin-bottom: 0;
}

.service-section10 .content-block .inner-row h3 {
    font-weight: 500;
    letter-spacing: 0;
    color: var(--primary-color);
    font-size: clamp(24px, 1.68vw, 32px);
}


/* Service Section 10 end */


/* Contact Section start  */

.contact-section1 .img-cover:after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 36%, rgba(255, 0, 0, 0) 82%);
}

.contact-section1 .hero-caption-wrapper p {
    max-width: 310px;
}

.contact-section2 .bottom-line:before {
    left: 50%;
    transform: translateX(-50%);
}

.contact-form p {
    font-size: clamp(18px, 1.16vw, 22px);
    font-weight: 700;
    line-height: 130%;
    color: var(--text-color);
    font-family: var(--third-font);
    margin-bottom: 0px;
}

.contact-form a {
    font-size: clamp(18px, 1.16vw, 22px);
    font-weight: 700;
    line-height: 130%;
    color: var(--primary-color);
    font-family: var(--primary-font);
}

.contact-form a:hover {
    color: var(--secondary-color);
}

.contact-form .button-block {
    margin-top: clamp(40px, 3.66vw, 70px);
}

.contact-form {
    position: relative;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

.contact-form:before {
    content: "";
    background-image: url(../images/s6a-icon.svg);
    display: block;
    width: clamp(50px, 4.18vw, 80px);
    height: clamp(50px, 4.18vw, 80px);
    flex: 0 0 clamp(50px, 4.18vw, 80px);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 0;
    left: -120px;
}


/* Contact Section end */


/* Resources Section 1 start  */

.resources-section1 .img-cover:after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 36%, rgba(255, 0, 0, 0) 82%);
}

.resources-section1 .bird-img {
    width: clamp(80px, 7.98vw, 153px);
    top: -28%;
    right: 47%;
}


/* Resources Section 1 end */


/* Resources Section 2 start  */

.resources-section2 .hero-caption-wrapper h2 {
    margin-bottom: clamp(30px, 2.87vw, 55px);
}

.resources-section2 .hero-caption-wrapper h3 {
    font-weight: 500;
}

.resources-section2 .bottom-line:before {
    left: 50%;
    transform: translateX(-50%);
}


/* Resources Section 2 end */


/* Resources Section 3 start */

.resources-section3 .container {
    max-width: 1540px;
}

.resources-section3 .top-content {
    margin-bottom: clamp(50px, 4.18vw, 80px);
}

.resources-section3 .top-content h2 {
    margin-bottom: clamp(30px, 2.09vw, 40px);
}

.resources-section3 .top-content h3 {
    font-weight: 400;
}

.resources-section3 .bottom-line:before {
    left: 50%;
    transform: translateX(-50%);
}

.resources-section3 .content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.resources-section3 .content .img-cover {
    --bs-aspect-ratio: 78.5%;
}

.resources-section3 .content .img-cover img {
    transition: all 1s ease;
}

.resources-section3 .content h3 {
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.resources-section3 .content p {
    font-size: 16px;
    line-height: 156%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.resources-section3 .content .date {
    font-size: clamp(16px, 1.10vw, 21px);
    font-weight: 500;
    color: var(--title-color);
    line-height: 171%;
    font-family: var(--primary-font);
}

.resources-section3 .content:hover .img-cover img {
    transform: scale(1.2);
}

.resources-section3 .slick-track {
    display: flex !important;
    align-items: stretch;
}

.resources-section3 .slick-slide {
    height: auto !important;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    gap: clamp(60px, 6.78vw, 130px);
}

.resources-section3 .slider-block .slick-slide .items {
    padding: 0 50px;
}

.resources-section3 .slider-block .slick-slide>div,
.resources-section3 .slider-block .slick-slide>div .items {
    height: 100%;
}

.resources-section3 .slider-block .slick-list {
    padding-bottom: 60px;
}

.resources-section3 .slider-block .content:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -51px;
    height: 100%;
    width: 3px;
    background-color: var(--secondary-color);
}

.resources-section3 .slider-block:before,
.resources-section3 .slider-block:after {
    content: "";
    top: 0;
    position: absolute;
    width: 50px;
    height: 100%;
    background-color: var(--white-color);
    z-index: 2;
}

.resources-section3 .slider-block:before {
    right: 0;
}

.resources-section3 .slider-block:after {
    left: 0;
}


/* Resources Section 3 end */


/* Resources Section 6 start */

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

.resources-section6 .bottom-line:before {
    left: 50%;
    transform: translateX(-50%);
}

.resources-section6 .slider-block .items .content {
    margin-bottom: clamp(50px, 4.18vw, 80px);
}

.resources-section6 .slider-block .items .content:last-of-type {
    margin-bottom: 0;
}

.resources-section6 .slider-block .slick-list {
    padding-bottom: 60px;
}


/* Resources Section 6 end */


/* Resources Section 7 start */

.popup-section .modal-content {
    border-radius: 0;
    padding: clamp(40px, 4.70vw, 90px) 40px;
    text-align: center;
}

.popup-section .modal-content form {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
}


/* Resources Section 7 end */


/* Resources Details start */

.resources-details .top-content h1 {
    margin-bottom: clamp(40px, 4.70vw, 90px);
    font-weight: 500;
}

.resources-details .top-content .img-cover {
    margin: clamp(40px, 4.70vw, 90px) 0;
}

.resources-details .details-content h1,
.resources-details .details-content h2,
.resources-details .details-content h3,
.resources-details .details-content h4 {
    margin-bottom: 24px;
}

.spacing {
    margin: 24px 0;
    display: flex;
}

.resources-details .details-content strong {
    color: var(--primary-color);
}


/* Resources Details end */


/* Footer Section start */

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

.footer .social-link img {
    width: 20px;
    height: 20px;
}

.footer .logo img {
    max-width: clamp(170px, 15.12vw, 290px);
    width: 100%;
}

.footer .logo a {
    display: inline-block;
}

.footer .social-link a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px transparent;
}

.footer .social-link a:hover {
    border-color: var(--primary-color);
}

.footer .social-link {
    position: absolute;
    right: 0;
    bottom: -5%;
}

.footer .footer-menu {
    padding-right: 105px;
}

.footer .footer-contact {
    width: 100%;
    max-width: 430px;
}

.footer .footer-nav {
    width: 100%;
    max-width: 630px;
}

.footer .footer-nav p {
    font-size: clamp(16px, 1.0vw, 19px);
    font-weight: 700;
    font-family: var(--primary-font);
    line-height: 150%;
    color: var(--primary-color);
}

.footer .logo {
    width: 100%;
    max-width: 290px;
}

.footer .btn-wrapper .primary-btn {
    color: var(--white-color);
}

.footer .btn-wrapper .primary-btn:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.footer .footer-menu li a {
    color: var(--primary-color);
    line-height: 100%;
    display: block;
    font-weight: 400;
    font-size: clamp(16px, 0.90vw, 17px);
    font-family: var(--primary-font);
    margin: 0;
    position: relative;
}

.footer .footer-menu li a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    transform-origin: 0% 100%;
    transform: scaleX(0);
    border-radius: 50px;
    transition: transform 0.5s ease-in-out;
}

.footer .footer-menu li.active a:before,
.footer .footer-menu li a:hover:before {
    transform: scaleX(1);
}

.footer .footer-menu li.active a,
.footer .footer-contact a:hover,
.footer .footer-menu li a:hover {
    color: var(--primary-color);
}

.footer .footer-contact a:hover {
    text-decoration: underline;
}

.footer .footer-contact p {
    color: var(--primary-color);
    line-height: 170%;
    display: block;
    font-weight: 400;
    font-size: clamp(16px, 0.90vw, 17px);
    font-family: var(--primary-font);
    margin: 0
}

.footer .footer-contact p strong {
    color: var(--primary-color);
    font-weight: 500;
}

.footer .footer-contact a {
    color: var(--primary-color);
}

.footer .footer-contact .copy-title {
    font-size: 12px;
    font-family: var(--secondary-font);
    color: var(--text-color);
}


/* Footer Section End */


/*======================================================================
=============================:: MEDIA CSS ::============================
=======================================================================*/

@media (min-width: 2400px) {
    /* About Section 1 Start */
    .about-section1 {
        margin-top: -80px;
    }
}

@media (max-width: 1699px) {
    /** Header Start **/
    .sticky-menu {
        right: 20px;
        top: 85px;
    }
}

@media (max-width: 1550px) {
    /** Header Start **/
    .sticky-menu {
        right: 20px;
        top: 60px;
    }
    /* About Section 6 start  */
    .about-section6 .content {
        width: 100%;
        max-width: 840px;
    }
    /* About Section 8 start  */
    .about-section8 .content {
        max-width: 725px;
    }
    .service-section4 .content-block .img-cover {
        --bs-aspect-ratio: 94%;
    }
    /* Contact Section start  */
    .contact-form:before {
        left: -80px;
    }
    /* Resources Section 1 start  */
    .resources-section1 .bird-img {
        top: -25%;
        right: 45%;
    }
    /* Footer Section start */
    .footer .social-link {
        right: 27%;
    }
}

@media (max-width: 1440px) {
    /* Footer Section start */
    .footer .footer-menu {
        padding-right: 0;
    }
    .footer .social-link {
        position: static;
        margin-top: 20px;
    }
    /* Contact Section start  */
    .contact-form:before {
        left: -70px;
    }
    /* Resources Section 1 start  */
    .resources-section1 .bird-img {
        top: -25%;
        right: 50%;
    }
}

@media (max-width: 1299px) {
    /** Header Start **/
    .header-inner {
        padding: 0;
    }
    .sticky-menu {
        right: 20px;
        top: 15px;
    }
    /* Contact Section start  */
    .contact-form:before {
        position: static;
    }
}

@media only screen and (max-width: 1199px) {
    /** Header Start **/
    .sticky-menu {
        top: 50px;
    }
    .header {
        padding: 20px 0;
    }
    .social-links {
        padding: 0 10px 0 0;
    }
    .header-right {
        padding: 0 60px 0 0;
        justify-content: end !important;
    }
    .social-links a {
        margin-left: 10px;
    }
    .header-inner {
        align-items: center !important;
    }
    .sticky-menu {
        z-index: 999;
        visibility: visible;
        opacity: 1;
        right: 20px;
        top: 40px;
    }
    .header-right nav {
        display: none;
    }
    .header-right {
        padding-right: 50px;
        width: auto;
        margin-left: auto;
    }
    /* Home Section 7 start  */
    .home-section7 .content-block .box {
        max-width: 100%;
    }
    /* Resources Section 1 start  */
    .resources-section1 .bird-img {
        top: -15%;
    }
    /* Home Section 3 start  */
    .home-section3 .content-block>.row {
        margin: -15px;
    }
    .home-section3 .content-block>.row>div {
        padding: 15px;
    }
    .home-section3 .content-block .img-cover {
        width: calc(33.33333333% - 30px);
        height: calc(100% - 30px);
        left: 15px;
    }
    .home-section3 .content-block .box:before {
        right: -20px;
    }
    .home-section3 .content-block .row.inner-row>div {
        padding: 20px;
    }
    .home-section3 .content-block .row.inner-row {
        margin: -20px;
    }
    .home-section3 .content-block {
        padding: 40px;
    }
    /* About Section 7 start  */
    .about-section7 .content-block .img-cover {
        width: calc(50% - 30px);
    }
    /* Service Section 4 start  */
    .service-section4 .content-block .img-cover {
        width: calc(33.33333333% - 30px);
    }
}

@media only screen and (max-width: 991px) {
    /* Home Section 2 start */
    .home-section2 .right-img {
        width: 100%;
        position: relative;
    }
    .home-section2 .content {
        padding-right: 0;
    }
    .home-section2 .content p {
        max-width: 100%;
    }
    /* Home Section 3 start */
    .home-section3 .content-block .img-cover {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        --bs-aspect-ratio: 88.55%;
    }
    /* Home Section 8 start */
    .home-section8 .right-img {
        width: 100%;
        position: relative;
        --bs-aspect-ratio: 70.25%;
    }
    /* About Section 3 start  */
    .about-section3 .bg-img .container {
        padding-right: 0;
    }
    .about-section3 .content-block {
        padding-left: 20px !important;
        padding-top: 20px !important;
    }
    .about-section3 .content-block .img-cover {
        --bs-aspect-ratio: 80.55%;
    }
    /* Home Section 2 start */
    .about-section5 .content {
        padding-left: 0;
    }
    /* About Section 8 start  */
    .about-section8 .content {
        padding-bottom: 0
    }
    /* Resources Section 3 start */
    .resources-section3 .slider-block .slick-slide .items {
        padding: 0 20px;
    }
    .resources-section3 .slider-block:before,
    .resources-section3 .slider-block:after {
        width: 20px;
    }
    .resources-section3 .slider-block .content:before {
        left: -21px;
    }
    .resources-section3 .slider-block .content:after {
        right: -21px;
    }
    /* Footer Section start */
    .footer .logo {
        order: 1;
        text-align: center;
    }
    .footer .footer-contact {
        order: 3;
    }
    .footer .footer-nav {
        order: 2;
    }
}

@media only screen and (max-width: 767px) {
    /* Home Section 1 start */
    .home-section1 .hero-caption-wrapper,
    .home-section1 .hero-caption-wrapper p {
        max-width: 100%;
    }
    .home-section1 .bird-img {
        top: -2%;
        width: clamp(60px, 6.83vw, 131px);
    }
    /* Home Section 2 start */
    .home-section2 .right-img {
        --bs-aspect-ratio: 72.25%;
    }
    /* Home Section 3 start  */
    .home-section3 .bg-img .container2 {
        padding: 0;
    }
    .home-section3 .content-block>.row {
        margin: -20px;
    }
    .home-section3 .content-block>.row>div {
        padding: 20px;
    }
    .home-section3 .content-block .box:before {
        top: auto;
        bottom: -40px;
        right: auto;
        height: 3px;
        width: 100%;
    }
    .home-section3 .content-block .row.inner-row>div {
        padding: 40px;
    }
    .home-section3 .content-block .row.inner-row {
        margin: -40px;
    }
    .home-section3 .content-block {
        padding: 20px;
    }
    /* Home Section 4 start  */
    .home-section4 .top-content {
        max-width: 100%;
    }
    /* Home Section 5 start  */
    .home-section5 .row {
        margin: -40px -10px;
    }
    .home-section5 .row>div {
        padding: 40px 10px;
    }
    .home-section5 .content:before {
        top: auto;
        right: auto;
        bottom: -42px;
        height: 3px;
        left: 0;
        width: 100%;
    }
    .home-section5 .bottom-content {
        max-width: 100%;
    }
    .home-section5 .bottom-content h3:before {
        position: static;
        display: block;
        text-align: center;
        margin: 0 auto 20px auto;
    }
    /* Home Section 7 start  */
    .home-section7 .slick-arrow.slick-prev {
        left: -20px;
    }
    /* About Section 4 start  */
    .about-section4 .row>div .content {
        margin: 0 auto !important;
    }
    .about-section4 .row>div:nth-child(2) .content:before {
        display: block;
    }
    /* About Section 5 start  */
    .about-section5 .right-img {
        --bs-aspect-ratio: 117.25%;
    }
    /* About Section 6 start  */
    .about-section6 .content {
        padding-right: 0;
    }
    /* About Section 8 start  */
    .about-section8 .content {
        padding-right: 0;
    }
    /* Resources Section 1 start  */
    .resources-section1 .bird-img {
        top: -12%;
    }
}

@media only screen and (max-width: 479px) {
    /* Home Section 8 start */
    .home-section8 .list-items {
        gap: 0px 50px;
    }
    .home-section8 .list-items li {
        max-width: calc(50% - 25px);
    }
    .home-section8 .list-items li:nth-child(2n+2):before {
        left: -20%;
    }
    /* Resources Section 1 start  */
    .resources-section1 .bird-img {
        top: -3%;
    }
}