@font-face {
    font-family: "Montserrat Light";
    font-display: swap;
    src: url(../fonts/Montserrat/Montserrat-Light.ttf) format("truetype");
}

@font-face {
    font-family: "Montserrat Regular";
    font-display: swap;
    src: url(../fonts/Montserrat/Montserrat-Regular.ttf) format("truetype");
}

@font-face {
    font-family: "Montserrat Medium";
    font-display: swap;
    src: url(../fonts/Montserrat/Montserrat-Medium.ttf) format("truetype");
}

@font-face {
    font-family: "Montserrat Semibold";
    font-display: swap;
    src: url(../fonts/Montserrat/Montserrat-SemiBold.ttf) format("truetype");
}

@font-face {
    font-family: "Montserrat Bold";
    font-display: swap;
    src: url(../fonts/Montserrat/Montserrat-Bold.ttf) format("truetype");
}

@font-face {
    font-family: "Dosis Medium";
    font-display: swap;
    src: url(../fonts/Dosis/Dosis-Medium.ttf) format("truetype");
}

@font-face {
    font-family: "Raleway Italic";
    font-display: swap;
    src: url(../fonts/Raleway/Raleway-Italic.ttf) format("truetype");
}

:root {
    --custom-blue: #133270;
}

/* custom checkbox */
.custom-checkbox {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
}

.custom-checkbox p {
    margin-bottom: 0;
}

.custom-checkbox input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

.custom-checkbox span {
    display: inline-block;
    width: 25px;
    height: 25px;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--custom-blue);
    background-color: #fff;
    margin-right: .5em;
    position: relative;
    cursor: pointer;
}

.custom-checkbox input:checked ~ span {
    background-color: var(--custom-blue);
}

.custom-checkbox span::after {
    display: none;
    content: "";
    position: absolute;
    left: 8px;
    top: 4px;
    width: 7px;
    height: 13px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg);
}

.custom-checkbox input:checked ~ span::after {
    display: block;
}
/* end of custom checkbox */

/* navbar */
button.nav-link {
    background-color: transparent;
    border: none;
    outline: none;
}

button.nav-link::after {
    display: none;
}

.navbar .dropdown-menu {
    left: unset;
    right: 30px;
    min-width: 12rem;
    text-align: center;
    border-radius: 0;
}
/* end of navbar */

/* static content */
.static-content h1,
.static-content h2,
.static-content h3,
.static-content h4,
.static-content h5,
.static-content h6 {
    font-family: "Montserrat Semibold";
    text-transform: uppercase;
}

.static-content h1 {
    font-size: 35px;
}
.static-content h2 {
    font-size: 32px;
}
.static-content h3 {
    font-size: 30px;
}
.static-content h4 {
    font-size: 25px;
}
.static-content h5 {
    font-size: 22px;
}
.static-content h6 {
    font-size: 19px;
}

.static-content img {
    max-width: 100%;
}

.static-content ul {
    padding: 0;
}

.static-content li {
    list-style-type: none;
    position: relative;
    margin-bottom: 0.6em;
    padding-left: 30px;
}

.static-content li::before {
    content: "";
    background-color: var(--custom-blue);
    border-radius: 50%;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 9px;
    left: 0;
}

.static-content.unique-li ul {
    margin-bottom: 0;
}

.static-content.unique-li li {
    font-family: "Dosis Medium";
    font-size: 25px;
    margin-bottom: 1em;
    padding-left: 45px;
    text-transform: uppercase;
}

.static-content.unique-li li::before {
    width: 25px;
    height: 25px;
    position: absolute;
    top: 7px;
    left: 0;
}
/* end of static content */

/* base stuff */
form label a,
form label a:hover {
    text-decoration: underline;
}

.base_container {
    min-height: 450px;
}

.light.cc_dialog {
    padding: 1em 1.5em !important;
    max-width: 90% !important;
}

.navbar-nav .dropdown-toggle::after,
.hidden {
    display: none;
}

html {
    scroll-behavior: smooth;
}

.navbar-toggler {
    border-color: #8d9aab;
}

form small {
    text-align: left !important;
    color: #f00;
}

a:focus,
a:hover,
a:focus *,
a:hover *{
    text-decoration: none !important;
    color: currentColor;
}
/* end of base stuff*/

/* popup */
.popup-modal {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 600px;
    /*height: 400px;*/
    height: fit-content;
    max-width: 95%;
    max-height: 95%;
    z-index: 1010;
    box-shadow: 0 0 15px -3px rgba(0,0,0,0.35);
    padding: 1.2em 1em;
    overflow: scroll;
}

/*.popup-modal .popup-content {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    overflow: auto;*/
/*    padding: 1.2em 1em;*/
/*}*/

.popup-modal #closePopup {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.1em 0.3em;
    cursor: pointer;
    font-size: 25px;
    z-index: 100;
}
/* end of popup */

a,
body {
    font-family: "Montserrat Regular";
    color: #3B3B3B;
}

small {
    text-align: left !important;
    color: #f00;
}

form label a,
form label a:hover {
    text-decoration: underline;
}

.base_container {
    min-height: 450px;
}

.carousel-item img {
    width: 100%;
    height: 750px;
    object-fit: cover;
}

.carousel-item:after {
    content: "";
    background: linear-gradient(90deg, rgba(255,255,255,0) 30%, var(--custom-blue) 65%);
    position: absolute;
    inset: 0;
}

.carousel-caption {
    left: 55%;
    text-align: left;
    bottom: unset;
    top: 35%;
}

.carousel-btn {
    color: #fff;
    background-color: #000;
    display: inline-block;
    width: 70%;
    text-align: center;
    padding: 0.7em;
    font-size: 23px;
    text-transform: uppercase;
}

.carousel-btn.alt {
    background-color: transparent;
    border: 1px solid #fff;
}

.carousel-caption h1 {
    text-transform: uppercase;
    font-size: 50px;
}

.navbar {
    position: absolute;
    top: 0;
    right: 0;
    left: 25%;
    z-index: 15;
    background-color: #fff;
}

.navbar-brand.desktop-only {
    position: absolute;
    left: 75px;
    top: 15px;
    z-index: 20;
    width: 290px;
}

.navbar-brand img {
    width: 250px;
}

.navbar-nav {
    column-gap: 1em;
}

.nav-item {
    padding: 0.5em;
}

header .nav-link {
    font-family: "Dosis Medium";
    font-size: 23px;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    padding: 0 !important;
}

header .nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 10px;
    bottom: -16px;
    left: 0;
    background-color: var(--custom-blue);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

header .nav-link.active-link::after,
header .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

#dropdownLangButton {
    outline: none;
    border: none;
    background-color: var(--custom-blue);
    color: #fff;
    font-family: "Montserrat Semibold";
    padding: 0.3em 0.5em;
}

.dropdown-abs {
    position: absolute;
    right: 15%;
    top: 0;
}

.dropdown-abs .dropdown-menu {
    right: 0;
    min-width: unset;
    padding: 0.5em 1em;
}

.dropdown-abs .dropdown-menu .dropdown-item {
    padding: 0;
}

.container-fluid.half-colored {
    position: relative;
    padding-top: 3em;
    padding-bottom: 3em;
    margin-top: 5em;
    margin-bottom: 5em;
    background-image: url("../images/home-top-bg.png");
    background-repeat: no-repeat;
    background-position: top right;
}

.container-fluid.half-colored::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 50%;
    background-color: var(--custom-blue);
    box-shadow: 0 5px 5px 0 #a8a8a8;
}

.titles-block {
    text-transform: uppercase;
}

.titles-block :nth-child(1) {
    font-size: 26px;
    margin-bottom: 0;
    line-height: 1em;
}

.titles-block :nth-child(2) {
    font-family: "Montserrat Medium";
    font-size: 48px;
    line-height: 1.2em;
    filter: drop-shadow(0 5px 2px #999);
}

.home-gallery-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.home-gallery-list img {
    width: 50%;
    height: 212px;
    object-fit: cover;
}

.blue-btn {
    display: inline-block;
    font-family: "Montserrat Semibold";
    text-transform: uppercase;
    font-size: 21px;
    background-color: var(--custom-blue);
    color: #fff;
    padding: 0.7em;
    box-shadow: 0 5px 5px 0 #a8a8a8;
}

.blue-btn:hover,
.blue-btn:focus,
.blue-btn:active {
    color: #fff;
}

.contact-us-block {
    background-color: var(--custom-blue);
    background-image: url("../images/contact-us-block-bg.png");
    background-repeat: no-repeat;
    background-size: auto;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    margin-top: 5em;
    margin-bottom: 5em;
    padding-top: 3em;
    padding-bottom: 3em;
    font-family: "Montserrat Semibold";
}

.contact-us-block h3 {
    margin-bottom: 0.5em;
    font-size: 40px;
    filter: drop-shadow(0 2px 5px #000);
}

.contact-us-block a {
    font-family: "Montserrat Semibold";
    display: inline-block;
    color: #3A3A3A;
    background-color: #fff;
    box-shadow: 0 5px 5px 0 #565656;
    border-radius: 100px;
    padding: 0.5em 1em;
    font-size: 26px;
    width: 400px;
}

.title-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 1em;
    color: #3A3A3A;
    margin-bottom: 1.8em;
}

.section-title {
    font-family: "Montserrat Medium";
    flex-shrink: 0;
    text-transform: uppercase;
    margin-bottom: 0;
    filter: drop-shadow(0 1px 1px #3A3A3A);
    font-size: 37px;
}

.title-line .line {
    width: 100%;
    height: 2px;
    background-color: #3A3A3A;
}

.home-contact {
    background-image: url("../images/world-bg.png");
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    min-height: 906px;
    display: flex;
    align-items: center;
}

.general-padding {
    padding-top: 5em;
    padding-bottom: 5em;
}

.home-contact-list {
    background-color: var(--custom-blue);
    padding: 2em;
    display: flex;
    flex-direction: column;
    row-gap: 1.5em;
}

.home-contact-list,
#map {
    box-shadow: 0 5px 5px 0 #7e7e7e;
}

.home-contact-list > div {
    display: flex;
    column-gap: 1em;
    align-items: baseline;
}

.home-contact-list .icon-wrapper {
    text-align: center;
    width: 40px;
    flex-shrink: 0;
}

.home-contact-list,
.home-contact-list a {
    color: #fff;
    font-size: 20px;
    font-family: "Montserrat Light";
}

footer {
    background-color: #3A3A3A;
    padding-bottom: 2em !important;
}

footer,
footer a {
    color: #fff;
    font-family: "Montserrat Light";
}

.footer-logo {
    width: 100%;
    filter: brightness(0) invert(1);
}

.allrights {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3em;
    font-size: 23px;
    gap: 0.5em;
}

.footer-links {
    font-size: 23px;
    row-gap: 0.7em;
}

.contact-elem .contact-value,
.contact-elem {
    font-size: 20px;
}

.contact-elem {
    font-family: "Montserrat Bold";
}

.contact-elem .contact-value {
    font-family: "Montserrat Light";
}

.contact-elem span:first-child {
    display: inline-block;
    width: 105px;
}

.contact-elem:not(:last-child) {
    margin-bottom: 0.7em;
}

.subpage-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.subpage-header {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.subpage-header:before {
    content: "";
    background: linear-gradient(90deg, rgba(255,255,255,0) 30%, var(--custom-blue) 65%);
    position: absolute;
    inset: 0;
}

.subpage-title {
    position: absolute;
    top: 50%;
    /*transform: translateY(-50%);*/
    right: 15px;
    left: 62%;
    text-transform: uppercase;
    color: #fff;
    font-size: 50px;
    word-wrap: anywhere;
}

.gallery-list .row:nth-child(2n) {
    flex-direction: row-reverse;
}

.gallery-list .row:not(:last-child) {
    margin-bottom: 2em;
}

.gallery-list img {
    height: 345px;
    width: 100%;
    object-fit: cover;
}

.static-content {
    font-size: 22px;
}

.gallery-list {
    margin-bottom: 3em;
}

.gallery-page-wrapper {
    background-image: url("../images/home-top-bg.png");
    background-repeat: no-repeat;
    background-position: top right;
}

.lg-sub-html {
    display: none !important;
}

#gallery img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.back-link {
    font-size: 20px;
}

.gallery-title {
    text-transform: uppercase;
    font-family: "Montserrat Medium";
    font-size: 30px;
}

.gallery-prompt {
    color: var(--custom-blue);
    margin-bottom: 1.5em;
}

#contact_form_content_page {
    background-color: #D7D7DA;
    padding: 2.5em;
}

#contact_form_content_page input[type="text"],
#contact_form_content_page textarea {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #000;
    width: 100%;
    font-size: 28px;
}

#contact_form_content_page ::placeholder {
    opacity: 1;
    font-family: "Raleway Italic";
    color: #131E2B80;
}

#contact_form_content_page button {
    border: none;
    outline: none;
    background-color: var(--custom-blue);
    color: #fff;
    font-family: "Dosis Medium";
    border-radius: 40px;
    padding: 0.3em 2em;
    text-transform: uppercase;
    font-size: 28px;
    transition: .3s;
}

#contact_form_content_page button:disabled {
    opacity: 0.7;
}

.contact-item .img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background-color: var(--custom-blue);
    border-radius: 50%;
    width: 86px;
    height: 86px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1em;
}

.contact-item:not(:last-child) {
    margin-bottom: 2em;
}

.contact-info {
    font-size: 22px;
}

.contact-item .bold-contact {
    font-family: "Montserrat Bold";
}

.contact-page-wrapper {
    background-image: url("../images/world-bg.png");
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
}

.below-lg {
    display: none;
}

.feature-row.first {
    margin-bottom: 3em;
}

#gallery.row {
    row-gap: 30px;
}

.bordered-row {
    row-gap: 3em;
}

.gallery-content-row {
    margin-bottom: 3em;
}