@import url("https://fonts.googleapis.com/css?family=Nunito:300,400,600,700,800,900|Poppins:300,400,500,600,700,800,900&display=swap");

:root {
    /* Amoeba */
    --sub-color: #f33804;
    --main-color: #ff5d39;
    --gradient-color-1: #fb8406;
    --gradient-color-2: #e9134e;
    --white: #ffffff;
    --text-color: #BE1B0D;
    --underline-text-color: #ff5934;
    --btn-color: #ee684a;
    --btn-color-bef: #ff5934;
    /* --sub-color: #f9218d;
    --main-color: #8f1bdc;
    --gradient-color-1: #6c19f6;
    --white: #ffffff;
    --text-color: #450b78;
    --underline-text-color: #a60dcf;
    --btn-color: #d852e8; */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    font-style: normal;
}

/* custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #aaa;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #a8bbbf;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Nunito", sans-serif;
    color: #2b044d;
    margin-top: 0px;
    font-style: normal;
    font-weight: 500;
}

p {
    color: #707b8e;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 15px;
}

.f-right {
    float: right;
}

.fix {
    overflow: hidden;
}

a {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

a:hover {
    text-decoration: none;
}

a,
button {
    color: #fff;
    outline: medium none;
}

button:focus,
input:focus {
    outline: 0;
}

input:focus::-moz-placeholder {
    opacity: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

ul {
    margin: 0px;
    padding: 0px;
}

li {
    list-style: none;
}

.btn {
    background: var(--sub-color);
    text-transform: capitalize;
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 0;
    padding: 30px 44px;
    border-radius: 5px;
    transition: color 0.4s linear;
    position: relative;
    z-index: 1;
    border: 0;
    overflow: hidden;
    margin: 0;
    white-space: nowrap;
}

.say-btn {
    text-align: center;
}

.btn-contact {
    background: #fff;
    color: var(--text-color);
}

.logo .logo-image {
    width: 100%;
}

@media (min-width: 767px ) and (max-width: 991px) {
    .logo .logo-image {
        width: 30%;
    }
}

@media(max-width: 766px) {
    .logo .logo-image {
        width: 50%;
    }
}

@media (max-width: 991px) {
    .btn-contact {
        background: var(--sub-color);
        text-transform: capitalize;
        color: #fff;
    }

    .contact-wrapper {
        text-align: center;
    }

    .contact-wrapper .contact-left {
        margin-left: 0;
    }
}

@media (min-width: 992px) {

    .contact-wrapper .contact-left {
        margin-left: 100px;
    }

    .say-something-cap {
        text-align: left;
    }

    .contact-wrapper .contact-right {
        margin-right: 120px;
    }
}

@media (min-width: 1200px) {
    .contact-wrapper .contact-left {
        margin-left: 218px;
    }
}

.btn-contact:hover {
    color: #fff !important;
}

.btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fc9501;
    /* background: #fc013b; */
    z-index: 1;
    border-radius: 5px;
    transition: transform 0.5s;
    transform-origin: 0 0;
    transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
    transform: scaleX(0);
}

.btn:hover::before {
    transform: scaleX(1);
    color: #fff !important;
    z-index: -1;
    /* background: #fc9501; */
}

.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: none;
}

.radius-btn {
    padding: 30px 43px;
    border-radius: 30px;
}

#scrollUp {
    background: var(--main-color);
    height: 50px;
    width: 50px;
    right: 31px;
    bottom: 18px;
    color: #fff;
    font-size: 20px;
    text-align: center;
    border-radius: 50%;
    line-height: 48px;
    border: 2px solid transparent;
}

@media (max-width: 767px) {
    #scrollUp {
        right: 16px;
    }
}

#scrollUp:hover {
    color: #fff;
}

.sticky-bar {
    left: 0;
    margin: auto;
    position: fixed;
    top: 0;
    width: 100%;
    -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    z-index: 9999;
    -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    background: #fff;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-70 {
    margin-bottom: 70px;
}

.pt-90 {
    padding-top: 90px;
}

.pb-90 {
    padding-bottom: 90px;
}

.heartbeat {
    animation: heartbeat 1s infinite alternate;
}

@-webkit-keyframes heartbeat {
    to {
        -webkit-transform: scale(1.7);
        transform: scale(1.7);
    }
}

.rotateme {
    -webkit-animation-name: rotateme;
    animation-name: rotateme;
    -webkit-animation-duration: 50s;
    animation-duration: 50s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

.preloader {
    background-color: #f7f7f7;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    margin: 0 auto;
}

.preloader .preloader-circle {
    width: 100px;
    height: 100px;
    position: relative;
    border: 3px solid transparent;
    border-top-color: var(--main-color);
    z-index: 10;
    border-radius: 50%;
    -webkit-box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
    box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
    background-color: #ffffff;
    -webkit-animation: zoom 2000ms infinite ease;
    animation: zoom 2000ms infinite ease;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}

.preloader .preloader-img {
    position: absolute;
    top: 50%;
    z-index: 200;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    display: inline-block;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding-top: 6px;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}

.preloader .preloader-img img {
    max-width: 55px;
}

.preloader .preloader-img embed {
    width: 60%;
}

.preloader .pere-text strong {
    font-weight: 800;
    color: #dca73a;
    text-transform: uppercase;
}

@-webkit-keyframes zoom {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
    }
}

@keyframes zoom {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
    }
}

.section-padd4 {
    padding-top: 200px;
    padding-bottom: 110px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .section-padd4 {
        padding-top: 200px;
        padding-bottom: 110px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-padd4 {
        padding-top: 100px;
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .section-padd4 {
        padding-top: 70px;
        padding-bottom: 15px;
    }
}

.footer-padding {
    padding-top: 200px;
    padding-bottom: 100px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .footer-padding {
        padding-top: 200px;
        padding-bottom: 100px;
    }
}

@media only screen and (max-width: 1199px) {
    .footer-padding {
        padding-top: 70px;
        padding-bottom: 50px;
    }
}

.header-transparrent {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 9;
}

.main-header {
    z-index: 3;
}

@media only screen and (max-width: 991px) {
    .main-header {
        padding: 11px 0;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .main-header .main-menu {
        margin-right: 30px;
    }
}

.main-header .main-menu ul li.lang{
    margin: 10px;
}
.main-header .main-menu ul li>a.lang-inner{
    padding: 0px;
}
.main-header .main-menu .dropdown-menu{
    text-align: center;
    transform: translate(-45%, -45%) !important;
    top: unset !important;
    left: unset !important;
}
.main-header .main-menu ul li {
    display: inline-block;
    position: relative;
    z-index: 1;
    margin: 0 21px;
}

.main-header .main-menu ul li>a {
    color: var(--text-color);
    font-weight: 400;
    padding: 39px 16px;
    display: block;
    font-size: 16px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    text-transform: capitalize;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .main-header .main-menu ul li>a {
        padding: 39px 15px;
    }
}

.main-header .main-menu ul li>a::before {
    position: absolute;
    content: "";
    left: 50%;
    bottom: 30px;
    background: var(--underline-text-color);
    height: 2px;
    width: 0;
    transition: 0.3s;
    transform: translateX(-50%);
}

.main-header .main-menu ul li a.nav-link.active {
    background: transparent;
}

.main-header .main-menu ul li a.active::before {
    width: 100%;
}

.main-header .main-menu ul li:hover>a::before {
    width: 100%;
}

.main-header .main-menu ul li>a.active::before {
    width: 100%;
}

.main-header ul>li:hover>ul.submenu {
    visibility: visible;
    opacity: 1;
    top: 100%;
}

.header-sticky ul li a {
    padding: 10px 19px;
}

.header-sticky.sticky-bar.sticky .main-menu ul>li>a {
    padding: 25px 16px;
}

.header-sticky.sticky-bar.sticky .main-menu ul>li>a::before {
    bottom: 15px;
}

.slicknav_menu .slicknav_icon-bar {
    background-color: var(--main-color) !important;
}

.slicknav_nav {
    margin-top: 0px;
}

.slicknav_nav li.nav-item.active a {
    color: var(--main-color);
}

.mobile_menu {
    position: absolute;
    right: 0px;
    width: 100%;
    z-index: 99;
}

.slider-height {
    min-height: 1000px;
    background-repeat: no-repeat;
    background-position: center center;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .slider-height {
        min-height: 900px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-height {
        min-height: 1000px;
    }
}

@media (max-width: 767px) {
    .slider-height {
        min-height: 1000px;
    }
}

.sky-blue {
    background: #FFF3E1;
    background-image: url('../../images/landing/group-pol-1.svg');
    background-repeat: no-repeat;
    background-position: right bottom;
}

.slider-area {
    margin-top: -1px;
    overflow: hidden;
}

.slider-area .hero__caption {
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .slider-area .hero__caption {
        /* padding-top: 17px; */
        padding-top: 95px;
    }
}

.slider-area .hero__caption span {
    display: inline-block;
    color: #2b044d;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.slider-area .hero__caption h1 {
    font-size: 65px;
    font-weight: 700;
    color: #2b044d;
    line-height: 1.3;
    margin-bottom: 32px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider-area .hero__caption h1 {
        font-size: 55px;
        line-height: 1.2;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-area .hero__caption h1 {
        font-size: 50px;
        line-height: 1.2;
    }
}

@media (max-width: 767px) {
    .slider-area .hero__caption h1 {
        font-size: 29px !important;
        line-height: 1.4;
    }
}

.slider-area .hero__caption p {
    margin-bottom: 54px;
    padding-right: 155px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .slider-area .hero__caption p {
        margin-bottom: 20px;
        padding-right: 0px;
    }
}

@media (max-width: 767px) {
    .slider-area .hero__caption p {
        margin-bottom: 20px;
        padding-right: 0px;
    }
}

.slider-area .hero__caption .slider-btns a.video-btn {
    background: var(--btn-color);
    width: 60px;
    height: 60px;
    display: inline-block;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    position: relative;
    margin-left: 16px;
    color: #fff;
}

.slider-area .hero__caption .slider-btns a.video-btn:hover.ani-btn {
    animation: 1.3s cubic-bezier(0.8, 0, 0, 1) 0s normal none infinite running pulse;
    box-shadow: 0 0 0 0 rgba(61, 1, 68, 0.302);
    -webkit-animation: 1.3s cubic-bezier(217, 70, 233, 1) 0s normal none infinite running pulse;
}

.slider-area .hero__caption .slider-btns a.btn.radius-btn:hover {
    color: #fff;
}

@-webkit-keyframes pulse {
    to {
        box-shadow: 0 0 0 45px rgba(83, 16, 90, 0);
    }
}

@keyframes pulse {
    to {
        box-shadow: 0 0 0 45px rgba(187, 22, 206, 0);
    }
}

.slider-area .hero__img img {
    transform: scale(1.3);
    position: relative;
    right: -75px;
    top: 120px;
}

@media (max-width: 991px) {
    .slider-area .hero__img img {
        transform: scale(1.3);
        position: relative;
        top: 70px;
        right: 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1300px) {
    .slider-area .hero__img img {
        right: 0px;
        transform: scale(1.4);
        top: 50px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .justify-content-end {
        justify-content: center !important;
    }

    .justify-content-end .row {
        justify-content: center;
    }

    .justify-content-end .row .section-tittle {
        text-align: center;
    }
}

.best-features-area {
    position: relative;
}

.best-features-area .single-features {
    display: flex;
}

@media (max-width: 767px) {
    .best-features-area .single-features {
        margin-bottom: 30px;
    }
}

.best-features-area .single-features .features-icon span {
    position: relative;
    color: #fff;
    font-size: 30px;
    height: 67px;
    width: 67px;
    display: block;
    line-height: 67px;
    border-radius: 50%;
    text-align: center;
    background-image: -moz-linear-gradient(90deg, var(--gradient-color-1) 0%, var(--gradient-color-2) 100%);
    background-image: -webkit-linear-gradient(90deg, var(--gradient-color-1) 0%, var(--gradient-color-2) 100%);
    background-image: -ms-linear-gradient(90deg, var(--gradient-color-1) 0%, var(--gradient-color-2) 100%);
    background-image: linear-gradient(90deg, var(--gradient-color-1) 0%, var(--gradient-color-2) 100%);
}

.best-features-area .single-features .features-caption {
    padding-left: 19px;
}

.best-features-area .single-features .features-caption h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #23182c;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .best-features-area .single-features .features-caption p {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .best-features-area .single-features .features-caption p {
        font-size: 13px;
    }
}

.best-features-area .features-shpae {
    position: absolute;
    left: 0;
    top: 200px;
}

@media only screen and (min-width: 1201px) and (max-width: 1300px) {
    .best-features-area .features-shpae {
        top: 50%;
        transform: translateY(-50%);
    }
}

.best-features-area .features-shpae img {
    max-width: 90%;
}

@media only screen and (min-width: 992px) and (max-width: 1200) {
    .best-features-area .features-shpae img {
        display: none;
    }
}

@media only screen and (min-width: 1201px) {
    .best-features-area .features-shpae img {
        max-width: 70%;
        top: 50%;
    }

    .features-shpae {
        display: block !important;
    }
}

@media (min-width: 1501px) {
    .best-features-area .features-shpae img {
        max-width: 90%;
    }
}

.section-tittle h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 90px;
}

@media (max-width: 767px) {
    .section-tittle h2 {
        font-size: 30px;
        line-height: 1.3;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-tittle h2 {
        font-size: 40px;
    }
}

/* Available app */

.available-app-area {
    position: relative;
    padding: 215px 108px 327px 108px;
    background-image: -moz-linear-gradient(90deg, var(--gradient-color-1) 0%, var(--gradient-color-2) 100%);
    background-image: -webkit-linear-gradient(90deg, var(--gradient-color-1) 0%, var(--gradient-color-2) 100%);
    background-image: -ms-linear-gradient(90deg, var(--gradient-color-1) 0%, var(--gradient-color-2) 100%);
    background-image: linear-gradient(90deg, var(--gradient-color-1) 0%, var(--gradient-color-2) 100%);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .available-app-area {
        padding: 150px 0;
    }
}

@media only screen and (max-width: 991px) {
    .available-app-area {
        padding: 100px 0;
    }
}

.available-app-area .app-caption .section-tittle3 h2 {
    color: #fff;
    margin-bottom: 35px;
    font-weight: 600;
}

.available-app-area .app-caption p {
    color: #fff;
    padding-right: 52px;
    padding-bottom: 30px;
}

.available-app-area .app-caption .app-btn .app-btn1 {
    padding-right: 15px;
}

@media (max-width: 767px) {
    .available-app-area .app-caption .app-btn .app-btn2 {
        display: block;
        padding-top: 10px;
    }
}

.available-app-area .app-img {
    position: absolute;
    /* right: -136px; */
    width: 490px;
    top: 169px;
    right: 136px;
}

@media only screen and (min-width: 1200px) and (max-width: 1440px) {
    .available-app-area .app-img {
        top: 169px;
        right: 136px;
        width: 400px;
    }
}

@media only screen and (max-width: 1199px) {
    .available-app-area .app-img {
        top: 125px;
        right: 100px;
        width: 350px;
    }
}

@media only screen and (max-width: 991px) {
    .available-app-area .app-img {
        display: block;
        top: 50px;
        left: 10%;
        width: 80%;
        position: relative;
    }
}

.available-app-area .app-img img {
    width: 100%;
}

.available-app-area .app-shape .app-shape-top {
    position: absolute;
    top: 100px;
    left: 125px;
}

.available-app-area .app-shape .app-shape-left {
    position: absolute;
    left: 0;
    bottom: 0;
}

.say-something-aera {
    position: relative;
    border-bottom: 1px solid #ffc9fd;
    background-color: #FFF3E1;
}

.say-something-aera .say-something-cap h2 {
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    color: #282828;
    position: relative;
    z-index: 1;
}

.say-something-aera h4 {
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .say-something-aera .say-something-cap h2 {
        font-size: 41px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .say-something-aera .say-something-cap h2 {
        margin-bottom: 25px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .say-something-aera .say-something-cap h2 {
        margin-bottom: 25px;
        font-size: 41px;
    }
}

@media (max-width: 767px) {
    .say-something-aera .say-something-cap h2 {
        margin-bottom: 25px;
        font-size: 30px;
    }
}

.say-something-aera .say-shape .say-shape1 {
    position: absolute;
    left: 0;
    bottom: 0;
    /* z-index: -1; */
    display: block !important;
}

.say-something-aera .say-shape .say-shape2 {
    position: absolute;
    right: 0;
    top: 0;
    /* z-index: -1; */
}

.say-something-aera .form-control {
    border: 0px solid #ced4da;
    padding: 0.725rem 0.75rem;
    position: relative;
    z-index: 1;
}

.say-something-aera .form-select {
    border: 0px solid #ced4da;
    padding: 0.725rem 0.75rem;
    color: #212529;
    position: relative;
    z-index: 1;
}

.say-something-aera select option:checked {
    background-color: #EE684A !important;
    color: white!important;
}

.say-something-aera select option:hover {
    background-color: #EE684A !important;
    color: white!important;
}

.say-something-aera select option:focus {
    background-color: #EE684A !important;
    color: white!important;
}

.say-something-aera select option:active {
    background-color: #EE684A !important;
    color: white!important;
}

.footer-area .footer-logo {
    margin-bottom: 30px;
}

.footer-area .footer-pera .info1 {
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-area .footer-pera.footer-pera2 p {
    padding: 0;
}

.footer-area .footer-tittle h4 {
    color: #000;
    font-size: 18px;
    margin-bottom: 48px;
    font-weight: 700;
}

.footer-area .footer-tittle ul li {
    color: #012f5f;
    margin-bottom: 15px;
}

.footer-area .footer-tittle ul li a {
    color: #868c98;
    font-weight: 300;
}

.footer-area .footer-tittle ul li a:hover {
    color: var(--main-color);
    padding-left: 5px;
}

.footer-area .footer-form {
    margin-top: 40px;
}

.footer-area .footer-form form {
    position: relative;
}

.footer-area .footer-form form input {
    width: 100%;
    height: 43px;
    padding: 10px 20px;
    border: 1px solid var(--main-color);
    /* background: #f9f9fe; */
    /* background: #f338041a; */
    background: rgba(249, 249, 254, 0.5);
    cursor: text;
}

.footer-area .footer-form form .form-icon button {
    position: absolute;
    top: 0px;
    right: 0;
    border: 0;
    cursor: pointer;
    padding: 9px 22px;
    background: var(--main-color);
}

.footer-area .footer-copy-right {
    padding-top: 20px;
}

@media (max-width: 767px) {
    .footer-area .footer-copy-right {
        padding-top: 0px;
    }
}

.footer-area .footer-copy-right p {
    color: #888888;
    font-weight: 300;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 12px;
}

#webviewModal button.close {
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.content .wraps {
    margin-bottom: 16px;
}

.content .wraps .title {
    font-size: 25px;
    font-weight: 700;
    margin: 20px 0 0;
    color: var(--sub-color);
}

.content .wraps .subtitle {
    font-size: 12px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.56);
    margin: 5px 0 0;
}

.title-page {
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    margin: 16px 0px;
}

a.slicknav_btn {
    top: -46px !important;
}

.collap-box {
    box-shadow: 0px 0px 10px rgba(33, 33, 33, 0.1);
    border-radius: 20px;
    margin-bottom: 16px;
}

.collapsible {
    background-color: white;
    color: #212121;
    cursor: pointer;
    padding: 18px 18px 18px 36px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    position: relative;
}

.active,
.collapsible:hover {
    background-color: white;
}

.collapsible::before {
    content: '\002B';
    color: white;
    font-weight: bold;
    float: left;
    width: 20px;
    height: 20px;
    background: var(--sub-color);
    text-align: center;
    border-radius: 6px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.collapsible.active:before {
    content: "\2212";
}

.content-collap {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

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

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

.hero__caption.animate__fadeInLeft {
    animation: fadeInLeft 1s linear;
    animation-delay: 0.4s;
}

.hero__img.animate__fadeInRight {
    animation: fadeInRight 0.8s linear;
    animation-delay: 0.4s;
    min-height: 350px;
}

.footer-main{
    font-family: "Nunito", sans-serif;
}

.font-primary {
    color: var(--text-color) !important;
}
