@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
@keyframes zoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3, 1.3);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes floating {
    0% {
        transform: translateX(-50%) translateY(0%);
    }
    50% {
        transform: translateX(-50%) translateY(8%);
    }
    100% {
        transform: translateX(-50%) translateY(0%);
    }
}

@keyframes cliprotate {
    0% {
        transform: rotate(0deg);
        border-top-color: white;
    }
    25% {
        transform: rotate(90deg);
        border-top-color: white;
        border-right-color: white;
    }
    75% {
        transform: rotate(180deg);
        border-top-color: white;
        border-right-color: white;
        border-bottom-color: white;
    }
    100% {
        transform: rotate(360deg);
        border-top-color: white;
        border-right-color: white;
        border-bottom-color: white;
        border-left-color: white;
    }
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes orbit {
    0% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(-360deg);
    }
}

@keyframes orbit-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes orbit-reverse {
    0% {
        transform: rotateZ(-3600deg);
    }
    100% {
        transform: rotateZ(0deg);
    }
}

@keyframes bgScrollLeft {
    from {
        background-position: 100% 0;
    }
    to {
        background-position: 100% -230px;
    }
}

@keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 #ffffff;
        box-shadow: 0 0 0 0 #ffffff;
    }
    70% {
        -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes action-bounce {
    0%,
    100% {
        transform: translate(0, 0);
    }
    10% {
        transform: translate(0, 4px);
    }
    50% {
        transform: translate(0, -15px);
    }
    90% {
        transform: translate(0, 4px);
    }
}

@keyframes action-jelly {
    0%,
    100% {
        transform: scaleX(1);
    }
    20% {
        transform: scaleX(0.9);
    }
    50% {
        transform: scaleX(1.25);
    }
    85% {
        transform: scaleX(0.8);
    }
}

@keyframes jello {
    11.1% {
        transform: none;
    }
    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    66.6% {
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    77.7% {
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }
    88.8% {
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
    100% {
        transform: none;
    }
}

@keyframes jumping {
    0% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }
    70% {
        -webkit-transform: scale(1.02, 0.9) translateY(10px);
        transform: scale(1.02, 0.9) translateY(10px);
    }
    100% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }
}

@keyframes jumping-rotate {
    0% {
        -webkit-transform: translateY(-40px) rotate(45deg);
        transform: translateY(-40px) rotate(45deg);
    }
    70% {
        -webkit-transform: scale(1.02, 0.9) translateY(10px) rotate(45deg);
        transform: scale(1.02, 0.9) translateY(10px) rotate(45deg);
    }
    100% {
        -webkit-transform: translateY(-40px) rotate(45deg);
        transform: translateY(-40px) rotate(45deg);
    }
}

@keyframes boxWithShadow {
    0% {
        width: 80%;
        opacity: 1;
    }
    50% {
        width: 50%;
        opacity: 0.5;
    }
    to {
        width: 80%;
        opacity: 1;
    }
}

@keyframes bounceDown-on {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes bounceRight-on {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-8px);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes bounceDown {
    0% {
        transform: translateY(0) scale(0.88);
    }
    50% {
        transform: translateY(-5rem) scale(0.88);
    }
    to {
        transform: translateY(0) scale(0.88);
    }
}

@keyframes shadowRegulator {
    0% {
        width: 80%;
        opacity: 1;
    }
    50% {
        width: 50%;
        opacity: 0.5;
    }
    to {
        width: 80%;
        opacity: 1;
    }
}

@keyframes upDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-1rem);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes upDown-totate {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-1rem);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes scale1 {
    0% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(360deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

@keyframes roate1 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes roate1rivers {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

@keyframes scaleImage {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes backForward {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(25%);
    }
    100% {
        transform: translateX(0%);
    }
}

@keyframes leftTop {
    from {
        opacity: 0;
        transform: rotate(360deg);
    }
    to {
        opacity: 1;
        transform: rotate(0deg);
    }
}

@keyframes leftBottom {
    from {
        opacity: 0;
        transform: rotate(-360deg);
    }
    to {
        opacity: 1;
        transform: rotate(0deg);
    }
}

@keyframes rightTop {
    from {
        opacity: 0;
        transform: rotate(-100deg);
    }
    to {
        opacity: 1;
        transform: rotate(0deg);
    }
}

@keyframes rightBottom {
    from {
        opacity: 0;
        transform: rotate(100deg);
    }
    to {
        opacity: 1;
        transform: rotate(0deg);
    }
}

@keyframes blurAnimate {
    0% {
        filter: blur(10px);
    }
    50% {
        filter: blur(5px);
    }
    100% {
        filter: blur(10px);
    }
}

@keyframes rightLeft {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(45deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.md-sans {
    font-family: "DM Sans", sans-serif;
}

.source-sans-pro {
    font-family: "Source Sans Pro", sans-serif;
}

.montserrat {
    font-family: "Montserrat", sans-serif;
}

.inter {
    font-family: "Inter", sans-serif;
}

h1 {
    font-size: 70px;
}

h2 {
    font-size: 50px;
}

@media screen and (max-width: 768px) {
    h2 {
        font-size: 35px;
    }
}

h3 {
    font-size: 40px;
}

@media screen and (max-width: 768px) {
    h3 {
        font-size: 25px;
    }
}

h4 {
    font-size: 30px;
}

@media screen and (max-width: 768px) {
    h4 {
        font-size: 20px;
    }
}

h5 {
    font-size: 24px;
}

@media screen and (max-width: 768px) {
    h5 {
        font-size: 18px;
    }
}

h6 {
    font-size: 18px;
}

@media screen and (max-width: 768px) {
    h6 {
        font-size: 14px;
    }
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 900;
}

.thin {
    font-weight: 100 !important;
}

.extra-light {
    font-weight: 200 !important;
}

.light {
    font-weight: 300 !important;
}

.regular {
    font-weight: 400 !important;
}

.medium {
    font-weight: 500 !important;
}

.semi-bold {
    font-weight: 600 !important;
}

.bold {
    font-weight: 700 !important;
}

.extra-bold {
    font-weight: 800 !important;
}

.black {
    font-weight: 900 !important;
}

.normal {
    font-weight: normal !important;
}

.uppercase__font {
    text-transform: uppercase;
}

.capitalize__font {
    text-transform: capitalize;
}

.justify {
    text-align: justify;
}

.underline {
    text-decoration: underline;
}

@font-face {
    font-family: circular;
    src: url("../fonts/CircularStd-Book.ttf");
}

.circular {
    font-family: circular;
}

body {
    font-family: "circular", sans-serif;
    color: #222831;
    font-size: 16px;
    letter-spacing: 0.03em;
    line-height: 1.7em;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
}

section {
    padding: 80px 0;
}

.container {
    max-width: 1300px;
}

@media screen and (max-width: 1200px) {
    .container {
        max-width: 92%;
    }
}

.divider {
    height: 30px;
}

.divider__xs {
    height: 10px;
}

.divider__sm {
    height: 20px;
}

.divider__md {
    height: 40px;
}

.divider__lg {
    height: 60px;
}

.divider__xlg {
    height: 80px;
}

.divider__xxlg {
    height: 100px;
}

.modal-content {
    border: 0;
    padding: 40px;
    border-radius: 10px;
}

.modal-content.send-mail {
    padding: 20px;
}

.tooltip {
    border-radius: 10px;
}

.tooltip>.tooltip-inner {
    padding: 8px 15px;
    font-weight: 500;
    font-family: "Lato";
    color: #ffffff !important;
    letter-spacing: 0.01em;
    font-size: 13px;
    background-color: #222831 !important;
}

.bs-tooltip-auto[x-placement^=bottom] .arrow::before,
.bs-tooltip-bottom .arrow::before {
    border-bottom-color: #222831 !important;
}

.bs-tooltip-auto[x-placement^=top] .arrow::before,
.bs-tooltip-top .arrow::before {
    border-top-color: #222831 !important;
}

.bs-tooltip-auto[x-placement^=left] .arrow::before,
.bs-tooltip-left .arrow::before {
    border-left-color: #222831 !important;
}

.bs-tooltip-auto[x-placement^=right] .arrow::before,
.bs-tooltip-right .arrow::before {
    border-right-color: #222831 !important;
}

.pointer {
    cursor: pointer;
}

.pointer__default {
    cursor: default;
}

.no__outline {
    outline-style: none !important;
}

.no__outline:focus {
    outline-style: none !important;
}

.modal {
    background-color: #dbdff199 !important;
}

.width__full {
    width: 100%;
}

.max-width-1140 {
    max-width: 1140px;
}

@media screen and (max-width: 576px) {
    .max-width-1140 {
        max-width: 92%;
    }
}

.object-fit-content {
    object-fit: contain !important;
}

.min-height-100 {
    min-height: 100vh;
}

.max-height-100 {
    max-height: 100vh;
}

.no__maxwid {
    max-width: 100% !important;
}

.fit-content {
    max-width: fit-content !important;
}

@media screen and (max-width: 576px) {
    .no__xs-fit {
        max-width: inherit !important;
    }
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

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

.ul__nostyle {
    margin: 0;
    padding: 0;
    list-style: none;
}

@media screen and (min-width: 1440px) {
    .max-1440-up {
        max-width: 1440px;
        margin: 0 auto;
    }
}

.lh-2 {
    line-height: 2 !important;
}

.rounded-50 {
    border-radius: 50px !important;
}

.bg__white {
    background-color: #ffffff !important;
}

.bg__black {
    background-color: #000980 !important;
}

.bg__blue {
    background-color: #000980 !important;
}

.bg__blue-2 {
    background-color: #000980 !important;
}

.bg__softblue {
    background-color: #99E0FF !important;
}

.bg__yellow {
    background-color: #FFBE62 !important;
}

.bg__gray-1 {
    background-color: #9D9D9D !important;
}

.bg__gray-2 {
    background-color: #F6F6F6 !important;
}

.opacity__1 {
    opacity: 0.1;
    transition: 0.5s;
}

.opacity__1.hover:hover {
    opacity: 1;
}

.opacity__2 {
    opacity: 0.2;
    transition: 0.5s;
}

.opacity__2.hover:hover {
    opacity: 1;
}

.opacity__3 {
    opacity: 0.3;
    transition: 0.5s;
}

.opacity__3.hover:hover {
    opacity: 1;
}

.opacity__4 {
    opacity: 0.4;
    transition: 0.5s;
}

.opacity__4.hover:hover {
    opacity: 1;
}

.opacity__5 {
    opacity: 0.5;
    transition: 0.5s;
}

.opacity__5.hover:hover {
    opacity: 1;
}

.opacity__6 {
    opacity: 0.6;
    transition: 0.5s;
}

.opacity__6.hover:hover {
    opacity: 1;
}

.opacity__7 {
    opacity: 0.7;
    transition: 0.5s;
}

.opacity__7.hover:hover {
    opacity: 1;
}

.opacity__8 {
    opacity: 0.8;
    transition: 0.5s;
}

.opacity__8.hover:hover {
    opacity: 1;
}

.opacity__9 {
    opacity: 0.9;
    transition: 0.5s;
}

.opacity__9.hover:hover {
    opacity: 1;
}

.opacity__10 {
    opacity: 1;
    transition: 0.5s;
}

.opacity__10.hover:hover {
    opacity: 1;
}

.border__radius--0 {
    border-radius: 0px !important;
}

.border__radius--1 {
    border-radius: 1px !important;
}

.border__radius--2 {
    border-radius: 2px !important;
}

.border__radius--3 {
    border-radius: 3px !important;
}

.border__radius--4 {
    border-radius: 4px !important;
}

.border__radius--5 {
    border-radius: 5px !important;
}

.border__radius--6 {
    border-radius: 6px !important;
}

.border__radius--7 {
    border-radius: 7px !important;
}

.border__radius--8 {
    border-radius: 8px !important;
}

.border__radius--9 {
    border-radius: 9px !important;
}

.border__radius--10 {
    border-radius: 10px !important;
}

.border__radius--11 {
    border-radius: 11px !important;
}

.border__radius--12 {
    border-radius: 12px !important;
}

.border__radius--13 {
    border-radius: 13px !important;
}

.border__radius--14 {
    border-radius: 14px !important;
}

.border__radius--15 {
    border-radius: 15px !important;
}

.border__radius--16 {
    border-radius: 16px !important;
}

.border__radius--17 {
    border-radius: 17px !important;
}

.border__radius--18 {
    border-radius: 18px !important;
}

.border__radius--19 {
    border-radius: 19px !important;
}

.border__radius--20 {
    border-radius: 20px !important;
}

.border__radius--21 {
    border-radius: 21px !important;
}

.border__radius--22 {
    border-radius: 22px !important;
}

.border__radius--23 {
    border-radius: 23px !important;
}

.border__radius--24 {
    border-radius: 24px !important;
}

.border__radius--25 {
    border-radius: 25px !important;
}

.border__radius--26 {
    border-radius: 26px !important;
}

.border__radius--27 {
    border-radius: 27px !important;
}

.border__radius--28 {
    border-radius: 28px !important;
}

.border__radius--29 {
    border-radius: 29px !important;
}

.border__radius--30 {
    border-radius: 30px !important;
}

.border__radius--31 {
    border-radius: 31px !important;
}

.border__radius--32 {
    border-radius: 32px !important;
}

.border__radius--33 {
    border-radius: 33px !important;
}

.border__radius--34 {
    border-radius: 34px !important;
}

.border__radius--35 {
    border-radius: 35px !important;
}

.border__radius--36 {
    border-radius: 36px !important;
}

.border__radius--37 {
    border-radius: 37px !important;
}

.border__radius--38 {
    border-radius: 38px !important;
}

.border__radius--39 {
    border-radius: 39px !important;
}

.border__radius--40 {
    border-radius: 40px !important;
}

.border__radius--41 {
    border-radius: 41px !important;
}

.border__radius--42 {
    border-radius: 42px !important;
}

.border__radius--43 {
    border-radius: 43px !important;
}

.border__radius--44 {
    border-radius: 44px !important;
}

.border__radius--45 {
    border-radius: 45px !important;
}

.border__radius--46 {
    border-radius: 46px !important;
}

.border__radius--47 {
    border-radius: 47px !important;
}

.border__radius--48 {
    border-radius: 48px !important;
}

.border__radius--49 {
    border-radius: 49px !important;
}

.border__radius--50 {
    border-radius: 50px !important;
}

.color__white {
    color: #ffffff !important;
}

.color__black {
    color: #222831 !important;
}

.color__blue {
    color: #0E185F !important;
}

.color__blue-2 {
    color: #2FA4FF !important;
}

.color__softblue {
    color: #99E0FF !important;
}

.color__yellow {
    color: #FFBE62 !important;
}

.color__gray-1 {
    color: #9D9D9D !important;
}

.color__gray-2 {
    color: #F6F6F6 !important;
}

.fw__1 {
    font-weight: 100 !important;
}

.fw__2 {
    font-weight: 200 !important;
}

.fw__3 {
    font-weight: 300 !important;
}

.fw__4 {
    font-weight: 400 !important;
}

.fw__5 {
    font-weight: 500 !important;
}

.fw__6 {
    font-weight: 600 !important;
}

.fw__7 {
    font-weight: 700 !important;
}

.fw__8 {
    font-weight: 800 !important;
}

.lh__1 {
    line-height: 1.1 !important;
}

.lh__2 {
    line-height: 1.2 !important;
}

.lh__3 {
    line-height: 1.3 !important;
}

.lh__4 {
    line-height: 1.4 !important;
}

.lh__5 {
    line-height: 1.5 !important;
}

.lh__6 {
    line-height: 1.6 !important;
}

.lh__7 {
    line-height: 1.7 !important;
}

.lh__8 {
    line-height: 1.8 !important;
}

.lh__9 {
    line-height: 1.9 !important;
}

.ls__1 {
    letter-spacing: 0.2em !important;
}

.ls__2 {
    letter-spacing: 0.3em !important;
}

.ls__3 {
    letter-spacing: 0.4em !important;
}

.ls__4 {
    letter-spacing: 0.5em !important;
}

.ls__5 {
    letter-spacing: 0.6em !important;
}

.ls__6 {
    letter-spacing: 0.7em !important;
}

.ls__7 {
    letter-spacing: 0.8em !important;
}

.ls__8 {
    letter-spacing: 0.9em !important;
}

.ls__9 {
    letter-spacing: 1em !important;
}

.clamp__1 {
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clamp__2 {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clamp__3 {
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clamp__4 {
    display: -webkit-box !important;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.font__size--6 {
    font-size: 6px !important;
}

.font__size--7 {
    font-size: 7px !important;
}

.font__size--8 {
    font-size: 8px !important;
}

.font__size--9 {
    font-size: 9px !important;
}

.font__size--10 {
    font-size: 10px !important;
}

.font__size--11 {
    font-size: 11px !important;
}

.font__size--12 {
    font-size: 12px !important;
}

.font__size--13 {
    font-size: 13px !important;
}

.font__size--14 {
    font-size: 14px !important;
}

.font__size--15 {
    font-size: 15px !important;
}

.font__size--16 {
    font-size: 16px !important;
}

.font__size--17 {
    font-size: 17px !important;
}

.font__size--18 {
    font-size: 18px !important;
}

.font__size--19 {
    font-size: 19px !important;
}

.font__size--20 {
    font-size: 20px !important;
}

.font__size--21 {
    font-size: 21px !important;
}

.font__size--22 {
    font-size: 22px !important;
}

.font__size--23 {
    font-size: 23px !important;
}

.font__size--24 {
    font-size: 24px !important;
}

.font__size--25 {
    font-size: 25px !important;
}

.font__size--26 {
    font-size: 26px !important;
}

.font__size--27 {
    font-size: 27px !important;
}

.font__size--28 {
    font-size: 28px !important;
}

.font__size--29 {
    font-size: 29px !important;
}

.font__size--30 {
    font-size: 30px !important;
}

.font__size--31 {
    font-size: 31px !important;
}

.font__size--32 {
    font-size: 32px !important;
}

.font__size--33 {
    font-size: 33px !important;
}

.font__size--34 {
    font-size: 34px !important;
}

.font__size--35 {
    font-size: 35px !important;
}

.font__size--36 {
    font-size: 36px !important;
}

.font__size--37 {
    font-size: 37px !important;
}

.font__size--38 {
    font-size: 38px !important;
}

.font__size--39 {
    font-size: 39px !important;
}

.font__size--40 {
    font-size: 40px !important;
}

.font__size--41 {
    font-size: 41px !important;
}

.font__size--42 {
    font-size: 42px !important;
}

.font__size--43 {
    font-size: 43px !important;
}

.font__size--44 {
    font-size: 44px !important;
}

.font__size--45 {
    font-size: 45px !important;
}

.font__size--46 {
    font-size: 46px !important;
}

.font__size--47 {
    font-size: 47px !important;
}

.font__size--48 {
    font-size: 48px !important;
}

.font__size--49 {
    font-size: 49px !important;
}

.font__size--50 {
    font-size: 50px !important;
}

.font__size--51 {
    font-size: 51px !important;
}

.font__size--52 {
    font-size: 52px !important;
}

.font__size--53 {
    font-size: 53px !important;
}

.font__size--54 {
    font-size: 54px !important;
}

.font__size--55 {
    font-size: 55px !important;
}

.font__size--56 {
    font-size: 56px !important;
}

.font__size--57 {
    font-size: 57px !important;
}

.font__size--58 {
    font-size: 58px !important;
}

.font__size--59 {
    font-size: 59px !important;
}

.font__size--60 {
    font-size: 60px !important;
}

.font__size--61 {
    font-size: 61px !important;
}

.font__size--62 {
    font-size: 62px !important;
}

.font__size--63 {
    font-size: 63px !important;
}

.font__size--64 {
    font-size: 64px !important;
}

.font__size--65 {
    font-size: 65px !important;
}

.font__size--66 {
    font-size: 66px !important;
}

.font__size--67 {
    font-size: 67px !important;
}

.font__size--68 {
    font-size: 68px !important;
}

.font__size--69 {
    font-size: 69px !important;
}

.font__size--70 {
    font-size: 70px !important;
}

.font__size--71 {
    font-size: 71px !important;
}

.font__size--72 {
    font-size: 72px !important;
}

.font__size--73 {
    font-size: 73px !important;
}

.font__size--74 {
    font-size: 74px !important;
}

.font__size--75 {
    font-size: 75px !important;
}

.font__size--76 {
    font-size: 76px !important;
}

.font__size--77 {
    font-size: 77px !important;
}

.font__size--78 {
    font-size: 78px !important;
}

.font__size--79 {
    font-size: 79px !important;
}

.font__size--80 {
    font-size: 80px !important;
}

.font__size--81 {
    font-size: 81px !important;
}

.font__size--82 {
    font-size: 82px !important;
}

.font__size--83 {
    font-size: 83px !important;
}

.font__size--84 {
    font-size: 84px !important;
}

.font__size--85 {
    font-size: 85px !important;
}

.font__size--86 {
    font-size: 86px !important;
}

.font__size--87 {
    font-size: 87px !important;
}

.font__size--88 {
    font-size: 88px !important;
}

.font__size--89 {
    font-size: 89px !important;
}

.font__size--90 {
    font-size: 90px !important;
}

.font__size--91 {
    font-size: 91px !important;
}

.font__size--92 {
    font-size: 92px !important;
}

.font__size--93 {
    font-size: 93px !important;
}

.font__size--94 {
    font-size: 94px !important;
}

.font__size--95 {
    font-size: 95px !important;
}

.font__size--96 {
    font-size: 96px !important;
}

.font__size--97 {
    font-size: 97px !important;
}

.font__size--98 {
    font-size: 98px !important;
}

.font__size--99 {
    font-size: 99px !important;
}

.font__size--100 {
    font-size: 100px !important;
}

.font__size--101 {
    font-size: 101px !important;
}

.font__size--102 {
    font-size: 102px !important;
}

.font__size--103 {
    font-size: 103px !important;
}

.font__size--104 {
    font-size: 104px !important;
}

.font__size--105 {
    font-size: 105px !important;
}

.font__size--106 {
    font-size: 106px !important;
}

.font__size--107 {
    font-size: 107px !important;
}

.font__size--108 {
    font-size: 108px !important;
}

.font__size--109 {
    font-size: 109px !important;
}

.font__size--110 {
    font-size: 110px !important;
}

.font__size--111 {
    font-size: 111px !important;
}

.font__size--112 {
    font-size: 112px !important;
}

.font__size--113 {
    font-size: 113px !important;
}

.font__size--114 {
    font-size: 114px !important;
}

.font__size--115 {
    font-size: 115px !important;
}

.font__size--116 {
    font-size: 116px !important;
}

.font__size--117 {
    font-size: 117px !important;
}

.font__size--118 {
    font-size: 118px !important;
}

.font__size--119 {
    font-size: 119px !important;
}

.font__size--120 {
    font-size: 120px !important;
}

.font__size--121 {
    font-size: 121px !important;
}

.font__size--122 {
    font-size: 122px !important;
}

.font__size--123 {
    font-size: 123px !important;
}

.font__size--124 {
    font-size: 124px !important;
}

.font__size--125 {
    font-size: 125px !important;
}

.font__size--126 {
    font-size: 126px !important;
}

.font__size--127 {
    font-size: 127px !important;
}

.font__size--128 {
    font-size: 128px !important;
}

.font__size--129 {
    font-size: 129px !important;
}

.font__size--130 {
    font-size: 130px !important;
}

.font__size--131 {
    font-size: 131px !important;
}

.font__size--132 {
    font-size: 132px !important;
}

.font__size--133 {
    font-size: 133px !important;
}

.font__size--134 {
    font-size: 134px !important;
}

.font__size--135 {
    font-size: 135px !important;
}

.font__size--136 {
    font-size: 136px !important;
}

.font__size--137 {
    font-size: 137px !important;
}

.font__size--138 {
    font-size: 138px !important;
}

.font__size--139 {
    font-size: 139px !important;
}

.font__size--140 {
    font-size: 140px !important;
}

.font__size--141 {
    font-size: 141px !important;
}

.font__size--142 {
    font-size: 142px !important;
}

.font__size--143 {
    font-size: 143px !important;
}

.font__size--144 {
    font-size: 144px !important;
}

.font__size--145 {
    font-size: 145px !important;
}

.font__size--146 {
    font-size: 146px !important;
}

.font__size--147 {
    font-size: 147px !important;
}

.font__size--148 {
    font-size: 148px !important;
}

.font__size--149 {
    font-size: 149px !important;
}

.font__size--150 {
    font-size: 150px !important;
}

.font__size--151 {
    font-size: 151px !important;
}

.font__size--152 {
    font-size: 152px !important;
}

.font__size--153 {
    font-size: 153px !important;
}

.font__size--154 {
    font-size: 154px !important;
}

.font__size--155 {
    font-size: 155px !important;
}

.font__size--156 {
    font-size: 156px !important;
}

.font__size--157 {
    font-size: 157px !important;
}

.font__size--158 {
    font-size: 158px !important;
}

.font__size--159 {
    font-size: 159px !important;
}

.font__size--160 {
    font-size: 160px !important;
}

.font__size--161 {
    font-size: 161px !important;
}

.font__size--162 {
    font-size: 162px !important;
}

.font__size--163 {
    font-size: 163px !important;
}

.font__size--164 {
    font-size: 164px !important;
}

.font__size--165 {
    font-size: 165px !important;
}

.font__size--166 {
    font-size: 166px !important;
}

.font__size--167 {
    font-size: 167px !important;
}

.font__size--168 {
    font-size: 168px !important;
}

.font__size--169 {
    font-size: 169px !important;
}

.font__size--170 {
    font-size: 170px !important;
}

.font__size--171 {
    font-size: 171px !important;
}

.font__size--172 {
    font-size: 172px !important;
}

.font__size--173 {
    font-size: 173px !important;
}

.font__size--174 {
    font-size: 174px !important;
}

.font__size--175 {
    font-size: 175px !important;
}

.font__size--176 {
    font-size: 176px !important;
}

.font__size--177 {
    font-size: 177px !important;
}

.font__size--178 {
    font-size: 178px !important;
}

.font__size--179 {
    font-size: 179px !important;
}

.font__size--180 {
    font-size: 180px !important;
}

.font__size--181 {
    font-size: 181px !important;
}

.font__size--182 {
    font-size: 182px !important;
}

.font__size--183 {
    font-size: 183px !important;
}

.font__size--184 {
    font-size: 184px !important;
}

.font__size--185 {
    font-size: 185px !important;
}

.font__size--186 {
    font-size: 186px !important;
}

.font__size--187 {
    font-size: 187px !important;
}

.font__size--188 {
    font-size: 188px !important;
}

.font__size--189 {
    font-size: 189px !important;
}

.font__size--190 {
    font-size: 190px !important;
}

.font__size--191 {
    font-size: 191px !important;
}

.font__size--192 {
    font-size: 192px !important;
}

.font__size--193 {
    font-size: 193px !important;
}

.font__size--194 {
    font-size: 194px !important;
}

.font__size--195 {
    font-size: 195px !important;
}

.font__size--196 {
    font-size: 196px !important;
}

.font__size--197 {
    font-size: 197px !important;
}

.font__size--198 {
    font-size: 198px !important;
}

.font__size--199 {
    font-size: 199px !important;
}

.font__size--200 {
    font-size: 200px !important;
}

.md-sans {
    font-family: "DM Sans", sans-serif;
}

.source-sans-pro {
    font-family: "Source Sans Pro", sans-serif;
}

.montserrat {
    font-family: "Montserrat", sans-serif;
}

.inter {
    font-family: "Inter", sans-serif;
}

h1 {
    font-size: 70px;
}

h2 {
    font-size: 50px;
}

@media screen and (max-width: 768px) {
    h2 {
        font-size: 35px;
    }
}

h3 {
    font-size: 40px;
}

@media screen and (max-width: 768px) {
    h3 {
        font-size: 25px;
    }
}

h4 {
    font-size: 30px;
}

@media screen and (max-width: 768px) {
    h4 {
        font-size: 20px;
    }
}

h5 {
    font-size: 24px;
}

@media screen and (max-width: 768px) {
    h5 {
        font-size: 18px;
    }
}

h6 {
    font-size: 18px;
}

@media screen and (max-width: 768px) {
    h6 {
        font-size: 14px;
    }
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 900;
}

.thin {
    font-weight: 100 !important;
}

.extra-light {
    font-weight: 200 !important;
}

.light {
    font-weight: 300 !important;
}

.regular {
    font-weight: 400 !important;
}

.medium {
    font-weight: 500 !important;
}

.semi-bold {
    font-weight: 600 !important;
}

.bold {
    font-weight: 700 !important;
}

.extra-bold {
    font-weight: 800 !important;
}

.black {
    font-weight: 900 !important;
}

.normal {
    font-weight: normal !important;
}

.uppercase__font {
    text-transform: uppercase;
}

.capitalize__font {
    text-transform: capitalize;
}

.justify {
    text-align: justify;
}

.underline {
    text-decoration: underline;
}

@font-face {
    font-family: circular;
    src: url("../fonts/CircularStd-Book.ttf");
}

.circular {
    font-family: circular;
}

.btn {
    font-weight: 700;
    padding: 17px 45px;
    border-radius: 5px;
}

.btn:focus {
    box-shadow: none;
}

.btn__white {
    background-color: #ffffff;
}

.btn__white.shadow {
    box-shadow: none !important;
}

.btn__white.shadow:hover {
    box-shadow: 0 5px 30px rgba(255, 255, 255, 0.2) !important;
}

.btn__outlined--white {
    border: 2px solid #ffffff;
    color: #ffffff;
    opacity: 0.3;
    background-color: transparent;
    transition: 0.5s;
}

.btn__outlined--white.b-1 {
    border: 1px solid #ffffff;
}

.btn__outlined--white.h__black:hover {
    color: #222831 !important;
}

.btn__outlined--white.no__opacity {
    opacity: 1 !important;
}

.btn__outlined--white.shadow {
    box-shadow: none !important;
}

.btn__outlined--white.shadow:hover {
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.5) !important;
}

.btn__outlined--white:hover {
    opacity: 1;
    background-color: #ffffff;
    color: white !important;
}

.btn__black {
    color: #ffffff;
    background-color: #222831;
}

.btn__black.shadow {
    box-shadow: none !important;
}

.btn__black.shadow:hover {
    box-shadow: 0 15px 30px rgba(34, 40, 49, 0.5) !important;
}

.btn__outlined--black {
    border: 2px solid #222831;
    color: #222831;
    opacity: 0.3;
    background-color: transparent;
    transition: 0.5s;
}

.btn__outlined--black.b-1 {
    border: 1px solid #222831;
}

.btn__outlined--black.h__black:hover {
    color: #222831 !important;
}

.btn__outlined--black.no__opacity {
    opacity: 1 !important;
}

.btn__outlined--black.shadow {
    box-shadow: none !important;
}

.btn__outlined--black.shadow:hover {
    box-shadow: 0 15px 30px rgba(34, 40, 49, 0.5) !important;
}

.btn__outlined--black:hover {
    opacity: 1;
    background-color: #222831;
    color: white !important;
}

.btn__blue {
    color: #ffffff;
    background-color: #0E185F;
}

.btn__blue.shadow {
    box-shadow: none !important;
}

.btn__blue.shadow:hover {
    box-shadow: 0 15px 30px rgba(14, 24, 95, 0.5) !important;
}

.btn__outlined--blue {
    border: 2px solid #0E185F;
    color: #0E185F;
    opacity: 0.3;
    background-color: transparent;
    transition: 0.5s;
}

.btn__outlined--blue.b-1 {
    border: 1px solid #0E185F;
}

.btn__outlined--blue.h__black:hover {
    color: #222831 !important;
}

.btn__outlined--blue.no__opacity {
    opacity: 1 !important;
}

.btn__outlined--blue.shadow {
    box-shadow: none !important;
}

.btn__outlined--blue.shadow:hover {
    box-shadow: 0 15px 30px rgba(14, 24, 95, 0.5) !important;
}

.btn__outlined--blue:hover {
    opacity: 1;
    background-color: #0E185F;
    color: white !important;
}

.btn__blue-2 {
    color: #ffffff;
    background-color: #2FA4FF;
}

.btn__blue-2.shadow {
    box-shadow: none !important;
}

.btn__blue-2.shadow:hover {
    box-shadow: 0 15px 30px rgba(47, 164, 255, 0.5) !important;
}

.btn__outlined--blue-2 {
    border: 2px solid #2FA4FF;
    color: #2FA4FF;
    opacity: 0.3;
    background-color: transparent;
    transition: 0.5s;
}

.btn__outlined--blue-2.b-1 {
    border: 1px solid #2FA4FF;
}

.btn__outlined--blue-2.h__black:hover {
    color: #222831 !important;
}

.btn__outlined--blue-2.no__opacity {
    opacity: 1 !important;
}

.btn__outlined--blue-2.shadow {
    box-shadow: none !important;
}

.btn__outlined--blue-2.shadow:hover {
    box-shadow: 0 15px 30px rgba(47, 164, 255, 0.5) !important;
}

.btn__outlined--blue-2:hover {
    opacity: 1;
    background-color: #2FA4FF;
    color: white !important;
}

.btn__softblue {
    background-color: #99E0FF;
}

.btn__softblue.shadow {
    box-shadow: none !important;
}

.btn__softblue.shadow:hover {
    box-shadow: 0 15px 30px rgba(153, 224, 255, 0.5) !important;
}

.btn__outlined--softblue {
    border: 2px solid #99E0FF;
    color: #99E0FF;
    opacity: 0.3;
    background-color: transparent;
    transition: 0.5s;
}

.btn__outlined--softblue.b-1 {
    border: 1px solid #99E0FF;
}

.btn__outlined--softblue.h__black:hover {
    color: #222831 !important;
}

.btn__outlined--softblue.no__opacity {
    opacity: 1 !important;
}

.btn__outlined--softblue.shadow {
    box-shadow: none !important;
}

.btn__outlined--softblue.shadow:hover {
    box-shadow: 0 15px 30px rgba(153, 224, 255, 0.5) !important;
}

.btn__outlined--softblue:hover {
    opacity: 1;
    background-color: #99E0FF;
    color: white !important;
}

.btn__yellow {
    color: #ffffff;
    background-color: #FFBE62;
}

.btn__yellow.shadow {
    box-shadow: none !important;
}

.btn__yellow.shadow:hover {
    box-shadow: 0 15px 30px rgba(255, 190, 98, 0.5) !important;
}

.btn__outlined--yellow {
    border: 2px solid #FFBE62;
    color: #FFBE62;
    opacity: 0.3;
    background-color: transparent;
    transition: 0.5s;
}

.btn__outlined--yellow.b-1 {
    border: 1px solid #FFBE62;
}

.btn__outlined--yellow.h__black:hover {
    color: #222831 !important;
}

.btn__outlined--yellow.no__opacity {
    opacity: 1 !important;
}

.btn__outlined--yellow.shadow {
    box-shadow: none !important;
}

.btn__outlined--yellow.shadow:hover {
    box-shadow: 0 15px 30px rgba(255, 190, 98, 0.5) !important;
}

.btn__outlined--yellow:hover {
    opacity: 1;
    background-color: #FFBE62;
    color: white !important;
}

.btn__gray-1 {
    color: #ffffff;
    background-color: #9D9D9D;
}

.btn__gray-1.shadow {
    box-shadow: none !important;
}

.btn__gray-1.shadow:hover {
    box-shadow: 0 15px 30px rgba(157, 157, 157, 0.5) !important;
}

.btn__outlined--gray-1 {
    border: 2px solid #9D9D9D;
    color: #9D9D9D;
    opacity: 0.3;
    background-color: transparent;
    transition: 0.5s;
}

.btn__outlined--gray-1.b-1 {
    border: 1px solid #9D9D9D;
}

.btn__outlined--gray-1.h__black:hover {
    color: #222831 !important;
}

.btn__outlined--gray-1.no__opacity {
    opacity: 1 !important;
}

.btn__outlined--gray-1.shadow {
    box-shadow: none !important;
}

.btn__outlined--gray-1.shadow:hover {
    box-shadow: 0 15px 30px rgba(157, 157, 157, 0.5) !important;
}

.btn__outlined--gray-1:hover {
    opacity: 1;
    background-color: #9D9D9D;
    color: white !important;
}

.btn__gray-2 {
    background-color: #F6F6F6;
}

.btn__gray-2.shadow {
    box-shadow: none !important;
}

.btn__gray-2.shadow:hover {
    box-shadow: 0 15px 30px rgba(246, 246, 246, 0.5) !important;
}

.btn__outlined--gray-2 {
    border: 2px solid #F6F6F6;
    color: #F6F6F6;
    opacity: 0.3;
    background-color: transparent;
    transition: 0.5s;
}

.btn__outlined--gray-2.b-1 {
    border: 1px solid #F6F6F6;
}

.btn__outlined--gray-2.h__black:hover {
    color: #222831 !important;
}

.btn__outlined--gray-2.no__opacity {
    opacity: 1 !important;
}

.btn__outlined--gray-2.shadow {
    box-shadow: none !important;
}

.btn__outlined--gray-2.shadow:hover {
    box-shadow: 0 15px 30px rgba(246, 246, 246, 0.5) !important;
}

.btn__outlined--gray-2:hover {
    opacity: 1;
    background-color: #F6F6F6;
    color: white !important;
}

#a {
    padding-left: 0px;
    margin: 0;
}

#a img,
.btn-select img {
    width: 12px;
}

#a li {
    list-style: none;
    padding: 5px;
}

#a li:hover {
    background-color: #f4f3f3;
}

#a li img {
    margin: 5px;
}

#a li span,
.btn-select li span {
    margin-left: 10px;
}


/* item list */

.b {
    display: none;
    max-width: 250px;
    width: 100%;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    position: absolute;
    z-index: 2;
    background-color: white;
}

.open {
    display: show !important;
}

.btn-select {
    margin-top: 0;
    height: 30px;
    max-width: 250px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #cfd0d7;
    background-color: #fcfcfd;
    position: relative;
}

.btn-select li {
    list-style: none;
    float: left;
    padding-bottom: 0px;
    padding: 0 5px;
}

.btn-select:hover li {
    margin-left: 0px;
}

.btn-select:focus {
    outline: none;
}

.lang-select {
    margin-left: 15px;
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3, 1.3);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes floating {
    0% {
        transform: translateX(-50%) translateY(0%);
    }
    50% {
        transform: translateX(-50%) translateY(8%);
    }
    100% {
        transform: translateX(-50%) translateY(0%);
    }
}

@keyframes cliprotate {
    0% {
        transform: rotate(0deg);
        border-top-color: white;
    }
    25% {
        transform: rotate(90deg);
        border-top-color: white;
        border-right-color: white;
    }
    75% {
        transform: rotate(180deg);
        border-top-color: white;
        border-right-color: white;
        border-bottom-color: white;
    }
    100% {
        transform: rotate(360deg);
        border-top-color: white;
        border-right-color: white;
        border-bottom-color: white;
        border-left-color: white;
    }
}

@-moz-keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes orbit {
    0% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(-360deg);
    }
}

@keyframes orbit-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes orbit-reverse {
    0% {
        transform: rotateZ(-3600deg);
    }
    100% {
        transform: rotateZ(0deg);
    }
}

@keyframes bgScrollLeft {
    from {
        background-position: 100% 0;
    }
    to {
        background-position: 100% -230px;
    }
}

@keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 #ffffff;
        box-shadow: 0 0 0 0 #ffffff;
    }
    70% {
        -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes action-bounce {
    0%,
    100% {
        transform: translate(0, 0);
    }
    10% {
        transform: translate(0, 4px);
    }
    50% {
        transform: translate(0, -15px);
    }
    90% {
        transform: translate(0, 4px);
    }
}

@keyframes action-jelly {
    0%,
    100% {
        transform: scaleX(1);
    }
    20% {
        transform: scaleX(0.9);
    }
    50% {
        transform: scaleX(1.25);
    }
    85% {
        transform: scaleX(0.8);
    }
}

@keyframes jello {
    11.1% {
        transform: none;
    }
    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    66.6% {
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    77.7% {
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }
    88.8% {
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
    100% {
        transform: none;
    }
}

@keyframes jumping {
    0% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }
    70% {
        -webkit-transform: scale(1.02, 0.9) translateY(10px);
        transform: scale(1.02, 0.9) translateY(10px);
    }
    100% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }
}

@keyframes jumping-rotate {
    0% {
        -webkit-transform: translateY(-40px) rotate(45deg);
        transform: translateY(-40px) rotate(45deg);
    }
    70% {
        -webkit-transform: scale(1.02, 0.9) translateY(10px) rotate(45deg);
        transform: scale(1.02, 0.9) translateY(10px) rotate(45deg);
    }
    100% {
        -webkit-transform: translateY(-40px) rotate(45deg);
        transform: translateY(-40px) rotate(45deg);
    }
}

@keyframes boxWithShadow {
    0% {
        width: 80%;
        opacity: 1;
    }
    50% {
        width: 50%;
        opacity: 0.5;
    }
    to {
        width: 80%;
        opacity: 1;
    }
}

@keyframes bounceDown-on {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes bounceRight-on {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-8px);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes bounceDown {
    0% {
        transform: translateY(0) scale(0.88);
    }
    50% {
        transform: translateY(-5rem) scale(0.88);
    }
    to {
        transform: translateY(0) scale(0.88);
    }
}

@keyframes shadowRegulator {
    0% {
        width: 80%;
        opacity: 1;
    }
    50% {
        width: 50%;
        opacity: 0.5;
    }
    to {
        width: 80%;
        opacity: 1;
    }
}

@keyframes upDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-1rem);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes upDown-totate {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-1rem);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes scale1 {
    0% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(360deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

@keyframes roate1 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes roate1rivers {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

@keyframes scaleImage {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes backForward {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(25%);
    }
    100% {
        transform: translateX(0%);
    }
}

@keyframes leftTop {
    from {
        opacity: 0;
        transform: rotate(360deg);
    }
    to {
        opacity: 1;
        transform: rotate(0deg);
    }
}

@keyframes leftBottom {
    from {
        opacity: 0;
        transform: rotate(-360deg);
    }
    to {
        opacity: 1;
        transform: rotate(0deg);
    }
}

@keyframes rightTop {
    from {
        opacity: 0;
        transform: rotate(-100deg);
    }
    to {
        opacity: 1;
        transform: rotate(0deg);
    }
}

@keyframes rightBottom {
    from {
        opacity: 0;
        transform: rotate(100deg);
    }
    to {
        opacity: 1;
        transform: rotate(0deg);
    }
}

@keyframes blurAnimate {
    0% {
        filter: blur(10px);
    }
    50% {
        filter: blur(5px);
    }
    100% {
        filter: blur(10px);
    }
}

@keyframes rightLeft {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(45deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.animate__float1 {
    animation: floating 4s ease-in-out infinite;
}

.animate__float2 {
    animation: floating 6s ease-in-out infinite;
}

.animate__rotate1 {
    animation: orbit-rotate 6s linear infinite;
    transform-origin: center center;
}

.animate__rotate-reverse-1 {
    animation: orbit-reverse 10s linear infinite;
}

.animate__rotate5 {
    animation: orbit 10s linear infinite;
}

.animate__jump {
    animation: bounceDown-on 1s linear infinite;
}

.animate__jump-1 {
    animation: bounceDown 1.5s linear infinite;
}

.animate__jump-2 {
    animation: bounceDown 1.8s linear infinite 1s;
}

.animate__jump-3 {
    animation: bounceDown 1.5s linear infinite 1.5s;
}

.animate__jump-4 {
    animation: bounceDown 1.8s linear infinite 2s;
}

.animate__scale1 {
    animation: scale1 1s ease infinite;
    transform-origin: center;
    transform-box: fill-box;
}

.animate__scale2 {
    animation: scale1 2s ease infinite;
    transform-origin: center;
    transform-box: fill-box;
}

.animate__scale3 {
    animation: scale1 3s ease infinite;
    transform-origin: center;
    transform-box: fill-box;
}

.animate__scale3 {
    animation: scale1 4s ease infinite;
    transform-origin: center;
    transform-box: fill-box;
}

.hr__line {
    border-top: 1px solid black;
    opacity: 0.2;
}

.box__tag {
    background: #ffffff;
    transition: 0.5s;
    position: relative;
    display: inline-block;
}

.box__tag input {
    position: absolute;
    visibility: hidden;
    opacity: 0;
}

.box__tag input:checked~div {
    background: #2fa4ff;
    border: 1px solid #2fa4ff;
    box-shadow: 12px 12px 38px 0px #2fa4ff4d;
    color: #ffffff;
}

.box__tag input:checked~label {
    background: #2fa4ff;
    border: 1px solid #2fa4ff;
    box-shadow: 12px 12px 38px 0px #2fa4ff4d;
    color: #ffffff;
}

.box__tag div {
    padding: 15px 23px;
    color: #959595;
    transition: 0.5s;
    border: 1px solid #e4e4e4;
    border-radius: 8px;
}

@media screen and (max-width: 576px) {
    .box__tag div {
        padding: 10px 15px;
    }
}

@media screen and (max-width: 425px) {
    .box__tag div {
        padding: 10px 10px;
    }
}

.box__tag div:hover {
    background: #2fa4ff;
    border: 1px solid #2fa4ff;
    box-shadow: 12px 12px 38px 0px #2fa4ff4d;
    color: #ffffff;
}

.box__tag label {
    padding: 15px 23px;
    color: #959595;
    transition: 0.5s;
    border: 1px solid #e4e4e4;
    border-radius: 8px;
}

@media screen and (max-width: 576px) {
    .box__tag label {
        padding: 10px 15px;
    }
}

@media screen and (max-width: 425px) {
    .box__tag label {
        padding: 10px 10px;
    }
}

.box__tag label:hover {
    background: #2fa4ff;
    border: 1px solid #2fa4ff;
    box-shadow: 12px 12px 38px 0px #2fa4ff4d;
    color: #ffffff;
}

.input__form {
    height: 85px;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e4e4e4;
    box-shadow: none;
    background-color: transparent;
}

@media screen and (max-width: 768px) {
    .input__form {
        height: 65px;
    }
}

.input__form:hover {
    border: 1px solid #e4e4e4;
    box-shadow: none;
    background-color: transparent;
}

.input__form:focus {
    border: 1px solid #e4e4e4;
    box-shadow: none;
    background-color: transparent;
}

.wrapper__tag .box__tag {
    margin-right: 15px;
}

.wrapper__tag .box__tag:last-child {
    margin-right: 0;
}

.wrapper__form-card {
    padding: 3rem 1.5rem;
    border-radius: 20px;
}

.wrapper__accordion .head .arrow {
    transition: 0.5s;
}

.wrapper__accordion .description {
    transition: 0.5s;
}

@media screen and (max-width: 576px) {
    .wrapper__accordion .description {
        max-height: 0;
        visibility: hidden;
        opacity: 0;
        transition: 0.5s;
    }
    .wrapper__accordion.active .description {
        max-height: 50vh;
        visibility: visible;
        opacity: 1;
    }
    .wrapper__accordion.active .head .arrow {
        transform: rotate(-180deg);
        transition: 0.5s;
    }
}

.wrapper__mockup {
    width: 100%;
    height: 400px;
    padding: 1rem;
}

.wrapper__card-coalborate {
    background-color: white;
    border-radius: 10px;
    padding: 3rem 1.5rem;
}

.wrapper__card-coalborate .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 62px;
    height: 62px;
    border-radius: 10px;
    background: #0252cd;
    box-shadow: 10px 10px 26px rgba(2, 82, 205, 0.28);
}

.wrapper__logo-client {
    padding: 10px;
    width: 100%;
    height: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

@media screen and (max-width: 480px) {
    .wrapper__logo-client {
        padding: 20px;
        height: 100px;
    }
}

.wrapper__logo-client:hover {
    background-color: white;
    box-shadow: 30px 30px 80px rgba(0, 0, 0, 0.15);
}

.wrapper__contact {
    padding: 7rem 7rem;
    border-radius: 20px;
}

.wrapper__card-testimonial .img {
    width: 400px;
    height: 500px;
    object-fit: cover;
}

@media screen and (max-width: 576px) {
    .wrapper__contact {
        padding: 5rem 2rem;
    }
}

@media screen and (max-width: 480px) {
    .wrapper__card-testimonial .img {
        width: 300px;
        height: 400px;
    }
}

@media screen and (max-width: 425px) {
    .wrapper__card-testimonial .img {
        width: 250px;
    }
}

.wrapper__card-porto {
    padding: 1.5rem;
}

.wrapper__card-porto .hover__detail {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
}

.wrapper__card-porto:hover .hover__detail {
    width: 90%;
    height: 90%;
    opacity: 1;
    visibility: visible;
}

.wrapper__list-experience {
    border: 1px solid #e7e7e7;
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    transition: 0.5s;
    width: 100%;
}

@media screen and (max-width: 1024px) {
    .wrapper__list-experience {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 375px) {
    .wrapper__list-experience {
        padding: 1rem;
    }
    .wrapper__list-experience img {
        width: 40px;
    }
}

.wrapper__list-experience:hover {
    box-shadow: -25px 47px 66px 0px #00000014;
    transform: translateX(2rem);
}

.wrapper__wrap-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 23%;
    height: 100%;
}

@media screen and (max-width: 576px) {
    .wrapper__wrap-bg {
        right: initial;
        top: initial;
        width: 100%;
        height: 43%;
        bottom: 0;
        left: 0;
    }
}

.wrapper__wrap-bg div .img {
    position: absolute;
    left: 0;
    top: 40%;
    transform: translateY(-50%);
}

.wrapper__brand {
    padding: 2rem 3rem;
    margin-top: -4rem;
}

.wrapper__card-service {
    padding: 1.5rem;
    border-radius: 10px;
    background-color: #f6f6f6;
    transition: 0.5s;
}

.wrapper__card-service .icon {
    background-color: #000980;
    width: 62px;
    height: 62px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    transition: 0.5s;
}

.wrapper__card-service .icon svg path {
    transition: 0.5s;
}

.wrapper__card-service h4 {
    transition: 0.5s;
}

.wrapper__card-service p {
    transition: 0.5s;
}

.wrapper__card-service:hover {
    background-color: #000980 !important;
    box-shadow: 32px 32px 71px 0px #D7CAF3;
    position: relative;
    z-index: 2;
}

.wrapper__card-service:hover .icon {
    background-color: white !important;
}

.wrapper__card-service:hover .icon svg path {
    fill: #000980;
}

.wrapper__card-service:hover h4 {
    color: white !important;
}

.wrapper__card-service:hover p {
    color: white !important;
}

.wrapper__project {
    border-radius: 24px;
    padding: 2rem 4rem;
}

@media screen and (max-width: 576px) {
    .wrapper__project {
        padding: 2rem;
    }
}

.wrapper__project.tosca {
    background-color: #BAA0F2;
}

.wrapper__project.blue {
    background-color: #332B8F;
}

.wrapper__project.black {
    background-color: #1f1d2b;
}

.wrapper__project.purple {
    background-color: #512d6d;
}

.wrapper__project.orange {
    background-color: #f98a10;
}

.wrapper__project.single {
    height: 430px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .wrapper__project.single {
        padding: 2rem 2rem;
        height: 370px;
    }
}

.wrapper__project .category {
    margin: 0 -5px;
}

.wrapper__project .category .item {
    padding: 10px 15px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 5px;
}

@media screen and (max-width: 576px) {
    .wrapper__brand {
        padding: 2rem 1rem;
        padding-bottom: calc(2rem - 15px);
    }
}

@media screen and (max-width: 1024px) {
    .wrapper__brand img {
        margin: 0 10px;
        width: 145px;
    }
}

@media screen and (max-width: 768px) {
    .wrapper__brand img {
        margin: 0 10px;
        width: 105px;
    }
}

@media screen and (max-width: 576px) {
    .wrapper__brand img {
        margin: 0 10px;
        width: 130px;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 375px) {
    .wrapper__brand img {
        width: 120px;
    }
}

.link__right {
    position: relative;
}

.link__right:after {
    content: "";
    position: absolute;
    height: 50%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

@media screen and (max-width: 576px) {
    .link__right:after {
        display: none;
    }
}

.images__head {
    width: 350px;
}

.path__1 {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.path__2 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.path__3 {
    position: absolute;
    width: 450px;
    height: 100%;
    /* background-color: #f6f6f6; */
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.path__3::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 6%;
    width: 100%;
    height: 15px;
    background-color: #ffbe62;
}

.path__3.extra::after {
    bottom: 8%;
    height: 28px;
}

@media screen and (max-width: 768px) {
    .path__3 {
        top: 0;
        transform: initial;
        height: 57%;
    }
}

@media screen and (max-width: 576px) {
    .path__3 {
        width: 300px;
    }
}

@media screen and (max-width: 480px) {
    .path__3 {
        height: 50%;
    }
}

@media screen and (max-width: 425px) {
    .path__3 {
        height: 47%;
    }
}

@media screen and (max-width: 375px) {
    .path__3 {
        height: 46%;
    }
}

.path__4 {
    position: absolute;
    left: -17%;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
}

@media screen and (max-width: 768px) {
    .path__4 {
        left: -5%;
    }
}

@media screen and (max-width: 576px) {
    .path__4 {
        left: -22%;
    }
}

@media screen and (max-width: 375px) {
    .path__4 {
        left: -27%;
    }
}

.path__5 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.my__2 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

@media screen and (max-width: 576px) {
    .my__sm-10 {
        margin-top: 10rem;
        margin-bottom: 10rem;
    }
}

.mb__min-20 {
    margin-bottom: -20rem;
}

@media screen and (max-width: 576px) {
    .mb__min-20.img {
        margin-bottom: -18rem;
        height: 300px;
    }
}

@media screen and (max-width: 768px) {
    .mb__-md-0 {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 576px) {
    .mb__sm-0 {
        margin-bottom: 0 !important;
    }
}

@media screen and (max-width: 512px) {
    .mb__mm-0 {
        margin-bottom: 0;
    }
}

.mb__5 {
    margin-bottom: 5rem;
}

@media screen and (max-width: 576px) {
    .mb__5.project {
        margin-bottom: 2rem;
    }
}

.mb__6 {
    margin-bottom: 6rem;
}

.mb__10 {
    margin-bottom: 10rem;
}

.mb__20 {
    margin-bottom: 20rem;
}

.mb__12 {
    margin-bottom: 12rem;
}

@media screen and (min-width: 768px) {
    .mb__12.mb-md-up-0 {
        margin-bottom: 0;
    }
}

.mb__min-7 {
    margin-bottom: -7rem;
}

.mb__min-2 {
    margin-bottom: -2rem;
}

@media screen and (max-width: 768px) {
    .min-md-0 {
        margin-bottom: 0;
    }
}

.max-71 {
    max-width: 71%;
}

@media screen and (max-width: 768px) {
    .max-71 {
        max-width: 100%;
    }
}

.ml__10 {
    margin-left: 10rem;
}

@media screen and (max-width: 1024px) {
    .ml__10 {
        margin-left: 4rem;
    }
}

@media screen and (max-width: 768px) {
    .ml__10 {
        margin-left: 0rem;
    }
    .ml__10 .ml {
        margin-left: 10rem;
    }
}

@media screen and (max-width: 768px) and (max-width: 1024px) {
    .ml__10 .ml {
        margin-left: 4rem;
    }
}

@media screen and (max-width: 768px) and (max-width: 576px) {
    .ml__10 .ml {
        margin-left: 0rem;
    }
}

@media screen and (max-width: 576px) {
    .myres-sm {
        margin-top: 10rem;
        margin-bottom: 12rem;
    }
}

.mt__min-19 {
    margin-top: -19rem;
}

@media screen and (max-width: 576px) {
    .mt__min-19.sm-no {
        margin-top: 0;
    }
}

.mt__min-15 {
    margin-top: -15rem;
}

@media screen and (max-width: 576px) {
    .mt__min-15.sm-no {
        margin-top: 0;
    }
}

.mt__min-6 {
    margin-top: -6rem;
}

@media screen and (max-width: 576px) {
    .mt__min-6.sm-no {
        margin-top: 0;
    }
}

@media screen and (max-width: 576px) {
    .mt__sm-4 {
        margin-top: 4rem;
    }
}

.mt-min-6 {
    margin-top: -6rem;
}

@media screen and (max-width: 1024px) {
    .mt-min-6 {
        margin-top: -5rem;
    }
}

@media screen and (max-width: 576px) {
    .mt-min-6 {
        margin-top: -4rem;
    }
}

@media screen and (max-width: 512px) {
    .mt-min-6 {
        margin-top: -3rem;
    }
}

@media screen and (max-width: 425px) {
    .mt-min-6 {
        margin-top: -2.5rem;
    }
}

.mt__5 {
    margin-top: 5rem;
}

.mt__10 {
    margin-top: 10rem;
}

.mt__12 {
    margin-top: 12rem;
}

.mt-13 {
    margin-top: 13rem;
}

.mt-6 {
    margin-top: 6rem;
}

@media screen and (max-width: 576px) {
    .mt-6.mt__no-sm {
        margin-top: 0;
    }
}

.mt__5 {
    margin-top: 5rem;
}

@media screen and (max-width: 768px) {
    .mt__5 {
        margin-top: 2rem;
    }
}

.mt-10 {
    margin-top: 10rem;
}

.mt-35 {
    margin-top: 35rem;
}

@media screen and (max-width: 768px) {
    .mt-35 {
        margin-top: 24rem;
    }
}

@media screen and (max-width: 1024px) {
    .text__163-1024 {
        font-size: 100px !important;
    }
}

@media screen and (max-width: 768px) {
    .text__163-md {
        font-size: 90px !important;
    }
}

@media screen and (max-width: 576px) {
    .text__163-sm {
        font-size: 65px !important;
    }
}

@media screen and (max-width: 480px) {
    .text__163-xs {
        font-size: 50px !important;
    }
}

@media screen and (max-width: 1024px) {
    .text__100-1024 {
        font-size: 80px !important;
    }
}

@media screen and (max-width: 576px) {
    .text__100-sm {
        font-size: 80px !important;
    }
}

@media screen and (max-width: 512px) {
    .text__100-mm {
        font-size: 60px !important;
    }
}

@media screen and (max-width: 480px) {
    .text__100-xs {
        font-size: 50px !important;
    }
}

@media screen and (max-width: 375px) {
    .text__100-xxs {
        font-size: 45px !important;
    }
}

@media screen and (max-width: 768px) {
    .text__200-md {
        font-size: 150px !important;
    }
}

@media screen and (max-width: 576px) {
    .text__200-sm {
        font-size: 125px !important;
    }
}

@media screen and (max-width: 512px) {
    .text__200-sm {
        font-size: 100px !important;
    }
}

@media screen and (max-width: 425px) {
    .text__200-xx {
        font-size: 85px !important;
    }
}

@media screen and (max-width: 375px) {
    .text__200-xxs {
        font-size: 75px !important;
    }
}

@media screen and (max-width: 576px) {
    .text__77-sm {
        font-size: 50px !important;
    }
}

@media screen and (max-width: 1024px) {
    .text__80-1024 {
        font-size: 65px !important;
    }
}

@media screen and (max-width: 768px) {
    .text__80-md {
        font-size: 65px !important;
    }
}

@media screen and (max-width: 576px) {
    .text__80-sm {
        font-size: 50px !important;
    }
}

@media screen and (max-width: 425px) {
    .text__80-xx {
        font-size: 38px !important;
    }
}

@media screen and (max-width: 375px) {
    .text__80-xxs {
        font-size: 45px !important;
    }
}

@media screen and (max-width: 1024px) {
    .text__70-1024 {
        font-size: 60px !important;
    }
}

@media screen and (max-width: 768px) {
    .text__70-md {
        font-size: 50px !important;
    }
}

@media screen and (max-width: 576px) {
    .text__70-sm {
        font-size: 50px !important;
    }
}

@media screen and (max-width: 480px) {
    .text__70-xs {
        font-size: 40px !important;
    }
}

@media screen and (max-width: 375px) {
    .text__70-xxs {
        font-size: 35px !important;
    }
}

@media screen and (max-width: 1024px) {
    .text__60-1024 {
        font-size: 45px !important;
    }
}

@media screen and (max-width: 768px) {
    .text__60-md {
        font-size: 35px !important;
    }
}

@media screen and (max-width: 576px) {
    .text__60-sm {
        font-size: 35px !important;
    }
}

@media screen and (max-width: 375px) {
    .text__60-xxs {
        font-size: 30px !important;
    }
}

@media screen and (max-width: 1024px) {
    .text__50-1024 {
        font-size: 40px !important;
    }
}

@media screen and (max-width: 576px) {
    .text__50-sm {
        font-size: 35px !important;
    }
}

@media screen and (max-width: 576px) {
    .text__25-sm {
        font-size: 20px !important;
    }
}

@media screen and (max-width: 1024px) {
    .text__45-1024 {
        font-size: 35px !important;
    }
}

@media screen and (max-width: 768px) {
    .text__45-md {
        font-size: 30px !important;
    }
}

@media screen and (max-width: 512px) {
    .text__45-mm {
        font-size: 24px !important;
    }
}

@media screen and (max-width: 1024px) {
    .text__40-1024 {
        font-size: 30px !important;
    }
}

@media screen and (max-width: 768px) {
    .text__40-md {
        font-size: 30px !important;
    }
}

@media screen and (max-width: 512px) {
    .text__40-mm {
        font-size: 24px !important;
    }
}

@media screen and (max-width: 1024px) {
    .text__30-1024 {
        font-size: 25px !important;
    }
}

@media screen and (max-width: 768px) {
    .text__30-md {
        font-size: 25px !important;
    }
}

@media screen and (max-width: 576px) {
    .text__30-sm {
        font-size: 25px !important;
    }
}

@media screen and (max-width: 425px) {
    .text__30-xx {
        font-size: 20px !important;
    }
}

@media screen and (max-width: 1024px) {
    .text__32-1024 {
        font-size: 25px !important;
    }
}

@media screen and (max-width: 1024px) {
    .text__36-1024 {
        font-size: 28px !important;
    }
}

@media screen and (max-width: 1024px) {
    .text__28-1024 {
        font-size: 20px !important;
    }
}

@media screen and (max-width: 576px) {
    .text__28-sm {
        font-size: 20px !important;
    }
}

@media screen and (max-width: 1024px) {
    .text__35-1024 {
        font-size: 28px !important;
    }
}

@media screen and (max-width: 768px) {
    .text__35-md {
        font-size: 20px !important;
    }
}

@media screen and (max-width: 480px) {
    .text__35-xs {
        font-size: 20px !important;
    }
}

@media screen and (max-width: 1024px) {
    .text__38-1024 {
        font-size: 30px !important;
    }
}

@media screen and (max-width: 576px) {
    .text__33-sm {
        font-size: 25px !important;
    }
}

@media screen and (max-width: 425px) {
    .text__33-xx {
        font-size: 18px !important;
    }
}

@media screen and (max-width: 1024px) {
    .text__18-1024 {
        font-size: 16px !important;
    }
}

@media screen and (max-width: 576px) {
    .text__18-sm {
        font-size: 16px !important;
    }
}

@media screen and (max-width: 480px) {
    .text__18-xs {
        font-size: 14px !important;
    }
}

@media screen and (max-width: 375px) {
    .text__18-xxs {
        font-size: 14px !important;
    }
}

@media screen and (max-width: 1024px) {
    .text__16-1024 {
        font-size: 14px !important;
    }
}

@media screen and (max-width: 1024px) {
    .text__16-1024-12 {
        font-size: 12px !important;
    }
}

@media screen and (max-width: 1024px) {
    .text__16-1024-10 {
        font-size: 10px !important;
    }
}

@media screen and (max-width: 768px) {
    .text__16-md {
        font-size: 12px !important;
    }
}

@media screen and (max-width: 576px) {
    .text__16-sm {
        font-size: 12px !important;
    }
}

@media screen and (max-width: 512px) {
    .text__16-mm {
        font-size: 10px !important;
    }
}

@media screen and (max-width: 512px) {
    .text__16-mm-12 {
        font-size: 12px !important;
    }
}

@media screen and (max-width: 425px) {
    .text__16-xx {
        font-size: 10px !important;
    }
}

@media screen and (max-width: 1024px) {
    .text__20-1024 {
        font-size: 16px !important;
    }
}

@media screen and (max-width: 576px) {
    .text__20-sm {
        font-size: 14px !important;
    }
}

@media screen and (max-width: 1024px) {
    .text__120-1024 {
        font-size: 100px !important;
    }
}

@media screen and (max-width: 576px) {
    .text__120-sm {
        font-size: 90px !important;
    }
}

@media screen and (max-width: 425px) {
    .text__120-sm {
        font-size: 75px !important;
    }
}

@media screen and (max-width: 375px) {
    .text__120-xxs {
        font-size: 65px !important;
    }
}

@media screen and (max-width: 768px) {
    .text__26-md {
        font-size: 20px !important;
    }
}

@media screen and (max-width: 576px) {
    .text__26-sm {
        font-size: 14px !important;
    }
}

@media screen and (max-width: 768px) {
    .text__22-md {
        font-size: 16px !important;
    }
}

@media screen and (max-width: 576px) {
    .text__22-sm {
        font-size: 14px !important;
    }
}

@media screen and (max-width: 768px) {
    .text__12-md {
        font-size: 10px !important;
    }
}

@media screen and (max-width: 375px) {
    .text__12-xxs {
        font-size: 9px !important;
    }
}

@media screen and (max-width: 576px) {
    .text__12-sm {
        font-size: 10px !important;
    }
}

@media screen and (max-width: 576px) {
    .text__12-sm-8 {
        font-size: 8px !important;
    }
}

@media screen and (max-width: 480px) {
    .text__12-xs {
        font-size: 8px !important;
    }
}

@media screen and (max-width: 480px) {
    .text__12-xs-10 {
        font-size: 10px !important;
    }
}

@media screen and (max-width: 512px) {
    .text__12-mm {
        font-size: 8px !important;
    }
}

@media screen and (max-width: 512px) {
    .text__12-mm-10 {
        font-size: 10px !important;
    }
}

@media screen and (max-width: 1024px) {
    .text__14-1024 {
        font-size: 12px !important;
    }
}

@media screen and (max-width: 1024px) {
    .text__14-1024-10 {
        font-size: 10px !important;
    }
}

@media screen and (max-width: 768px) {
    .text__14-md {
        font-size: 12px !important;
    }
}

@media screen and (max-width: 576px) {
    .text__14-sm-8 {
        font-size: 8px !important;
    }
}

@media screen and (max-width: 512px) {
    .text__14-mm {
        font-size: 9px !important;
    }
}

@media screen and (max-width: 512px) {
    .text__14-mm-10 {
        font-size: 10px !important;
    }
}

@media screen and (max-width: 425px) {
    .text__14-xx {
        font-size: 10px !important;
    }
}

@media screen and (max-width: 425px) {
    .text__14-xx-8 {
        font-size: 8px !important;
    }
}

@media screen and (max-width: 1024px) {
    .text__27-1024 {
        font-size: 18px !important;
    }
}

@media screen and (max-width: 1024px) {
    .text__24-1024 {
        font-size: 18px !important;
    }
}

@media screen and (max-width: 768px) {
    .text__24-md {
        font-size: 16px !important;
    }
}

@media screen and (max-width: 576px) {
    .text__24-sm {
        font-size: 18px !important;
    }
}

@media screen and (max-width: 425px) {
    .text__24-xx {
        font-size: 12px !important;
    }
}

@media screen and (max-width: 1024px) {
    .text__25-1024 {
        font-size: 20px !important;
    }
}

@media screen and (max-width: 1024px) {
    .text__36-1024 {
        font-size: 25px !important;
    }
}

@media screen and (max-width: 576px) {
    .text__36-sm {
        font-size: 30px !important;
    }
}

@media screen and (max-width: 576px) {
    .text__58-sm {
        font-size: 45px !important;
    }
}

@media screen and (max-width: 1024px) {
    .text__48-1024 {
        font-size: 35px !important;
    }
}

@media screen and (max-width: 768px) {
    .text__48-md {
        font-size: 40px !important;
    }
}

@media screen and (max-width: 576px) {
    .text__48-sm {
        font-size: 30px !important;
    }
}

@media screen and (max-width: 1024px) {
    .wrap__flex-1024-100 {
        flex-flow: wrap;
    }
}

@media screen and (max-width: 1024px) {
    .wrap__flex-1024-100>.grid {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

@media screen and (max-width: 1024px) {
    .wrap__flex-1024-50 {
        flex-flow: wrap;
    }
}

@media screen and (max-width: 1024px) {
    .wrap__flex-1024-50>.grid {
        flex: 0 0 45%;
        max-width: 45%;
    }
}

@media screen and (max-width: 1024px) {
    .wrap__flex-1024-90-3 {
        flex-flow: wrap;
    }
}

@media screen and (max-width: 1024px) {
    .wrap__flex-1024-90-3>.grid {
        flex: 0 0 calc(90% / 3);
        max-width: calc(90% / 3);
    }
}

@media screen and (max-width: 1024px) {
    .wrap__flex-1024-auto {
        flex-flow: wrap;
    }
}

@media screen and (max-width: 1024px) {
    .wrap__flex-1024-auto>.grid {
        flex: 0 0 auto !important;
        max-width: inherit !important;
    }
}

@media screen and (max-width: 768px) {
    .wrap__flex-md-100 {
        flex-flow: wrap;
    }
}

@media screen and (max-width: 768px) {
    .wrap__flex-md-100>.grid {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .wrap__flex-md-50 {
        flex-flow: wrap;
    }
}

@media screen and (max-width: 768px) {
    .wrap__flex-md-50>.grid {
        flex: 0 0 45%;
        max-width: 45%;
    }
}

@media screen and (max-width: 768px) {
    .wrap__flex-md-auto {
        flex-flow: wrap;
    }
}

@media screen and (max-width: 768px) {
    .wrap__flex-md-auto>.grid {
        flex: 0 0 auto !important;
        max-width: inherit !important;
    }
}

@media screen and (max-width: 576px) {
    .wrap__flex-sm-100 {
        flex-flow: wrap;
    }
}

@media screen and (max-width: 576px) {
    .wrap__flex-sm-100>.grid {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .wrap__flex-sm-50 {
        flex-flow: wrap;
    }
}

@media screen and (max-width: 576px) {
    .wrap__flex-sm-50>.grid {
        flex: 0 0 45%;
        max-width: 45%;
    }
}

@media screen and (max-width: 480px) {
    .wrap__flex-xs-100 {
        flex-flow: wrap;
    }
}

@media screen and (max-width: 480px) {
    .wrap__flex-xs-100>.grid {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .wrap__flex-xs-50 {
        flex-flow: wrap;
    }
}

@media screen and (max-width: 576px) {
    .wrap__flex-xs-50>.grid {
        flex: 0 0 45%;
        max-width: 45%;
    }
}

@media screen and (max-width: 512px) {
    .wrap__flex-mm-100 {
        flex-flow: wrap;
    }
}

@media screen and (max-width: 512px) {
    .wrap__flex-mm-100>.grid {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .wrap__flex-mm-50 {
        flex-flow: wrap;
    }
}

@media screen and (max-width: 576px) {
    .wrap__flex-mm-50>.grid {
        flex: 0 0 45%;
        max-width: 45%;
    }
}

@media screen and (max-width: 512px) {
    .wrap__flex-mm-4 {
        flex-flow: wrap;
    }
}

@media screen and (max-width: 512px) {
    .wrap__flex-mm-4>.grid {
        flex: 0 0 calc(100% / 6);
        max-width: calc(100% / 6);
    }
}

.wrapper__navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.wrapper__navbar-menu.center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
    .wrapper__navbar-menu.center {
        position: initial;
        left: initial;
        top: initial;
        transform: initial;
    }
}

.wrapper__navbar-menu ul li {
    margin: 0 15px;
}

@media screen and (max-width: 768px) {
    .wrapper__navbar-menu ul li {
        margin: 0;
    }
}

.wrapper__navbar-menu ul li .dropdown-menu {
    padding: 0;
    border: none;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(34, 40, 49, 0.1) !important;
    overflow: hidden;
}

.wrapper__navbar-menu ul li .dropdown-menu .dropdown-item {
    padding: 0.8rem 1rem;
}

.wrapper__navbar-menu ul li .dropdown-menu .dropdown-item:hover {
    color: #222831 !important;
}

.wrapper__navbar-menu ul li .dropdown-menu .dropdown-item:active {
    color: #222831 !important;
}

.wrapper__navbar-menu ul li .dropdown-menu .dropdown-item:focus {
    color: #222831 !important;
}

.wrapper__navbar-menu ul li a {
    position: relative;
}

.wrapper__navbar-menu ul li a.active {
    opacity: 1;
    color: #ffffff !important;
}

.wrapper__navbar-menu ul li a.active::after {
    opacity: 1;
}

.wrapper__navbar-menu ul li a:hover {
    color: #ffffff !important;
}

.wrapper__navbar-menu ul li a:hover::after {
    opacity: 1;
}

.nav__button {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    width: 30px;
    height: 30px;
    padding: 0;
    outline-style: none;
}

.nav__button span {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    margin-bottom: 5px;
    display: inline-block;
    transition: 0.5s;
}

.nav__button span:nth-child(2) {
    width: 80%;
}

.nav__button span:nth-child(3) {
    width: 60%;
    margin-bottom: 0;
}

.nav__button:active {
    outline-style: none;
}

.nav__button:hover {
    outline-style: none;
}

.nav__button:focus {
    outline-style: none;
}

.nav__button[aria-expanded=true] span:nth-child(1) {
    position: absolute;
    transform: rotate(45deg);
    margin-bottom: 0;
}

.nav__button[aria-expanded=true] span:nth-child(2) {
    display: none;
    margin-bottom: 0;
}

.nav__button[aria-expanded=true] span:nth-child(3) {
    width: 100%;
    position: absolute;
    transform: rotate(-45deg);
}


/*# sourceMappingURL=main.css.map */