:root {
    --black-color: #000000;
    /** var(--black-color) **/
    --white-color: #ffffff;
    /** var(--white-color) **/
    --primary-color: #0096d3;
    /** var(--primary-color) **/
    --secondary-color: #e26356;
    /** var(--secondary-color) **/
    --text-color: #414042;
    /** var(--text-color) **/
    --primary-font: "Lato", sans-serif;
    /** var(--primary-font) **/
    --secondary-font: "Noto Serif", serif;
    /** var(--secondary-font) **/
    --third-font: "Nunito", sans-serif;
    /** var(--third-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: 30px;
    height: 30px;
    text-align: center;
    font-size: 0;
    color: var(--primary-color);
    background: transparent;
    border: 1px solid var(--primary-color);
    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 {
    font-family: 'Material-Design-Iconic-Font';
    font-size: 22px;
    color: var(--primary-color);
}


/* .slick-arrow.slick-next:before {
    content: '\f2fb';
}

.slick-arrow.slick-prev:before {
    content: '\f2fa';
} */

.slick-arrow.slick-next {
    right: 0;
}

.slick-arrow.slick-prev {
    left: 0;
}

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

.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 9px;
    padding: 0;
    list-style: none;
    display: inline-block;
    vertical-align: top;
}

.slick-dots li button {
    display: block;
    width: 15px;
    height: 15px;
    font-size: 0;
    padding: 0;
    background: var(--primary-color);
    position: relative;
    border: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    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;
}


/*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: 20px;
    font-family: var(--primary-font);
    letter-spacing: clamp(0px, 0.32vw, 1px);
}

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

.details-content h2,
.details-content .h2 {
    font-size: clamp(26px, 1.62vw, 31px)
}

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

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

.details-content p {
    line-height: 1.5;
    font-family: var(--secondary-font);
    font-size: 18px;
    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;
    margin: 0 auto;
}

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

.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 {
    font-size: clamp(20px, 1.16vw, 22px);
}

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


/* Resources Details end */


/* Global start */

body {
    font-family: var(--secondary-font);
    font-size: clamp(16px, 1.0vw, 19px);
    line-height: 1.32;
    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: 125%;
    letter-spacing: 0;
    margin: 0;
    padding: 0;
}

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

.h2,
h2 {
    font-size: clamp(26px, 1.62vw, 31px);
    line-height: 140%;
    letter-spacing: clamp(3px, 0.32vw, 6px);
}

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

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

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

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

p {
    margin: 0 0 20px;
}

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-140 {
    padding: clamp(60px, 7.30vw, 140px) 0 !important;
}

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

.pb-140 {
    padding-bottom: clamp(60px, 7.30vw, 140px) !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(--secondary-font);
    border-radius: 0px;
    border: solid 2px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 700;
    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: transparent;
    border-color: var(--white-color);
    color: var(--white-color);
}

.primary-btn:hover,
.primary-btn:focus {
    background: var(--white-color);
    border-color: var(--white-color);
    color: var(--black-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: 1420px;
    padding: 0 20px;
    margin: 0 auto;
}

.container2 {
    width: 100%;
    max-width: 1340px;
    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: solid 1px #dedede;
    background: var(--white-color);
    border-radius: 5px;
    height: 54px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 120%;
    color: #6E6E6E;
    display: block;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.contact-form .contact-info {
    padding: 40px 12px clamp(40px, 4.18vw, 80px) 12px;
}

.contact-form p,
.contact-form a {
    font-size: clamp(18px, 1.26vw, 24px);
    font-weight: 500;
    color: var(--black-color);
}

.contact-form .f-phone,
.contact-form .f-phone a {
    font-size: clamp(22px, 1.57vw, 30px);
}

.contact-form span {
    font-weight: 300;
    color: red;
    text-align: left;
    font-size: 14px !important;
    margin-top: 0;
    line-height: 1.5;
}

.contact-form span.required {
    font-size: 22px !important;
}

.contact-form a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

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

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

.selector-block:after,
.contact-form .selector-block:after {
    content: '\f2f9';
    font-family: 'Material-Design-Iconic-Font';
    font-size: 20px;
    font-weight: 500;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: var(--black-color);
    pointer-events: none;
}

.contact-form .wpcf7-not-valid-tip {
    font-size: 16px;
}

.contact-form .wpcf7-spinner {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.contact-form .wpcf7 form .wpcf7-response-output {
    text-align: center;
}

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

.wpcf7-list-item.first {
    margin-left: 0;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ffb900;
    color: #ffb900;
    font-size: 14px;
}

.contact-form .row {
    margin: -10px -15px;
}

.contact-form .row>div {
    padding: 10px 15px;
}

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

textarea {
    min-height: 104px;
}

input::placeholder,
textarea::placeholder {
    color: #6E6E6E;
}

label {
    font-size: 16px;
    line-height: 100%;
    font-weight: 300;
    color: var(--black-color);
    display: flex;
    align-items: center;
    gap: 1px;
    margin-bottom: 5px;
}

.wpcf7-radio label {
    cursor: pointer;
}

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

::-webkit-input-placeholder {
    color: #6E6E6E;
    opacity: 1;
}

:-moz-placeholder {
    color: #6E6E6E;
    opacity: 1;
}


/* Firefox 18- */

::-moz-placeholder {
    color: #6E6E6E;
    opacity: 1;
}


/* Firefox 19+ */

:-ms-input-placeholder {
    color: #6E6E6E;
    opacity: 1;
}


/* video play btn */

.play-pause-btn {
    position: absolute;
    inset: 0 0 0 0;
    z-index: 1;
    cursor: pointer;
    width: 100%;
    height: 100%;
    background: transparent;
}

.play-pause-btn::before,
.play-pause-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(40px, 4.70vw, 90px);
    height: clamp(50px, 5.22vw, 100px);
    background-color: transparent;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
    border-radius: 0;
}

.play-pause-btn::before {
    background-image: url(../images/videoplay-icon.svg);
    z-index: 2;
}

.play-pause-btn::after {
    background-image: url(../images/videoplay-icon.svg);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
}

.playing.play-pause-btn::before {
    opacity: 0;
    visibility: hidden;
}

.playing.play-pause-btn::after {
    opacity: 0;
    visibility: hidden;
}


/* Header css start */

.header {
    padding: clamp(20px, 3.03vw, 58px) 0;
}

.header .logo img {
    max-width: clamp(170px, 13.906vw, 267px);
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.header .navbar-main,
.header .navbar-ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: end;
}

.navbar-ul {
    padding-right: 40px;
}

.header .nav-toggle {
    height: 16px;
    width: 35px;
    cursor: pointer;
}

.header .nav-toggle span {
    height: 2px;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    right: 0;
    transition: all 0.3s;
    border-radius: 5px;
}

.header .nav-toggle span:nth-child(1) {
    top: 0;
}

.header .nav-toggle span:nth-child(2) {
    top: 11px;
}

.header .nav-toggle span:nth-child(3) {
    top: 22px;
}

.header .active .nav-toggle span:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
}

.header .active .nav-toggle span:nth-child(2) {
    visibility: hidden;
    opacity: 0;
}

.header .active .nav-toggle span:nth-child(3) {
    top: 7px;
    transform: rotate(-45deg);
}

.header .navbar-ul li a {
    font-size: 17px;
    font-weight: 700;
    line-height: 155%;
    color: var(--text-color);
    font-family: var(--secondary-font);
    transition: all 0.3s;
    position: relative;
}

.header .navbar-ul li a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    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;
}

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

.header .navbar-ul li.active a:hover,
.header .navbar-ul li a:hover,
.header .navbar-ul li.active a {
    color: var(--primary-color) !important;
}

.social-link img {
    width: 18px;
    height: 18px;
    margin-bottom: 5px;
    margin-right: 5px;
}

body.over-hidden {
    overflow: hidden;
}

.hide {
    display: none !important;
}

.header .nav-menu-list {
    position: absolute;
    top: 60%;
    right: 0;
    width: 100%;
    max-width: 375px;
    height: 100vh;
    background: var(--white-color);
    padding: 20px;
    transition: all 0.3s;
    transform: translateX(100%);
    z-index: 9999;
}

.header .navbar-main.active .nav-menu-list {
    transform: translateX(0%);
}

.header .navbar-main {
    gap: 24px;
    justify-content: center;
    align-items: end;
}

.header .social-link img {
    width: 18px;
    height: 18px;
    margin-bottom: 5px;
    margin-right: 5px;
}

.header.revealed .nav-toggle {
    position: fixed !important;
    top: 60px;
    z-index: 99999;
}

.nav-bg {
    padding-top: 12px;
    padding-left: 8px;
    /* padding-right: 45px; */
    background-color: rgba(255, 255, 255, 0.5);
    width: 50px;
    height: 45px;
}

.header.revealed .nav-bg {
    position: fixed !important;
    top: 50px;
    z-index: 99999;
}

.header.revealed .nav-menu-list {
    position: fixed;
    top: 0;
    padding-top: 100px;
}


/* .Header css end */


/* Home Section 1 start  */

.home-section1 {
    padding: 50px 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 .hero-caption-wrapper {
    width: 100%;
    max-width: 80%;
}

.home-section1 .hero-caption-wrapper h1 {
    color: var(--white-color);
}

.home-section1 .hero-caption-wrapper p {
    color: var(--white-color);
    font-family: var(--secondary-font);
    width: 100%;
    max-width: 520px;
    font-weight: 500;
    line-height: 140%;
    margin-top: clamp(40px, 3.40vw, 65px);
    font-size: clamp(16px, 1.10vw, 21px);
}

.home-section1 .hero-caption-wrapper strong {
    font-weight: 600;
}

.sec-arrow {
    margin-top: clamp(50px, 4.70vw, 90px);
}

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

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

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


/* Home Section 1 end */


/* Home Section 2 start  */

.home-section2 {
    background: #f0efef;
    margin: clamp(20px, 2.61vw, 50px);
}

.home-section2 .content {
    border-block: solid 2px var(--secondary-color);
    padding: 34px 0 40px 0;
    height: 100%;
}

.home-section2 h2 {
    line-height: 100%;
}

.home-section2 .row {
    margin: -40px;
}

.home-section2 .row>div {
    padding: 40px;
}

.home-section2 .content h3 {
    font-size: clamp(20px, 1.31vw, 25px);
    font-weight: 700;
    font-family: var(--secondary-font);
}

.home-section2 .content p,
.home-section2 .right p {
    font-size: clamp(16px, 1.0vw, 19px);
    font-weight: 400;
    color: var(--text-color);
    font-family: var(--secondary-font);
}

.home-section2 .content strong {
    font-weight: 700;
}

.home-section2 .content img {
    width: 75px;
    height: auto;
    object-fit: scale-down;
}

.home-section2 .right ul {
    gap: 20px 20px;
}

.home-section2 .right ul li {
    width: 100%;
    max-width: calc(50% - 10px);
    gap: clamp(20px, 1.26vw, 24px);
}


/* Home Section 2 end  */


/* Home Section 3 Start */

.home-section3 {
    background: #38404c;
}

.home-section3 .right-img .img-cover {
    width: 55%;
    height: 100%;
    position: absolute;
    bottom: 0px;
    right: 0;
}

.home-section3 .right-img img {
    object-fit: contain;
    object-position: bottom;
}

.home-section3 h2 {
    color: var(--white-color);
}

.list-content p {
    color: var(--text-colore);
    font-family: var(--primary-font);
    margin: 5px 0 0 0;
    padding-right: 50px;
}

.home-section3 .content {
    border-block: solid 2px var(--primary-color);
    padding: 10px 0 20px 0;
    height: 100%;
}

.home-section3 .content p {
    font-size: clamp(16px, 1.0vw, 19px);
    font-weight: 400;
    color: var(--white-color);
    font-family: var(--secondary-font);
    line-height: 132%;
}

.home-section3 .row {
    padding: 90px 0;
}


/* Home Section 3 end */


/* Home Section 4 start */

.home-section4 {
    padding-top: clamp(20px, 2.61vw, 50px);
}

.home-section4 .img-cover {
    --bs-aspect-ratio: 56.7%;
}

.home-section4 .video-block:before {
    content: "";
    position: absolute;
    inset: 0 0 0 0;
    z-index: 1;
    cursor: pointer;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 20%);
}


/* Home Section 4 end */


/* Home Section 5 Start */

.home-section5 {
    background: var(--primary-color);
    margin: clamp(20px, 2.61vw, 50px);
    padding: clamp(60px, 6.26vw, 120px) clamp(20px, 2.61vw, 50px);
}

.home-section5 .row {
    margin: -20px;
}

.home-section5 .row>div {
    padding: 20px;
}

.home-section5 .content {
    border-block: solid 2px var(--white-color);
    padding: 30px 0 40px 0;
    height: 100%;
    max-width: 570px;
    margin: 0 auto;
}


/*.home-section5 .left-content {padding-right: clamp(20px, 7.30vw, 140px) !important;}*/

.home-section5 .left-content h2 {
    color: var(--white-color);
    line-height: 140%;
}

.home-section5 .left-content strong,
.home-section5 .left-content p {
    color: var(--white-color);
}

.home-section5 .left-content strong {
    font-weight: 600;
}

.home-section5 .right-img .img-cover {
    width: calc(48% - clamp(20px, 2.61vw, 50px));
    height: calc(100% - clamp(40px, 5.22vw, 100px));
    position: absolute;
    top: 50%;
    right: clamp(20px, 2.61vw, 50px);
    transform: translateY(-50%);
}

.home-section5 .row {
    padding: 45px 0;
}


/* Home Section 5 end */


/* Home Section 6 start */

.home-section6 {
    padding: clamp(60px, 8.60vw, 165px) 0 clamp(60px, 9.91vw, 190px) 0;
}

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

.home-section6 .img-cover.bg-image:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    background: rgb(35 31 32 / 50%);
    z-index: 2;
}

.home-section6 ul {
    gap: clamp(20px, 5.22vw, 100px) 20px
}

.home-section6 ul:before {
    content: "";
    position: absolute;
    top: 0;
    left: 43%;
    transform: translateX(-50%);
    width: 2px;
    background-color: var(--white-color);
    height: 100%;
}

.home-section6 ul li {
    width: 100%;
    max-width: calc(50% - 10px);
    gap: clamp(20px, 1.26vw, 24px);
}

.home-section6 ul li p {
    text-align: left;
    font-size: clamp(20px, 1.47vw, 28px);
    line-height: 128%;
    font-weight: 700;
    color: var(--white-color);
    font-family: var(--secondary-font);
    width: 100%;
    max-width: 265px;
}

.home-section6 ul li:nth-child(2n+2) p {
    max-width: 320px;
}

.home-section6 img {
    width: 100%;
    max-width: clamp(80px, 7.82vw, 150px);
}

.home-section6 .content {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1420px;
    margin: 0 auto;
}


/* Home Section 6 end */


/* Home Section 7 start */

.home-section7 {
    background: #f0efef;
    padding-bottom: 140px;
    margin: clamp(20px, 2.61vw, 50px);
}

.home-section7 .container {
    max-width: 1490px;
}

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

.home-section7 .img-cover.bg-image:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    background: rgb(35 31 32 / 50%);
    z-index: 2;
}

.home-section7 .top-content h2 {
    border-block: solid 2px var(--secondary-color);
    display: inline-block;
    padding: 16px 0;
    position: relative;
    top: 140px;
}

.home-section7 .row {
    margin: -20px;
}

.home-section7 .row>div {
    padding: 20px;
}

.home-section7 .left-img .img-cover {
    --bs-aspect-ratio: 57.25%;
}

.home-section7 .left-img img {
    object-fit: contain;
}

.home-section7 .left-img {
    padding-right: 80px !important;
}

.home-section7 .right-content {
    padding-left: 50px !important;
}

.home-section7 ul {
    gap: clamp(30px, 3.14vw, 60px)
}

.home-section7 ul:before {
    content: "";
    position: absolute;
    top: 0;
    left: -20%;
    width: 3px;
    background-color: var(--secondary-color);
    height: 100%;
}

.home-section7 ul li p {
    font-size: clamp(20px, 1.47vw, 28px);
    line-height: 128%;
    margin-top: clamp(20px, 1.57vw, 30px);
    font-weight: 500;
    color: var(--text-color);
    font-family: var(--secondary-font);
}

.home-section7 img {
    width: 100%;
    max-width: clamp(65px, 5.22vw, 100px);
}


/* Home Section 7 end */


/* Home Section 8 Start */

.home-section8 {
    margin: clamp(20px, 2.61vw, 50px);
    padding-top: 50px;
}

.home-section8 .top-content h2 {
    border-block: solid 2px var(--secondary-color);
    display: inline-block;
    padding: clamp(5px, 0.84vw, 16px) 0;
}

.home-section8 .left-img .img-cover {
    --bs-aspect-ratio: 48.66%;
}

.home-section8 .left-img {
    width: 62%;
}

.home-section8 .right-content {
    width: 38%;
}

.home-section8 .content {
    z-index: 9;
    position: relative;
    padding: clamp(40px, 5.22vw, 100px) clamp(30px, 7.30vw, 140px);
    background: var(--white-color);
    margin-left: -20%;
    gap: clamp(24px, 2.61vw, 50px);
}

.home-section8 .content strong {
    font-weight: 700;
}

.home-section8 .content p {
    width: 100%;
    max-width: 375px;
}

.home-section8 .icon {
    width: 100%;
    max-width: clamp(65px, 5.22vw, 100px);
    flex: 0 0 clamp(65px, 4.70vw, 90px);
}


/* Home Section 8 end */


/* Home Section 9 Start */

.home-section9 .row {
    margin: -20px;
}

.home-section9 .row>div {
    padding: 20px;
}

.home-section9 .row .left-content {
    width: 100%;
    max-width: 42%;
    margin: 0 0 0 auto;
}

.home-section9 .left-img .img-cover {
    width: 100%;
    max-width: 610px;
}

.home-section9 .left-content p {
    font-size: clamp(28px, 2.04vw, 39px);
    color: var(--primary-color);
    letter-spacing: 0px;
    line-height: 140%;
}

.home-section9 .left-content strong {
    font-weight: 600;
}

.home-section9 .quote-icon img {
    width: 100%;
    max-width: clamp(30px, 5.22vw, 100px);
    margin-left: -16%;
}


/* Home Section 9 end */


/* Home Section 10 Start */

.home-section10 {
    padding-top: 0;
    margin-top: 0;
}

.home-section10 .top-content h2 {
    border-color: var(--primary-color);
}

.home-section10 .content {
    margin-left: 0;
    margin-right: -50%;
    padding: 80px;
    justify-content: space-between;
    padding-left: 20px;
}

.home-section10 .content h3 {
    font-size: clamp(18px, 1.21vw, 23px);
    letter-spacing: 2.2px;
}

.home-section10 .right-content {
    width: 27.3%;
    margin: 0 0 0 auto;
}


/* Home Section 10 end */


/* Home Section 11 Start */

.home-section11 .container {
    max-width: 1670px;
}

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

.home-section11 .content-wrapper {
    width: 100%;
    max-width: 725px;
    background: var(--white-color);
    position: relative;
    z-index: 2;
    top: -120px;
    right: 0;
    padding: clamp(60px, 7.30vw, 140px) clamp(20px, 6.05vw, 105px);
    margin: 0 0 0 auto;
}

.home-section11 .content-wrapper h2 {
    border-block: solid 2px var(--primary-color);
    display: inline-block;
    padding: clamp(5px, 0.84vw, 16px) 0;
    margin-bottom: clamp(30px, 3.40vw, 65px);
}

.home-section11 .content-wrapper h3 {
    font-family: var(--secondary-font);
    color: var(--text-color);
    font-weight: 400;
    width: 100%;
    max-width: 480px;
}

.home-section11 .content-wrapper p {
    color: var(--text-color);
    font-family: var(--secondary-font);
    font-weight: 400;
    line-height: 131%;
    width: 100%;
    max-width: 450px;
}

.home-section11 .content-wrapper strong {
    font-weight: 600;
}


/* Home Section 11 end */


/* Services Section 1 Start */

.services-section1 .hero-caption-wrapper p,
.services-section1 .hero-caption-wrapper strong,
.services-section1 .hero-caption-wrapper h1 {
    color: var(--text-color);
}

.services-section1 .hero-caption-wrapper p {
    font-weight: 400;
}

.services-section1 .hero-caption-wrapper {
    max-width: 65%;
}

.services-section1 .sec-arrow a {
    border-color: var(--primary-color);
}

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


/* Services Section 1 end */


/* Services Section 2 Start */

.services-section2 {
    background: #f0efef;
}

.services-section2 .left-content h2 {
    color: var(--primary-color);
}

.services-section2 .content {
    border-color: var(--secondary-color);
}

.services-section2 .left-content p {
    color: var(--text-color);
}

.services-section2 .left-content strong {
    color: var(--primary-color);
    font-weight: 600;
}


/* Services Section 2 end */


/* Services Section 3 Start */

.services-section3 {
    margin: 0;
}

.services-section3 .top-content p {
    font-size: clamp(24px, 1.47vw, 28px);
    line-height: 128%;
    color: var(--text-color);
    font-weight: 400;
    width: 100%;
    max-width: 830px;
}

.services-section3 .top-content p strong {
    font-weight: 600;
}


/* Services Section 3 end */


/* Services Section 4 Start */

.services-section4 {
    padding: clamp(100px, 9.91vw, 190px) 0;
}

.services-section4 .hero-caption-wrapper {
    max-width: 100%;
}

.services-section4 .hero-caption-wrapper h2 {
    border-block: solid 2px var(--white-color);
    display: inline-block;
    padding: clamp(5px, 1.26vw, 24px) 0;
    color: var(--white-color);
    letter-spacing: 3.12px;
}


/* Services Section 4 end */


/* Services Section 5 Start */

.services-section5 {
    background: #f0efef;
}

.services-section5 .left-content h2 {
    color: var(--primary-color);
}

.services-section5 .content {
    border-color: var(--secondary-color);
    max-width: 100%;
}

.services-section5 .left-content p {
    color: var(--text-color);
}

.services-section5 .left-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.services-section5 .row {
    padding: 20px 0;
}

.services-section5 .right-img .img-cover {
    width: calc(33.5% - clamp(40px, 7.30vw, 140px));
    height: calc(100% - clamp(120px, 14.59vw, 280px));
    right: clamp(20px, 7.30vw, 140px);
}

.services-section5 .left-content {
    padding-right: clamp(20px, 4.18vw, 80px) !important;
}

.services-section5 .left-content img {
    width: 75px;
    min-width: 75px;
    height: auto;
    object-fit: scale-down;
}

.services-section5 .left-content ul {
    gap: 20px 20px;
    margin-top: clamp(40px, 4.18vw, 80px);
}

.services-section5 .left-content ul li {
    width: 100%;
    max-width: calc(50% - 10px);
    gap: clamp(15px, 1.26vw, 15px);
}

.services-section5 .left-content h3 {
    font-size: clamp(20px, 1.31vw, 25px);
    font-weight: 700;
    font-family: var(--secondary-font);
}

.services-section5 .left-content p,
.services-section5 .left-content p {
    font-size: clamp(16px, 1.0vw, 19px);
    font-weight: 400;
    color: var(--text-color);
    font-family: var(--secondary-font);
}

.services-section5 .left-content strong {
    font-weight: 700;
}


/* Services Section 5 end */


/* Services Section 6 Start */

.services-section6 {
    padding: clamp(100px, 9.91vw, 190px) 0;
}

.services-section6 .hero-caption-wrapper {
    max-width: 100%;
}

.services-section6 .hero-caption-wrapper h2 {
    border-block: solid 2px var(--white-color);
    display: inline-block;
    padding: clamp(5px, 1.26vw, 24px) 0;
    color: var(--white-color);
    letter-spacing: 3.12px;
}

.services-section6 .hero-caption-wrapper p {
    font-size: clamp(24px, 1.47vw, 28px);
    font-weight: 700;
    color: var(--white-color);
    line-height: 100%;
}


/* Services Section 6 end */


/* Services Section 7 Start */

.services-section7 {
    margin: 0;
}

.services-section7 .top-content p {
    font-size: clamp(24px, 1.47vw, 28px);
    line-height: 128%;
    color: var(--text-color);
    font-weight: 400;
    width: 100%;
    max-width: 830px;
}

.services-section7 .top-content p strong {
    font-weight: 600;
}

.services-section7 .bottom-content {
    width: 100%;
    max-width: 1070px;
    padding: clamp(60px, 4.70vw, 90px) 0;
}

.services-section7 .bottom-content p {
    width: 100%;
    max-width: 66%;
    font-size: clamp(24px, 1.47vw, 28px);
    font-weight: 400;
    line-height: 128%;
    color: var(--text-color);
}

.services-section7 .bottom-content strong {
    font-weight: 600;
    color: var(--primary-color);
}


/* Services Section 7 end */


/* Services Section 9 Start */


/* 
.services-section9 .content {
    border-block: solid 2px var(--white-color);
    padding: 30px 0 40px 0;
    height: 100%;
    max-width: 560px;
    margin-left: 0;
} */

.services-section9 .bottom-content {
    margin-top: clamp(40px, 4.18vw, 80px);
    width: 100%;
    max-width: 470px;
}

.services-section9 .bottom-content .quote-icon img {
    width: 100%;
    max-width: clamp(30px, 5.22vw, 100px);
}

.services-section9 .bottom-content p {
    font-size: clamp(32px, 2.15vw, 41px);
    line-height: 134%;
    color: var(--white-color);
    padding-left: clamp(20px, 4.44vw, 85px);
}

.services-section9 ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.services-section9 ul li {
    color: var(--white-color);
    position: relative;
    padding-left: 24px;
}

.services-section9 ul li:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 8px;
    height: 8px;
    background: #00a562;
}

.services-section9 .right-img .img-cover {
    width: calc(51% - clamp(20px, 2.61vw, 50px));
}


/* Services Section 9 end */


/* Services Section 10 Start */

.services-section10 .content-wrapper {
    max-width: 820px;
}

.services-section10 .content-wrapper p,
.services-section10 .content-wrapper h3 {
    max-width: 100%;
}

.services-section10 .content-wrapper {
    top: -20px !important;
}

.services-section10 {
    padding-bottom: 75px;
}


/* Services Section 10 end */


/* what we do Section 1 Start */

.whatbedo-section1 .hero-caption-wrapper h1 {
    color: var(--text-color);
}

.whatbedo-section1 .hero-caption-wrapper {
    max-width: 55%;
}


/* what we do Section 1 end */


/* what we do Section 3 Start */

.whatbedo-section3 .hero-caption-wrapper {
    max-width: 1210px;
    margin: 0 auto;
}


/* what we do Section 3 end */


/* what we do Section 4 Start */

.whatbedo-section4 {
    padding-bottom: 50px;
}


/* what we do Section 4 end */


/* what we do Section 5 Start */

.whatbedo-section5 .hero-caption-wrapper h2 {
    border: none;
    padding: 0;
    display: block;
    letter-spacing: 6px;
}

.whatbedo-section5 .hero-caption-wrapper p {
    font-size: clamp(16px, 1.0vw, 19px);
    max-width: 100%;
    line-height: 150%;
}

.whatbedo-section5 .hero-caption-wrapper {
    border-block: solid 2px var(--white-color);
    display: inline-block;
    width: auto;
    padding: clamp(10px, 1.57vw, 30px) 0;
}


/* what we do Section 5 end */


/* what we do Section 6 Start */

.whatbedo-section6 {
    padding-top: 0;
}


/* what we do Section 6 end */


/* what we do Section 7 Start */

.whatbedo-section7 {
    background: var(--white-color);
}

.whatbedo-section7 .left-content p {
    font-size: clamp(32px, 2.15vw, 41px);
    line-height: 134%;
    color: var(--primary-color);
}

.whatbedo-section7 .content {
    border-block: solid 2px var(--secondary-color);
    padding: 30px 0 40px 0;
    height: 100%;
    max-width: 1420px;
    margin: 0 auto;
}

.whatbedo-section7 .right-img .img-cover {
    width: 30%;
    height: 100%;
    right: 0;
}

.whatbedo-section7 .row {
    padding: 0;
}

.whatbedo-section7 .left-content {
    padding: 0 50px 0 20px !important;
}


/* what we do Section 7 end */


/* what we do Section 9 Start */

.whatbedo-section9 .bottom-content {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}


/* what we do Section 9 end */


/* what we do Section 10 Start */

.whatbedo-section10 {
    background: #f0efef;
    margin: clamp(20px, 2.61vw, 50px);
}

.whatbedo-section10 .row {
    margin: -20px;
}

.whatbedo-section10 .row>div {
    padding: 20px;
}

.whatbedo-section10 .content {
    border-block: solid 2px var(--secondary-color);
    padding: 30px 0 40px 0;
    height: 100%;
}

.whatbedo-section10 .row .left-content {
    padding-left: clamp(20px, 6.78vw, 130px) !important;
}

.whatbedo-section10 h2 {
    line-height: 148%;
}

.whatbedo-section10 ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.whatbedo-section10 ul li {
    color: var(--text-color);
    position: relative;
    padding-left: 24px;
    font-weight: 600;
}

.whatbedo-section10 ul li:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
}

.whatbedo-section10 strong {
    font-weight: 700;
}


/* what we do Section 10 end */


/* Resources Section 2 start */

.resources-section2 {
    background: #f0efef;
    margin: clamp(20px, 2.61vw, 50px);
    padding: clamp(40px, 4.18vw, 80px) 0;
}

.resources-section2 .items {
    padding: 0 25px;
}

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

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

.resources-section2 .content h3 {
    color: var(--black-color);
    font-size: clamp(18px, 1.31vw, 25px);
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 5px;
    line-height: 145%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.resources-section2 .content p {
    line-height: 130%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

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

.resources-section2 .content .list {
    border-block: solid 2px var(--secondary-color);
    padding: 30px 0;
    margin: 50px 0 30px 0;
}

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

.resources-section2 .content:hover .btn-wrapper a {
    color: var(--white-color);
}

.resources-section2 .slider-block {
    padding-bottom: clamp(60px, 4.70vw, 90px);
}

.resources-section2 .slider-block .slick-arrow.slick-prev {
    left: 24px;
    top: auto;
    bottom: -14px;
}

.resources-section2 .slider-block .slick-arrow.slick-next {
    right: 24px;
    top: auto;
    bottom: -14px;
}

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

.resources-section2 .slider-block .slick-slide {
    height: auto !important;
    display: flex !important;
    align-items: stretch;
}


/* Resources Section 2 end */


/* Resources Section 5 start */

.resources-section5 {
    background: var(--white-color);
    margin: 0;
    padding-bottom: 120px !important;
}

.resources-section5 .items {
    padding: 0 20px;
}

.resources-section5 .top-content {
    margin-bottom: clamp(40px, 4.18vw, 80px);
    padding-left: 20px;
}

.resources-section5 .top-content h2 {
    border-block: solid 2px var(--primary-color);
    display: inline-block;
    padding: clamp(5px, 0.84vw, 16px) 0;
}

.resourcesd-details h2 strong,
h2 b,
h2 {
    color: var(--primary-color);
}


/* Resources Section 5 end */


/* Footer Section start */

.footer .container {
    max-width: 1670px;
}

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

.footer .logo img {
    max-width: clamp(170px, 13.906vw, 267px);
    width: 100%;
    height: auto;
    margin: -40px auto 0 auto;
}

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

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

.footer .footer-menu li a {
    font-size: 17px;
    color: var(--text-color);
    line-height: 100%;
    position: relative;
    font-weight: 700;
}

.footer .footer-menu li a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    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 p {
    font-size: 18px;
    color: var(--text-color);
    line-height: 150%;
    margin: 0;
}

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

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

.footer .footer-contact .copy-title {
    font-size: 14px;
    font-family: var(--third-font);
    color: #939598;
}


/* Footer Section End */


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

@media only screen and (max-width: 1680px) {
    /* Home Section 2 start  */
    .home-section2 .row {
        margin: -20px;
    }
    .home-section2 .row>div {
        padding: 20px;
    }
    /* Home Section 9 Start */
    .home-section9 .quote-icon img {
        margin-left: -14%;
    }
}

@media only screen and (max-width: 1560px) {
    .header .navbar-ul {
        padding-right: 18%;
        align-items: flex-end;
    }
    /* Services Section 5 Start */
    .services-section5 .right-img .img-cover {
        right: clamp(20px, 2.61vw, 50px);
    }
    /* what we do Section 10 Start */
    .whatbedo-section10 .row .left-content {
        padding-left: 20px !important;
    }
}

@media only screen and (max-width: 1440px) {
    .header .navbar-ul {
        padding-right: 20px;
    }
    /* Home Section 8 Start */
    .home-section8 .content {
        padding: 40px;
    }
    /* Home Section 11 Start */
    .home-section11 .content-wrapper {
        top: -50px;
    }
}

@media only screen and (max-width: 1199px) {
    .header .navbar-ul {
        padding-right: 0px;
    }
    /* Home Section 7 start */
    .home-section7 .right-content {
        padding-left: 20px !important;
    }
    .home-section7 .left-img {
        padding-right: 40px !important;
    }
    /* Home Section 9 Start */
    .home-section9 .row .left-content {
        max-width: 44%;
    }
    .home-section9 .quote-icon img {
        margin-left: -10%;
    }
    /* Services Section 5 Start */
    .services-section5 .right-img .img-cover {
        width: calc(37.5% - clamp(40px, 7.30vw, 140px));
    }
}

@media only screen and (max-width: 991px) {
    /* Home Section 2 start  */
    .home-section2 .content.right {
        border-top-width: 0;
        padding-top: 0;
    }
    /* Home Section 3 Start */
    .home-section3 .right-img .img-cover {
        position: relative;
        --bs-aspect-ratio: 65.61%;
        left: 0;
        right: 0;
        width: 100%;
    }
    .home-section3 .row {
        padding-bottom: 40px;
    }
    /* Home Section 5 Start */
    .home-section5 .right-img .img-cover {
        position: relative;
        --bs-aspect-ratio: 65.61%;
        left: 0;
        right: 0;
        width: 100%;
        top: auto;
        transform: inherit;
        bottom: 0;
    }
    .home-section5 .row {
        padding: 0;
    }
    /* Home Section 6 Start */
    .home-section6 ul li p {
        max-width: 220px !important;
    }
    .home-section6 ul:before {
        left: 45%;
    }
    /* Home Section 7 start */
    .home-section7 {
        padding: 60px 0;
    }
    .home-section7 .top-content h2 {
        top: 0;
        padding: 0;
    }
    .home-section7 .left-img .img-cover {
        --bs-aspect-ratio: 42.25%;
    }
    .home-section7 ul li {
        text-align: center;
    }
    /* Home Section 8 start */
    .home-section8 .right-content {
        width: 90%;
        margin: 0 auto;
    }
    .home-section8 .left-img {
        width: 100%;
    }
    .home-section8 .content {
        margin: -5% 0 0 0;
        justify-content: center;
    }
    /* Home Section 11 Start */
    .home-section11 .content-wrapper {
        position: static;
        max-width: 100%;
        padding-top: 40px;
        box-shadow: 0 0 10px #ddd;
    }
    .home-section11 .img-cover {
        --bs-aspect-ratio: 50%;
        position: relative;
    }
    /* what we do Section 7 Start */
    .whatbedo-section7 .row>div {
        padding: 30px 0 0 0 !important;
    }
    /* Resources Section 5 start */
    .resources-section5 {
        padding-bottom: 60px !important;
    }
    /* Footer Section start */
    .footer .logo img {
        margin-top: 0;
    }
}

@media only screen and (max-width: 767px) {
    /* Home Section 2 start  */
    .home-section2 .right ul li {
        max-width: 100%;
    }
    /* Home Section 3 Start */
    .home-section3 .row {
        padding-top: 50px;
    }
    /* Home Section 6 Start */
    .home-section6 ul li {
        max-width: 100%;
        justify-content: center;
    }
    .home-section6 ul:before {
        display: none;
    }
    /* Home Section 7 start */
    .home-section7 .left-img .img-cover {
        --bs-aspect-ratio: 50%;
    }
    /* Home Section 8 start */
    .home-section8 .content {
        padding: 24px;
    }
    /* Home Section 9 Start */
    .home-section9 .quote-icon img {
        margin-left: -4%;
    }
    .home-section9 .row .left-content {
        max-width: 96%;
    }
    .home-section9 .left-img .img-cover {
        max-width: 100%;
    }
    /* Services Section 1 Start */
    .services-section1 .hero-caption-wrapper {
        max-width: 100%;
    }
    /* Services Section 5 Start */
    .services-section5 .left-content ul li {
        max-width: 100%;
    }
    /* Services Section 7 Start */
    .services-section7 .bottom-content p {
        max-width: 100%;
    }
    /* what we do Section 1 Start */
    .whatbedo-section1 .hero-caption-wrapper {
        max-width: 100%;
    }
    /* Resources Section 2 start */
    .resources-section2 .items {
        padding: 0;
    }
    .resources-section2 .slider-block .slick-arrow.slick-prev {
        left: 0;
    }
    .resources-section2 .slider-block .slick-arrow.slick-next {
        right: 0;
    }
}

@media only screen and (max-width: 479px) {
    /* Home Section 7 start */
    .home-section7 .left-img .img-cover {
        --bs-aspect-ratio: 64%;
    }
    /* Home Section 8 start */
    .home-section8 .content {
        flex-direction: column !important;
        text-align: center;
    }
}