@import url(https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap);

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: none
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.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;
    margin-left: auto;
    margin-right: auto
}

.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;
    min-height: 1px
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid rgba(0, 0, 0, 0)
}

.slick-arrow.slick-hidden {
    display: none
}

.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: rgba(0, 0, 0, 0);
    border: none;
    outline: none;
    background: rgba(0, 0, 0, 0)
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: rgba(0, 0, 0, 0);
    outline: none;
    background: rgba(0, 0, 0, 0)
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: .25
}

.slick-prev:before,
.slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-prev {
    left: -25px
}

[dir=rtl] .slick-prev {
    right: -25px;
    left: auto
}

.slick-prev:before {
    content: "â†"
}

[dir=rtl] .slick-prev:before {
    content: "â†’"
}

.slick-next {
    right: -25px
}

[dir=rtl] .slick-next {
    right: auto;
    left: -25px
}

.slick-next:before {
    content: "â†’"
}

[dir=rtl] .slick-next:before {
    content: "â†"
}

.slick-dotted.slick-slider {
    margin-bottom: 30px
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: rgba(0, 0, 0, 0);
    border: 0;
    outline: none;
    background: rgba(0, 0, 0, 0)
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1
}

.slick-dots li button:before {
    font-family: "slick";
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: "â€¢";
    text-align: center;
    opacity: .25;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-dots li.slick-active button:before {
    opacity: .75;
    color: #000
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

@-webkit-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px)
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    40% {
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    60% {
        -webkit-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        transform: translateY(-15px)
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce
}

@-webkit-keyframes flash {

    0%,
    50%,
    100% {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

@keyframes flash {

    0%,
    50%,
    100% {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1)
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse
}

@-webkit-keyframes shake {

    0%,
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px)
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px)
    }
}

@keyframes shake {

    0%,
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px)
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px)
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg)
    }

    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    40% {
        -webkit-transform: rotate(-10deg);
        -ms-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    60% {
        -webkit-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        transform: rotate(5deg)
    }

    80% {
        -webkit-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }

    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

.swing {
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    10%,
    20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
        transform: scale(0.9) rotate(-3deg)
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg)
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg)
    }

    100% {
        -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }

    10%,
    20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
        -ms-transform: scale(0.9) rotate(-3deg);
        transform: scale(0.9) rotate(-3deg)
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        -ms-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg)
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        -ms-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg)
    }

    100% {
        -webkit-transform: scale(1) rotate(0);
        -ms-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada
}

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%)
    }

    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
        transform: translateX(-25%) rotate(-5deg)
    }

    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
        transform: translateX(20%) rotate(3deg)
    }

    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
        transform: translateX(-15%) rotate(-3deg)
    }

    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
        transform: translateX(10%) rotate(2deg)
    }

    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
        transform: translateX(-5%) rotate(-1deg)
    }

    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%)
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%)
    }

    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
        -ms-transform: translateX(-25%) rotate(-5deg);
        transform: translateX(-25%) rotate(-5deg)
    }

    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
        -ms-transform: translateX(20%) rotate(3deg);
        transform: translateX(20%) rotate(3deg)
    }

    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
        -ms-transform: translateX(-15%) rotate(-3deg);
        transform: translateX(-15%) rotate(-3deg)
    }

    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
        -ms-transform: translateX(10%) rotate(2deg);
        transform: translateX(10%) rotate(2deg)
    }

    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
        -ms-transform: translateX(-5%) rotate(-1deg);
        transform: translateX(-5%) rotate(-1deg)
    }

    100% {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%)
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble
}

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        transform: scale(0.3)
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }

    70% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        -ms-transform: scale(0.3);
        transform: scale(0.3)
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05)
    }

    70% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9)
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        transform: translateY(30px)
    }

    80% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
        transform: translateY(30px)
    }

    80% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px)
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown
}

@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        transform: translateX(30px)
    }

    80% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px)
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        -ms-transform: translateX(30px);
        transform: translateX(30px)
    }

    80% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px)
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft
}

@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px)
    }

    80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px)
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        transform: translateX(-30px)
    }

    80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px)
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight
}

@-webkit-keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    80% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    80% {
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px)
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp
}

@-webkit-keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    25% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95)
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        transform: scale(0.3)
    }
}

@keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }

    25% {
        -webkit-transform: scale(0.95);
        -ms-transform: scale(0.95);
        transform: scale(0.95)
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.3);
        -ms-transform: scale(0.3);
        transform: scale(0.3)
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut
}

@-webkit-keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }
}

@keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px)
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        transform: translateX(20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

@keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

@keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight
}

@-webkit-keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

@keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px)
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px)
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px)
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px)
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px)
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px)
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px)
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig
}

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    100% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    100% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    -ms-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg)
    }

    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg)
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        -ms-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        -ms-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg)
    }

    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        -ms-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg)
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        -ms-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg)
    }

    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg)
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        -ms-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        -ms-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg)
    }

    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        -ms-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg)
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        -ms-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        -ms-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        -ms-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important
}

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        -ms-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        -ms-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY
}

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }

    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1
    }

    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        transform: translateX(0%) skewX(-15deg);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1
    }
}

@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        -ms-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }

    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        -ms-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1
    }

    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        -ms-transform: translateX(0%) skewX(-15deg);
        transform: translateX(0%) skewX(-15deg);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        -ms-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedOut {
    0% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }
}

@keyframes lightSpeedOut {
    0% {
        -webkit-transform: translateX(0%) skewX(0deg);
        -ms-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        -ms-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        -ms-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft
}

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight
}

@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0
    }
}

@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(200deg);
        -ms-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
}

@keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight
}

@-webkit-keyframes slideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        -ms-transform: translateY(100px);
        transform: translateY(100px)
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp
}

@-webkit-keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px)
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight
}

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%,
    60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    40% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    80% {
        -webkit-transform: rotate(60deg) translateY(0);
        transform: rotate(60deg) translateY(0);
        opacity: 1;
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    100% {
        -webkit-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0
    }
}

@keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%,
    60% {
        -webkit-transform: rotate(80deg);
        -ms-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    40% {
        -webkit-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    80% {
        -webkit-transform: rotate(60deg) translateY(0);
        -ms-transform: rotate(60deg) translateY(0);
        transform: rotate(60deg) translateY(0);
        opacity: 1;
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    100% {
        -webkit-transform: translateY(700px);
        -ms-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0
    }
}

.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge
}

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg)
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        -ms-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        -ms-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg)
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn
}

@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
        transform: translateX(100%) rotate(120deg)
    }
}

@keyframes rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        -ms-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
        -ms-transform: translateX(100%) rotate(120deg);
        transform: translateX(100%) rotate(120deg)
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut
}

@keyframes slideUp {

    0%,
    50% {
        transform: translateY(100%);
        opacity: 0
    }

    60%,
    100% {
        transform: translateY(0);
        opacity: 1
    }
}

.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: .8
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box
}

.mfp-container:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle
}

.mfp-align-top .mfp-container:before {
    display: none
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto
}

.mfp-ajax-cur {
    cursor: progress
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in
}

.mfp-auto-cursor .mfp-content {
    cursor: auto
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.mfp-loading.mfp-figure {
    display: none
}

.mfp-hide {
    display: none !important
}

.mfp-preloader {
    color: #ccc;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044
}

.mfp-preloader a {
    color: #ccc
}

.mfp-preloader a:hover {
    color: #fff
}

.mfp-s-ready .mfp-preloader {
    display: none
}

.mfp-s-error .mfp-content {
    display: none
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: rgba(0, 0, 0, 0);
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: 0;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation
}

button::-moz-focus-inner {
    padding: 0;
    border: 0
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: .65;
    padding: 0 0 18px 10px;
    color: #fff;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1
}

.mfp-close:active {
    top: 1px
}

.mfp-close-btn-in .mfp-close {
    color: #333
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #fff;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #ccc;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap
}

.mfp-arrow {
    position: absolute;
    opacity: .65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.mfp-arrow:active {
    margin-top: -54px
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1
}

.mfp-arrow:before,
.mfp-arrow:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset rgba(0, 0, 0, 0)
}

.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px
}

.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: .7
}

.mfp-arrow-left {
    left: 0
}

.mfp-arrow-left:after {
    border-right: 17px solid #fff;
    margin-left: 31px
}

.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3f3f3f
}

.mfp-arrow-right {
    right: 0
}

.mfp-arrow-right:after {
    border-left: 17px solid #fff;
    margin-left: 39px
}

.mfp-arrow-right:before {
    border-left: 27px solid #3f3f3f
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px
}

.mfp-iframe-holder .mfp-close {
    top: -40px
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, .6);
    background: #000
}

img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto
}

.mfp-figure {
    line-height: 0
}

.mfp-figure:after {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, .6);
    background: #444
}

.mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px
}

.mfp-figure figure {
    margin: 0
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #f3f3f3;
    word-wrap: break-word;
    padding-right: 36px
}

.mfp-image-holder .mfp-content {
    max-width: 100%
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer
}

@media screen and (max-width: 800px)and (orientation: landscape),
screen and (max-height: 300px) {
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, .6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, .6);
        position: fixed;
        text-align: center;
        padding: 0
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75)
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px
    }
}

.hide-mobile {
    display: block !important
}

@media(max-width: 600px) {
    .hide-mobile {
        display: none !important
    }
}

.hide-desktop {
    display: none !important
}

@media(max-width: 600px) {
    .hide-desktop {
        display: block !important
    }
}

.show-tab {
    display: none !important
}

@media(max-width: 1200px) {
    .show-tab {
        display: block !important
    }
}

.container {
    margin: auto;
    max-width: 1290px
}

@media(min-width: 1201px)and (max-width: 1380px) {
    .container {
        padding: 0 30px
    }
}

@media(max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 60px;
        box-sizing: border-box
    }
}

@media(max-width: 990px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
        box-sizing: border-box
    }
}

@media(max-width: 600px) {
    .container {
        padding: 0 15px
    }
}

@media(max-width: 374px) {
    .container {
        padding: 0 15px
    }
}

.container-lg {
    margin: auto;
    max-width: 1440px
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

a {
    text-decoration: none;
    color: initial
}

body {
    font-family: "Inter", sans-serif;
    color: #270110;
    font-size: 16px;
    line-height: 24px;
    overflow-x: hidden;
    margin: 0 auto
}

body.bg-white {
    background: #fff
}

body.overflow__hidden {
    overflow: hidden
}

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: #fff
}

::-webkit-scrollbar-thumb {
    background: #00AF54
}

::-webkit-scrollbar-thumb:hover {
    background: #00AF54
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: rgba(0, 0, 0, 0);
    outline: none;
    background: rgba(0, 0, 0, 0)
}

.slick-prev:hover:hover svg circle,
.slick-prev:focus:hover svg circle,
.slick-next:hover:hover svg circle,
.slick-next:focus:hover svg circle {
    stroke: #00AF54;
    fill: #00AF54
}

.slick-prev:hover:hover svg path,
.slick-prev:focus:hover svg path,
.slick-next:hover:hover svg path,
.slick-next:focus:hover svg path {
    fill: #fff
}

img {
    /*max-width: 100%*/
}

.aci__all-product .aci__realted-item .aci__realted-thumbnail img{
    max-width: 100%
}
.d__flex {
    display: flex;
    flex-wrap: wrap
}

.d__space-between {
    justify-content: space-between
}

.d__center {
    align-items: center
}

.text-white {
    color: #fff
}

.text-uppercase {
    text-transform: uppercase
}

.slick-slider:focus {
    outline: none;
    box-shadow: none;
    border: none
}

.tab-inner-conent {
    display: none
}

.tab-inner-conent.active {
    display: block
}

@media(max-width: 600px) {
    .for-desktop {
        display: none
    }
}

.for-mobile {
    display: none
}

@media(max-width: 600px) {
    .for-mobile {
        display: block
    }
}

[data-animation-in] {
    opacity: 0
}

.btn-transparent {
    display: inline-flex;
    align-items: center;
    border: 1px solid #00AF54;
    padding: 12px 24px;
    border-radius: 30px;
    color: #00AF54;
    transition: all .3s ease
}

.btn-transparent svg {
    transition: all .3s ease
}

.btn-transparent:hover {
    color: #fff;
    background: #BB0303;
}

.btn-transparent:hover svg {
    margin-left: 10px;
      stroke: #BB0303;
}

.btn-transparent:hover svg path {
    stroke: #BB0303;
}

.btn-transparent.btn-white {
    color: #fff;
    border: 1px solid #BB0303;
    background: #BB0303;
}
.btn-contact{
    color: white;
    background: #BB0303;
    
}
.btn-transparent.btn-white:hover {
    border: 1px solid #00AF54;
    color: #BB0303;
    
}

.bg-secoundary {
    background: #f9fafd
}

.error-404 {
    padding: 60px 0 100px 0;
    margin: 0 auto;
    display: table;
    text-align: center
}

.error-404 img {
    display: block;
    margin-bottom: 40px
}

.error-404 h3 {
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
    text-align: center;
    margin-bottom: 30px
}

.error-404 a {
    display: inline-flex
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0
}

.section-head {
    margin: 0 auto;
    display: table;
    text-align: center;
    margin-bottom: 50px;
    max-width: 850px
}

.section-head .section-title {
    font-size: 50px;
    font-weight: 400;
    line-height: 65px;
    letter-spacing: 0em;
    text-align: center;
    margin-bottom: 20px;
    color: #fff
}

.section-head .section-des {
    color: #fff
}

a.btn-simple {
    align-items: center;
    display: inline-flex;
    color: #00AF54;
    font-weight: 600
}

a.btn-simple svg {
    transition: all .3s ease-in-out
}

a.btn-simple:hover svg {
    margin-left: 5px
}

.section-head-left {
    margin-bottom: 50px
}

.section-head-left .home-about-content-top {
    display: flex;
    margin-bottom: 20px;
    gap: 10px;
    font-size: 18px;
    color: #04440a;
    line-height: 28px;
    font-weight: 500;
    align-items: center
}

.section-head-left .home-about-content-top .line {
    width: 166px;
    height: 2px;
    background: #04440a;
    margin-left: 10px
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    font-family: "Inter", sans-serif;
    transition: all .3s ease-in-out;
    justify-content: center;
    background: #00AF54;
    padding: 12px 24px;
    border-radius: 30px
}
.btn-primary:hover{
    color: white;
    background: #BB0303;
}
.btn-primary svg {
    transition: all .3s ease-in-out;
    position: relative
}

.btn-primary:hover svg {
    margin-left: 10px
}

.btn-primary.btn-white {
    background: #fff;
    color: #00AF54
}

.aci__breadcrumb {
    padding: 20px 0 30px 0;
    background: #f9fafd
}

.aci__breadcrumb.bg-white {
    background: #fff;
    padding-bottom: 0
}

.aci__breadcrumb ul.aci__breadcrumb-list {
    list-style: none;
    display: flex;
    gap: 4px;
    flex-wrap: wrap
}

.aci__breadcrumb ul.aci__breadcrumb-list li a {
    color: #534249;
    font-size: 14px;
    line-height: 22px
}

.aci__breadcrumb ul.aci__breadcrumb-list li a:hover {
    color: #00AF54
}

.aci__breadcrumb ul.aci__breadcrumb-list li:last-child a {
    color: #270110;
    font-weight: 500
}

.aci__breadcrumb ul.aci__breadcrumb-list li:last-child a:hover {
    color: #00AF54
}

.aci__social-share {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 10px
}

.aci__social-share span {
    color: #534249;
    font-size: 14px;
    line-height: 24px
}

.aci__social-share a {
    border: 1px solid rgba(19, 0, 8, .1019607843);
    width: 30px;
    height: 30px;
    border-radius: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in
}

.aci__social-share a:hover {
    border: 1px solid #00AF54
}

.aci__social-share.fixed-share {
    position: fixed;
    right: 65px;
    flex-wrap: wrap;
    width: 30px;
    z-index: 99991
}

@media(max-width: 600px) {
    .aci__social-share.fixed-share {
        display: none
    }
}

h4 {
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 0em;
    margin-bottom: 16px
}

h2 {
    font-size: 50px;
    line-height: 65px;
    font-weight: 400;
    margin-bottom: 20px
}

@media(max-width: 600px) {
    h2 {
        font-size: 36px;
        line-height: 46px
    }
}

header {
    padding: 13px 0 0 0;
    position: sticky;
    z-index: 99991;
    width: 100%;
    left: 0;
    background: #fff;
    top: 0
}

@media(max-width: 1200px) {
    header {
        padding: 0
    }
}

header .header-bottom {
    background: #fff;
    width: 100%;
    transition: all .3s ease-in
}

@media(max-width: 1200px) {
    header .header-bottom {
        padding-top: 10px;
        padding-bottom: 10px
    }
}

header.active .header-bottom {
    position: fixed;
    top: 0;
    left: 0
}

header.active .header-bottom .container .menu-wrapper ul.primary-menu li .aci-megamenu {
    top: 72px
}

header.active .header-bottom .container .menu-wrapper ul.primary-menu li ul {
    margin-top: 188px
}

@media(max-width: 1200px) {
    header.active .header-bottom .container .menu-wrapper ul.primary-menu li ul {
        margin-top: 0
    }
}

header .menu-right-mobile {
    display: none
}

header .menu-right-mobile .search__icon-btn {
    background: rgba(0, 0, 0, 0);
    border: none
}

header .menu-right-mobile select {
    color: #534249;
    border: none;
    font-size: 14px;
    line-height: 22px
}

header .menu-right-mobile select option {
    color: #534249
}

header .menu-right-mobile button.menu__expend {
    margin: 0;
    background: rgba(0, 0, 0, 0);
    position: relative;
    top: 1px
}

@media(max-width: 1200px) {
    header .menu-right-mobile {
        display: flex;
        align-items: center;
        gap: 10px
    }
}

header .menu__expend {
    display: none;
    background: rgba(0, 0, 0, 0);
    border: none;
    position: relative;
    top: -5px
}

@media(max-width: 1200px) {
    header .menu__expend {
        display: block
    }
}

header .mobile__search {
    display: none;
    background: rgba(0, 0, 0, 0);
    border: none;
    position: relative;
    top: -5px
}

@media(max-width: 1200px) {
    header .mobile__search {
        display: block
    }
}

header .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 146px
}

@media(min-width: 1201px)and (max-width: 1380px) {
    header .container {
        gap: 50px
    }
}

@media(max-width: 1200px) {
    header .container {
        gap: 20px;
        justify-content: space-between;
        align-items: center
    }
}

header .container .logo-section {
    max-width: 145px
}

@media(max-width: 600px) {
    header .container .logo-section {
        max-width: 120px
    }
}

header .container .logo-section img {
    display: block;
    position: relative;
    top: 0px;
    /*width: 350px !important;*/
}

/* @media (max-width:576px) {
    .header .container .logo-section img {
        max-width: 200px !important;
    }
} */

header .container .menu-wrapper {
    width: calc(100% - 145px - 146px);
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center
}

@media(min-width: 1201px)and (max-width: 1380px) {
    header .container .menu-wrapper {
        width: calc(100% - 195px)
    }
}

@media(max-width: 1200px) {
    header .container .menu-wrapper {
        opacity: 0;
        visibility: hidden;
        position: fixed;
        z-index: -1;
        right: 0;
        top: 0;
        width: 350px;
        height: 100vh;
        background: #fff;
        padding: 9px 0px;
        align-items: flex-start;
        transition: all .4s ease;
        transform: translateX(100px);
        display: block;
        overflow-y: scroll
    }
}

@media(max-width: 1200px)and (max-width: 1200px) {
    header .container .menu-wrapper {
        overflow-x: hidden
    }
}

@media(max-width: 1200px) {
    header .container .menu-wrapper.active {
        opacity: 1;
        z-index: 99991;
        visibility: visible;
        transform: translateX(0px)
    }

    header .container .menu-wrapper .goodrej__searchbar {
        display: none
    }
}

@media(max-width: 600px) {
    header .container .menu-wrapper {
        width: 100%
    }
}

header .container .menu-wrapper .menu-wrapper-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #e7e6e6;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 9px;
    display: none
}

@media(max-width: 1200px) {
    header .container .menu-wrapper .menu-wrapper-top {
        display: flex
    }
}

header .container .menu-wrapper .menu__close {
    display: none
}

@media(max-width: 1200px) {
    header .container .menu-wrapper .menu__close {
        display: block;
        background: rgba(0, 0, 0, 0);
        border: none;
        margin: 0 0 0px 0
    }
}

header .container .menu-wrapper .menu__close svg path {
    fill: #fff
}

header .container .menu-wrapper ul.primary-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    gap: 0px
}

header .container .menu-wrapper ul.primary-menu.hide-activated {
    opacity: 0
}

@media(max-width: 1200px) {
    header .container .menu-wrapper ul.primary-menu.hide-activated {
        opacity: 1
    }
}

@media(max-width: 1200px) {
    header .container .menu-wrapper ul.primary-menu {
        gap: 0;
        padding: 0 20px
    }
}

header .container .menu-wrapper ul.primary-menu li {
    margin-right: 40px
}

@media(min-width: 1201px)and (max-width: 1380px) {
    header .container .menu-wrapper ul.primary-menu li {
        margin-right: 35px
    }
}

@media(max-width: 1200px) {
    header .container .menu-wrapper ul.primary-menu li {
        width: 100%;
        margin-right: 0;
        border-bottom: 1px solid #e7e6e6
    }
}

header .container .menu-wrapper ul.primary-menu li a {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 0em;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 25px 0 21px 0
}

@media(max-width: 1200px) {
    header .container .menu-wrapper ul.primary-menu li a {
        width: 100%;
        justify-content: space-between;
        padding: 15px 0 15px 0
    }
}

header .container .menu-wrapper ul.primary-menu li:last-child a::before {
    display: none
}

header .container .menu-wrapper ul.primary-menu li ul {
    background: #fff;
    position: absolute;
    list-style: none;
    padding: 24px;
    border-radius: 0px;
    box-sizing: border-box;
    width: 234px;
    margin-top: 1px;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    transition: all .4s ease;
    margin-top: 189px;
    transform: translateY(10px)
}

@media(max-width: 1200px) {
    header .container .menu-wrapper ul.primary-menu li ul {
        position: relative;
        width: 100%;
        transition: opacity .4s ease;
        display: none;
        opacity: 1;
        z-index: 9991;
        visibility: visible;
        margin-bottom: 15px;
        margin-top: 0px;
        padding-top: 0
    }
}

@media(max-width: 1200px) {
    header .container .menu-wrapper ul.primary-menu li ul li {
        border-bottom: 0
    }
}

header .container .menu-wrapper ul.primary-menu li ul li a {
    padding-top: 0;
    padding-bottom: 16px;
    display: block;
    text-transform: capitalize;
    color: rgba(255, 255, 255, .5);
    transition: all .3s ease
}

@media(max-width: 1200px) {
    header .container .menu-wrapper ul.primary-menu li ul li a {
        margin-bottom: 15px;
        border-bottom: 1px solid #e7e6e6
    }
}

header .container .menu-wrapper ul.primary-menu li ul li a:hover {
    color: #fff
}

header .container .menu-wrapper ul.primary-menu li ul li a::after,
header .container .menu-wrapper ul.primary-menu li ul li a::before {
    display: none !important
}

@media(max-width: 1200px) {
    header .container .menu-wrapper ul.primary-menu li ul li:last-child {
        border-bottom: 0px solid #e7e6e6
    }
}

header .container .menu-wrapper ul.primary-menu li ul li:last-child a {
    padding-bottom: 0
}

@media(max-width: 1200px) {
    header .container .menu-wrapper ul.primary-menu li ul li:last-child a {
        border-bottom: 0px solid #e7e6e6
    }
}

header .container .menu-wrapper ul.primary-menu li .aci-megamenu {
    position: absolute;
    top: 107px;
    width: 1100px;
    background: #fff;
    left: 50%;
    transform: translate(-50%, 10px);
    padding: 30px 40px;
    box-sizing: border-box;
    box-shadow: 0px 30px 40px 0px rgba(14, 17, 30, .2);
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: all .4s ease;
    display: none
}

@media(max-width: 1200px) {
    header .container .menu-wrapper ul.primary-menu li .aci-megamenu {
        top: 0 !important;
        position: relative;
        left: 0;
        transform: translate(0px, 0px) !important;
        width: 100%;
        box-sizing: border-box;
        box-shadow: none;
        padding: 0
    }

    header .container .menu-wrapper ul.primary-menu li .aci-megamenu.active {
        opacity: 1;
        z-index: 999991;
        visibility: visible;
        transform: translate(-50%, 0px);
        display: block
    }
}

header .container .menu-wrapper ul.primary-menu li .aci-megamenu .btn-primary {
    margin: 0 auto;
    display: table;
    width: 330px;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
    padding: 12px
}

header .container .menu-wrapper ul.primary-menu li .aci-megamenu .btn-primary::before {
    display: none
}

header .container .menu-wrapper ul.primary-menu li .aci-megamenu .btn-primary svg {
    position: relative;
    top: 5px
}

header .container .menu-wrapper ul.primary-menu li .aci-megamenu .btn-primary svg path {
    stroke: #fff
}

header .container .menu-wrapper ul.primary-menu li .aci-megamenu .aci-megamenu-inner {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #e7e6e6;
    padding-bottom: 30px;
    margin-bottom: 30px
}

header .container .menu-wrapper ul.primary-menu li .aci-megamenu .aci-megamenu-inner .aci-megamenu-item {
    padding-right: 30px;
    width: 320px;
    box-sizing: border-box;
    border-right: 1px solid #e7e6e6;
    margin-right: 30px
}

@media(max-width: 1200px) {
    header .container .menu-wrapper ul.primary-menu li .aci-megamenu .aci-megamenu-inner .aci-megamenu-item {
        padding-right: 0;
        width: 100%;
        box-sizing: border-box;
        border-right: 0px solid #e7e6e6;
        margin-right: 0
    }
}

header .container .menu-wrapper ul.primary-menu li .aci-megamenu .aci-megamenu-inner .aci-megamenu-item:last-child {
    border-right: 0;
    padding-right: 0;
    margin-right: 0
}

header .container .menu-wrapper ul.primary-menu li .aci-megamenu .aci-megamenu-inner .aci-megamenu-item a.btn-outline {
    display: inline-flex;
    border: 1px solid #270110;
    width: 140px;
    border-radius: 40px;
    padding: 10px 24px;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    color: #270110;
    margin-top: 20px;
    transition: all .2s ease-in
}

header .container .menu-wrapper ul.primary-menu li .aci-megamenu .aci-megamenu-inner .aci-megamenu-item a.btn-outline::before {
    display: none
}

@media(max-width: 1200px) {
    header .container .menu-wrapper ul.primary-menu li .aci-megamenu .aci-megamenu-inner .aci-megamenu-item a.btn-outline {
        margin-bottom: 20px;
        margin-top: 10px;
        display: table
    }
}

header .container .menu-wrapper ul.primary-menu li .aci-megamenu .aci-megamenu-inner .aci-megamenu-item a.btn-outline svg {
    top: 0;
    margin-left: 6px;
    width: 20px;
    height: 20px
}

@media(max-width: 600px) {
    header .container .menu-wrapper ul.primary-menu li .aci-megamenu .aci-megamenu-inner .aci-megamenu-item a.btn-outline svg {
        top: 11px;
        right: 25px
    }
}

header .container .menu-wrapper ul.primary-menu li .aci-megamenu .aci-megamenu-inner .aci-megamenu-item a.btn-outline svg path {
    stroke: #270110
}

header .container .menu-wrapper ul.primary-menu li .aci-megamenu .aci-megamenu-inner .aci-megamenu-item a.btn-outline:hover {
    background: #00AF54;
    color: #fff;
    border: 1px solid #00AF54
}

header .container .menu-wrapper ul.primary-menu li .aci-megamenu .aci-megamenu-inner .aci-megamenu-item a.btn-outline:hover svg path {
    stroke: #fff
}

header .container .menu-wrapper ul.primary-menu li .aci-megamenu .aci-megamenu-inner .aci-megamenu-item h4 {
    font-size: 30px;
    line-height: 40px;
    color: #270110
}

header .container .menu-wrapper ul.primary-menu li .aci-megamenu .aci-megamenu-inner .aci-megamenu-item img {
    display: block;
    margin-bottom: 20px;
    height: 150px;
    border-radius: 8px
}

header .container .menu-wrapper ul.primary-menu li .aci-megamenu .aci-megamenu-inner .aci-megamenu-item ul {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
    transform: translate(0px, 0px)
}

@media(max-width: 1200px) {
    header .container .menu-wrapper ul.primary-menu li .aci-megamenu .aci-megamenu-inner .aci-megamenu-item ul {
        display: block !important
    }
}

header .container .menu-wrapper ul.primary-menu li .aci-megamenu .aci-megamenu-inner .aci-megamenu-item ul li {
    margin-right: 0;
    display: flex;
    flex-wrap: wrap
}

header .container .menu-wrapper ul.primary-menu li .aci-megamenu .aci-megamenu-inner .aci-megamenu-item ul li a {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    border-bottom: 1px solid #e7e6e6;
    padding-bottom: 10px;
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 30px;
    transition: all .2s ease-in-out
}

header .container .menu-wrapper ul.primary-menu li .aci-megamenu .aci-megamenu-inner .aci-megamenu-item ul li a svg {
    transition: all .2s ease-in-out;
    width: 32px;
    height: 32px
}

@media(max-width: 1200px) {
    header .container .menu-wrapper ul.primary-menu li .aci-megamenu .aci-megamenu-inner .aci-megamenu-item ul li a svg {
        top: 0
    }
}

header .container .menu-wrapper ul.primary-menu li .aci-megamenu .aci-megamenu-inner .aci-megamenu-item ul li a:hover {
    color: #00AF54
}

header .container .menu-wrapper ul.primary-menu li .aci-megamenu .aci-megamenu-inner .aci-megamenu-item ul li a:hover svg {
    fill: #00AF54
}

header .container .menu-wrapper ul.primary-menu li .aci-megamenu .aci-megamenu-inner .aci-megamenu-item ul li a:hover svg path {
    stroke: #fff
}

header .container .menu-wrapper ul.primary-menu li .aci-megamenu.menu-service__list .aci-megamenu-inner {
    padding-bottom: 0;
    margin-bottom: 0;
    border: none;
    gap: 30px;
    margin-right: -30px
}

@media(max-width: 1200px) {
    header .container .menu-wrapper ul.primary-menu li .aci-megamenu.menu-service__list .aci-megamenu-inner {
        margin-right: 0
    }
}

header .container .menu-wrapper ul.primary-menu li .aci-megamenu.menu-service__list .aci-megamenu-inner .aci-megamenu-service {
    border: 1px solid rgba(39, 1, 16, .1019607843);
    border-radius: 8px;
    padding: 20px;
    width: calc(33.33% - 30px);
    text-align: center;
    position: relative
}

@media(max-width: 1200px) {
    header .container .menu-wrapper ul.primary-menu li .aci-megamenu.menu-service__list .aci-megamenu-inner .aci-megamenu-service {
        width: 100%
    }
}

header .container .menu-wrapper ul.primary-menu li .aci-megamenu.menu-service__list .aci-megamenu-inner .aci-megamenu-service a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

header .container .menu-wrapper ul.primary-menu li .aci-megamenu.menu-service__list .aci-megamenu-inner .aci-megamenu-service img {
    margin-bottom: 30px;
    width: 64px;
    height: auto
}

header .container .menu-wrapper ul.primary-menu li .aci-megamenu.menu-service__list .aci-megamenu-inner .aci-megamenu-service h3 {
    font-size: 20px;
    line-height: 30px
}

header .container .menu-wrapper ul.primary-menu li.submenu {
    display: flex;
    align-items: center;
    gap: 4px
}

@media(max-width: 1200px) {
    header .container .menu-wrapper ul.primary-menu li.submenu {
        align-items: flex-start;
        flex-wrap: wrap;
        position: relative
    }
}

header .container .menu-wrapper ul.primary-menu li.submenu svg {
    position: relative;
    top: 3px;
    width: 15px;
    height: 15px
}

@media(max-width: 1200px) {
    header .container .menu-wrapper ul.primary-menu li.submenu svg {
        position: absolute;
        right: 0;
        top: 12px;
        width: 24px;
        height: 24px
    }
}

header .container .menu-wrapper ul.primary-menu li.submenu a {
    position: relative;
    z-index: 9999
}

header .container .menu-wrapper ul.primary-menu li.submenu a::before {
    right: -39px
}

header .container .menu-wrapper ul.primary-menu li.submenu ul li a {
    color: #270110
}

header .container .menu-wrapper ul.primary-menu li.submenu ul li a svg path {
    stroke: #270110
}

header .container .menu-wrapper ul.primary-menu li.submenu ul li a:hover {
    color: #00AF54
}

header .container .menu-wrapper ul.primary-menu li.submenu-list {
    position: relative
}

header .container .menu-wrapper ul.primary-menu li.submenu-list ul {
    margin-top: 0 !important;
    top: 60px !important;
    width: 400px
}

@media(max-width: 1200px) {
    header .container .menu-wrapper ul.primary-menu li.submenu-list ul {
        top: 0 !important
    }
}

header .container .menu-wrapper ul.primary-menu li.submenu-list ul li {
    margin-right: 0
}

header .container .menu-wrapper ul.primary-menu li.submenu-list ul li a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    line-height: 30px;
    margin-right: 0;
    border-bottom: 1px solid #e7e6e6;
    margin-bottom: 12px
}

@media(max-width: 1200px) {
    header .container .menu-wrapper ul.primary-menu li.submenu-list ul li a {
        padding-bottom: 12px
    }
}

header .container .menu-wrapper ul.primary-menu li.submenu-list ul li a svg {
    width: 32px;
    height: 32px
}

@media(max-width: 1200px) {
    header .container .menu-wrapper ul.primary-menu li.submenu-list ul li a svg {
        top: 0
    }
}

header .container .menu-wrapper ul.primary-menu li.submenu-list ul li:last-child a {
    border: none
}

@media(min-width: 1201px) {
    header .container .menu-wrapper ul.primary-menu li:hover ul {
        opacity: 1;
        z-index: 999991;
        visibility: visible;
        transform: translateY(0px)
    }

    header .container .menu-wrapper ul.primary-menu li:hover .aci-megamenu {
        opacity: 1;
        z-index: 999991;
        visibility: visible;
        transform: translate(-50%, 0px);
        display: block
    }
}

@media(max-width: 1200px) {
    header .container .menu-wrapper ul.primary-menu li.active ul {
        opacity: 1;
        z-index: 999991;
        visibility: visible;
        transform: translateY(0px)
    }
}

header .container .menu-wrapper ul.primary-menu li:hover a {
    color: #00AF54
}

header .container .menu-wrapper ul.primary-menu li:hover svg path {
    stroke: #00AF54
}

header .container .menu-wrapper .header-right {
    display: flex;
    align-items: center;
    gap: 20px
}

@media(max-width: 1200px) {
    header .container .menu-wrapper .header-right {
        justify-content: center
    }
}

@media(max-width: 600px) {
    header .container .menu-wrapper .header-right {
        width: 100%;
        padding: 0 20px
    }
}

@media(max-width: 1200px) {
    header .container .menu-wrapper .header-right .goodrej__searchbar {
        display: none
    }
}

@media(max-width: 600px) {
    header .container .menu-wrapper .header-right .btn-primary {
        width: 100%
    }
}

header .container .menu-wrapper button.goodrej__searchbar {
    background: rgba(0, 0, 0, 0);
    cursor: pointer;
    border: 1px solid rgba(19, 0, 8, .1019607843);
    padding: 14px;
    border-radius: 100%;
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center
}

.mobile-footer-menu {
    margin-top: 30px;
    display: none;
    padding: 0 20px;
    margin-bottom: 30px
}

@media(max-width: 1200px) {
    .mobile-footer-menu {
        display: block
    }
}

.mobile-footer-menu img {
    display: block;
    margin-bottom: 30px
}

.mobile-footer-menu .mobile-menu-contact li {
    width: 100%
}

.mobile-footer-menu .mobile-menu-contact li a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #270110
}

.mobile-footer-menu .mobile-menu-contact li a span {
    color: #270110
}

.mobile-footer-menu ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 26px
}

.mobile-footer-menu ul li a svg {
    width: 26px;
    height: 26px
}

.header-top {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(39, 1, 16, .1)
}

@media(max-width: 1200px) {
    .header-top {
        display: none
    }
}

.header-top .container {
    justify-content: space-between
}

.header-top .container .header-top-left ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0px
}

.header-top .container .header-top-left ul li {
    position: relative;
    gap: 4px;
    display: flex;
    align-items: center
}

.header-top .container .header-top-left ul li a {
    font-size: 12px;
    line-height: 14px;
    opacity: .7;
    color: #270110
}

.header-top .container .header-top-left ul li a:hover {
    opacity: 1;
    color: #00AF54
}

.header-top .container .header-top-left ul li::after {
    content: "|";
    padding-left: 15px;
    padding-right: 15px;
    opacity: .2;
    font-size: 12px;
    line-height: 14px
}

.header-top .container .header-top-left ul li:last-child::after {
    display: none
}

.header-top .container .header-top-right ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0px
}

.header-top .container .header-top-right ul li {
    position: relative;
    gap: 4px;
    display: flex;
    align-items: center
}

.header-top .container .header-top-right ul li a {
    font-size: 12px;
    line-height: 14px;
    opacity: .7;
    color: #270110
}

.header-top .container .header-top-right ul li a:hover {
    color: #00AF54;
    opacity: 1
}

.header-top .container .header-top-right ul li::after {
    content: "|";
    padding-left: 15px;
    padding-right: 15px;
    opacity: .2;
    font-size: 12px;
    line-height: 14px
}

.header-top .container .header-top-right ul li:last-child::after {
    display: none
}

.header-top .container .header-top-right select {
    background: rgba(0, 0, 0, 0);
    border: none;
    opacity: .7
}

.aci__search-box {
    position: absolute;
    opacity: 0;
    z-index: -1;
    top: 55px;
    width: 100%
}

@media(max-width: 1200px) {
    .aci__search-box {
        top: 0
    }
}

@media(max-width: 1200px) {
    .aci__search-box .container {
        padding: 0
    }
}

.aci__search-box .aci__search-box-inner {
    width: 646px;
    background: #fff;
    border: 1px solid #00AF54;
    border-radius: 80px;
    padding: 14px 20px;
    box-sizing: border-box;
    margin: 0 244px 0 auto;
    position: relative
}

@media(max-width: 1200px) {
    .aci__search-box .aci__search-box-inner {
        top: 8px;
        left: 50%;
        width: 500px;
        transform: translateX(-50%);
        margin: 0;
        padding: 10px 20px
    }
}

@media(max-width: 990px) {
    .aci__search-box .aci__search-box-inner {
        width: 60%
    }
}

@media(max-width: 600px) {
    .aci__search-box .aci__search-box-inner {
        width: 95%
    }
}

@media(max-width: 1200px) {
    .aci__search-box {
        position: absolute
    }
}

.aci__search-box .btn-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 4px;
    cursor: pointer
}

.aci__search-box.activated {
    opacity: 1;
    z-index: 999991
}

.aci__search-box button {
    background: rgba(0, 0, 0, 0);
    border: none;
    position: relative;
    top: 4px
}

.aci__search-box input {
    outline: 0;
    width: calc(100% - 25px);
    border: none;
    color: #534249;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 22px
}

body.activated .aci__search-box {
    opacity: 1;
    z-index: 999991
}

.search__list {
    position: absolute;
    background: #fff;
    width: 100%;
    left: 0;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 0 0 8px 8px;
    top: 63px;
    display: none
}

@media(max-width: 1200px) {
    .search__list {
        top: 55px
    }
}

.search__list.activated {
    display: block
}

.search__list a {
    display: block;
    padding: 10px;
    font-size: 16px;
    line-height: 24px;
    color: #270110
}

footer .foooter-top {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15)
}

@media(max-width: 600px) {
    footer .foooter-top {
        border-bottom: 0px
    }
}

footer .foooter-top .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 58px
}

@media(max-width: 600px) {
    footer .foooter-top .container {
        justify-content: center;
        gap: 30px;
        padding: 0 16px
    }
}

footer .foooter-top ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 26px
}

@media(max-width: 600px) {
    footer .foooter-top ul {
        justify-content: center
    }
}

@media(max-width: 600px) {
    footer .foooter-top .footer-top-social {
        text-align: center;
        width: 100%
    }
}

@media(max-width: 600px) {
    footer .foooter-top .footer-top-social h4 {
        display: none
    }
}

footer .footer-bottom {
    padding: 70px 0 0px 0
}

@media(max-width: 600px) {
    footer .footer-bottom {
        padding-bottom: 0
    }
}

footer .footer-bottom .container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 57px
}

@media(max-width: 600px) {
    footer .footer-bottom .container {
        padding-bottom: 0;
        gap: 20px
    }
}

footer .footer-bottom .footer-logo {
    margin-bottom: 20px
}

footer .footer-bottom .footer-menu {
    padding-left: 0px;
    padding-right: 20px;
    border-right: 1px solid rgba(255, 255, 255, .15);
    width: calc(16% - 30px);
    margin-top: 40px
}

footer .footer-bottom .footer-menu:first-child {
    width: 30%;
    margin-top: 0
}

@media(max-width: 990px) {
    footer .footer-bottom .footer-menu:first-child {
        width: 47%
    }
}

@media(max-width: 600px) {
    footer .footer-bottom .footer-menu:first-child {
        width: 100%;
        padding: 0;
        margin-bottom: 0
    }
}

footer .footer-bottom .footer-menu:first-child .footer-title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500
}

@media(min-width: 1201px)and (max-width: 1380px) {
    footer .footer-bottom .footer-menu {
        padding-left: 0px;
        padding-right: 0px
    }
}

@media(max-width: 1200px) {
    footer .footer-bottom .footer-menu {
        padding-left: 14px;
        padding-right: 14px;
        border-right: 0px solid rgba(255, 255, 255, .15);
        width: 30%
    }
}

@media(max-width: 990px) {
    footer .footer-bottom .footer-menu {
        width: 47%
    }
}

@media(max-width: 600px) {
    footer .footer-bottom .footer-menu {
        width: 100%
    }
}

@media(max-width: 600px) {
    footer .footer-bottom .footer-menu {
        border-right: 0px solid rgba(255, 255, 255, .15);
        border-bottom: 1px solid #e7e6e6;
        width: 100%;
        background: rgba(255, 255, 255, .1019607843);
        margin: 0 auto;
        padding: 0px;
        border-radius: 4px;
        margin-bottom: 16px
    }
}

@media(max-width: 600px) {
    footer .footer-bottom .footer-menu .footer-address {
        padding-bottom: 10px
    }
}

footer .footer-bottom .footer-menu .footer-address ul {
    display: block !important
}

footer .footer-bottom .footer-menu .footer-address ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 24px;
    color: #534249
}

footer .footer-bottom .footer-menu .footer-address ul li svg path {
    stroke: #00AF54
}

footer .footer-bottom .footer-menu .footer-address ul li a {
    font-size: 14px;
    line-height: 24px;
    color: #534249;
    margin-bottom: 0
}

footer .footer-bottom .footer-menu .footer-address ul li a:hover {
    color: #00AF54
}

footer .footer-bottom .footer-menu .footer-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 0em;
    margin-bottom: 15px
}

@media(max-width: 600px) {
    footer .footer-bottom .footer-menu .footer-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0px
    }
}

footer .footer-bottom .footer-menu .footer-title .mobile-icon {
    display: none
}

@media(max-width: 600px) {
    footer .footer-bottom .footer-menu .footer-title .mobile-icon {
        display: block
    }
}

footer .footer-bottom .footer-menu .footer-title.active .mobile-icon {
    transform: rotate(180deg)
}

footer .footer-bottom .footer-menu ul {
    list-style: none
}

@media(max-width: 600px) {
    footer .footer-bottom .footer-menu ul {
        display: none;
        margin-top: 16px
    }

    footer .footer-bottom .footer-menu ul.active {
        display: block
    }
}

footer .footer-bottom .footer-menu ul li a {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0em;
    display: block;
    margin-bottom: 10px;
    color: #534249
}

footer .footer-bottom .footer-menu ul li a:hover {
    color: #00AF54
}

footer .footer-bottom .footer-menu:last-child {
    border-right: 0
}

.footer-copyright {
    padding: 0px 58px 0px 58px
}

@media(max-width: 1200px) {
    .footer-copyright {
        padding: 10px 0 0 0
    }
}

.footer-copyright .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 1px solid rgba(39, 1, 16, .15);
    padding: 24px 0px 24px 0px
}

@media(max-width: 1200px) {
    .footer-copyright .container {
        gap: 12px;
        justify-content: center;
        padding: 0 16px;
        border-top: 0
    }
}

.footer-copyright .container p {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0em;
    color: #534249
}

@media(max-width: 1200px) {
    .footer-copyright .container p {
        width: 100%;
        text-align: center
    }
}

@media(max-width: 600px) {
    .footer-copyright .container p {
        font-size: 14px;
        line-height: 22px
    }
}

.footer-copyright .container ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.footer-copyright .container ul li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
    transition: all .3s ease-in
}

.footer-copyright .container ul li a:hover svg path {
    fill: #00AF54
}

@media(max-width: 600px) {
    .footer-copyright .container ul li a {
        font-size: 14px;
        line-height: 19px
    }
}

@media(max-width: 600px) {
    .menu-accordion-menu {
        padding-bottom: 20px !important;
        margin-bottom: 0 !important
    }
}

.aci__banner-section {
    height: 400px;
    position: relative
}

.aci__banner-section .aci__banner-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background-size: cover !important;
    background-position: center center !important
}

.aci__banner-section .act__banner-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 100%)
}

.aci__banner-section .container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    height: 100%
}

.aci__banner-section .container .banner-content {
    max-width: 700px
}

.aci__banner-section .container .banner-content h1 {
    font-size: 70px;
    font-weight: 400;
    line-height: 80px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    margin-bottom: 10px
}

@media(max-width: 600px) {
    .aci__banner-section .container .banner-content h1 {
        font-size: 50px;
        line-height: 60px
    }
}

.aci__banner-section .container .banner-content p {
    color: #fff
}

.hero-slider-wrapper {
    position: relative
}

.hero-slider-wrapper .hero-sticky-btn {
    position: absolute;
    right: 30px;
    z-index: 9;
    bottom: 20px
}

@media(max-width: 1200px) {
    .hero-slider-wrapper .hero-sticky-btn {
        bottom: 70px
    }
}

@media(max-width: 600px) {
    .hero-slider-wrapper .hero-sticky-btn {
        display: none
    }
}

.hero-slider-wrapper .hero-sticky-btn:hover svg rect {
    fill: #00AF54;
    stroke: #00AF54
}

.hero-slider {
    height: calc(100vh - 106px);
    overflow: hidden;
    margin-bottom: 0 !important
}

@media(max-width: 1200px) {
    .hero-slider {
        height: 586px
    }
}

@media(max-width: 990px) {
    .hero-slider {
        height: 430px
    }
}

@media(max-width: 600px) {
    .hero-slider {
        height: 586px
    }
}

.hero-slider ul.slick-dots {
    position: absolute;
    bottom: 24px
}

.hero-slider ul.slick-dots li {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 2px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    background: #fff;
    opacity: .4;
    transition: all .3s ease-in-out
}

.hero-slider ul.slick-dots li:hover {
    background: #fff;
    opacity: 1
}

.hero-slider ul.slick-dots li.slick-active {
    background: #fff;
    opacity: 1
}

.hero-slider .hero-image {
    position: relative
}

.hero-slider .hero-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 100%);
    height: 100%;
    width: 100%;
    z-index: 2
}

.hero-slider .hero-image img,
.hero-slider .hero-image video {
    width: 100%;
    height: 100vh;
    object-fit: cover
}

@media(max-width: 1200px) {

    .hero-slider .hero-image img,
    .hero-slider .hero-image video {
        height: 586px
    }
}

@media(max-width: 990px) {

    .hero-slider .hero-image img,
    .hero-slider .hero-image video {
        height: 430px
    }
}

@media(max-width: 600px) {

    .hero-slider .hero-image img,
    .hero-slider .hero-image video {
        height: 586px
    }
}

.hero-slider .hero-image .hero-content {
    position: absolute;
    top: 0%;
    transform: translateY(0%);
    width: 702px;
    margin-left: 0px;
    z-index: 91;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: calc(100vh - 106px)
}

@media(max-width: 1200px) {
    .hero-slider .hero-image .hero-content {
        width: 90%;
        margin-left: 0px;
        padding-right: 15px;
        box-sizing: border-box;
        height: 586px
    }
}

@media(max-width: 990px) {
    .hero-slider .hero-image .hero-content {
        height: 440px
    }
}

@media(max-width: 600px) {
    .hero-slider .hero-image .hero-content {
        width: 100%;
        left: 0;
        padding-left: 15px;
        height: 586px
    }
}

.hero-slider .hero-image .hero-content h1 {
    font-size: 70px;
    font-weight: 400;
    line-height: 80px;
    letter-spacing: 0em;
    margin-bottom: 40px;
    color: #fff
}

@media(max-width: 1200px) {
    .hero-slider .hero-image .hero-content h1 {
        font-size: 50px;
        line-height: 50px;
        max-width: 450px
    }
}

@media(max-width: 600px) {
    .hero-slider .hero-image .hero-content h1 {
        max-width: 100%
    }
}

.hero-slider .hero-image .hero-content .btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px
}

.hero-slider .hero-image .hero-content a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #fff;
    transition: all .3s ease-in-out;
    justify-content: center;
    padding: 12px 24px;
    box-sizing: border-box
}

@media(max-width: 600px) {
    .hero-slider .hero-image .hero-content a {
        width: 100%
    }
}

.hero-slider .hero-image .hero-content a.btn-primary {
    border: 1px solid #00AF54
}

.hero-slider .hero-image .hero-content a.btn-transparent {
    border: 1px solid #fff;
    border-radius: 30px
}

.hero-slider .hero-image .hero-content a.btn-transparent:hover {
    background: #00AF54;
    border: 1px solid #00AF54
}

@media(max-width: 600px) {
    .hero-slider .hero-image .hero-content a {
        font-size: 20px;
        line-height: 32px
    }
}

.hero-slider .hero-image .hero-content a svg {
    transition: all .3s ease-in-out;
    position: relative
}

.hero-slider .hero-image .hero-content a:hover svg {
    margin-left: 5px
}

.home-about {
    padding: 100px 0 195px 0;
    background: #f1faf2
}

@media(max-width: 600px) {
    .home-about {
        padding: 60px 0 107px 0
    }
}

.home-about .home-about-wrapper {
    display: flex;
    gap: 60px
}

@media(max-width: 1200px) {
    .home-about .home-about-wrapper {
        flex-direction: column-reverse
    }
}

@media(max-width: 600px) {
    .home-about .home-about-wrapper {
        gap: 40px
    }
}

.home-about .home-about-wrapper .home-about-thumbnail {
    width: 50%;
    position: relative
}

@media(max-width: 1200px) {
    .home-about .home-about-wrapper .home-about-thumbnail {
        margin: 0 auto;
        display: table;
        width: 521px
    }
}

@media(max-width: 600px) {
    .home-about .home-about-wrapper .home-about-thumbnail {
        width: 330px
    }
}

.home-about .home-about-wrapper .home-about-thumbnail img.image-01 {
    border-radius: 10px;
    max-width: 430px
}

@media(max-width: 600px) {
    .home-about .home-about-wrapper .home-about-thumbnail img.image-01 {
        width: 238px;
        height: 252px;
        object-fit: cover
    }
}

.home-about .home-about-wrapper .home-about-thumbnail .image-02 {
    position: absolute;
    border-radius: 10px;
    bottom: -94px;
    right: 0
}

@media(max-width: 600px) {
    .home-about .home-about-wrapper .home-about-thumbnail .image-02 {
        bottom: -46px;
        right: 0;
        width: 210px
    }
}

.home-about .home-about-wrapper .home-about-thumbnail .home-counter-item {
    position: absolute;
    background: #fafff9;
    width: 223px;
    height: 223px;
    top: 50%;
    left: 50%;
    transform: translate(12%, -50%);
    border-radius: 100%;
    text-align: center;
    padding-top: 46px
}

@media(max-width: 600px) {
    .home-about .home-about-wrapper .home-about-thumbnail .home-counter-item {
        width: 168px;
        height: 168px;
        transform: translate(-35%, -68%);
        padding-top: 27px
    }
}

.home-about .home-about-wrapper .home-about-thumbnail .home-counter-item .ring {
    width: 243px;
    height: 243px;
    border-radius: 50%;
    border: 1px dashed #00AF54;
    position: absolute;
    animation: ring 2s infinite ease-in-out;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .3
}

@media(max-width: 600px) {
    .home-about .home-about-wrapper .home-about-thumbnail .home-counter-item .ring {
        width: 168px;
        height: 168px
    }
}

.home-about .home-about-wrapper .home-about-thumbnail .home-counter-item img {
    margin-bottom: 6px
}

@media(max-width: 600px) {
    .home-about .home-about-wrapper .home-about-thumbnail .home-counter-item img {
        width: 49px
    }
}

.home-about .home-about-wrapper .home-about-thumbnail .home-counter-item .home-counter-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px
}

.home-about .home-about-wrapper .home-about-thumbnail .home-counter-item .home-counter-inner span.counter {
    font-size: 50px;
    line-height: 60px;
    color: #00AF54
}

@media(max-width: 600px) {
    .home-about .home-about-wrapper .home-about-thumbnail .home-counter-item .home-counter-inner span.counter {
        font-size: 36px;
        line-height: 46px
    }
}

.home-about .home-about-wrapper .home-about-thumbnail .home-counter-item .home-counter-inner span.counter-title {
    width: 74px;
    font-size: 14px;
    line-height: 19px
}

.home-about .home-about-wrapper .home-about-content {
    width: 50%;
    padding-top: 62px
}

@media(max-width: 1200px) {
    .home-about .home-about-wrapper .home-about-content {
        width: 100%;
        padding-top: 0
    }
}

.home-about .home-about-wrapper .home-about-content p {
    margin-bottom: 40px;
    color: #534249
}

.home-about .home-about-wrapper .home-about-content .home-about-content-top {
    display: flex;
    margin-bottom: 10px;
    gap: 10px;
    font-size: 18px;
    color: #04440a;
    line-height: 28px;
    font-weight: 500;
    align-items: center
}

.home-about .home-about-wrapper .home-about-content .home-about-content-top .line {
    width: 166px;
    height: 2px;
    background: #04440a;
    margin-left: 10px
}

@media(max-width: 600px) {
    .home-about .home-about-wrapper .home-about-content .home-about-content-top .line {
        width: 55px
    }
}

.home-about .home-about-wrapper .home-about-content .btn-transparent {
    font-weight: 600
}

@media(max-width: 600px) {
    .home-about .home-about-wrapper .home-about-content .btn-transparent {
        width: 100%;
        justify-content: center
    }
}

.timeline-wrapper {
    padding: 80px 0 100px 0;
    background: #f1faf2;
    margin-top: 100px
}

@media(max-width: 600px) {
    .timeline-wrapper {
        padding: 50px 0
    }
}

@media(max-width: 600px) {
    .timeline-wrapper .about-slider-right {
        padding-left: 15px !important
    }
}

.timeline-wrapper .slick-list {
    padding: 0 !important;
    padding-right: 70px !important;
    margin: 0 -30px 0 0
}

@media(max-width: 600px) {
    .timeline-wrapper .slick-list {
        margin: 0 8px 0 0;
        padding-right: 40px !important
    }
}

.timeline-wrapper .slick-slide {
    margin: 0 30px 0 0
}

@media(max-width: 600px) {
    .timeline-wrapper .slick-slide {
        margin: 0 30px 0 0
    }
}

.timeline-wrapper .timeline-slider {
    position: relative
}

.timeline-wrapper .timeline-slider .slick-list {
    cursor: all-scroll
}

.timeline-wrapper .timeline-slider .slick-list .slick-track {
    padding-top: 50px
}

.timeline-wrapper .timeline-slider .timeline-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding-top: 25px
}

.timeline-wrapper .timeline-slider .timeline-item h4 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
    font-weight: 600
}

.timeline-wrapper .timeline-slider .timeline-item p {
    color: #534249
}

.timeline-wrapper .timeline-slider .timeline-item::before {
    content: "";
    background: #e7e6e6;
    width: calc(100% + 30px);
    height: 2px;
    z-index: 2;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    position: absolute
}

.timeline-wrapper .timeline-slider .timeline-item::after {
    content: "";
    background: #00AF54;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    border: 2px solid #fff;
    z-index: 2;
    display: block;
    top: 50%;
    transform: translateY(-80%);
    position: absolute
}

.timeline-wrapper .timeline-slider .timeline-item:nth-child(even) {
    flex-direction: column-reverse
}

.timeline-wrapper .timeline-slider .timeline-item:nth-child(even) .timeline-item-inner {
    top: -50px;
    position: relative
}

.core-values {
    padding: 80px 0 100px 0
}

@media(max-width: 990px) {
    .core-values {
        padding: 50px 0
    }
}

.core-values .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.core-values .section-head-left {
    position: sticky;
    position: -webkit-sticky;
    top: 50%;
    width: 43%;
    height: 50vh
}

@media(max-width: 990px) {
    .core-values .section-head-left {
        width: 100%;
        height: auto;
        position: relative
    }
}

.core-values .section-head-left p {
    margin-bottom: 40px;
    color: #534249
}

.core-values .section-head-left a {
    display: inline-flex
}

.core-values .strengths-wrapper {
    max-width: 384px;
    padding-left: 30px;
    border-left: 1px solid #e7e6e6
}

@media(max-width: 990px) {
    .core-values .strengths-wrapper {
        max-width: 100%
    }
}

.core-values .strengths-wrapper .strengths-item {
    margin-bottom: 40px;
    position: relative
}

.core-values .strengths-wrapper .strengths-item::after {
    content: "";
    position: absolute;
    left: -31px;
    top: 0;
    background: #00AF54;
    height: 60px;
    width: 2px;
    z-index: 99
}

.core-values .strengths-wrapper .strengths-item img {
    margin-bottom: 10px
}

.core-values .strengths-wrapper .strengths-item h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    margin-bottom: 10px
}

.core-values .strengths-wrapper .strengths-item p {
    font-size: 14px;
    line-height: 22px;
    color: #534249
}

.about-certificate {
    padding: 80px 0;
    background: #f1faf2
}

@media(max-width: 1200px) {
    .about-certificate {
        padding: 50px 0
    }
}

@media(max-width: 1200px) {
    .about-certificate .section-head {
        margin-bottom: 30px
    }
}

.about-certificate .section-head .top-title {
    font-weight: 500;
    color: #04440a
}

.about-certificate .home-about-content-top {
    display: flex;
    gap: 10px;
    justify-content: center
}

.about-certificate .slick-list {
    margin: 0 -30px 0 0 !important
}

@media(max-width: 600px) {
    .about-certificate .slick-list {
        margin: 0 !important
    }
}

.about-certificate .slick-prev {
    left: -55px;
    margin-top: -28px
}

@media(min-width: 1201px)and (max-width: 1380px) {
    .about-certificate .slick-prev {
        left: -18px;
        margin-top: -28px;
        z-index: 9
    }
}

@media(max-width: 1200px) {
    .about-certificate .slick-prev {
        display: none !important
    }
}

.about-certificate .slick-next {
    right: -37px;
    margin-top: -28px
}

@media(min-width: 1201px)and (max-width: 1380px) {
    .about-certificate .slick-next {
        right: 0
    }
}

@media(max-width: 1200px) {
    .about-certificate .slick-next {
        display: none !important
    }
}

.about-certificate .client-slider .cleint-item {
    background-color: #fff;
    margin: 0px 30px 0px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 8px
}

@media(max-width: 600px) {
    .about-certificate .client-slider .cleint-item {
        margin: 0 !important
    }
}

.aci-promo-section {
    padding: 60px 0
}

@media(max-width: 600px) {
    .aci-promo-section {
        padding: 30px 0
    }
}

.aci-promo-section .aci-promo-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px
}

@media(max-width: 600px) {
    .aci-promo-section .aci-promo-wrapper {
        gap: 20px
    }
}

.aci-promo-section .aci-promo-wrapper .aci-promo-item {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center
}

.aci-promo-section .aci-promo-wrapper .aci-promo-item:last-child {
    margin-bottom: 0
}

@media(max-width: 1200px) {
    .aci-promo-section .aci-promo-wrapper .aci-promo-item {
        width: calc(50% - 30px);
        margin-bottom: 16px
    }
}

@media(max-width: 600px) {
    .aci-promo-section .aci-promo-wrapper .aci-promo-item {
        width: 100%;
        border-bottom: 1px solid #e7e6e6;
        padding-bottom: 20px;
        margin-bottom: 0
    }
}

.aci-promo-section .aci-promo-wrapper .aci-promo-item .promo-icon {
    width: 60px
}

.aci-promo-section .aci-promo-wrapper .aci-promo-item .promo-icon img {
    width: 100%;
    height: auto
}

.aci-promo-section .aci-promo-wrapper .aci-promo-item .promo-icon-content {
    width: calc(100% - 80px)
}

.aci-promo-section .aci-promo-wrapper .aci-promo-item .promo-icon-content .icon-title {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 2px
}

.aci-promo-section .aci-promo-wrapper .aci-promo-item .promo-icon-content .icon-des {
    font-size: 20px;
    line-height: 30px;
    color: #534249
}

.aci-promo-section.with-bg .aci-promo-wrapper {
    gap: 20px
}

.aci-promo-section.with-bg .aci-promo-wrapper .aci-promo-item {
    background: #f1faf2;
    padding: 45px 30px;
    border-radius: 8px;
    width: calc(25% - 20px);
    box-sizing: border-box
}

@media(max-width: 1200px) {
    .aci-promo-section.with-bg .aci-promo-wrapper .aci-promo-item {
        width: calc(50% - 20px)
    }
}

@media(max-width: 600px) {
    .aci-promo-section.with-bg .aci-promo-wrapper .aci-promo-item {
        width: 100%
    }
}

.latest-insights {
    padding: 100px 0;
    background: #f1faf2
}

.latest-insights .container {
    max-width: 1300px
}

@media(min-width: 1201px)and (max-width: 1380px) {
    .latest-insights .container {
        padding: 0 30px
    }
}

@media(max-width: 1200px) {
    .latest-insights .container {
        max-width: 100%;
        padding: 0 60px;
        box-sizing: border-box
    }
}

@media(max-width: 990px) {
    .latest-insights .container {
        max-width: 100%;
        padding: 0 30px;
        box-sizing: border-box
    }
}

@media(max-width: 600px) {
    .latest-insights .container {
        padding: 0 0 0 15px
    }
}

@media(max-width: 600px) {
    .latest-insights {
        padding: 50px 0
    }
}

.latest-insights .slick-prev {
    left: -57px
}

.latest-insights ul.slick-dots {
    position: relative;
    bottom: 0px;
    margin-top: 30px
}

.latest-insights ul.slick-dots li {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 2px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    background: #270110;
    opacity: .6;
    transition: all .3s ease-in-out
}

.latest-insights ul.slick-dots li:hover {
    opacity: 1
}

.latest-insights ul.slick-dots li.slick-active {
    background: #00AF54;
    opacity: 1
}

.latest-insights .for-mobile {
    display: none !important
}

@media(max-width: 600px) {
    .latest-insights .for-mobile {
        display: flex !important;
        justify-content: center;
        margin-top: 20px;
        font-weight: 600;
        width: calc(100% - 15px);
        box-sizing: border-box
    }
}

.latest-insights .section-head {
    margin-bottom: 40px;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between
}

@media(max-width: 600px) {
    .latest-insights .section-head {
        margin-bottom: 20px
    }
}

.latest-insights .section-head .section-title {
    color: #270110;
    margin-bottom: 0
}

@media(max-width: 600px) {
    .latest-insights .section-head .section-title {
        font-size: 36px;
        line-height: 46px
    }
}

@media(max-width: 600px) {
    .latest-insights .section-head a {
        display: none !important
    }
}

.latest-insights button.slick-next.slick-arrow {
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    right: -50px
}

.latest-insights button.slick-next.slick-arrow::before {
    display: none
}

@media(max-width: 1200px) {
    .latest-insights button.slick-next.slick-arrow {
        display: none !important
    }
}

.latest-insights button.slick-prev.slick-arrow {
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    left: -58px;
    z-index: 9
}

.latest-insights button.slick-prev.slick-arrow::before {
    display: none
}

@media(max-width: 1200px) {
    .latest-insights button.slick-prev.slick-arrow {
        display: none !important
    }
}

.latest-insights .slick-slide {
    margin: 0 30px 0 0
}

@media(max-width: 600px) {
    .latest-insights .slick-slide {
        margin: 0 20px 0 0
    }
}

.latest-insights .slick-list {
    margin: 0 -30px 0 0
}

@media(max-width: 600px) {
    .latest-insights .slick-list {
        margin: 0 8px 0 0;
        padding: 0 26px 0 0 !important
    }
}

.latest-insights .latest-insights-slider {
    position: relative;
    margin-bottom: 0 !important
}

.latest-insights .latest-insights-slider .insights-item {
    position: relative
}

.latest-insights .latest-insights-slider .insights-item a.link__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.latest-insights .latest-insights-slider .insights-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 8px
}

.latest-insights .latest-insights-slider .insights-item .insights-item-content {
    padding: 20px 0
}

.latest-insights .latest-insights-slider .insights-item .insights-item-content h3 {
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: 0em;
    margin-bottom: 0px
}

.latest-insights .latest-insights-slider .insights-item .insights-item-content p {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0em;
    color: #534249;
    margin-bottom: 5px
}

.posts {
    padding-bottom: 100px
}

@media(max-width: 1200px) {
    .posts {
        padding-bottom: 50px
    }
}

.post-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-right: -30px
}

@media(max-width: 600px) {
    .post-wrapper {
        margin-right: 0
    }
}

.post-wrapper .post-item {
    width: calc(33.33% - 30px);
    border: 1px solid #e7e6e6;
    padding: 10px 10px 20px 10px;
    border-radius: 8px
}

@media(max-width: 1200px) {
    .post-wrapper .post-item {
        width: calc(50% - 30px)
    }
}

@media(max-width: 600px) {
    .post-wrapper .post-item {
        width: 100%
    }
}

.post-wrapper .post-item .post-content {
    padding: 30px 10px 0 10px
}

.post-wrapper .post-item h3 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 10px;
    font-weight: 500
}

.post-wrapper .post-item p {
    color: #534249;
    margin-bottom: 40px
}

.post-wrapper .post-item a {
    width: 100%;
    justify-content: center;
    color: #270110;
    border: 1px solid #270110;
    box-sizing: border-box;
    font-weight: 600
}

.post-wrapper .post-item a:hover {
    color: #fff;
    border: 1px solid #00AF54
}

.post-wrapper .post-item img {
    display: block;
    height: 259px;
    object-fit: cover;
    width: 100%
}

@media(max-width: 600px) {
    .post-wrapper .post-item img {
        height: auto
    }
}

.pagination {
    display: flex;
    justify-content: center;
    padding-top: 40px
}

.pagination ul {
    display: flex;
    align-items: center;
    gap: 12px
}

.pagination ul a,
.pagination ul span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e7e6e6;
    border-radius: 100px
}

.pagination a:hover {
    background: #00AF54;
    color: #fff
}

.pagination a:hover svg path {
    stroke: #fff
}

.pagination span {
    background: #270110;
    color: #fff
}

@media(max-width: 600px) {
    .about-content.about-start .section-head-left {
        margin-bottom: 0
    }
}

@media(max-width: 600px) {
    .about-content.about-start .section-head-left h2 {
        margin-bottom: 0
    }
}

.research-top {
    padding: 42px 0 50px 0;
    max-width: 1070px;
    margin: 0 auto
}

.research-top .news-category {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 14px;
    align-items: center;
    gap: 26px
}

.research-top .news-category .new-category {
    color: #00AF54;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    position: relative
}

.research-top .news-category .new-category::after {
    content: "";
    position: absolute;
    right: -16px;
    top: 9px;
    background: #e7e6e6;
    width: 6px;
    height: 6px;
    border-radius: 100%
}

.research-top .news-category .date {
    display: block;
    color: #534249;
    font-size: 14px;
    line-height: 22px
}

.research-top h2 {
    margin-bottom: 30px
}

.research-top .aci-promo-section {
    margin-top: 40px;
    padding-bottom: 0
}

.research-top img {
    border-radius: 8px;
    height: 600px;
    width: 100%;
    object-fit: cover
}

@media(max-width: 990px) {
    .research-top img {
        height: auto
    }
}

.research-generic-content {
    max-width: 850px;
    margin: 0 auto
}

.research-generic-content h4 {
    margin-bottom: 20px
}

.research-generic-content p {
    margin-bottom: 20px;
    color: #534249
}

.research-generic-content blockquote {
    background: #f1faf2;
    padding: 20px;
    margin-bottom: 40px;
    border-left: 3px solid #04440a;
    color: #0e111e
}

.research-generic-content ul {
    padding-left: 20px;
    margin-bottom: 32px
}

.research-generic-content ul li {
    color: #534249;
    margin-bottom: 10px
}

.research-generic-content .promo-counter {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 60px
}

@media(max-width: 600px) {
    .research-generic-content .promo-counter {
        gap: 20px;
        flex-wrap: wrap
    }
}

.research-generic-content .promo-counter .promo-item {
    width: calc(50% - 60px);
    border-bottom: 1px solid #04440a
}

@media(max-width: 600px) {
    .research-generic-content .promo-counter .promo-item {
        width: 100%
    }
}

.research-generic-content .promo-counter .promo-item h4 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 10px;
    color: #270110
}

.research-generic-content .promo-counter .promo-item p {
    font-size: 14px;
    line-height: 22px;
    color: #534249
}

.research-generic-content .image-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-right: -24px;
    margin-bottom: 40px;
    position: relative
}

@media(max-width: 600px) {
    .research-generic-content .image-gallery {
        margin-right: 0
    }
}

.research-generic-content .image-gallery .length-content {
    position: absolute;
    background: rgba(0, 0, 0, .4);
    bottom: 0;
    right: 25px;
    width: calc(50% - 24px);
    height: 348px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 50px;
    line-height: 65px;
    font-weight: 600;
    cursor: pointer
}

@media(max-width: 600px) {
    .research-generic-content .image-gallery .length-content {
        right: 0;
        width: 100%;
        height: 320px
    }
}

.research-generic-content .image-gallery img {
    height: 348px;
    border-radius: 8px;
    display: none;
    object-fit: cover
}

@media(max-width: 600px) {
    .research-generic-content .image-gallery img {
        height: 320px;
        width: 100%
    }
}

.research-generic-content .popup-video .container .video-popup {
    width: 100%;
    position: relative;
    height: 478px
}

@media(max-width: 600px) {
    .research-generic-content .popup-video .container .video-popup {
        height: 250px
    }
}

.research-generic-content.manufacture-details p {
    margin-bottom: 40px
}

.research-related {
    background: #f1faf2;
    padding: 80px 0;
    margin-top: 60px
}

@media(max-width: 990px) {
    .research-related {
        padding: 50px 0;
        margin-top: 30px
    }
}

.research-related .post-wrapper {
    margin-right: 0
}

.research-related h2 {
    margin-bottom: 30px
}

.research-related .post-item {
    background: #fff
}

.research-related .slick-prev {
    left: -55px;
    margin-top: -28px
}

.research-related .slick-prev::before {
    display: none
}

@media(min-width: 1201px)and (max-width: 1380px) {
    .research-related .slick-prev {
        left: -18px;
        margin-top: -28px;
        z-index: 9
    }
}

@media(max-width: 1200px) {
    .research-related .slick-prev {
        display: none !important
    }
}

.research-related .slick-next {
    right: -37px;
    margin-top: -28px
}

.research-related .slick-next::before {
    display: none
}

@media(min-width: 1201px)and (max-width: 1380px) {
    .research-related .slick-next {
        right: 0
    }
}

@media(max-width: 1200px) {
    .research-related .slick-next {
        display: none !important
    }
}

.research-related .slick-list {
    padding: 0 !important;
    margin: 0 -30px 0 0;
    width: 100%
}

.research-related .slick-list .slick-track {
    width: 100%
}

@media(max-width: 600px) {
    .research-related .slick-list {
        margin: 0 8px 0 0
    }
}

.research-related .slick-slide {
    margin: 0 30px 0 0
}

@media(max-width: 600px) {
    .research-related .slick-slide {
        margin: 0 8px 0 0
    }
}

.manufacture-details-related .post-item h3 {
    margin-bottom: 40px !important
}

.posts.manufacture .post-wrapper .post-item h3 {
    margin-bottom: 40px
}

section.manufacture-area {
    background: #f1faf2;
    padding: 80px 0
}

@media(max-width: 600px) {
    section.manufacture-area {
        padding: 50px 0
    }
}

section.manufacture-area path#nargyanganj-text {
    transform: translateY(-10px)
}

section.manufacture-area h2 {
    text-align: center;
    margin-bottom: 50px
}

section.manufacture-area .location-area-wrapper {
    margin: 0 auto;
    display: table;
    height: auto;
    max-width: 641px;
    position: relative;
    overflow: hidden
}

section.manufacture-area .location-area-wrapper .map-location {
    position: absolute;
    background: #fff;
    border-radius: 10px;
    padding: 10px 20px;
    width: 300px;
    left: 100px;
    cursor: pointer;
    opacity: 0;
    z-index: -1
}

@media(max-width: 600px) {
    section.manufacture-area .location-area-wrapper .map-location {
        left: 58px
    }
}

section.manufacture-area .location-area-wrapper .map-location.activated {
    opacity: 1;
    z-index: 1
}

section.manufacture-area .location-area-wrapper .map-location ul {
    list-style: none;
    gap: 10px;
    display: flex;
    flex-wrap: wrap
}

section.manufacture-area .location-area-wrapper .map-location ul li {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

section.manufacture-area .location-area-wrapper .map-location ul li span {
    width: 170px;
    font-size: 14px;
    line-height: 24px;
    color: #534249
}

section.manufacture-area .location-area-wrapper .map-location h2 {
    font-size: 18px;
    text-align: left;
    line-height: 28px;
    margin-bottom: 10px;
    color: #270110;
    font-weight: 500
}

section.manufacture-area .location-area-wrapper svg {
    max-width: 100%
}

@media(max-width: 600px) {
    section.manufacture-area .location-area-wrapper svg {
        height: auto
    }
}

.map-icon {
    cursor: pointer
}

div#rajshahi-1,
div#rajshahi-2 {
    top: 260px;
    left: 121px
}

@media(max-width: 600px) {

    div#rajshahi-1,
    div#rajshahi-2 {
        top: 124px;
        left: 70px
    }
}

div#gazipur {
    top: 300px;
    left: 75px
}

@media(max-width: 600px) {
    div#gazipur {
        top: 203px;
        left: 50px
    }
}

div#sirajganj-2,
div#sirajganj-2,
div#sirajganj-1 {
    top: 260px;
    left: 234px
}

@media(max-width: 600px) {

    div#sirajganj-2,
    div#sirajganj-2,
    div#sirajganj-1 {
        top: 193px;
        left: 50px
    }
}

div#narsingdi,
div#cumilla,
div#jashore,
div#madaripur,
div#barisal,
div#chittagong,
div#sylhet {
    top: 250px;
    left: 0
}

@media(max-width: 600px) {

    div#narsingdi,
    div#cumilla,
    div#jashore,
    div#madaripur,
    div#barisal,
    div#chittagong,
    div#sylhet {
        top: 193px;
        left: 50px
    }
}

div#narayanganj-1,
div#narayanganj-2,
div#narayanganj-3 {
    top: 83px;
    left: 95px
}

@media(max-width: 600px) {

    div#narayanganj-1,
    div#narayanganj-2,
    div#narayanganj-3 {
        top: 40px;
        left: 60px
    }
}

.news-slider {
    padding: 100px 0 0px 0;
    overflow: hidden
}

.news-slider ul.slick-dots {
    position: relative;
    bottom: 0px;
    margin-top: 30px
}

.news-slider ul.slick-dots li {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 2px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    background: #270110;
    opacity: .6;
    transition: all .3s ease-in-out
}

.news-slider ul.slick-dots li:hover {
    opacity: 1
}

.news-slider ul.slick-dots li.slick-active {
    background: #00AF54;
    opacity: 1
}

.news-slider .container {
    border-bottom: 1px solid #e7e6e6;
    margin-bottom: 50px
}

.news-slider .news-slider-item-inner {
    background: #f1faf2;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.news-slider .news-slider-item-inner img {
    width: 47%;
    border-radius: 8px;
    object-fit: cover
}

@media(max-width: 990px) {
    .news-slider .news-slider-item-inner img {
        width: 100%;
        margin-bottom: 20px
    }
}

.news-slider .news-slider-item-inner .news-slider-content {
    width: 47%;
    position: relative;
    padding-bottom: 70px
}

@media(max-width: 990px) {
    .news-slider .news-slider-item-inner .news-slider-content {
        width: 100%;
        padding-bottom: 30px
    }
}

.news-slider .news-slider-item-inner .news-slider-content ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin-bottom: 7px;
    gap: 26px
}

.news-slider .news-slider-item-inner .news-slider-content ul li:first-child a {
    color: #00AF54;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500
}

.news-slider .news-slider-item-inner .news-slider-content ul li:last-child {
    font-size: 12px;
    color: #534249;
    line-height: 22px
}

.news-slider .news-slider-item-inner .news-slider-content h3 {
    font-size: 40px;
    line-height: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e7e6e6;
    margin-bottom: 30px;
    font-weight: 400
}

.news-slider .news-slider-item-inner .news-slider-content p {
    color: #534249;
    margin-bottom: 30px
}

.news-slider .news-slider-item-inner .news-slider-content .btn-transparent {
    border: 1px solid #270110;
    color: #270110;
    font-weight: 600;
    position: absolute;
    bottom: 0;
    z-index: 2
}

@media(max-width: 990px) {
    .news-slider .news-slider-item-inner .news-slider-content .btn-transparent {
        position: relative
    }
}

.news-slider .news-slider-item-inner .news-slider-content .btn-transparent:hover {
    border: 1px solid #fff;
    color: #fff
}

.posts-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap
}

.posts-top-bar .search-bar {
    position: relative
}

@media(max-width: 600px) {
    .posts-top-bar .search-bar {
        width: 100%;
        margin-top: 20px
    }
}

.posts-top-bar .search-bar button {
    background: rgba(0, 0, 0, 0);
    border: none;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 2px
}

.posts-top-bar .search-bar input {
    padding: 15px 13px 13px 40px;
    border: none;
    background: #fff;
    border-radius: 8px;
    font-size: 14px;
    line-height: 24px;
    font-family: "Inter", sans-serif;
    outline: 0;
    width: 268px;
    border: 1px solid #e7e6e6
}

@media(max-width: 1200px) {
    .posts-top-bar .search-bar input {
        width: 245px
    }
}

@media(max-width: 600px) {
    .posts-top-bar .search-bar input {
        width: 100%
    }
}

.posts-top-bar ul {
    border: 1px solid #00AF54;
    padding: 2px;
    list-style: none;
    display: flex;
    border-radius: 38px
}

@media(max-width: 600px) {
    .posts-top-bar ul {
        padding: 6px;
        box-sizing: border-box;
        flex-wrap: wrap;
        justify-content: center;
        border: none
    }
}

.posts-top-bar ul li .btn {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    display: inline-block;
    padding: 8px 24px;
    border: none;
    border-radius: 38px;
    color: #270110
}

.posts-top-bar ul li .btn.active {
    background: #00AF54;
    color: #fff
}

.post-wrapper.blog-lists .post-item {
    width: calc(25% - 30px);
    border: none;
    padding: 0;
    position: relative
}

.post-wrapper.blog-lists .post-item .link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none
}

@media(max-width: 1200px) {
    .post-wrapper.blog-lists .post-item {
        width: calc(33.33% - 30px)
    }
}

@media(max-width: 990px) {
    .post-wrapper.blog-lists .post-item {
        width: calc(50% - 30px)
    }
}

@media(max-width: 600px) {
    .post-wrapper.blog-lists .post-item {
        width: 100%
    }
}

.post-wrapper.blog-lists .post-item .post-content {
    padding: 20px 0 0 0;
    position: relative
}

.post-wrapper.blog-lists .post-item ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    gap: 26px
}

.post-wrapper.blog-lists .post-item ul li:first-child {
    position: relative
}

.post-wrapper.blog-lists .post-item ul li:first-child a {
    color: #00AF54;
    font-size: 14px;
    line-height: 22px;
    border: none
}

.post-wrapper.blog-lists .post-item ul li:first-child::after {
    content: "";
    background-color: #e7e6e6;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    display: block;
    position: absolute;
    right: -15px;
    top: 11px
}

.post-wrapper.blog-lists .post-item ul li:last-child {
    font-size: 12px;
    color: #534249;
    line-height: 22px;
    position: relative;
    top: 2px
}

.post-wrapper.blog-lists .post-item h3 {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    font-size: 24px;
    line-height: 34px;
    font-weight: 500
}

.post-wrapper.blog-lists .post-item p {
    color: #534249;
    margin-bottom: 30px
}

.post-wrapper.blog-lists .post-item img,
.post-wrapper.blog-lists .post-item iframe {
    width: 100%;
    height: 300px;
    border-radius: 8px
}

a.link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%
}

.lets-talk {
    position: relative;
    padding: 190px 0
}

@media(max-width: 1200px) {
    .lets-talk {
        padding: 46px 0 36px 0
    }
}

.lets-talk svg.identifier-right {
    position: absolute;
    right: 18px;
    top: 10px
}

@media(max-width: 1200px) {
    .lets-talk svg.identifier-right {
        display: none
    }
}

.lets-talk .talk-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top
}

.lets-talk .lets-talk-wrapper {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 120px;
    justify-content: center
}

@media(max-width: 1200px) {
    .lets-talk .lets-talk-wrapper {
        gap: 52px
    }
}

.lets-talk .lets-talk-wrapper .talks-content {
    width: 380px
}

@media(max-width: 1200px) {
    .lets-talk .lets-talk-wrapper .talks-content {
        width: 100%
    }
}

.lets-talk .lets-talk-wrapper .talks-content h3 {
    font-size: 40px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: 0em;
    margin-bottom: 32px
}

@media(max-width: 1200px) {
    .lets-talk .lets-talk-wrapper .talks-content h3 {
        font-size: 32px;
        font-family: "axiatamedium";
        font-weight: 500;
        margin-bottom: 16px;
        line-height: 44px
    }
}

.lets-talk .lets-talk-wrapper .talks-content p {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0em;
    margin-bottom: 32px
}

@media(max-width: 1200px) {
    .lets-talk .lets-talk-wrapper .talks-content p {
        max-width: 401px
    }
}

@media(max-width: 1200px) {
    .lets-talk .lets-talk-wrapper .talks-content p {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 16px
    }
}

.lets-talk .lets-talk-wrapper .talks-content a.btn-primary {
    justify-content: flex-start;
    font-family: "Inter", sans-serif;
    font-weight: normal;
    font-size: 20px;
    line-height: 32px
}

.lets-talk .lets-talk-wrapper .talks-thumbnail {
    width: 440px
}

@media(max-width: 1200px) {
    .lets-talk .lets-talk-wrapper .talks-thumbnail {
        width: 100%;
        display: flex;
        justify-content: flex-end
    }
}

@media(max-width: 600px) {
    .lets-talk .lets-talk-wrapper .talks-thumbnail img {
        max-width: 200px
    }
}

.agrovet-products {
    padding: 80px 0;
    position: relative
}

.agrovet-products .agrovet-products-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover !important;
    background-repeat: no-repeat !important
}

.agrovet-products .agrovet-products-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: .95;
    background: #00AF54;
}

.agrovet-products .container {
    position: relative;
    z-index: 2
}

@media(max-width: 600px) {
    .agrovet-products .container {
        padding-right: 0
    }
}

@media(max-width: 600px) {
    .agrovet-products .section-head {
        padding-right: 15px
    }
}

@media(max-width: 600px) {
    .agrovet-products .slick-list {
        padding: 0 30px 0 0 !important
    }
}

.agrovet-products .agrovet-products-inner {
    display: flex;
    flex-wrap: wrap
}

@media(max-width: 600px) {
    .agrovet-products .agrovet-products-inner {
        display: block
    }
}

.agrovet-products .agrovet-products-inner .agrovet-products-card {
    padding-right: 15px;
    width: calc(33.33% - 15px);
    box-sizing: border-box;
    border-right: 1px solid rgba(255, 255, 255, .1);
    margin-right: 15px;
    position: relative
}

@media(max-width: 1200px) {
    .agrovet-products .agrovet-products-inner .agrovet-products-card {
        width: calc(50% - 15px);
        margin-bottom: 50px;
        border-right: 0
    }
}

@media(max-width: 990px) {
    .agrovet-products .agrovet-products-inner .agrovet-products-card {
        width: 100%;
        border-right: 1px solid rgba(255, 255, 255, .1);
        margin-right: 15px;
        padding-right: 15px
    }
}

.agrovet-products .agrovet-products-inner .agrovet-products-card:last-child {
    border-right: 0;
    padding-right: 0;
    margin-right: 0
}

.agrovet-products .agrovet-products-inner .agrovet-products-card h4 {
    font-size: 30px;
    line-height: 40px;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    z-index: 4
}

.agrovet-products .agrovet-products-inner .agrovet-products-card img {
    display: block;
    margin-bottom: 20px;
    height: 410px;
    width: 100%;
    border-radius: 8px;
    object-fit: cover
}

.agrovet-products .agrovet-products-inner .agrovet-products-card ul {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
    transform: translate(0px, 0px)
}

.agrovet-products .agrovet-products-inner .agrovet-products-card ul li {
    margin-right: 0;
    display: flex;
    flex-wrap: wrap
}

.agrovet-products .agrovet-products-inner .agrovet-products-card ul li a {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding-bottom: 12px;
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 30px;
    transition: all .2s ease-in-out;
    color: #fff
}

.agrovet-products .agrovet-products-inner .agrovet-products-card ul li a svg {
    transition: all .2s ease-in-out
}

.agrovet-products .agrovet-products-inner .agrovet-products-card ul li a:hover svg {
    margin-right: 5px;
    fill: #BB0303;
    stroke: #BB0303;
}

.agrovet-products .agrovet-products-inner .agrovet-products-card ul li a:hover svg rect {
    stroke: #fff
}

.agrovet-products .agrovet-products-inner .agrovet-products-card ul li a:hover svg path {
    stroke: #fff
}

.agrovet-products .agrovet-products-inner .agrovet-products-card a.btn-outline {
    display: inline-flex;
    border: 1px solid #fff;
    width: 141px;
    border-radius: 40px;
    padding: 10px 24px;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    color: #fff;
    background: #BB0303;
    margin-top: 20px;
    transition: all .2s ease-in-out
}

.agrovet-products .agrovet-products-inner .agrovet-products-card a.btn-outline svg {
    top: 0;
    margin-left: 8px
}

.agrovet-products .agrovet-products-inner .agrovet-products-card a.btn-outline svg path {
    stroke: #fff;
}

.agrovet-products .agrovet-products-inner .agrovet-products-card a.btn-outline:hover {
    background: #BB0303;
    color: #fff;
    border: 1px solid #BB0303;
}

.agrovet-products .agrovet-products-inner .agrovet-products-card a.btn-outline:hover svg path {
    stroke: #fff
}

.agrovet-products .agrovet-products-inner .agrovet-products-card.comming-soon {
    overflow: hidden
}

.agrovet-products .agrovet-products-inner .agrovet-products-card.comming-soon::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 267px;
    background: linear-gradient(180deg, rgba(4, 68, 10, 0.5) -19.33%, #04440a 100%);
    z-index: 2
}

.product-listing-wrapper {
    padding-bottom: 74px;
    background: #f9fafd
}

.product-listing-wrapper .product-listing {
    display: flex;
    flex-wrap: wrap;
    gap: 30px
}

.product-listing-wrapper .product-listing .sidebar {
    width: 300px
}

@media(max-width: 990px) {
    .product-listing-wrapper .product-listing .sidebar {
        width: 100%
    }
}

.product-listing-wrapper .product-listing .sidebar .sidebar-inner {
    border: 1px solid #e7e6e6;
    border-radius: 8px
}

.product-listing-wrapper .product-listing .sidebar .filter__title {
    padding: 16px 12px 18px 12px;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500
}

.product-listing-wrapper .product-listing .sidebar .sidebar-filter-item {
    padding: 16px 24px 18px 24px;
    border-top: 1px solid #e7e6e6
}

.product-listing-wrapper .product-listing .sidebar .sidebar-filter-item .sidebar-filter__title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0px;
    cursor: pointer
}

.product-listing-wrapper .product-listing .sidebar .sidebar-filter-item .sidebar-filter__title span {
    font-size: 18px;
    line-height: 26px;
    font-weight: 500
}

.product-listing-wrapper .product-listing .sidebar .sidebar-filter-item .sidebar-filter__title:hover {
    color: #BB0303;
}

.product-listing-wrapper .product-listing .sidebar .sidebar-filter-item .sidebar-filter__title:hover svg path {
    stroke: #BB0303;
}

.product-listing-wrapper .product-listing .sidebar .sidebar-filter-item .checkbox-group {
    padding-top: 20px
}

.product-listing-wrapper .product-listing .sidebar .sidebar-filter-item .checkbox-group label {
    display: flex;
    align-items: center;
    color: #534249;
    gap: 8px;
    position: relative;
    padding-right: 32px;
    margin-bottom: 24px
}

.product-listing-wrapper .product-listing .sidebar .sidebar-filter-item .checkbox-group label input[type=checkbox] {
    border: 1px solid #e7e6e6;
    outline: 0;
    width: 20px;
    height: 20px
}

.product-listing-wrapper .product-listing .sidebar .sidebar-filter-item .checkbox-group label span {
    position: absolute;
    right: 2px;
    font-weight: 500
}

.product-listing-wrapper .aci__pagination ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px
}

.product-listing-wrapper .aci__pagination ul li {
    margin-right: 20px
}

.product-listing-wrapper .aci__pagination ul li a,
.product-listing-wrapper .aci__pagination ul li span {
    display: flex;
    width: 40px;
    height: 40px;
    flex-wrap: wrap;
    align-items: center;
    border: 1px solid #e7e6e6;
    justify-content: center;
    border-radius: 100%;
    font-weight: 500
}

.product-listing-wrapper .aci__pagination ul li a:hover,
.product-listing-wrapper .aci__pagination ul li span:hover {
    color: #BB0303;
}

.product-listing-wrapper .aci__pagination ul li a.active,
.product-listing-wrapper .aci__pagination ul li span.active {
    background: #270110;
    color: #fff
}

.product-listing-item {
    width: calc(100% - 300px - 30px)
}

@media(max-width: 990px) {
    .product-listing-item {
        width: 100%
    }
}

.product-listing-item h2 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 20px
}

@media(max-width: 990px) {
    .product-listing-item h2 {
        font-size: 30px;
        line-height: 40px
    }
}

.product-listing-item .product-listing-item-top {
    width: 100%
}

.product-listing-item .sorting-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px
}

@media(max-width: 600px) {
    .product-listing-item .sorting-item {
        gap: 10px
    }
}

.product-listing-item .sorting-item .sorting-item-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px
}

.product-listing-item .sorting-item .sorting-item-right .search-bar {
    position: relative
}

.product-listing-item .sorting-item .sorting-item-right .search-bar button {
    background: rgba(0, 0, 0, 0);
    border: none;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%)
}

.product-listing-item .sorting-item .sorting-item-right .search-bar input {
    padding: 13px 13px 13px 40px;
    border: none;
    background: #fff;
    border-radius: 8px;
    font-size: 14px;
    line-height: 24px;
    font-family: "Inter", sans-serif;
    outline: 0;
    width: 268px
}

@media(max-width: 1200px) {
    .product-listing-item .sorting-item .sorting-item-right .search-bar input {
        width: 245px
    }
}

@media(max-width: 600px) {
    .product-listing-item .sorting-item .sorting-item-right .search-bar input {
        width: 100%
    }
}

.product-listing-item .sorting-item .sorting-item-right .total-sorting-item {
    border: 1px solid #e7e6e6;
    border-radius: 8px;
    padding: 12px
}

@media(max-width: 600px) {
    .product-listing-item .sorting-item .sorting-item-right .total-sorting-item {
        width: 100%
    }
}

.product-listing-item .sorting-item .sorting-item-right .total-sorting-item label span {
    font-size: 14px;
    color: #534249;
    display: inline-block;
    margin-right: 8px
}

.product-listing-item .sorting-item .sorting-item-right .total-sorting-item label select {
    border: none;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    color: #534249;
    padding-right: 10px;
    outline: 0
}

.product-listing-item .sorting-item .sorting-item-right .total-sorting-item label select option {
    font-weight: 500
}

.aci__all-product {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 20px;
    margin-right: -20px
}

@media(max-width: 600px) {
    .aci__all-product {
        margin-right: 0
    }
}

.aci__all-product .aci__realted-item {
    border: 1px solid #e7e6e6;
    border-radius: 8px;
    background: #fff;
    padding: 10px 0;
    width: calc(25% - 20px)
}

@media(max-width: 1200px) {
    .aci__all-product .aci__realted-item {
        width: calc(33.33% - 20px)
    }
}

@media(max-width: 990px) {
    .aci__all-product .aci__realted-item {
        width: calc(50% - 20px)
    }
}

@media(max-width: 600px) {
    .aci__all-product .aci__realted-item {
        width: 100%
    }
}

.aci__all-product .aci__realted-item .aci__realted-thumbnail img {
    margin: 0 auto;
    display: table;
    height: auto
}

.aci__all-product .aci__realted-item .aci__realted-content {
    padding: 15px
}

.aci__all-product .aci__realted-item .aci__realted-content .aci__realted-title {
    font-weight: 500;
    margin-bottom: 10px
}

.aci__all-product .aci__realted-item .aci__realted-content .aci__product-price {
    display: flex;
    margin-bottom: 30px
}

.aci__all-product .aci__realted-item .aci__realted-content .aci__product-quantity {
    color: #534249;
    font-size: 14px;
    line-height: 22px;
    position: relative;
    top: 2px;
    margin-left: 4px
}

.aci__all-product .aci__realted-item .aci__realted-content .btn-transparent {
    width: 100%;
    justify-content: center;
    padding: 9px 24px;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    color: #270110;
    border: 1px solid #270110
}

.aci__all-product .aci__realted-item .aci__realted-content .btn-transparent img {
    position: relative;
    transition: all .3s ease-in
}

.aci__all-product .aci__realted-item .aci__realted-content .btn-transparent:hover {
    border: 1px solid #BB0303;
    background: rgba(0, 0, 0, 0);
    color: #00AF54
}

.aci__all-product .aci__realted-item .aci__realted-content .btn-transparent:hover img {
    padding-left: 10px
}

.aci__all-product .aci__realted-item .aci__realted-content .btn-transparent:hover img path {
    fill: #fff
}

.product-landing {
    padding: 80px 0
}

.product-landing.bg-secound {
    background: #f1faf2
}

@media(max-width: 990px) {
    .product-landing {
        padding: 60px 0
    }
}

.product-landing .product-landing-slider {
    padding-bottom: 50px;
    padding: 0 60px
}

@media(max-width: 990px) {
    .product-landing .product-landing-slider {
        padding: 0
    }
}

.product-landing button.slick-next.slick-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    right: -50px
}

.product-landing button.slick-next.slick-arrow::before {
    display: none
}

@media(min-width: 1201px)and (max-width: 1380px) {
    .product-landing button.slick-next.slick-arrow {
        right: 16px
    }
}

@media(max-width: 1200px) {
    .product-landing button.slick-next.slick-arrow {
        display: none !important
    }
}

.product-landing button.slick-prev.slick-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    left: -58px;
    z-index: 9
}

@media(min-width: 1201px)and (max-width: 1380px) {
    .product-landing button.slick-prev.slick-arrow {
        left: -7px
    }
}

.product-landing button.slick-prev.slick-arrow::before {
    display: none
}

@media(max-width: 1200px) {
    .product-landing button.slick-prev.slick-arrow {
        display: none !important
    }
}

.product-landing .btn-transparent {
    margin: 0 auto;
    display: table;
    border: 1px solid #270110;
    color: #270110;
    font-weight: 600;
    margin-top: 60px
}

.product-landing .btn-transparent svg {
    top: 4px;
    position: relative
}

.product-landing .btn-transparent svg path {
    stroke: #270110
}

.product-landing .btn-transparent:hover {
    color: #fff;
    border: 1px solid #00AF54
}

.product-landing .btn-transparent:hover svg path {
    stroke: #fff
}

.product-landing .section-head {
    margin-bottom: 0
}

.product-landing .section-head .section-title {
    color: #270110
}

@media(max-width: 600px) {
    .product-landing .section-head .section-title {
        font-size: 40px;
        line-height: 55px
    }
}

.product-landing .slick-slide {
    margin: 0 60px 0 0
}

@media(max-width: 600px) {
    .product-landing .slick-slide {
        margin: 0 0px 0 0
    }
}

.product-landing .slick-list {
    margin: 0 -60px 0 0
}

@media(max-width: 600px) {
    .product-landing .slick-list {
        margin: 0 0px 0 0
    }
}

.product-landing .insights-item {
    position: relative;
    transition: all .4s ease-in-out;
    overflow: hidden
}

.product-landing .insights-item img {
    width: 100%;
    display: block;
    height: 390px;
    object-fit: cover;
    border-radius: 8px
}

.product-landing .insights-item .insights-item-content {
    position: absolute;
    bottom: -190px;
    padding: 20px;
    z-index: 4;
    transition: all .4s ease-in-out
}

.product-landing .insights-item .insights-item-content h3 {
    color: #fff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 0px
}

.product-landing .insights-item .insights-item-content p {
    color: #fff;
    margin-bottom: 20px;
    margin-top: 20px
}

.product-landing .insights-item .insights-item-content .btn-primary {
    display: inline-block;
    padding-top: 10px
}

.product-landing .insights-item .insights-item-content .btn-primary svg {
    top: 4px
}

.product-landing .insights-item .insights-item-content .btn-primary svg path {
    stroke: #fff
}

.product-landing .insights-item .insights-item-content p,
.product-landing .insights-item .insights-item-content .btn-primary {
    opacity: 0
}

.product-landing .insights-item a.link__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    border-radius: 8px
}

.product-landing .insights-item:hover .insights-item-content {
    bottom: 0
}

.product-landing .insights-item:hover .insights-item-content p,
.product-landing .insights-item:hover .insights-item-content .btn-primary {
    opacity: 1
}

.aci__product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 10px;
    flex-wrap: wrap
}

.aci__product-meta .aci__base-category {
    background: rgba(184, 21, 86, .1019607843);
    border-radius: 90px;
    padding: 3px 10px;
    font-size: 12px;
    line-height: 18px;
    color: #534249
}

.aci__product-meta .aci__base-rating {
    display: flex;
    gap: 2px;
    font-size: 14px;
    line-height: 22px;
    align-items: center
}

.agricultural-excellence {
    padding: 100px 0 86px 0
}

@media(max-width: 990px) {
    .agricultural-excellence {
        padding: 60px 0
    }
}

.agricultural-excellence .agricultural-excellence-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-right: -30px;
    gap: 30px
}

@media(max-width: 990px) {
    .agricultural-excellence .agricultural-excellence-wrapper {
        margin-right: 0
    }
}

.agricultural-excellence .agricultural-excellence-wrapper .agricultural-excellence-item {
    width: calc(33.33% - 30px);
    border: 1px solid rgba(39, 1, 16, .1019607843);
    border-radius: 8px;
    padding: 30px;
    transition: all .2s ease-in-out;
    position: relative
}

@media(max-width: 990px) {
    .agricultural-excellence .agricultural-excellence-wrapper .agricultural-excellence-item {
        width: 100%;
        padding: 20px
    }
}

.agricultural-excellence .agricultural-excellence-wrapper .agricultural-excellence-item a.link__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.agricultural-excellence .agricultural-excellence-wrapper .agricultural-excellence-item img {
    margin-bottom: 30px;
    display: block;
    width: 80px;
    height: auto
}

@media(max-width: 600px) {
    .agricultural-excellence .agricultural-excellence-wrapper .agricultural-excellence-item img {
        width: 60px;
        margin-bottom: 20px
    }
}

.agricultural-excellence .agricultural-excellence-wrapper .agricultural-excellence-item .agri-title {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 15px
}

.agricultural-excellence .agricultural-excellence-wrapper .agricultural-excellence-item .agri-des {
    color: #534249;
    margin-bottom: 30px
}

.agricultural-excellence .agricultural-excellence-wrapper .agricultural-excellence-item .btn-primary {
    display: inline-flex;
    background: rgba(0, 0, 0, 0);
    color: #00AF54;
    padding: 0
}

.agricultural-excellence .agricultural-excellence-wrapper .agricultural-excellence-item .btn-primary svg path {
    stroke: #00AF54
}

.agricultural-excellence .agricultural-excellence-wrapper .agricultural-excellence-item:hover {
    background: #f1faf2
}

.job-explore {
    padding: 80px 0;
    background: #f9fafd
}

@media(max-width: 990px) {
    .job-explore {
        padding: 50px 0
    }
}

.job-explore .job-explore-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px
}

@media(max-width: 1200px) {
    .job-explore .job-explore-wrapper {
        gap: 40px
    }
}

.job-explore .job-explore-wrapper .job-explore-content {
    width: 44%
}

@media(max-width: 990px) {
    .job-explore .job-explore-wrapper .job-explore-content {
        width: 100%
    }
}

@media(max-width: 1200px) {
    .job-explore .job-explore-wrapper .job-explore-content h2 {
        font-size: 36px;
        line-height: 46px
    }
}

.job-explore .job-explore-wrapper .job-explore-content p {
    color: #534249;
    margin-bottom: 40px
}

.job-explore .job-explore-wrapper .job-explore-content a {
    font-weight: 600
}

@media(max-width: 600px) {
    .job-explore .job-explore-wrapper .job-explore-content a {
        width: 100%;
        display: flex;
        justify-content: center
    }
}

.job-explore .job-explore-wrapper .job-explore-thumbnail {
    width: 49%
}

@media(max-width: 990px) {
    .job-explore .job-explore-wrapper .job-explore-thumbnail {
        width: 100%
    }
}

.job-explore .job-explore-wrapper .job-explore-thumbnail img {
    width: 100%;
    display: block;
    border-radius: 8px
}

.upcomming-event {
    padding: 100px 0;
    background: #f1faf2
}

@media(max-width: 1200px) {
    .upcomming-event {
        padding: 50px 0
    }
}

.upcomming-event .slick-prev {
    left: -57px;
    top: 37%
}

@media(max-width: 1200px) {
    .upcomming-event .slick-prev {
        display: none !important
    }
}

.upcomming-event .slick-next {
    top: 37%
}

@media(max-width: 1200px) {
    .upcomming-event .slick-next {
        display: none !important
    }
}

@media(max-width: 600px) {
    .upcomming-event .slick-dotted.slick-slider {
        margin-bottom: 0
    }
}

.upcomming-event ul.slick-dots {
    position: relative;
    bottom: 0px;
    margin-top: 30px
}

.upcomming-event ul.slick-dots li {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 2px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    background: #270110;
    opacity: .6;
    transition: all .3s ease-in-out
}

.upcomming-event ul.slick-dots li:hover {
    opacity: 1
}

.upcomming-event ul.slick-dots li.slick-active {
    background: #00AF54;
    opacity: 1
}

.upcomming-event .section-title {
    text-align: center;
    font-size: 40px;
    line-height: 50px;
    display: block;
    margin-bottom: 40px
}

@media(max-width: 600px) {
    .upcomming-event .section-title {
        margin-bottom: 30px;
        font-size: 36px;
        line-height: 46px
    }
}

.upcomming-event .home-event-item-inner {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center
}

@media(max-width: 600px) {
    .upcomming-event .home-event-item-inner {
        gap: 20px
    }
}

.upcomming-event .home-event-item-inner .home-event-thumbnail {
    width: 49%
}

@media(max-width: 990px) {
    .upcomming-event .home-event-item-inner .home-event-thumbnail {
        width: 100%
    }
}

.upcomming-event .home-event-item-inner .home-event-thumbnail img {
    width: 100%;
    display: block;
    border-radius: 8px
}

.upcomming-event .home-event-item-inner .home-event-content {
    width: 44%
}

@media(max-width: 990px) {
    .upcomming-event .home-event-item-inner .home-event-content {
        width: 100%
    }
}

.upcomming-event .home-event-item-inner .home-event-content h3 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 20px;
    font-weight: 400
}

@media(max-width: 600px) {
    .upcomming-event .home-event-item-inner .home-event-content h3 {
        font-size: 30px;
        line-height: 40px
    }
}

.upcomming-event .home-event-item-inner .home-event-content p {
    color: #534249;
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 30px
}

.upcomming-event .home-event-item-inner .home-event-content ul {
    list-style: none;
    background: #fff;
    padding: 20px;
    border-radius: 8px
}

.upcomming-event .home-event-item-inner .home-event-content ul li {
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(39, 1, 16, .1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px
}

@media(max-width: 1200px) {
    .upcomming-event .home-event-item-inner .home-event-content ul li {
        align-items: flex-start;
        gap: 10px
    }
}

.upcomming-event .home-event-item-inner .home-event-content ul li.aci-date,
.upcomming-event .home-event-item-inner .home-event-content ul li.aci-location {
    font-size: 20px;
    line-height: 30px;
    color: #04440a
}

.upcomming-event .home-event-item-inner .home-event-content ul li.aci-date svg stroke,
.upcomming-event .home-event-item-inner .home-event-content ul li.aci-location svg stroke {
    fill: #04440a
}

@media(max-width: 1200px) {

    .upcomming-event .home-event-item-inner .home-event-content ul li.aci-date svg,
    .upcomming-event .home-event-item-inner .home-event-content ul li.aci-location svg {
        position: relative;
        top: 5px
    }
}

.upcomming-event .home-event-item-inner .home-event-content ul li.aci-date span,
.upcomming-event .home-event-item-inner .home-event-content ul li.aci-location span {
    width: calc(100% - 30px)
}

.upcomming-event .home-event-item-inner .home-event-content ul li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0px solid #270110
}

.latest-event-list {
    padding-top: 60px
}

.latest-event-list h2 {
    margin-bottom: 50px
}

.latest-event-list .post-wrapper.blog-lists .post-item {
    width: calc(33.33% - 30px)
}

@media(max-width: 1200px) {
    .latest-event-list .post-wrapper.blog-lists .post-item {
        width: calc(50% - 30px)
    }
}

@media(max-width: 600px) {
    .latest-event-list .post-wrapper.blog-lists .post-item {
        width: 100%
    }
}

.latest-event-list .post-wrapper.blog-lists .post-item img {
    height: 260px;
    border-radius: 8px
}

.latest-event-list .post-wrapper.blog-lists .post-item p {
    font-size: 12px;
    display: flex;
    align-items: center;
    line-height: 18px;
    gap: 5px;
    margin-bottom: 10px
}

.latest-event-list .post-wrapper.blog-lists .post-item h3 {
    margin-bottom: 0
}

.event-details-wrapper {
    padding-top: 40px
}

.event-details-wrapper .container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px
}

.event-details-wrapper .container .event-details-content {
    width: calc(100% - 300px - 30px)
}

@media(max-width: 990px) {
    .event-details-wrapper .container .event-details-content {
        width: 100%
    }
}

.event-details-wrapper .container .event-details-content .aci__social-share {
    margin-top: 40px;
    gap: 10px;
    padding-top: 20px;
    justify-content: flex-start;
    border-top: 1px solid #e7e6e6
}

.event-details-wrapper .container .event-details-content .feature-image {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    object-fit: cover;
    display: block;
    margin-bottom: 30px
}

@media(max-width: 1200px) {
    .event-details-wrapper .container .event-details-content .feature-image {
        height: auto
    }
}

.event-details-wrapper .container .event-details-content p {
    margin-bottom: 20px;
    color: #534249
}

.event-details-wrapper .container .event-details-content ul {
    padding-left: 20px
}

.event-details-wrapper .container .event-details-content ul li {
    margin-bottom: 10px;
    color: #534249
}

.event-details-wrapper .container .event-sidebar {
    height: 70vh;
    position: sticky;
    width: 300px;
    top: 0
}

@media(max-width: 990px) {
    .event-details-wrapper .container .event-sidebar {
        height: auto;
        width: 100%;
        position: relative
    }
}

.event-details-wrapper .container .event-sidebar .event-sidebar-inner {
    border: 1px solid #e7e6e6;
    padding: 30px 25px;
    background: #f1faf2;
    box-sizing: border-box;
    border-radius: 8px
}

.event-details-wrapper .container .event-sidebar ul {
    list-style: none
}

.event-details-wrapper .container .event-sidebar ul li {
    display: flex;
    gap: 8px;
    border-bottom: 1px solid #e7e6e6;
    padding-bottom: 30px;
    margin-bottom: 30px
}

.event-details-wrapper .container .event-sidebar ul li:last-child {
    border-bottom: 0;
    padding-bottom: 0px;
    margin-bottom: 0
}

.event-details-wrapper .container .event-sidebar ul li .content {
    width: calc(100% - 30px)
}

.event-details-wrapper .container .event-sidebar ul li .content strong {
    font-weight: 500;
    margin-bottom: 8px;
    display: block
}

.event-details-wrapper .container .event-sidebar ul li .content p {
    font-size: 14px;
    line-height: 24px;
    color: #534249
}

.image-gallery {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-right: -24px
}

@media(max-width: 600px) {
    .image-gallery {
        margin-right: 0
    }
}

.image-gallery a {
    border-radius: 8px;
    width: calc(50% - 24px);
    display: none;
    position: relative
}

@media(max-width: 600px) {
    .image-gallery a {
        width: 100%
    }
}

.image-gallery a .event-counter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    line-height: 65px;
    color: #fff;
    font-weight: 600
}

.image-gallery a img {
    display: block
}

.mfp-figure figure img {
    border-radius: 8px !important
}

.mfp-figure:after {
    display: none
}

.event-related .slick-prev {
    margin-top: -80px
}

.event-related .slick-next {
    margin-top: -80px
}

.event-related .post-wrapper {
    margin-bottom: 0
}

.event-related .post-item {
    padding: 0;
    background: rgba(0, 0, 0, 0);
    border: none
}

.event-related .post-item img {
    height: 260px;
    border-radius: 8px
}

.event-related .post-item p {
    font-size: 12px;
    display: flex;
    align-items: center;
    line-height: 18px;
    gap: 5px;
    margin-bottom: 10px
}

.event-related .post-item a.link-overlay {
    position: absolute;
    border: none !important;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0
}

.event-related .post-item h3 {
    margin-bottom: 0
}

.get-in-touch {
    padding: 60px 0;
    background: #00AF54;
}

@media(max-width: 1200px) {
    .get-in-touch {
        padding: 40px 0
    }
}

.get-in-touch .get-in-touch-wrapper {
    max-width: 818px;
    margin: 0 auto
}

.get-in-touch .get-in-touch-wrapper h3 {
    font-size: 40px;
    line-height: 50px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
    color: #fff
}

@media(max-width: 1200px) {
    .get-in-touch .get-in-touch-wrapper h3 {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 30px
    }
}

.get-in-touch .get-in-touch-wrapper .btn-group {
    display: flex;
    justify-content: center;
    gap: 10px
}

@media(max-width: 600px) {
    .get-in-touch .get-in-touch-wrapper .btn-group {
        flex-wrap: wrap
    }
}

@media(max-width: 600px) {
    .get-in-touch .get-in-touch-wrapper .btn-group a {
        width: 100%;
        display: flex;
        justify-content: center
    }
}

.get-in-touch .get-in-touch-wrapper .btn-group a.btn-transparent:hover {
    background: #fff !important;
    color: #BB0303;
    border: 1px solid #fff
}

.get-in-touch .get-in-touch-wrapper .btn-group a.btn-transparent:hover svg path {
    stroke: #fff
}

.get-in-touch .get-in-touch-wrapper .btn-group a.btn-primary.reverse-btn {
    background: rgba(0, 0, 0, 0);
    color: #fff;
    border: 1px solid #fff
}

.get-in-touch .get-in-touch-wrapper .btn-group a.btn-primary.reverse-btn svg path {
    stroke: #fff
}

.get-in-touch.listing-touch {
    background: rgba(0, 0, 0, 0);
    position: relative
}

.get-in-touch.listing-touch .touch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(117, 3, 50, .8);
    opacity: 1;
    z-index: 3
}

.get-in-touch.listing-touch .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover
}

.get-in-touch.listing-touch .container {
    position: relative;
    z-index: 4
}

.get-in-touch.listing-touch .container .get-in-touch-wrapper {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    justify-content: space-between
}

@media(max-width: 1200px) {
    .get-in-touch.listing-touch .container .get-in-touch-wrapper {
        justify-content: center
    }
}

.get-in-touch.listing-touch .container .get-in-touch-wrapper h3 {
    margin-bottom: 0;
    font-size: 30px;
    max-width: 636px;
    text-align: left;
    line-height: 40px
}

@media(max-width: 1200px) {
    .get-in-touch.listing-touch .container .get-in-touch-wrapper h3 {
        text-align: center;
        max-width: 100%;
        width: 100%
    }
}

.team-card {
    width: calc(33.33% - 30px);
    border: 1px solid #e7e6e6;
    border-radius: 8px;
    padding: 10px 10px 0 10px;
    position: relative;
    cursor: pointer
}

@media(max-width: 1200px) {
    .team-card {
        width: calc(50% - 30px)
    }
}

@media(max-width: 600px) {
    .team-card {
        width: 100%
    }
}

.team-card img.feature-image {
    border-radius: 8px;
    display: block;
    height: 370px;
    width: 100%;
    object-fit: cover
}

@media(max-width: 600px) {
    .team-card img.feature-image {
        height: auto
    }
}

.team-card .team-card-content {
    padding: 30px 10px;
    text-align: center
}

.team-card .team-card-content h3 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 10px;
    font-weight: 500
}

.team-card .team-card-content p {
    font-size: 15px;
    line-height: 22px;
    color: #534249
}

.team-card .aci__social-share {
    position: absolute;
    bottom: 20px;
    width: 100%;
    left: 0;
    gap: 30px
}

.team-card .aci__social-share a {
    width: 40px;
    height: 40px
}

section.team-section {
    padding: 60px 0 100px 0
}

section.team-section h2 {
    margin-bottom: 50px
}

section.team-section .team-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-right: -30px
}

@media(max-width: 600px) {
    section.team-section .team-wrapper {
        margin-right: 0
    }
}

section.team-section.bg-secoundary {
    background: #f1faf2;
    padding: 100px 0
}

section.team-section.four-column .team-wrapper {
    gap: 20px;
    margin-right: -20px
}

@media(max-width: 600px) {
    section.team-section.four-column .team-wrapper {
        margin-right: 0
    }
}

section.team-section.four-column .team-card {
    width: calc(25% - 20px);
    background: #fff
}

@media(max-width: 1200px) {
    section.team-section.four-column .team-card {
        width: calc(50% - 30px)
    }
}

@media(max-width: 600px) {
    section.team-section.four-column .team-card {
        width: 100%
    }
}

section.team-section.four-column .team-card img.feature-image {
    height: 240px
}

@media(max-width: 600px) {
    section.team-section.four-column .team-card img.feature-image {
        height: auto
    }
}

.team-card.activated .team-card-fixed {
    z-index: 99991;
    opacity: 1;
    visibility: visible
}

.team-card-fixed {
    position: fixed;
    left: 0;
    background: rgba(39, 1, 16, .7);
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease-in
}

.team-card-fixed .team-fixed-content {
    text-align: center;
    width: 1180px;
    background: #fff;
    margin: 0 auto;
    margin-top: 54px;
    position: relative;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    height: 532px
}

@media(max-width: 1200px) {
    .team-card-fixed .team-fixed-content {
        width: calc(100% - 100px)
    }
}

@media(max-width: 600px) {
    .team-card-fixed .team-fixed-content {
        overflow-y: scroll;
        overflow-x: hidden;
        width: calc(100% - 40px);
        height: 90vh
    }
}

.team-card-fixed .team-fixed-content button.modal-close {
    position: absolute;
    right: -29px;
    border: none;
    background: rgba(0, 0, 0, 0);
    top: -24px;
    z-index: 999;
    cursor: pointer
}

@media(max-width: 600px) {
    .team-card-fixed .team-fixed-content button.modal-close {
        right: 10px;
        top: 10px
    }
}

.team-card-fixed .team-fixed-content .team-thumbnail {
    width: 520px;
    padding: 10px
}

@media(max-width: 1200px) {
    .team-card-fixed .team-fixed-content .team-thumbnail {
        width: 45%
    }
}

@media(max-width: 600px) {
    .team-card-fixed .team-fixed-content .team-thumbnail {
        width: 100%;
        margin-top: 30px
    }
}

.team-card-fixed .team-fixed-content .team-thumbnail img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit: cover
}

@media(max-width: 1200px) {
    .team-card-fixed .team-fixed-content .team-thumbnail img {
        object-fit: contain
    }
}

.team-card-fixed .team-fixed-content .team-content {
    width: 660px;
    text-align: left;
    padding: 40px 0px 40px 30px
}

@media(max-width: 1200px) {
    .team-card-fixed .team-fixed-content .team-content {
        width: 55%
    }
}

@media(max-width: 600px) {
    .team-card-fixed .team-fixed-content .team-content {
        width: 100%
    }
}

.team-card-fixed .team-fixed-content .team-content h3 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 400;
    margin-bottom: 10px;
    padding-right: 30px
}

@media(max-width: 990px) {
    .team-card-fixed .team-fixed-content .team-content h3 {
        font-size: 30px;
        line-height: 40px
    }
}

.team-card-fixed .team-fixed-content .team-content p {
    margin-bottom: 20px;
    color: #534249;
    padding-right: 30px
}

.team-card-fixed .team-fixed-content .team-content .team-content-des {
    height: 265px;
    overflow-y: scroll
}

@media(max-width: 600px) {
    .team-card-fixed .team-fixed-content .team-content .team-content-des {
        height: auto;
        overflow: unset
    }
}

.team-card-fixed .team-fixed-content .team-content .team-content-des::-webkit-scrollbar {
    width: 5px;
    height: 100px;
    border-radius: 10px;
    background: #e7e6e6
}

.team-card-fixed .team-fixed-content .team-content .team-content-des::-webkit-scrollbar-track {
    height: 100px
}

.team-card-fixed .team-fixed-content .team-content .team-content-des::-webkit-scrollbar-thumb {
    background-color: #e7e6e6
}

.team-card-fixed .team-fixed-content .team-content .aci__social-share {
    position: relative;
    justify-content: flex-start;
    bottom: 0;
    border-bottom: 1px solid #e7e6e6;
    padding-bottom: 20px;
    margin-bottom: 20px;
    width: calc(100% - 30px)
}

.event-details-wrapper.service-details {
    padding-bottom: 80px
}

.event-details-wrapper.service-details .event-sidebar a.download-btn {
    border: 1px solid #e7e6e6;
    display: flex;
    padding: 24px;
    border-radius: 8px;
    justify-content: center;
    gap: 8px;
    align-items: center;
    color: #00AF54;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    transition: all .3s ease-in
}

.event-details-wrapper.service-details .event-sidebar a.download-btn svg path {
    transition: all .3s ease-in
}

.event-details-wrapper.service-details .event-sidebar a.download-btn:hover {
    background: #00AF54;
    color: #fff
}

.event-details-wrapper.service-details .event-sidebar a.download-btn:hover svg path {
    stroke: #fff
}

.event-details-wrapper.service-details .event-sidebar .event-sidebar-inner {
    padding: 30px 15px;
    border: none;
    background: #00AF54;
    margin-bottom: 40px
}

.event-details-wrapper.service-details .event-sidebar .event-sidebar-inner h3 {
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
    text-align: left;
    color: #fff
}

.event-details-wrapper.service-details .event-sidebar .event-sidebar-inner p {
    margin-bottom: 32px;
    color: #fff
}

.event-details-wrapper.service-details .event-sidebar .event-sidebar-inner .btn-primary.bg-white {
    background: #fff;
    color: #00AF54;
    margin-bottom: 15px;
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center
}

.event-details-wrapper.service-details .event-sidebar .event-sidebar-inner .btn-transparent {
    border: 1px solid #fff;
    color: #fff;
    width: 100%;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center
}

.event-details-wrapper.service-details .event-details-content .feature-image {
    margin-bottom: 60px
}

.event-details-wrapper.service-details .event-details-content h4 {
    margin-bottom: 30px
}

.event-details-wrapper.service-details .event-details-content p.top {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 60px;
    color: #270110
}

.event-details-wrapper.service-details .event-details-content .service-text-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-right: -30px;
    margin-bottom: 60px
}

@media(max-width: 600px) {
    .event-details-wrapper.service-details .event-details-content .service-text-list {
        margin-right: 0;
        margin-bottom: 30px
    }
}

.event-details-wrapper.service-details .event-details-content .service-text-list .service-text-content {
    width: calc(50% - 30px);
    color: #534249;
    padding: 30px;
    background: rgba(4, 68, 10, .0392156863);
    border-top: 2px solid #04440a
}

@media(max-width: 600px) {
    .event-details-wrapper.service-details .event-details-content .service-text-list .service-text-content {
        width: 100%
    }
}

.event-details-wrapper.service-details .event-details-content .service-text-list .service-text-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 26px;
    font-weight: 500;
    color: #270110
}

.event-details-wrapper.service-details .event-details-content .service-text-list .service-text-content p {
    color: #534249
}

.event-details-wrapper.service-details .event-details-content .service-text-list .service-text-content ul li {
    margin-bottom: 5px
}

.faq-accordion-item {
    border: 1px solid #e7e6e6;
    margin-bottom: 20px;
    border-radius: 8px;
    padding: 26px 78px 26px 20px
}

@media(max-width: 600px) {
    .faq-accordion-item {
        padding: 20px
    }
}

.faq-accordion-item.active {
    border: 1px solid rgba(0, 0, 0, 0);
    background: #f1faf2
}

.faq-accordion-item .faq-content {
    display: none;
    margin-top: 16px;
    color: #062416
}

.faq-accordion-item .faq-content p {
    margin-bottom: 0 !important
}

.faq-accordion-item .faq-title {
    position: relative;
    cursor: pointer;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    color: #04440a
}

@media(max-width: 600px) {
    .faq-accordion-item .faq-title {
        padding-right: 72px
    }
}

.faq-accordion-item .faq-title button.plus,
.faq-accordion-item .faq-title button.minus {
    position: absolute;
    right: -50px;
    background: rgba(0, 0, 0, 0);
    border: none;
    transform: translateY(-50%);
    top: 50%;
    cursor: pointer
}

@media(max-width: 600px) {

    .faq-accordion-item .faq-title button.plus,
    .faq-accordion-item .faq-title button.minus {
        right: 0
    }
}

.faq-accordion-item .faq-title button.minus {
    display: none
}

.faq-accordion-item .faq-title.active button.minus {
    display: block
}

.faq-accordion-item .faq-title.active button.plus {
    display: none
}

section.faq-wrapper {
    padding: 60px 0 100px 0
}

section.faq-wrapper .faq-wrapper-inner {
    max-width: 1070px;
    margin: auto
}

section.faq-wrapper .faq-wrapper-inner h2 {
    margin-bottom: 30px
}

.contact-us-page {
    padding: 100px 0
}

@media(max-width: 1200px) {
    .contact-us-page {
        padding: 50px 0
    }
}

.contact-us-page .container {
    display: flex;
    flex-wrap: wrap
}

@media(max-width: 1200px) {
    .contact-us-page .container {
        justify-content: space-between
    }
}

.contact-us-page .other-contact-info {
    width: 50%;
    margin-left: 0px;
    padding-right: 30px;
    box-sizing: border-box
}

@media(max-width: 990px) {
    .contact-us-page .other-contact-info {
        width: 100%;
        margin-bottom: 40px
    }
}

.contact-us-page .other-contact-info .other-contact-info-inner {
    max-width: 480px
}

.contact-us-page .other-contact-info h3 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 20px;
    font-weight: 400
}

.contact-us-page .other-contact-info .short-des {
    color: #534249;
    margin-bottom: 40px
}

.contact-us-page .other-contact-info ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 40px
}

.contact-us-page .other-contact-info ul li {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%
}

.contact-us-page .other-contact-info ul li strong {
    font-size: 20px;
    margin-bottom: 0px;
    display: block;
    line-height: 30px
}

.contact-us-page .other-contact-info ul li .address-content {
    width: calc(100% - 42px - 10px);
    display: flex;
    gap: 10px
}

.contact-us-page .other-contact-info ul li .address-content p {
    color: #152426;
    max-width: 330px;
    font-weight: 500
}

.contact-us-page .other-contact-info ul li .address-content p a:hover {
    color: #00AF54
}

.contact-us-page .contact-form {
    padding: 24px;
    background: #f1faf2;
    width: 50%;
    border-radius: 8px
}

@media(max-width: 990px) {
    .contact-us-page .contact-form {
        width: 100%
    }
}

@media(max-width: 600px) {
    .contact-us-page .contact-form {
        padding: 20px
    }
}

.contact-us-page .contact-form h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 10px
}

@media(max-width: 600px) {
    .contact-us-page .contact-form h2 {
        font-size: 30px;
        line-height: 38px
    }
}

.contact-us-page .contact-form p {
    color: #534249;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e7e6e6
}

.contact-us-page .contact-form form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

.contact-us-page .contact-form form .form-group {
    width: 285px
}

@media(max-width: 1200px) {
    .contact-us-page .contact-form form .form-group {
        width: 100%
    }
}

.contact-us-page .contact-form form .form-group.full-width {
    width: 100%
}

.contact-us-page .contact-form form .form-group label {
    display: block;
    margin-bottom: 4px
}

.contact-us-page .contact-form form .form-group input,
.contact-us-page .contact-form form .form-group textarea {
    border: 1px solid #e7e6e6;
    width: 100%;
    padding: 13px 12px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 22px;
    color: #534249;
    font-family: "Inter", sans-serif;
    outline: 0
}

.contact-us-page .contact-form form .form-group textarea {
    height: 118px;
    resize: none
}

.contact-us-page .contact-form form .btn-primary {
    cursor: pointer;
    border: none
}

.google-banner {
    height: 525px
}

@media(max-width: 600px) {
    .google-banner {
        height: 300px
    }
}

.google-banner img {
    height: 100%;
    width: 100%;
    object-fit: cover
}

.google-banner iframe {
    height: 100%;
    width: 100%
}

.client-testimonial {
    padding: 100px 0
}

@media(max-width: 1200px) {
    .client-testimonial {
        padding: 50px 0
    }
}

@media(max-width: 600px) {
    .client-testimonial .container {
        padding: 0 0 0 15px
    }
}

.client-testimonial .slick-prev,
.client-testimonial .slick-next {
    top: 0;
    transform: translate(0, 0)
}

@media(max-width: 1200px) {

    .client-testimonial .slick-prev,
    .client-testimonial .slick-next {
        display: none !important
    }
}

.client-testimonial .client-testimonial-slider {
    width: 100%
}

.client-testimonial .client-testimonial-slider .slick-dots {
    display: flex;
    margin-top: 40px
}

@media(max-width: 1200px) {
    .client-testimonial .client-testimonial-slider .client-testimonial-item-inner {
        width: calc(100% - 30px)
    }
}

@media(max-width: 1200px) {
    .client-testimonial .client-testimonial-slider .client-testimonial-item-inner svg {
        width: 100%
    }
}

.client-testimonial .slick-prev {
    left: inherit !important;
    right: -52px;
    top: -32%
}

.client-testimonial .slick-next {
    right: -100px;
    top: -32%
}

.client-testimonial .section-head-left {
    margin-bottom: 60px
}

.client-testimonial .client-testimonial-top {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    padding-left: 20px
}

@media(max-width: 600px) {
    .client-testimonial .client-testimonial-top {
        padding-left: 15px
    }
}

.client-testimonial .client-testimonial-top img {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    box-shadow: 0px 13px 24px 0px rgba(11, 17, 52, .2705882353)
}

.client-testimonial .client-testimonial-top .top-content .title {
    font-size: 20px;
    line-height: 30px;
    color: #270110;
    margin-bottom: 6px
}

.client-testimonial .client-testimonial-top .top-content .designation {
    color: #534249;
    font-size: 14px;
    line-height: 22px
}

.client-testimonial .client-description {
    margin-top: 40px;
    color: #534249;
    max-width: 458px;
    opacity: .8
}

.client-testimonial .client-testimonial-wrapper {
    width: 1020px;
    margin: 0 auto
}

@media(max-width: 1200px) {
    .client-testimonial .client-testimonial-wrapper {
        width: 100%
    }
}

.client-testimonial .client-testimonial-wrapper .slick-prev {
    left: -57px
}

.client-testimonial .client-testimonial-wrapper ul.slick-dots {
    position: relative;
    bottom: 0px;
    margin-top: 30px
}

.client-testimonial .client-testimonial-wrapper ul.slick-dots li {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 2px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    background: #270110;
    opacity: .6;
    transition: all .3s ease-in-out
}

.client-testimonial .client-testimonial-wrapper ul.slick-dots li:hover {
    opacity: 1
}

.client-testimonial .client-testimonial-wrapper ul.slick-dots li.slick-active {
    background: #00AF54;
    opacity: 1
}

.client-testimonial.menufacture-testimonial {
    padding: 0
}

.client-testimonial.menufacture-testimonial .section-head-left {
    margin-bottom: 40px
}

.client-testimonial.menufacture-testimonial .client-testimonial-wrapper ul.slick-dots {
    padding-left: 0
}

.client-testimonial.menufacture-testimonial .slick-prev {
    left: -90px !important;
    right: inherit;
    top: 40%;
    transform: translateY(-50%)
}

.client-testimonial.menufacture-testimonial .slick-next {
    right: -33px;
    top: 40%;
    transform: translateY(-50%)
}

.about-description {
    padding: 63px 0 50px 0
}

@media(max-width: 1200px) {
    .about-description .section-head-left {
        margin-bottom: 10px
    }
}

.about-description .about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 80px
}

@media(max-width: 1200px) {
    .about-description .about-content {
        gap: 20px
    }
}

@media(min-width: 1201px)and (max-width: 1380px) {
    .about-description .about-content {
        gap: 30px;
        padding: 0 50px
    }
}

.about-description .about-content .about-content-left {
    width: calc(50% - 40px)
}

@media(max-width: 1200px) {
    .about-description .about-content .about-content-left {
        width: 100%
    }
}

.about-description .about-content .about-content-left h2 {
    margin-bottom: 20px
}

@media(max-width: 1200px) {
    .about-description .about-content .about-content-left h2 {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 20px
    }

    .about-description .about-content .about-content-left h2 br {
        display: none
    }
}

.about-description .about-content .about-content-left p {
    color: #534249
}

.about-description .about-content .about-content-right {
    width: calc(50% - 40px)
}

.about-description .about-content .about-content-right p {
    color: #534249
}

@media(max-width: 1200px) {
    .about-description .about-content .about-content-right {
        width: 100%
    }
}

.popup-video .container {
    display: flex;
    justify-content: flex-end
}

.popup-video .container .video-popup {
    width: 85%;
    position: relative;
    height: 551px
}

@media(max-width: 1200px) {
    .popup-video .container .video-popup {
        width: 100%;
        height: 450px
    }
}

@media(max-width: 600px) {
    .popup-video .container .video-popup {
        height: 350px
    }
}

.popup-video .container .video-popup .video-banner {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px
}

.popup-video .container .video-popup button.play-btn {
    background: rgba(0, 0, 0, 0);
    border: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 22;
    width: 100px;
    height: 100px;
    left: 50%
}

@media(max-width: 600px) {
    .popup-video .container .video-popup button.play-btn {
        width: 70px;
        height: 70px
    }
}

.mission-vision {
    margin-top: 20px
}

.mission-vision .section-wrapper {
    padding: 40px;
    border: 1px solid #e7e6e6;
    border-radius: 8px
}

@media(max-width: 600px) {
    .mission-vision .section-wrapper {
        padding: 20px
    }
}

.mission-vision .section-wrapper .mission-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px
}

.mission-vision .section-wrapper .mission-item:nth-child(odd) {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e7e6e6
}

@media(max-width: 600px) {
    .mission-vision .section-wrapper .mission-item:nth-child(odd) {
        padding-bottom: 20px;
        margin-bottom: 20px
    }
}

.mission-vision .section-wrapper .mission-item:nth-child(even) {
    flex-direction: row-reverse
}

.mission-vision .section-wrapper .mission-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0
}

.mission-vision .section-wrapper .mission-item img {
    width: 50%;
    height: 351px;
    border-radius: 8px;
    display: block;
    object-fit: cover
}

@media(max-width: 990px) {
    .mission-vision .section-wrapper .mission-item img {
        width: 100%
    }
}

@media(max-width: 600px) {
    .mission-vision .section-wrapper .mission-item img {
        height: auto
    }
}

.mission-vision .section-wrapper .mission-item .mission-content {
    width: calc(50% - 40px)
}

@media(max-width: 990px) {
    .mission-vision .section-wrapper .mission-item .mission-content {
        width: 100%
    }
}

.mission-vision .section-wrapper .mission-item .mission-content h3 {
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 40px;
    font-weight: 400
}

.mission-vision .section-wrapper .mission-item .mission-content p {
    font-size: 14px;
    line-height: 22px;
    color: #534249
}

.photo_grid {
    margin-bottom: 100px
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px
}

.grid-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative
}

.grid-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover
}

.item1 {
    height: 410px;
    width: 410px;
    top: 60px
}

.item2 {
    height: 600px;
    width: 450px
}

.item3 {
    height: 300px;
    width: 300px;
    top: 220px
}

@media(max-width: 1024px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr)
    }

    .item3,
    .item1 {
        top: 0
    }
}

@media(max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 30px
    }
}

@media(max-width: 480px) {
    .grid-container {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 10px
    }

    .item3,
    .item1 {
        top: 0
    }

    .item1,
    .item2,
    .item3 {
        width: 300px;
        height: auto
    }
}

section.aci__product-details {
    padding: 0px 0px 60px 0px;
    background: #f9fafd
}

section.aci__product-details .aci__product-wrapper {
    padding: 30px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 8px
}

@media(max-width: 600px) {
    section.aci__product-details .aci__product-wrapper {
        padding: 0
    }
}

section.aci__product-details .aci__product-wrapper .aci__details-thumbnail {
    width: 440px;
    padding: 0px;
    border-radius: 8px
}

@media(max-width: 600px) {
    section.aci__product-details .aci__product-wrapper .aci__details-thumbnail {
        width: 100%
    }
}

section.aci__product-details .aci__product-wrapper .aci__details-thumbnail img {
    margin: 0 auto;
    display: table;
    height: auto
}

section.aci__product-details .aci__product-wrapper .aci__details-thumbnail .resource-thumbnail-for {
    margin-bottom: 20px
}

section.aci__product-details .aci__product-wrapper .aci__details-thumbnail .resource-thumbnail-for .thumbnail-item {
    border: 1px solid #e7e6e6;
    border-radius: 8px;
    height: 440px
}

section.aci__product-details .aci__product-wrapper .aci__details-thumbnail .resource-thumbnail-for .thumbnail-item img {
    object-fit: contain;
    width: 100% !important;
    height: 100% !important
}

section.aci__product-details .aci__product-wrapper .aci__details-thumbnail .resource-thumbnail-nav .thumbnail-item {
    border: 2px solid rgba(0, 0, 0, 0);
    border-radius: 8px;
    padding: 8px 21px;
    height: 160px
}

@media(max-width: 1200px) {
    section.aci__product-details .aci__product-wrapper .aci__details-thumbnail .resource-thumbnail-nav .thumbnail-item {
        height: 130px
    }
}

section.aci__product-details .aci__product-wrapper .aci__details-thumbnail .resource-thumbnail-nav .thumbnail-item img {
    height: 140px
}

@media(max-width: 1200px) {
    section.aci__product-details .aci__product-wrapper .aci__details-thumbnail .resource-thumbnail-nav .thumbnail-item img {
        height: auto
    }
}

section.aci__product-details .aci__product-wrapper .aci__details-thumbnail .resource-thumbnail-nav .thumbnail-item.slick-current.slick-active {
    border: 2px solid #00AF54
}

section.aci__product-details .aci__product-wrapper .aci__details-content {
    width: calc(100% - 440px - 60px)
}

@media(max-width: 990px) {
    section.aci__product-details .aci__product-wrapper .aci__details-content {
        width: 100%
    }
}

section.aci__product-details .aci__product-wrapper .aci__details-content .aci__details-title {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 20px;
    font-weight: 400
}

@media(max-width: 600px) {
    section.aci__product-details .aci__product-wrapper .aci__details-content .aci__details-title {
        font-size: 28px;
        line-height: 38px
    }
}

section.aci__product-details .aci__product-wrapper .aci__details-content .aci__review-user {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px
}

section.aci__product-details .aci__product-wrapper .aci__details-content .aci__review-user ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin-right: 10px
}

section.aci__product-details .aci__product-wrapper .aci__details-content span.aci__review-average {
    margin-right: 4px;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px
}

section.aci__product-details .aci__product-wrapper .aci__details-content .aci__review-max {
    font-size: 14px;
    line-height: 24px;
    color: #534249
}

section.aci__product-details .aci__product-wrapper .aci__details-content .aci__product-price {
    display: flex;
    margin-bottom: 30px
}

section.aci__product-details .aci__product-wrapper .aci__details-content .aci__base-price {
    font-size: 30px;
    line-height: 40px;
    margin-right: 4px
}

section.aci__product-details .aci__product-wrapper .aci__details-content .aci__product-quantity {
    color: #534249;
    font-size: 16px;
    line-height: 24px;
    position: relative;
    top: 5px
}

section.aci__product-details .aci__product-wrapper .aci__details-content .aci__description-title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    color: #534249;
    margin-bottom: 10px
}

section.aci__product-details .aci__product-wrapper .aci__details-content .aci__description-content {
    margin-bottom: 30px;
    color: #534249
}

section.aci__product-details .aci__product-wrapper .aci__details-content .read-more {
    color: #270110;
    cursor: pointer;
    font-weight: 500
}

section.aci__product-details .aci__product-wrapper .aci__details-content .aci__specification table {
    width: 100%;
    border: 2px solid #e7e6e6;
    border-radius: 4px;
    margin-bottom: 30px
}

section.aci__product-details .aci__product-wrapper .aci__details-content .aci__specification table tr td {
    padding: 10px;
    border-bottom: 1px solid #e7e6e6;
    font-size: 14px;
    line-height: 22px;
    color: #534249
}

section.aci__product-details .aci__product-wrapper .aci__details-content .aci__specification table tr td:last-child {
    color: #270110;
    font-weight: 500
}

section.aci__product-details .aci__product-wrapper .aci__details-content .aci__specification table tr:nth-child(even) {
    background: #f9fafd
}

section.aci__product-details .aci__product-wrapper .aci__details-content .aci__specification table tr:last-child td {
    border-bottom: 0px solid #e7e6e6
}

section.aci__product-details .aci__product-wrapper .aci__details-content .product-details-content {
    background: #f1faf2;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px
}

@media(max-width: 1200px) {
    section.aci__product-details .aci__product-wrapper .aci__details-content .product-details-content {
        flex-wrap: wrap
    }
}

section.aci__product-details .aci__product-wrapper .aci__details-content .product-details-content .product-contact-title {
    color: #534249;
    margin-bottom: 2px
}

section.aci__product-details .aci__product-wrapper .aci__details-content .product-details-content .product-bottom-contact-title {
    font-size: 20px;
    line-height: 30px;
    color: #270110
}

section.aci__product-details .aci__product-wrapper .aci__details-content .product-details-content button#open-contact-form {
    border: none;
    cursor: pointer
}

.contact-us-page.fixed__form {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(39, 1, 16, .7);
    z-index: -1;
    padding: 40px 0;
    visibility: hidden;
    opacity: 0
}

.contact-us-page.fixed__form.active {
    opacity: 1;
    z-index: 999991;
    visibility: visible
}

.contact-us-page.fixed__form .container {
    justify-content: center
}

@media(min-width: 2000px) {
    .contact-us-page.fixed__form .container {
        align-items: center
    }
}

.contact-us-page.fixed__form .contact-form {
    padding: 20px 30px;
    background: #f1faf2;
    width: 720px;
    border-radius: 8px;
    position: relative;
    height: calc(100vh - 60px);
    overflow: auto;
    box-sizing: border-box
}

@media(min-width: 1800px) {
    .contact-us-page.fixed__form .contact-form {
        height: 782px
    }
}

.contact-us-page.fixed__form .contact-form form .form-group {
    width: 317px
}

.contact-us-page.fixed__form .contact-form form .form-group.full-width {
    width: 100%
}

@media(max-width: 990px) {
    .contact-us-page.fixed__form .contact-form form .form-group {
        width: 100%
    }
}

.contact-us-page.fixed__form .contact-form h2 {
    margin-bottom: 5px
}

.contact-us-page.fixed__form .contact-form p {
    margin-bottom: 16px;
    padding-bottom: 16px
}

.contact-us-page.fixed__form .contact-form button.contact-close-btn {
    position: absolute;
    right: 0;
    background: rgba(0, 0, 0, 0);
    border: none;
    top: 30px;
    right: 30px;
    cursor: pointer
}

@media(max-width: 1200px) {
    .contact-us-page.fixed__form .contact-form button.contact-close-btn {
        right: 10px;
        top: 10px;
        width: 30px;
        height: 30px
    }

    .contact-us-page.fixed__form .contact-form button.contact-close-btn svg {
        width: 100%
    }
}

.contact-us-page.fixed__form .contact-form button.contact-close-btn:hover svg path {
    stroke: #00AF54
}

section.aci__realted-product {
    padding: 60px 0;
    background: #f1faf2
}

section.aci__realted-product .slick-prev {
    left: -55px;
    margin-top: -28px
}

@media(min-width: 1201px)and (max-width: 1380px) {
    section.aci__realted-product .slick-prev {
        left: -18px;
        margin-top: -28px;
        z-index: 9
    }
}

@media(max-width: 1200px) {
    section.aci__realted-product .slick-prev {
        display: none !important
    }
}

section.aci__realted-product .slick-next {
    right: -37px;
    margin-top: -28px
}

@media(min-width: 1201px)and (max-width: 1380px) {
    section.aci__realted-product .slick-next {
        right: 0
    }
}

@media(max-width: 1200px) {
    section.aci__realted-product .slick-next {
        display: none !important
    }
}

section.aci__realted-product .slick-slide {
    margin: 0 20px 0 0
}

@media(max-width: 600px) {
    section.aci__realted-product .slick-slide {
        margin: 0 20px 0 0
    }
}

section.aci__realted-product .slick-list {
    margin: 0 -20px 0 0
}

@media(max-width: 600px) {
    section.aci__realted-product .slick-list {
        margin: 0 8px 0 0
    }
}

section.aci__realted-product .section__title {
    font-size: 50px;
    line-height: 65px;
    margin-bottom: 10px
}

@media(max-width: 600px) {
    section.aci__realted-product .section__title {
        font-size: 35px;
        line-height: 46px;
        margin-bottom: 20px
    }
}

section.aci__realted-product .aci__realted-item {
    border: 1px solid #e7e6e6;
    border-radius: 8px;
    background: #fff;
    padding: 10px 0
}

section.aci__realted-product .aci__realted-item .aci__realted-thumbnail img {
    margin: 0 auto;
    display: table;
    height: auto
}

section.aci__realted-product .aci__realted-item .aci__realted-content {
    padding: 15px
}

section.aci__realted-product .aci__realted-item .aci__realted-content .aci__realted-title {
    font-weight: 500;
    margin-bottom: 10px
}

section.aci__realted-product .aci__realted-item .aci__realted-content .aci__product-price {
    display: flex;
    margin-bottom: 30px
}

section.aci__realted-product .aci__realted-item .aci__realted-content .aci__product-quantity {
    color: #534249;
    font-size: 14px;
    line-height: 22px;
    position: relative;
    top: 2px;
    margin-left: 4px
}

section.aci__realted-product .aci__realted-item .aci__realted-content .btn-transparent {
    width: 100%;
    justify-content: center;
    padding: 9px 24px;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    color: #270110;
    border: 1px solid #270110
}

section.aci__realted-product .aci__realted-item .aci__realted-content .btn-transparent img {
    position: relative;
    transition: all .3s ease-in
}

section.aci__realted-product .aci__realted-item .aci__realted-content .btn-transparent:hover {
    border: 1px solid #00AF54;
    background: rgba(0, 0, 0, 0);
    color: #00AF54
}

section.aci__realted-product .aci__realted-item .aci__realted-content .btn-transparent:hover img {
    padding-left: 10px
}

section.aci__realted-product .aci__realted-item .aci__realted-content .btn-transparent:hover img path {
    fill: #fff
}

span.text-more {
    display: none
}

span.text-more.activated {
    display: inline
}

.read-less {
    display: none;
    color: #270110;
    cursor: pointer;
    font-weight: 500
}

.read-less.activated {
    display: inline
}

.visible_show_more span.text-more,
.visible_show_more .read-less {
    display: inline
}

.visible_show_more .read-more {
    display: none
}