:root {
    --color-primary: #223a74;
    --color-primary-rgb: 34,58,116;
    --color-primary-hover: #10265D;
    --color-secondary: #006633;
    --color-secondary-rgb: 0,102,51;
    --color-secondary-hover: #004C25;
    --color-tertiary: #9e9d9d;
    --color-tertiary-rgb: 158,157,157;
    --color-tertiary-hover: #727171;
    --color-light: #EFEFEF;
    --color-light-rgb: 239,239,239;
    --color-light-alt: #FbFbFb;
    --color-light-alt-rgb: 251,251,251;
    --color-dark: #1f1f1f;
    --color-dark-rgb: 29,34,38;
    --color-black: #191919;
    --color-black-rgb: 25,25,25;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    color: #727272;
    font-size: 16px;
    background-color: #FbFbFb;
}

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

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}
@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: 5rem;
    }
    .display-2 {
        font-size: 4rem;
    }
    .display-3 {
        font-size: 3.25rem;
    }
    .display-4 {
        font-size: 2.5rem;
    }
}

.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: 32px;
    }
    .text-lg {
        font-size: 24px;
    }
    .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;
}

.bg-primary {
    color: #C9D2EF !important;
}

/********** UTILS **********/
/***************************/
.aspect-box {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* ( 1 / 1 * 100) */
    overflow: hidden;
}
.aspect-box.aspect-4by3 {
    padding-bottom: 75% !important;     /* ( 3 / 4 * 100) */
}
.aspect-box.aspect-16by9 {
    padding-bottom: 56.25% !important;  /* (9 / 16 * 100) */
}
.aspect-box.aspect-2by1 {
    padding-bottom: 50% !important;
}
.aspect-box img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -o-object-fit: cover;
    object-fit: cover;
}
.aspect-box.aspect-top img {
    -o-object-position: top;
    object-position: top;
}
.aspect-box.aspect-contain img {
    -o-object-fit: contain;
    object-fit: contain;
}

.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;
    }
}

/********** NAVBAR **********/
/****************************/
.menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}
.menu.scrolled {
    margin-top: -55px;
    position: fixed;
}
.navbar-top {
    background-color: var(--color-primary);
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: 14px;
    font-weight: 400;
}
.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: #a5bfff;
}
.navbar-top .socials-top {
    display: inline-block;
    margin-right: 2rem;
    padding-right: 2rem;
    position: relative;
    height: 100%;
}
.navbar-top .socials-top i {
    font-size: 18px;
}
.navbar-top .socials-top:after {
    content: " ";
    position: absolute;
    border-color: #4756ad;
    border-left-width: 1px;
    border-left-style: solid;
    top: 0;
    bottom: 0;
    right: 0;

}

.menu .navbar-nav .calc {
    position: relative;
}
.menu .navbar-nav .btn-calc {
    cursor: pointer;
}
.menu .btn-calc svg{
    height: 44px;
    fill: #FFFFFF;
}
.menu.scrolled .btn-calc svg {
    fill: var(--color-secondary);
}
/*.menu.scrolled .btn-calc .calc-black,*/
/*.menu .btn-calc .calc-white{*/
/*    display: block;*/
/*}*/
/*.menu .btn-calc .calc-black,*/
/*.menu.scrolled .btn-calc .calc-white{*/
/*    display: none;*/
/*}*/
.menu.scrolled .navbar{
    background: white;
}
.menu.scrolled .logo-white {
    display: none;
}
.menu .logo-main {
    display: none;
}
.menu.scrolled .logo-main {
    display: block;
}
.menu .navbar .container {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.menu.scrolled .navbar .container {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}
.menu:not(.scrolled) .nav-link{
    color: white !important;
}
.navbar {
    background: rgb(34,58,116);
    background: linear-gradient(0deg, rgba(34,58,116,0) 0%, rgba(0,0,0,0.6) 100%);
    transition: background-color 250ms;
}
.navbar .navbar-brand img {
    height: 44px;
}
.navbar li {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
}
.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: 24px;
    background-color: #0F7C44;
    padding: 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 #004C25;
    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: white;
    border: 1px solid #0F7C44;
    outline: none;
    background-color: #0F7C44;
    transition: 400ms;
    box-shadow: 5px 5px 10px -3px #00000080, -5px -5px 15px 3px #00ffc11f;
    border-radius: 22px;
}
.calculator .operator.large,
.calculator .number.large{
    width: 94px;
}
/*.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;
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(var(--color-secondary-rgb), 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 14px rgba(var(--color-secondary-rgb), 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(var(--color-secondary-rgb), 0);
    }
}
@media (min-width: 768px) {
    .navbar .navbar-brand img {
        height: 70px;
    }
}
@media (max-width: 767px) {
    .calc {
        position: absolute;
        right: 0.6rem;
        top: 10px
    }
}

.subheader {
    overflow: hidden;
    margin-top: 50px;
    position: relative;
}
.subheader.currencys {
    background-color: #8c8c8c;
    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 .border-left{
    border-width: 3px !important;
    border-color: var(--color-primary) !important;
}
.subheader .promotion-img {
    position: absolute;
    width: 100%;
    height: auto;
    opacity: 0.4;
    top: -30%;
    transform: rotate(-6deg);
    --webkit-transform: rotate(-6deg);

}

footer {
    background-color: var(--color-dark);
    color: #ababab;
}
footer a,
footer a:hover{
    color: #ababab;
}
footer .row-copyright,
footer .row-copyright a {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    background-color: #282828;
    color: #838383;
}
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: 40px;
}
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;
    }
}

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

.form-control {
    border-radius: 0;
    padding: 2rem 1rem;
}

.form-control,
.form-control:active,
.form-control:focus {
    background: #D3D2D2;
    color: var(--color-black);
    border-color: #D3D2D2;
}

.btn {
    text-transform: uppercase;
    font-weight: 600;
}
.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-primary-hover);
    border-color: var(--color-primary-hover);
}
.btn-secondary {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}
.btn-secondary:hover {
    background-color: var(--color-secondary-hover);
}
.btn-outline-light {
    border-width: 2px;
}
.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: 40px;
    position: relative;
    padding-right: 60px !important;
    text-align: left;
    letter-spacing: 1px;
}
.btn-currency i {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    --webkit-transform: translateY(-50%);
}

.banners {
    overflow: hidden;
    height: 800px;
    position: relative;
}
.banners h2 {
    font-size: 3rem;
}
.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 .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    opacity: 0.6;
    z-index: 1;
}
@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(1, 1);
    }
    to {
        -webkit-transform: scale(1.5, 1.5);
    }
}
@keyframes zoom {
    from {
        transform: scale(1, 1);
    }
    to {
        transform: scale(1.5, 1.5);
    }
}
.banners .carousel-item img{
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-animation: zoom 50s;
    animation: zoom 50s;
}
@media (max-height: 800px) {
    .banners {
        height: 100vh;
    }
}
@media (min-width: 768px) {
    .banners h2 {
        font-size: 4rem;
    }
}

.banners .carousel-indicators li {
    width: 40px;
    height: 4px;
    border-radius: 0;
}
.banners .carousel-caption {
    bottom: 25%;
}


.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-dark);
}
.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: 54px;
    height: 4px;
    bottom: -20px;
    left: 50%;
    background-color: var(--color-primary);
    transform: translateX(-50%);
}


.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 {

}
.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%;
}
.currency-item:hover {
    text-decoration: none;
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(10,10,10,0.1);
}
.currency-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background-color: rgba(0,0,0,0.1);
    transition: all 0.4s ease-out;
    opacity: 0;
    z-index: 10;
    color: var(--color-black);
    text-align: center;
    padding-top: 50%;
}
.currency-item .overlay span{
    background-color: var(--color-light);
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 4px 4px rgb(0 0 0 / 20%);
}
.currency-item:hover .overlay {
    height: 100%;
    opacity: 1;
}
.currency-item small{
    font-size: 14px;
}
.currency-item p {
    color: #727272;
}
.currency-desc {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
@media (min-width: 576px) {
    .currency-item {
        padding-bottom: 35%;
    }
}


.flags {
    position: relative;
}
.flags:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background-color: var(--color-light);
}
.flags .container {
    position: relative;
    background-color: white;
    box-shadow: 0 10px 20px rgba(10,10,10,0.02);
}
.flags .aspect-box {
    box-shadow: 0 0 3px 2px rgba(0,0,0,0.08);
}

.offices {
    background: rgb(var(--color-light-rgb));
    background: linear-gradient(0deg, rgba(var(--color-light-rgb),1) 0%, rgba(var(--color-light-alt-rgb),1) 100%);
}
.office-item .row {
    box-shadow: 0 0 30px rgba(10,10,10,0.1);
}
.office-info {
    background-color: var(--color-primary);
}
.office-item p {
    font-size: 80%;
}
.office-info a{
    color: #FFFFFF;
}
.office-info a:hover{
    color: #FFFFFF;
    text-decoration: none;
    opacity: 0.8;
}
.office-info .notice {
    position: absolute;
    border: 2px solid #25945C;
    padding: 5px 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    z-index: 10;
    color: white;
}
.office-info .notice i{
    color: #25945C;
}
.office-info .overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    opacity: 0.9;
    z-index: 1;
}
.office-info .office-desc {
    color: #dbdbdb;
    z-index: 100;
    position: relative;
}
.office-info .show-map {
    cursor: pointer;
}
.office-map {
    padding: 0 !important;
    min-height: 450px;
    position: relative;
}
.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;
    background: #FFFFFF;
}
.office-map .office-img.center {
    -o-object-fit: contain !important;
    object-fit: contain !important;
}
.office-map .office-img.show {
    transform: translateX(-100%);
}
.office-map iframe {
    width: 100%;
    height: 100%;
}
@media (min-width: 992px){
    .office-map .office-img.show {
        transform: translateX(-100%);
    }
    .office-map.order-lg-first .office-img.show {
        transform: translateX(100%);
    }
    .office-item p {
        font-size: 100%;
    }
}

.promotion-item {
    background: var(--color-secondary);
    color: #FFFFFF;
    position: relative;
    overflow-x: clip;
    /*box-shadow: 0 10px 20px rgb(0 0 0 / 30%);*/
}
.promotion-item::before,
.promotion-item::after,
.promotion-item .row::before,
.promotion-item .row::after {
    content: '';
    position: absolute;
    background: var(--color-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 10;
}
.promotion-item::before {
    top: -30px;
    left: -30px;
}
.promotion-item::after {
    top: -30px;
    right: -30px;
}
.promotion-item .row::before {
    bottom: -30px;
    left: -30px;
}
.promotion-item .row::after {
    bottom: -30px;
    right: -30px;
}
.promotion-item .shadow-bottom {
    position: absolute;
    z-index: 1;
    /*top: 100%;*/
    bottom: -60px;
    width: 120%;
    height: 60px;
    left: -10%;
    right: -10%;
    background: -webkit-radial-gradient(50% -3%, ellipse cover, rgba(00, 00, 00, 0.5), rgba(97, 97, 97, 0.0) 40%);
    background: radial-gradient(ellipse at 50% -3%, rgba(00, 00, 00, 0.5), rgba(97, 97, 97, 0.0) 40%);
}

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

.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;
}


.owl-theme .owl-dots .owl-dot span{
    width: 22px;
    height: 6px;
    margin: 4px 4px;
    border-radius: 4px;
}
.owl-theme .owl-dots .owl-dot.active span {
    background-color: var(--color-primary);
}

.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;
}

.g-recaptcha {
    min-height: 78px;
}