:root {
    --color-primary: #053d9d;
    --color-primary-rgb: 5, 61, 157;
    --color-primary-hover: #03317F;
    --color-secondary: #fbb03b;
    --color-secondary-rgb: 251, 176, 59;
    --color-secondary-hover: #E8930C;
    --color-tertiary: #9e9d9d;
    --color-tertiary-rgb: 158,157,157;
    --color-tertiary-hover: #727171;
    --color-light: #F9F6EF;
    --color-light-rgb: 249, 246, 239;
    --color-light-alt: #F0F1F2;
    --color-light-alt-rgb: 240, 241, 242;
    --color-dark: #001029;
    --color-dark-rgb: 0, 16, 41;
    --color-black: #191919;
    --color-black-rgb: 25,25,25;
    --color-text: #4C4C4D;
    --color-text-hover: #2A2A2A;
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--color-text);
    background-color: var(--color-light);
}

@media (min-width: 1400px) {
    .container-fluid.max {
        width: 100% !important;
        max-width: 1600px;
        padding-left: 80px !important;
        padding-right: 80px !important;
    }
}

a {
    color: var(--color-text);
    transition: 0.3s;
}
a:hover {
    color: var(--color-text-hover);
    text-decoration: none;
}

a.text-secondary:hover {
    color: var(--color-secondary-hover) !important;
}

a.link {
    color: var(--color-dark);
}
a.link:hover {
    color: var(--color-primary-hover);
    text-decoration: none;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
}
.display-1 {
    font-size: 4.75rem;
}
.display-2 {
    font-size: 4rem;
}
.display-3 {
    font-size: 3.25rem;
}
.display-4 {
    font-size: 2.5rem;
}
@media (max-width: 767px) {
    h1, .h1 {
        font-size: 2rem;
    }
    h2, .h2 {
        font-size: 1.75rem;
    }
    h3, .h3 {
        font-size: 1.5rem;
    }
    h4, .h4 {
        font-size: 1.25rem;
    }
    h5, .h5 {
        font-size: 1rem;
    }
    h6, .h6 {
        font-size: 0.9rem;
    }
    .display-1 {
        font-size: 3.75rem;
    }
    .display-2 {
        font-size: 3.25rem;
    }
    .display-3 {
        font-size: 2.75rem;
    }
    .display-4 {
        font-size: 2.25rem;
    }
}

.text-xl {
    font-size: 24px;
}
.text-lg {
    font-size: 20px;
}
.text-md {
    font-size: 18px;
}
.text-sm {
    font-size: 14px;
}
.text-xs {
    font-size: 12px;
}
@media (min-width: 768px) {
    .text-xl {
        font-size: 22px;
    }
    .text-lg {
        font-size: 20px;
    }
    .text-md {
        font-size: 18px;
    }
    .text-sm {
        font-size: 14px;
    }
    .text-xs {
        font-size: 12px;
    }
}

.text-primary {
    color: var(--color-primary) !important;
}
.text-secondary {
    color: var(--color-secondary) !important;
}
.text-tertiary {
    color: var(--color-tertiary) !important;
}
.text-light {
    color: var(--color-light) !important;
}
.text-dark {
    color: var(--color-dark) !important;
}
.text-black {
    color: var(--color-black) !important;
}

.bg-primary {
    background-color: var(--color-primary) !important;
}
.bg-secondary {
    background-color: var(--color-secondary) !important;
}
.bg-tertiary {
    background-color: var(--color-tertiary) !important;
}
.bg-light {
    background-color: var(--color-light) !important;
}
.bg-light-alt {
    background-color: var(--color-light-alt) !important;
}
.bg-dark {
    background-color: var(--color-dark) !important;
}

/********** UTILS **********/
/***************************/
[class*="aspect-"] {
    position: relative;
    width: 100%;
    overflow: hidden;
}
[class*="aspect-"] img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -o-object-fit: cover;
    object-fit: cover;
}
[class*="aspect-"].aspect-top img {
    -o-object-position: top;
    object-position: top;
}
[class*="aspect-"].aspect-contain img {
    -o-object-fit: contain;
    object-fit: contain;
}
.aspect-1by1 {
    padding-bottom: 100%;
}
.aspect-4by3 {
    padding-bottom: 75% !important;  /* ( 3 / 4 * 100) */
}
.aspect-3by4 {
    padding-bottom: 133.33% !important;  /* ( 3 / 4 * 100) */
}
.aspect-3by2 {
    padding-bottom: 66.66% !important;  /* (2 / 3 * 100) */
}
.aspect-2by3 {
    padding-bottom: 150% !important;  /* (3 / 2 * 100) */
}
.aspect-16by9 {
    padding-bottom: 56.25% !important;  /* (9 / 16 * 100) */
}
.aspect-9by16 {
    padding-bottom: 177.77% !important;  /* (16 / 9 * 100) */
}

.letter-1x {
    letter-spacing: 1px;
}
.letter-2x {
    letter-spacing: 2px;
}
.letter-3x {
    letter-spacing: 3px;
}

.p-6 {
    padding: 4rem !important;
}
.p-7 {
    padding: 5rem !important;
}
.px-6 {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
}
.px-7 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
}
.py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}
.py-7 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}
.pt-6 {
    padding-top: 4rem !important;
}
.pt-7 {
    padding-top: 5rem !important;
}
.pb-6 {
    padding-bottom: 4rem !important;
}
.pb-7 {
    padding-bottom: 5rem !important;
}
.pl-6 {
    padding-left: 4rem !important;
}
.pl-7 {
    padding-left: 5rem !important;
}
.pr-6 {
    padding-right: 4rem !important;
}
.pr-7 {
    padding-right: 5rem !important;
}

@media (min-width: 992px) {
    .p-lg-6 {
        padding: 4rem !important;
    }
    .p-lg-7 {
        padding: 5rem !important;
    }
    .px-lg-6 {
        padding-left: 4rem !important;
        padding-right: 4rem !important;
    }
    .px-lg-7 {
        padding-left: 5rem !important;
        padding-right: 5rem !important;
    }
    .py-lg-6 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
    .py-lg-7 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }
    .pt-lg-6 {
        padding-top: 4rem !important;
    }
    .pt-lg-7 {
        padding-top: 5rem !important;
    }
    .pb-lg-6 {
        padding-bottom: 4rem !important;
    }
    .pb-lg-7 {
        padding-bottom: 5rem !important;
    }
    .pl-lg-6 {
        padding-left: 4rem !important;
    }
    .pl-lg-7 {
        padding-left: 5rem !important;
    }
    .pr-lg-6 {
        padding-right: 4rem !important;
    }
    .pr-lg-7 {
        padding-right: 5rem !important;
    }
}

/********** ELEMENTS **********/
/******************************/
.form-control {
    border-radius: 0;
    padding: 1.5rem 1rem;
}

.form-control,
.form-control:active,
.form-control:focus {
    background: white;
    color: var(--color-black);
    border-color: white;
    border-radius: 10px;
}

.btn {
    text-transform: uppercase;
    font-weight: 600;
}
.btn i {
    transition: 0.3s;
    padding-left: 0.5rem;
}
.btn:hover i {
    padding-left: 0.75rem;
}
.btn-sm {
    /*font-size: 16px;*/
    padding: 0.5rem 2rem;
}
.btn-lg {
    font-size: 16px;
    padding: 1rem 3rem;
}
.btn-rounded {
    border-radius: 30px;
}
.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn-primary:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}
.btn-secondary {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}
.btn-secondary:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn-outline-primary {
    border-color: var(--color-primary);
    color: var(--color-primary);
}
.btn-outline-primary:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary-hover);
    color: white;
}
.btn-outline-light {
    border-width: 2px;
}
.btn-dark {
    background-color: var(--color-dark);
}
.btn-dark:hover {
    background-color: var(--color-primary-hover);
}
.btn-whatsapp {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background-color: #03af1e;
    /*background-color: #eceff1;*/
    border: 1px solid #ffffff;
    z-index: 1000;
    border-radius: 15px;
    width: 64px;
    height: 64px;
    text-align: center;
    /*box-shadow: -4px 4px 1px rgba(140,140,140,0.6);*/
    box-shadow: -3px 3px 0 #00000030;
    display: flex;
    transition: all 0.3s ease-in-out;
}
.btn-whatsapp span {
    margin: auto;
}
.btn-whatsapp i {
    font-size: 2.5rem;
    color: #ffffff;
}
.btn-whatsapp:hover {
    box-shadow: -4px 4px 2px rgba(140,140,140,0.5);
}
@media (min-width: 768px) {
    .btn-whatsapp {
        bottom: 50px;
        right: 30px;
    }
}
.btn-currency {
    border-radius: 0 10px 10px 0;
    position: relative;
    padding-right: 60px !important;
    text-align: left;
    letter-spacing: 1px;
    border-left-width: 4px;
}
.btn-currency i {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    --webkit-transform: translateY(-50%);
}

.border-2x {
    border-width: 2px !important;
}

.rounded {
    border-radius: 20px !important;
}
.rounded-sm {
    border-radius: 10px !important;
}
.rounded-xs {
    border-radius: 5px !important;
}
.box-shadow {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

.title-decor {
    position: relative;
    display: inline-block;
}
.title-decor:after {
    content: '';
    position: absolute;
    width: 110px;
    height: 2px;
    bottom: -20px;
    left: 0;
    background-color: var(--color-primary);
}
.title-decor-alt {
    position: relative;
    display: inline-block;
}
.title-decor-alt:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    bottom: -20px;
    left: 0;
    background-color: white;
}
.title-decor-center {
    position: relative;
    display: block;
    text-align: center;
}
.title-decor-center:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    bottom: -20px;
    left: 50%;
    background-color: var(--color-primary);
    transform: translateX(-50%);
}

.list-simbol {
    position: relative;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.list-simbol li{
    padding-left: 40px;
    margin-bottom: 10px;
    padding-top: 2px;
    position: relative;
    color: var(--color-dark);
}
.list-simbol span {
    background-color: var(--color-light);
    color: var(--color-dark);
    border-radius: 50%;
    position: absolute;
    width: 30px;
    height: 30px;
    text-align: center;
    font-weight: 500;
    line-height: 30px;
    top: 0;
    left: 0;
    box-shadow: -4px 4px 6px rgba(0,0,0,0.3);
}

ol.list > li {
    /*margin-bottom: 5px;*/
    line-height: 1.8;
}
ol.list > li::marker {
    font-weight: bold;
}
ol.list-roman {
    list-style-type: lower-roman !important;
}
ol.list-alpha {
    list-style-type: lower-alpha;
}

.slick-dots li button {
    width: 15px;
    height: 15px;
    margin: 4px 4px;
    border-radius: 50%;
    background-color: var(--color-light-alt);
}
.slick-dots li button:before {
    color: transparent;
}
.slick-dots li.slick-active button {
    background-color: var(--color-secondary);
}
.slick-dots li.slick-active button:before {
    color: transparent;
}
.slick-prev:before, .slick-next:before {
    color: var(--color-primary);
    opacity: 1;
}

.alert {
    display: flex;
    border-radius: 0;
    font-size: 15px;
    position: relative;
    min-height: 60px;
    padding: 5px 50px 5px 65px;
    margin-bottom: 0;
}
.alert .alert-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    top: 5px;
    left: 5px;
}
.alert .alert-icon i{
    line-height: 50px !important;
}
.alert .alert-heading {
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 0.25rem;
}
.alert p {
    align-self: center;
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 0;
}
.alert-dismissible .close {
    padding-top: 0.5rem;
}

.nav-tabs {
    border-color: var(--color-secondary);
}
.nav-tabs .nav-link {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    border-color: transparent transparent var(--color-secondary);
    color: var(--color-text);
}
.nav-tabs .nav-link:hover {
    border-bottom-color: var(--color-secondary);
}
.nav-tabs .nav-link.active {
    background-color: var(--color-light);
    border-color: var(--color-secondary) var(--color-secondary) var(--color-light);
    /*color: var(--color-dark);*/
}
.shadow-bottom {
    width: 100%;
    height: 60px;
    left: -10%;
    right: -10%;
    background: -webkit-radial-gradient(50% -30%, ellipse cover, rgba(00, 00, 00, 0.5), rgba(97, 97, 97, 0.0) 60%);
    background: radial-gradient(ellipse at 50% -30%, rgba(00, 00, 00, 0.5), rgba(97, 97, 97, 0.0) 60%);
}


/********** SECTIONS **********/
/******************************/
.navbar-top {
    background-color: var(--color-dark);
    color: white;
    font-size: 14px;
}
.navbar-top a {
    color: white;
    transition: all 0.3s ease-in;
}
.navbar-top a:hover {
    color: white;
    text-decoration: none;
}
.navbar-top i:not(.fab) {
    color: var(--color-secondary);
}
.navbar-top .socials-top {
    display: inline-block;
    position: relative;
    height: 100%;
}
.navbar-top .socials-top i {
    font-size: 18px;
}
.navbar-top .divider:after {
    content: " ";
    position: absolute;
    border-left: 1px solid white;
    top: 0;
    bottom: 0;
    left: 50%;
    opacity: 0.4;
}

.navbar {
    background: rgba(255,255,255,0.9);
    transition: background-color 250ms;
    backdrop-filter: blur(10px);
}
.navbar .container {
    padding-right: 44px;
}
.navbar-brand {
    padding: 0;
    width: 100px;
}
.navbar-nav .nav-link {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    color: var(--color-text);
}
.navbar-light .navbar-toggler {
    border-color: var(--color-primary);
}

header {
    margin-top: 0;
    transition: 0.4s;
}
header.scrolled {
    margin-top: -60px;
}
@media (min-width: 768px) {
    header.scrolled {
        margin-top: -38px;
    }
    .navbar-brand {
        padding: 0;
        width: 140px;
    }
}

.calc {
    position: relative;
}
.calc .btn-calc {
    position: relative;
    cursor: pointer;
}
.calc .btn-calc::before {
    content: '';
    background: var(--color-secondary);
    border-radius: 50%;
    height: 10px;
    width: 0;
    box-shadow: 0 0 0 0 rgba(var(--color-secondary-rgb), 1);
    animation: pulse 2s infinite;
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%) scale(1);
    visibility: visible;
}
.calc.show .btn-calc::before {
    visibility: hidden;
}
.calc.show .calculator {
    visibility: visible;
    opacity: 1;
}
.calc:not(.show) .calculator {
    visibility: hidden;
    opacity: 0;
}
.calculator {
    position: absolute;
    right: 0;
    border-radius: 8px;
    background-color: #585966;
    padding: 18px 12px 12px;
    margin-top: 9px;
    box-shadow: -3px 3px 0 4px #00000030;
    transition: all 0.2s ease-in;
}
.calculator .display {
    width: 190px;
    height: 50px;
    padding-right: 6px;
    text-align: right;
    font-size: 20px;
    color: white;
    margin: 5px;
    outline: none;
    border-radius: 8px;
    border: 4px solid #2D2D2D;
    background-color: #363636;
}

.calculator .operator,
.calculator .number {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    --ms-appearance: none;
    --o-appearance: none;
    padding: 0;
    width: 44px;
    height: 44px;
    font-size: 22px;
    margin: 2px;
    color: #585966;
    border: 1px solid #CBE3FA;
    outline: none;
    background-color: #CBE3FA;
    transition: 400ms;
    box-shadow: 5px 5px 10px -3px #00000080, -5px -5px 15px 3px rgba(var(--color-light-rgb),0.1);
    border-radius: 22px;
}
.calculator .operator.large,
.calculator .number.large{
    width: 94px;
}
.calculator .operator.red {
    background-color: #FF6D7A;
    border-color: #FF6D7A;
}
.calculator .close {
    position: absolute;
    top: 3px;
    right: 3px;
    font-size: 18px;
    color: white;
}
/*.calculator .delete{*/
/*    position: relative;*/
/*}*/
/*.calculator .delete .operator{*/
/*    color: transparent;*/
/*}*/
/*.calculator .delete::after {*/
/*    content: "←";*/
/*    position: absolute;*/
/*    color: #FFFFFF;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*    font-size: 24px;*/
/*}*/
.calculator .operator:active,
.calculator .number:active {
    cursor: pointer;
    background-color: var(--color-secondary-hover);
}
@media (min-width: 768px ) {
    .calculator {
        margin-top: 9px;
    }
}
@media (max-width: 767px) {
    .calc {
        position: absolute;
        right: 15px;
        top: 6px
    }
}

.subheader {
    overflow: hidden;
    margin-top: 50px;
    position: relative;
    background-size: 150% auto;
    background-attachment: fixed;
}
.subheader h1 {
    text-shadow: 2px 2px 14px rgba(0,0,0,0.5)
}
.subheader::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    opacity: 0.4;
}
.subheader.currencys {
    background-color: var(--color-secondary);
    background-size: 50% auto;
    background-repeat: no-repeat;
    background-position: top right;
}
.subheader:not(.bt-*)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 55%;
    /*background: #8c8c8c;*/
    background: rgb(140,140,140);
    background: linear-gradient(90deg, rgba(140,140,140,1) 0%, rgba(140,140,140,1) 90%, rgba(140,140,140,0) 100%);
}
.subheader [class*="aspect-"] {
    border-radius: 10px 10px 0 0;
}
@media (min-width: 768px) {
    .subheader {
        background-size: cover;
    }
    .subheader .container {
        height: 250px;
    }

}

footer {
    background-color: var(--color-dark);
    color: #ababab;
}
footer a,
footer a:hover{
    color: #ababab;
}
footer .row-copyright,
footer .row-copyright a {
    color: white;
}
footer .row-copyright a:hover {
    text-decoration: none;
}
footer .list-links {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}
footer .list-links li {
    padding-bottom: 12px;
    float: left;
    padding-right: 15px;
}
footer .list-links li img {
    height: 30px;
}
footer .list-links li:before{
    content: "\f101";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    display: inline-block;
    width: 0;
    color: transparent;
    transition: width 300ms,color 300ms;
    -moz-transition: width 300ms,color 300ms;
    -o-transition: width 300ms,color 300ms;
    -webkit-transition: width 300ms,color 300ms;
}
footer .list-links li a:hover {
    text-decoration: none;
}
footer .list-links li:hover:before {
    width: 18px;
    color: var(--color-secondary);
}
@media(min-width: 992px) {
    footer .list-links li {
        float: inherit;
        padding-right: 0;
    }
    footer .list-links li img {
        height: 44px;
    }
}

.banners {
    overflow: hidden;
    height: 800px;
    position: relative;
}
.banners .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    background: linear-gradient(45deg, rgba(var(--color-dark-rgb),0.8) 0%, rgba(var(--color-dark-rgb),0.6) 40%, rgba(var(--color-dark-rgb),0) 100%);
}
.banners .carousel{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}
.banners .carousel-inner,
.banners .carousel-item {
    height: 100%;
}
.banners .carousel-item img{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
}
.banners .carousel-indicators {
    margin-right: 2rem;
}
.banners .carousel-indicators li {
    border: 1px solid white;
    height: 20px;
    width: 20px;
    background: transparent;
    border-radius: 50%;
}
.banners .carousel-indicators .active {
    opacity: 1;
    background: var(--color-secondary) ;
    border-color: var(--color-secondary);
}
@media (max-height: 800px) {
    .banners {
        height: 100vh;
    }
}
@media (min-width: 768px) {

}

.about-more {
    position: relative;
    color: white;
}
.about-more .overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}
.about-more .border-right {
    border-color: rgba(255,255,255,0.2) !important;
}

.services {
    position: relative;
    background-size: cover;
    background-attachment: fixed;
}
.services::before {
    content: '';
    position: absolute;
    background-color: var(--color-light);
    top: 0;
    left: 0;
    right: 0;
    height: 180px;
}
.services .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(var(--color-light-rgb), 0.2);
}
.services .list-check,
.services .list-gold,
.services .list-silver {
    list-style: none;
    padding: 0 0 0 25px;
}
.services .list-gold {
    list-style-image: url('../images/icon-coin.png');
}
.services .list-silver {
    list-style-image: url('../images/icon-coin-alt.png');
}
.services .list-check li {
    padding-left: 1.8em;
}
.services .list-check li:before {
    content: "\f058"; /* FontAwesome Unicode */
    font: normal normal normal 20px/1.5 'Font Awesome 5 Free';
    font-weight: 400;
    display: inline-block;
    margin-left: -1.3em; /* same as padding-left set on li */
    width: 1.5em; /* same as padding-left set on li */
    color: var(--color-secondary);
}
.services .btn span {
    display: inline-block;
    min-width: 160px;
}

.currency-item {
    position: relative;
    /*box-shadow: 0 0 30px rgba(10,10,10,0.06);*/
    transition: all 0.4s ease-out;
    height: 100%;
    padding-bottom: 90%;
    background-color: #FFFFFF;
}
.currency-item:hover {
    text-decoration: none;
    /*transform: translateY(-6px);*/
    /*box-shadow: 0 0 30px rgba(10,10,10,0.1);*/
}
.currency-item .currency-img {
    transition: 2s all ease-out;
}
.currency-item:hover .currency-img {
    transform: scale(1.2);
    --webkit-transform: scale(1.2);
}
.currency-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    /*background-color: rgba(255,255,255,0.5);*/
    transition: all 0.4s ease-out;
    opacity: 0;
    z-index: 10;
    color: var(--color-black);
    text-align: center;
    padding-top: 50%;
    border-radius: 10px;
    height: 100%;
}
.currency-item .overlay span{
    background-color: var(--color-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: 0 2px 4px 4px rgb(0 0 0 / 20%);
}
.currency-item:hover .overlay {
    opacity: 1;
}
.currency-item small{
    font-size: 14px;
}
.currency-item p {
    color: #727272;
}
.currency-item svg {
    width: 22px;
    height: 22px;
    fill: var(--color-secondary);
    margin-right: 10px;
}
.currency-desc {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
@media (min-width: 576px) {
    .currency-item {
        padding-bottom: 35%;
    }
}

.flags {
    position: relative;
    margin-top: -80px;
}
.flags .angle {
    position:absolute;
    overflow:hidden;
    background: white;
    width: 85%;
    height: 100%;
    clip-path: polygon(
            0 0,
            100% 0,
            calc(100% - 35px) 100%,
            0 100%,
            0 0
    );
    box-shadow: 1px 1px 1px 1px rgba(0,0,0,0.4);
}
.flags::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: var(--color-light);
}
.flags [class*="aspect-"] {
    box-shadow: 0 0 3px 2px rgba(0,0,0,0.08);
}

.offices {
}
.office-item {
    background-color: white;
    box-shadow: 0 0 30px rgba(10,10,10,0.1);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}
.office-info {
    background-color: #FFFFFF;
    z-index: 1;
    position: relative;
}
.office-info a{
    color: var(--color-text);
}
.office-info a:hover{
    color: var(--color-dark);
    text-decoration: none;
    opacity: 0.8;
}
.office-info .notice {
    position: relative;
    border: 1px solid var(--color-secondary);
    border-radius: 5px;
    padding: 5px 15px;
    z-index: 10;
    color: var(--color-black);
}
.office-info .notice i{
    color: var(--color-secondary);
}
.office-info .overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    opacity: 0.9;
    z-index: 1;
}
.office-info .office-desc {
    z-index: 100;
    position: relative;
}
.office-info .show-map {
    cursor: pointer;
}
.office-map {
    padding: 0 !important;
    height: 250px;
    position: relative;
}
.office-map .btn-map {
    position: absolute;
    bottom: 0;
    background: #fff;
    border-top-left-radius: 12px;
    right: 0;
    padding: 2px 5px;
    margin-bottom: 0;
    cursor: pointer;
}
.office-map .office-img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}
.office-map .office-img.show {
    transform: translateY(100%);
}
.office-map iframe {
    width: 100%;
    height: 100%;
}

.promotion-item {
    background: var(--color-secondary);
    color: #FFFFFF;
    position: relative;
    overflow-x: clip;
    border-radius: 40px;
}
.promotion-item::after {
    content: '';
    position: absolute;
    left: 20px;
    right: 20px;
    top: 20px;
    bottom: 20px;
    background-image: repeating-linear-gradient(0deg, #ffffff, #ffffff 17px, transparent 17px, transparent 34px, #ffffff 34px), repeating-linear-gradient(90deg, #ffffff, #ffffff 17px, transparent 17px, transparent 34px, #ffffff 34px), repeating-linear-gradient(180deg, #ffffff, #ffffff 17px, transparent 17px, transparent 34px, #ffffff 34px), repeating-linear-gradient(270deg, #ffffff, #ffffff 17px, transparent 17px, transparent 34px, #ffffff 34px);
    background-size: 1px 100%, 100% 1px, 1px 100% , 100% 1px;
    background-position: 0 0, 0 0, 100% 0, 0 100%;
    background-repeat: no-repeat;
    z-index: 1;
}

.modal-content {
    border-radius: 0;
}
.modal-content .close {
    position: absolute;
    top: 10px;
    right: 15px;
    z-index: 10;
    font-size: 2rem;
    color: var(--color-primary);
}
.modal-content .title-decor {
    margin-bottom: 20px !important;
}
.modal-content .title-decor:after {
    bottom: -10px;
    width: 80px;
    height: 1px;
}

.contact .btn-link {
    display: block;
    background: white;
    color: var(--color-text-hover);
    transition: 0.3s all ease-in;
}
.contact .btn-link:hover {
    text-decoration: none;
    box-shadow: 0 4px 10px 4px rgba(var(--color-primary-rgb),0.1);
    transform: translateY(-2px);
}

/********** ANIMATIONS ***********/
/*********************************/
.animate__animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.animate__animated.animate__delay {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-delay: var(--animate-delay);
    animation-delay: var(--animate-delay);
}
.animate__animated.animate__fast {
    -webkit-animation-duration: calc(1s * 0.8);
    animation-duration: calc(1s * 0.8);
    -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
    animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
    -webkit-animation-duration: calc(1s * 2);
    animation-duration: calc(1s * 2);
    -webkit-animation-duration: calc(var(--animate-duration) * 2);
    animation-duration: calc(var(--animate-duration) * 2);
}
@media print, (prefers-reduced-motion: reduce) {
    .animate__animated {
        -webkit-animation-duration: 1ms !important;
        animation-duration: 1ms !important;
        -webkit-transition-duration: 1ms !important;
        transition-duration: 1ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
    }
}
/* Fading entrances  */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
.animate__fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

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

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.animate__fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.animate__fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }

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

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.animate__fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.animate__fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }

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

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.animate__fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.animate__fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

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

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.animate__fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.animate__fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}