/*** core **/

body {
    background-color: #F2F4F7;
}

.primary-button,
.secondary-button {
    border-radius: 9999px;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    font-family: 'Merriweather, sans-serif';
}

/*** Go Top **/
.go-top-area {
    position: relative;
    z-index: 5;
}
.go-top-area .go-top {
    position: fixed;
    cursor: pointer;
    top: 0;
    right: 24px;
    color: #ffffff;
    background-color: #002EE5;
    z-index: 9999;
    width: 40px;
    text-align: center;
    height: 42px;
    line-height: 42px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.9s ease-out 0s;
    -moz-transition: all 0.9s ease-out 0s;
    -ms-transition: all 0.9s ease-out 0s;
    -o-transition: all 0.9s ease-out 0s;
    transition: all 0.9s ease-out 0s;
    border-radius: 100%;
}
.go-top-area .go-top i {
    position: absolute;
    top: 50%;
    left: -4px;
    right: 0;
    margin: 0 auto;
    font-size: 15px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}
.go-top-area .go-top i:last-child {
    opacity: 0;
    visibility: hidden;
    top: 60%;
}
.go-top-area .go-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #002EE5;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    border-radius: 100%;
}
.go-top-area .go-top:focus,
.go-top-area .go-top:hover {
    color: #fff;
}
.go-top-area .go-top:focus::before,
.go-top-area .go-top:hover::before {
    opacity: 1;
    visibility: visible;
}
.go-top-area .go-top:focus i:first-child,
.go-top-area .go-top:hover i:first-child {
    opacity: 0;
    top: 0;
    visibility: hidden;
}
.go-top-area .go-top:focus i:last-child,
.go-top-area .go-top:hover i:last-child {
    opacity: 1;
    visibility: visible;
    top: 50%;
}
.go-top-area .go-top.active {
    top: 98%;
    -webkit-transform: translateY(-98%);
    -moz-transform: translateY(-98%);
    -ms-transform: translateY(-98%);
    -o-transform: translateY(-98%);
    transform: translateY(-98%);
    opacity: 1;
    visibility: visible;
    border-radius: 100%;
    right: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .go-top-area .go-top.active {
        top: 93%;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .go-top-area .go-top.active {
        top: 93%;
    }
}

.go-top-wrap {
    position: relative;
}
.go-top-wrap .go-top-btn {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    top: 3px;
    z-index: 1;
    /* background: #29f0b4; */
    border-radius: 100%;
}
.go-top-wrap .go-top-btn i {
    font-size: 20px;
    font-weight: 700;
    padding-left: 4px;
    color: #fff;
}
.go-top-wrap .go-top-btn::after {
    z-index: -1;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    -webkit-animation: ripple 1.6s ease-out infinite;
    -moz-animation: ripple 1.6s ease-out infinite;
    -o-animation: ripple 1.6s ease-out infinite;
    animation: ripple 1.6s ease-out infinite;
    opacity: 0;
    background: #002EE5;
    border-radius: 100%;
}
.go-top-wrap .go-top-btn:hover {
    color: #fff;
}

@keyframes ripple {
    0%,
    35% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(2);
        -moz-transform: scale(2);
        -ms-transform: scale(2);
        -o-transform: scale(2);
        transform: scale(2);
    }
}
@-webkit-keyframes ripple {
    0%,
    35% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(2);
        -moz-transform: scale(2);
        -ms-transform: scale(2);
        -o-transform: scale(2);
        transform: scale(2);
    }
}

/*** lander section override **/

.lander-container-bg {
    position: relative;
    background-image: url(../images/lander-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.subscribe-suscribe-form {
    width: 100%;
}

.subscribe-form-field {
    height: 4.4rem;
}

.subscribe-form-field input,
.subscribe-form-field select {
    width: 100%;
    height: 4.2rem;
    outline: none;
    padding-left: 1rem;
}


.subscribe-form-field .country-code {
    background-color: #fff;
    width: 8rem;
}

#email-validation-message.hidden,
#zip-validation-message.hidden,
#validation-message.hidden {
	position: absolute !important;
	clip: rect(1px 1px 1px 1px) !important;
	clip: rect(1px, 1px, 1px, 1px) !important;
	overflow: hidden !important;
	height: 1px !important;
	width: 1px !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
}

/*** contact us **/
.contact-us-bg {
    background-image: url('../images/contact-image.jpg');
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
}

/*** mobile menu **/

.mobile__menu--active {
    height: 100% !important;
    overflow: auto;
}

.mobile__menu--active .bar__line:nth-child(1) {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -moz-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    -o-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    position: absolute;
    top: 0;
    right: 0;
}

.mobile__menu--active .bar__line:nth-child(2) {
    display: none;
}

.mobile__menu--active .bar__line:last-child {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -moz-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    -o-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    position: absolute;
    top: 0;
    right: 0;
}

.mobile__menu-box--active {
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile__menu-box {
    transition-delay: 100ms !important;
}


.swiper-container  .swiper-wrapper .swiper-slide-next {
	visibility: hidden;
}

.swiper-pagination-bullet {
    border-radius: 0;
    width: 50px;
    height: 5px;
    border-radius: 3px;
    
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #1F646B;
}
.banner__subscribe-image-box {
    background-image: url(../images/lander-image.png);
    background-position: top;
}


.article-content-container h2 {
    color: var(--Gray-900, #101828);

    /* text-2xl/Semibold */
    font-family: Merriweather;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px; /* 133.333% */
}
 
.article-content-container ul {
  list-style-type: disc;
  margin: 1em 0;
  padding-left: 40px;
}

.article-content-container li {
  display: list-item;
  list-style-position: outside;
}

.article-content-container ol {
  list-style-type: decimal;
  margin: 1em 0;
  padding-left: 40px;
}

.article-content-container li {
  display: list-item;
  list-style-position: outside;
}