:root {
    --color-text: #676767;
    --color-primary: #ff1426;
    --color-primary-rgb: 255,20,37;
    --color-primary-hover: #FF0013;
    --color-secondary: #003366;
    --color-secondary-rgb: 0,52,102;
    --color-secondary-hover: #00284F;
    --color-tertiary: #1F6A73;
    --color-tertiary-rgb: 31,106,115;
    --color-tertiary-hover: #185D66;
    --color-gray: #f2f2f2;
    --color-gray-rgba: 250,250,250;
    --color-light: #f5f5f5;
    --color-light-rgb: 245,245,245;
    --color-dark: #141426;
    --color-dark-rgb:  20,20,38;
    --color-black: #111111;
    --color-black-rgb: 17,17,17;
    --chart-width-line: 2px;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--color-text);
    padding-top: 58px;
    font-size: 15px;
    font-style: normal;
}
@media (min-width: 768px) {
    body {
        padding-top: 70px;
    }
}

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

a {
    color: #676767;
    transition: all 0.3s ease;
    --weblit-transition: all 0.3s ease;
}
a:hover {
    text-decoration: none;
    color: #3B3B3B;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
    font-weight: 500;
    color: var(--color-black);
}
.display-1 {
    font-size: 5.5rem;
}
.display-2 {
    font-size: 5rem;
}
.display-3 {
    font-size: 4rem;
}
.display-4 {
    font-size: 3rem;
}
@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: 4.5rem;
    }
    .display-2 {
        font-size: 4rem;
    }
    .display-3 {
        font-size: 3rem;
    }
    .display-4 {
        font-size: 2rem;
    }
}

.text-xl {
    font-size: 24px;
}
.text-lg {
    font-size: 20px;
}
.text-md {
    font-size: 16px;
}
.text-sm {
    font-size: 11px;
}
.text-xs {
    font-size: 9px;
}
@media (min-width: 768px) {
    .text-xl {
        font-size: 32px;
    }
    .text-lg {
        font-size: 24px;
    }
    .text-md {
        font-size: 18px;
    }
    .text-sm {
        font-size: 13px;
    }
    .text-xs {
        font-size: 10px;
    }
}

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

[class*="text-truncate-"] {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.text-truncate-1 {
    -webkit-line-clamp: 1;
}
.text-truncate-2 {
    -webkit-line-clamp: 2;
}

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

.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-dark {
    background-color: var(--color-dark) !important;
}
.bg-gray {
    background-color: var(--color-gray) !important;
}
.bg-black {
    background-color: var(--color-black) !important;
}

.btn {
    border: 2px solid #FFFFFF;
    border-radius: 0;
    padding: 0.75em 1.5rem !important;
    color: #fff;
    background-image: linear-gradient(45deg, var(--color-dark) 50%, transparent 50%);
    background-size: 400%;
    background-position: 100%;
    transition: background 300ms ease-in-out;
}
.btn:hover {
    background-position: 0;
}
.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    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,
.btn-secondary:active,
.btn-secondary:focus {
    background-color: var(--color-secondary-hover);
    border-color: var(--color-secondary-hover);
}



.form-control,
.form-control:active,
.form-control:focus {
    background-color: rgba(var(--color-secondary-rgb), 0.1);
    border-radius: 0;
    border: none;
    color: var(--color-black);
    padding: 1.5rem 0.75rem;
}

.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #484848 !important;
    opacity: 1; /* Firefox */
}
.form-control::-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #484848 !important;
}
.form-control::-ms-input-placeholder { /* Microsoft Edge */
    color: #484848 !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-3by4 {
    padding-bottom: 133.33% !important;     /* ( 3 / 4 * 100) */
}
.aspect-box.aspect-1by2 {
    padding-bottom: 150% !important;     /* ( 3 / 4 * 100) */
}
.aspect-box.aspect-16by9 {
    padding-bottom: 56.25% !important;  /* (9 / 16 * 100) */
}
.aspect-box.aspect-9by16 {
    padding-bottom: 177.77% !important;  /* (9 / 16 * 100) */
}
.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;
}

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

.title-decor {
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}
.title-decor::after {
    content: '';
    position: absolute;
    background-color: var(--color-black);
    width: 80px;
    height: 4px;
    bottom: 0;
    left: 0;
}
.title-decor.title-decor-min::after {
    width: 40px;
    height: 2px;
}

.title-decor-center {
    text-align: center;
}
.title-decor-center::after {
    width: 240px;
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
    --webkit-transform: translateX(-50%);
}

.fa-offset {
    position: absolute;
    left: -1.25rem;
}

@media (min-width: 768px) {
    .fa-offset {
        font-size: 20px;
        line-height: 1.5;
        left: -1.5rem;
    }
}

.subheader {
    position: relative;
}
.subheader h1{
    text-shadow: 0 4px 10px rgba(0,0,0,0.4);
}
.subheader::before {
    content: '';
    position: absolute;
    background-color: rgba(0,0,0,0.1);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

header {
    transform: translate3d(0, 0, 0);
    --webkit-transform: translate3d(0, 0, 0);
    transition: -webkit-transform .33s;
    transition: transform .33s, -webkit-transform .33s;
}
@media  (min-width: 992px) {
    header.scrolled {
        transform: translate3d(0, -48px, 0);
        --webkit-transform: translate3d(0, -48px, 0);
        box-shadow: 0 1px 1px 0 rgba(0,0,0,0.2);
    }
}

.navbar .navbar-brand {

}
.scrolled .navbar .navbar-brand {
}
.navbar .navbar-brand img {
    width: 100%;
}
.navbar-top .contact {
    padding-left: calc(120px + 1rem);
}
.navbar-top .contact,
.navbar-top .socials {
    list-style: none;
    margin-bottom: 0;
}
.navbar-top .contact li {
    display: inline-block;
    position: relative;
    padding-left: 40px;
    line-height: 1;
    padding-right: 1.5rem;
    border-right: 2px solid #A1A1AC;
}
.navbar-top .contact li:last-child {
    border-right: none;
    padding-right: 0;
    margin-left: 1rem;
}
.navbar-top .contact li small{
    display: block;
}
.navbar-top .contact i {
    font-size: 1.75rem;
    color: var(--color-dark);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.navbar-top .contact li:first-child i {
    font-size: 1.65rem;
}
.navbar-top .socials li {
    display: inline-block;
    border-left: 2px solid #A1A1AC;
    padding: 0 1rem;
}
.navbar-top .socials li:first-child {
    border-left: none;
}
.navbar-top .socials i {
    color: var(--color-dark);
    font-size: 22px;
}
.navbar-main .btn-lang{
    display: flex;
}
.navbar-nav .nav-link {
    padding: 0.15rem 1.1rem !important;
    line-height: 1;
    text-align: center;
    display: flex;
    font-weight: 500;
    min-height: 53px;
    color: #ffffff;
    /*text-transform: uppercase;*/
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    background-color: var(--color-black);
    color: #FFFFFF !important;
}
.navbar-nav .nav-link span{
    --ms-flex-item-align: center;
    align-self: center;
    color: var(--color-black);
}
.navbar-nav .nav-link:hover span,
.navbar-nav .nav-link.active span{
    color: #FFFFFF;
}
.navbar-text {
    position: relative;
    font-size: 12px;
    transition: all 0.4s ease-out;
    --webkit-transition: all 0.4s ease-out;
}
.navbar-text:hover {
    transform: translateX(10px);
}
.navbar-text .help {
    background-color: #D4D8DB !important;
    color: var(--color-black);
    position: absolute;
    padding: 0 0.5rem;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
}
@media (max-width: 991px) {
    .navbar-main .btn-lang {
        position: absolute;
        top: 18px;
        right: 1rem;
    }
}
@media (max-width: 767px) {
    .navbar-brand {
        padding-top: 0;
        padding-right: 3.5rem;
    }
    .navbar .navbar-brand,
    .navbar .navbar-brand img {
        margin-top: 0;
        height: 42px;
        width: auto;
    }
    .navbar-light .navbar-text {
        width: 100%;
    }
}
@media (min-width: 768px) {
    .scrolled .navbar .navbar-brand {
        top: 0;
        box-shadow: 0 2px 1px 0 rgba(0,0,0,0.2);
    }
    .navbar .navbar-brand {
        position: absolute;
        top: -50px;
        width: 120px;
        height: 120px;
        padding: 0.75rem;
        background-color: var(--color-gray);
        border-radius: 50%;
    }
    .navbar-main .navbar-nav {
        margin-left: calc(120px + 1rem);
    }
}


footer {
    background-color: var(--color-black);
    color: #FFFFFF;
    font-size: 0.9rem;
    line-height: 1.4;
}
footer p {
    margin-bottom: 0.75rem;
}
footer a {
    color: #FFFFFF;
    transition: all 0.2s ease-in;
    --webkit-transition: all 0.2s ease-in;
}
footer a:hover {
    color: var(--color-primary);
    text-decoration: none;
}
footer a.contact{
    color: var(--color-primary) !important;
    text-decoration: underline;
}
footer .title-decor {
    font-size: 1.1rem !important;
    color: #FFFFFF;
}
footer .title-decor::after {
    background-color: var(--color-primary);
    width: 120px;
    height: 3px;
}
footer ul {
    list-style: none;
    padding-left: 0;
}
footer li {
    margin-bottom: 0.75rem;
}
footer li:before {
    content: "\f0da";
    font: normal normal normal 16px/1.5 FontAwesome;
    display: inline-block;
    margin-left: -15px;
    width: 12px;
    color: var(--color-primary);
    position: absolute;
}
footer i {
    margin-left: -23px;
    padding-top: 3px;
    color: var(--color-primary);
}
footer hr{
    border-color: rgba(255,255,255,0.3);
}

@media (min-width: 768px) {
    footer i {
        left: -10px;
    }
}

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
}

.link-back:before{
    content: "\f137";
    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;
}
.link-back:hover:before {
    width: 35px;
    color: var(--color-tertiary);
}

.services .hexagon {
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    background: #003366;
    width: 65px;
    height: 60px;
    display: flex;
}
.services .hexagon span{
    --ms-flex-item-align: center;
    align-self: center;
    margin: 0 auto;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 20px;
}
.list-check {
    list-style: none;
    padding: 0;
}
.list-check li {
    padding-left: 2.75em;
}
.list-check li:before {
    content: "\f00c";
    font: normal normal normal 13px/1.5 FontAwesome;
    display: inline-block;
    margin-left: -1.5em;
    width: 1.5em;
}

.table-chart td {
    border: none;
    position: relative;
    vertical-align: middle;
    width: 16%;
    padding: 0.75rem 0.25rem;
}
.table-chart .chart-item {
    background-color: var(--color-secondary);
    border: 1px solid var(--color-secondary-hover);
    border-radius: 4px;
    box-shadow: 0 2px 6px 0 rgba(114,114,114,0.6);
    display: block;
    margin: 0 auto;
    min-height: 78px;
    padding: 0.5rem 0.35rem;
    position: relative;
    width: 225px;
    z-index: 10;
    transition: all 0.2s ease-out;
    --webkit-transition: all 0.2s ease-out;
}
.table-chart .chart-item.chart-item-lg {
    width: 250px;
}
.table-chart .chart-item.chart-no-hover {
    cursor: auto;
}
.table-chart .chart-bg-1,
.table-chart .chart-bg-2,
.table-chart .chart-bg-3,
.table-chart .chart-bg-4,
.table-chart .chart-bg-5 {
    background-color: var(--color-black);
    border: 1px solid rgba(var(--color-black-rgb), 0.2);
}
.table-chart .chart-item:not(.chart-no-hover):hover {
    transform: translateY(-2px);
    --webkit-transform: translateY(-2px);
    box-shadow: 0 2px 6px 0 rgba(114,114,114,0.9);
}
.table-chart h4 {
    font-size: 16px;
    color: white;
    opacity: 0.9;
}
.table-chart small {
    font-size: 75%;
    color: white;
    opacity: 0.7;
}
.box-dashed {
    background-image: repeating-linear-gradient(0deg, #0070c0, #0070c0 14px, transparent 14px, transparent 26px, #0070c0 26px), repeating-linear-gradient(90deg, #0070c0, #0070c0 14px, transparent 14px, transparent 26px, #0070c0 26px), repeating-linear-gradient(180deg, #0070c0, #0070c0 14px, transparent 14px, transparent 26px, #0070c0 26px), repeating-linear-gradient(270deg, #0070c0, #0070c0 14px, transparent 14px, transparent 26px, #0070c0 26px);
    background-size: 2px 100%, 100% 2px, 2px 100% , 100% 2px;
    background-position: 0 0, 0 0, 100% 0, 0 100%;
    background-repeat: no-repeat;
}
.td-sub {
    vertical-align: bottom !important;
}
.td-sub > div {
    position: absolute;
    top: 0;
    bottom: 2.25rem;
    left: 0;
    right: 0;
}
.td-sub .box-dashed {
    width: 225px;
    display: block;
    margin: 0 auto;
}
.td-sub .box-dashed h4{
    color: #0070c0 !important;
}
.td-sub .box-dashed__offset {
    position: absolute;
    width: 196px;
    height: 2px;
    right: -156px;
    top: calc(50% - 2px);
}
.td-parent {
    padding: 0 0 0 167px !important;
}
.td-parent > div {
    padding-top: 1rem;
}
@media(max-width: 1199px) {
    .table-chart .chart-item {
        width: 210px;
    }
    .table-chart td:not(.td-parent) {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    .td-sub .box-dashed__offset {
        right: -80px;
    }
    .td-parent {
        padding: 0 0 0 90px !important;
    }
}

td[class*="line-"]::before,
td[class*="line-"]::after {
    background-color: var(--color-primary);
    content: '';
    position: absolute;
    z-index: 1;
}
td[class*="line-b-h"]::before,
td[class*="line-a-h"]::after {
    height: var(--chart-width-line);
}
td[class*="line-b-hc"]::before,
td[class*="line-a-hc"]::after {
    width: 50%;
}
td[class*="line-b-vc"]::before,
td[class*="line-a-vc"]::after {
    height: 50%;
}
td[class*="line-b-v"]::before,
td[class*="line-a-v"]::after {
    width: var(--chart-width-line);
}
td[class*="line-b-vc"]::before,
td[class*="line-a-vc"]::after {
    height: 50%;
}
td[class*="line-b-vl"]::before,
td[class*="line-a-vl"]::after,
td[class*="line-b-vr"]::before,
td[class*="line-a-vr"]::after {
    height: 100%;
}
td[class*="line-b-ht"]::before,
td[class*="line-a-ht"]::after,
td[class*="line-b-hb"]::before,
td[class*="line-a-hb"]::after {
    width: 100%;
}
.line-b-h::before,
.line-a-h::after {
    top: 50%;
    left: 0;
    height: var(--chart-width-line);
    width: 100%;
}
.line-b-v::before,
.line-a-v::after {
    top: 0;
    left: 50%;
    height: 100%;
    width: 1px;
}
.line-b-hcl::before,
.line-a-hcl::after {
    top: 50%;
    left: 0;
}
.line-b-hcr::before,
.line-a-hcr::after {
    top: 50%;
    right: 0;
}
.line-b-vct::before,
.line-a-vct::after {
    top: 0;
    left: 50%;
}
.line-b-vcb::before,
.line-a-vcb::after {
    bottom: 0;
    left: 50%;
}
.line-b-vl::before,
.line-a-vl::after {
    top: 0;
    left: 0;
    height: 100%;
}
.line-b-vr::before,
.line-a-vr::after {
    top: 0;
    right: 0;
    height: 100%;
}
.line-b-ht::before,
.line-a-ht::after {
    top: 0;
    left: 0;
    width: calc(100% + var(--chart-width-line)) !important;
}
.line-b-hb::before,
.line-a-hb::after {
    bottom: 0;
    left: 0;
    width: calc(100% + var(--chart-width-line)) !important;
}
.line-b-hclb::before,
.line-a-hclb::after {
    left: 0;
    bottom: 0;
    width: calc(50% + var(--chart-width-line)) !important;
}
.line-b-hcrb::before,
.line-a-hcrb::after {
    right: 0;
    bottom: 0;
}
.line-b-vclt::before,
.line-a-vclt::after {
    top: 0;
    left: 0;
    height: 50%;
}
.line-b-vclb::before,
.line-a-vclb::after {
    bottom: 0;
    left: 0;
    height: 50%;
}

.team-job {
    display: flex;
}
.team-img {
    border-radius: 0 0 40px 0;

}
.team-name {
    background-color: rgba(var(--color-tertiary-rgb), 0.8);
    border-radius: 40px 10px 0 0;
    border: none;
    bottom: 0;
    color: #FFFFFF;
    padding: 1.5rem 1rem;
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: 10;
    text-shadow: 0 4px 4px rgba(0,0,0,0.4);
}
.team-job span{
    background-color: #D9D9D9;
}
.team-content {
    background-color: var(--color-light);
    text-align: justify !important;
}

.team-content h1 {
    font-size: 1.75rem;
}
.team-content h2 {
    font-size: 1.5rem;
}
.team-content h3 {
    font-size: 1.35rem;
}
.team-content h4 {
    font-size: 1.15rem;
}
.team-content h5 {
    font-size: 0.95rem;
}
.team-content ul{
    padding-left: 0;
    list-style: none;
}
.team-content ul li {
    position: relative;
    padding-left: 20px;
}
.team-content ul li:before {
    position: absolute;
    content: '';
    background-color: var(--color-tertiary);
    width: 10px;
    height: 1px;
    top: 11px;
    left: 0;
}
@media (max-width: 767px) {

}

.contact-data {
    background: rgb(var(--color-dark-rgb));
    background: linear-gradient(120deg, rgba(var(--color-dark-rgb),1) 25%, rgba(0,51,102,1) 100%);
    color: white;
    text-align: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-radius: 6px;
}
.contact-data-icon {
    border: 2px solid #FFFFFF;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    line-height: 74px;
    text-align: center;
    margin: 0 auto 10px;
}
.contact-data strong {
    opacity: 0.5;
    text-transform: uppercase;
    font-size: 14px;
}
.contact-data a{
    color: white;
}
.contact-data p{
    margin-bottom: 0;
}
.contact .contact-item {
    margin: 1rem 0;
}
#map_canvas {
    height: 550px;
}
.map-size {
    box-shadow: 0 6px 10px 0 rgba(var(--color-secondary-rgb),0.15),
    0 15px 50px 0 rgba(var(--color-secondary-rgb),0.1);
}
.map-size .socials {
    list-style: none;
    padding-left: 0;
    margin: auto auto;
}
.map-size .socials li {
    text-align: center;
    font-size: 2rem;
    margin: 0 1rem;
    display: inline-block;
}
.map-size .socials li i{
    color: var(--color-dark);
}
@media (min-width: 992px){
    .map-size .socials li{
        display: block;
        margin: 1rem 0;
    }
    .map-size {
        height: 550px;
    }
}

.contact .border-custom{
    border: 3px solid var(--color-dark);
}
.contact .border-custom.h-100{
    height: calc(100% - 46px) !important;
}
.contact .complaint {
    background: rgb(20,20,38);
    background: linear-gradient(320deg, rgba(20,20,38,1) 50%, rgba(0,51,102,1) 100%);
    border-radius: 6px;
}
.contact .complaint.h-100 {
    height: calc(100% - 46px) !important;
}
.contact .complaint .bg-opacity {
    /*background-color: rgba(var(--color-light-rgb), 0.8);*/
    padding: 0.5rem 1rem;
}
.contact .complaint .bg-opacity a {
    color: var(--color-black);
}
.contact .form-contact {
    box-shadow: 0 6px 10px 0 rgba(var(--color-secondary-rgb),0.15),
    0 15px 50px 0 rgba(var(--color-secondary-rgb),0.1);
}

.modal-content {
    border-radius: 0;
    box-shadow: -10px 14px 10px 2px rgb(0 0 0 / 50%);
}
.modal-backdrop.fade.show {
    z-index: 1;
    background-color: #e8e8e8d9;
}

.grid figure {
    background: var(--color-secondary);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.grid figure img {
    display: block;
}

.grid figure figcaption {
    padding: 3em;
    color: #fff;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    text-align: center;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
    pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption > a {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    --webkit-transform: translateY(-50%);
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure figcaption > a {
    z-index: 1000;
    text-indent: 200%;
    white-space: nowrap;
    font-size: 0;
    opacity: 0;
}
figure.effect-apollo {
    background: var(--color-secondary);
    padding-bottom: 85%;
}
figure.effect-apollo img {
    opacity: 0.8;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    --webkit-transform: scale3d(1.05,1.05,1);
    transform: scale3d(1.05,1.05,1);
}
figure.effect-apollo figcaption::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.5);
    content: '';
    -webkit-transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    --webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-150%,0);
    transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,-150%,0);
}
figure.effect-apollo p {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 3em;
    padding: 0 1em;
    max-width: 150px;
    border-right: 4px solid #fff;
    text-align: right;
    opacity: 0;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
}
figure.effect-apollo h3 {
    text-align: center;
    color: #FFFFFF;
    text-shadow: 4px 4px 10px rgba(0,0,0,0.8);
    font-size: 1.5rem;
}
figure.effect-apollo:hover img {
    opacity: 0.6;
    --webkit-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
}
figure.effect-apollo:hover figcaption::before {
    --webkit-transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,150%,0);
    transform: scale3d(1.9,1.4,1) rotate3d(0,0,1,45deg) translate3d(0,150%,0);
}
figure.effect-apollo:hover p {
    opacity: 1;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.alert {
    display: flex;
    border-radius: 0;
    font-size: 15px;
    min-height: 60px;
    padding: 5px 50px 5px 65px;
    margin-bottom: 0;
    position: absolute;
    left: 0.8rem;
    right: 0.8rem;
}
.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;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: var(--color-secondary) !important;
}