@import url("https://fonts.googleapis.com/css2?family=Sofia+Sans&display=swap");

* {
    margin: 0;
    padding: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    padding-bottom: 0;
    font-family: "Sofia Sans", sans-serif;
    font-display: swap;
}

html {
    overflow-x: hidden;
}

/*--typography--*/
h2 {
    font-weight: 400;
}
/*--end typography--*/

/*--navbar--*/
header nav.navbar {
    padding: 5px 50px;
    display: flex;
    justify-content: space-between;
}

.collapsing {
    display: none;
}

.nav-link {
    color: #ffffff;
    margin-left: 50px;
    white-space: nowrap;
}

.nav-link:hover {
    color: lightgray;
}

.nav-link:focus {
    color: #ffffff;
}

.navbar-toggler-icon {
    color: #ffffff;
}

.navbar-toggler {
    color: #ffffff;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        justify-content: end;
    }
}

@media (max-width: 992px) {
    .navbar-collapse {
        margin-top: 1rem;
        background: rgba(0, 0, 0, 0.23);
        transition: background-color 200ms linear;
    }

    .navbar-collapse.scrolled {
        background-color: rgba(33, 37, 41, 1) !important;
        transition: background-color 200ms linear;
    }
}

/*--footer--*/
footer {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 11.5px;
    color: rgb(189, 196, 203);
}

.card {
    padding: 2% 7%;
    color: #646771;
    background-color: #16151a;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

ul > li {
    padding: 4px;
}

ul > li > a {
    color: rgb(189, 196, 203);
}

ul > li > a:hover {
    color: #ffffff;
    cursor: pointer;
}

hr {
    border-width: 2px;
}

.social {
    flex-wrap: nowrap;
}

.social > a > i {
    padding: 1%;
    font-size: 26px;
    color: #fff;
}
.social > a:not(:last-child) {
    padding-right: 30px;
}

.social > a > i:hover {
    color: #ffffff;
    cursor: pointer;
}

.social-column {
    background-color: rgba(33, 37, 41, 0.6);
    background-clip: content-box;
}

.policy > div {
    padding: 4px;
}

.heading {
    color: white;
}

.divider {
    border-top: 2px solid rgba(189, 196, 203, 0.5);
}

.instagram {
    content: "\f16d";
    color: #ffffff;
}

@media (max-width: 400px) {
    .footer {
        text-align: center !important;
    }
}
/*--end footer--*/

.img-fullscreen {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

.img-fit {
    height: auto;
    width: 100%;
}
/*--about us--*/
.parallax-section {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.parallax-content {
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1000;
}

/*--about us end--*/

section {
    padding-top: 100px;
    padding-bottom: 100px;
}

@media (max-width: 992px) {
    section {
        padding-top: 38px;
        padding-bottom: 42px;
    }
}

.section-title {
    padding-bottom: 30px;
}

/*--carousel--*/

.carousel {
    position: relative;
}

.carousel-caption {
    position: absolute;
    top: 60px;
    left: 90px;
}

.carousel-caption h1 {
    font-size: 80px;
    text-align: left;
    margin: 0;
}

@media (max-width: 600px) {
    .carousel-caption {
        top: 40px;
        left: 0px;
    }
    .carousel-caption h1 {
        width: 100vw;
        font-size: 60px;

        text-align: center;
    }
}

/*--carousel end--*/

.page-title {
    white-space: nowrap;
}

.text-with-divider {
    position: relative;
    display: inline-block;
}

.text-with-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    height: 2px;
    width: 50%;
    display: block;
    border-bottom: 2px solid;
    right: 100%;
    margin-right: 25px;
    margin-left: 25px;
    opacity: 0.15;
}

.text-with-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    height: 2px;
    width: 50%;
    display: block;
    border-bottom: 2px solid;
    left: 100%;
    margin-left: 25px;
    margin-right: 25px;
    opacity: 0.15;
}

.curkvi {
    width: auto;
    height: 200px;
    background-color: #c3ddf5;
    box-shadow: 4px 4px 20px black;
    transition: 0.7s ease;
}

.curkvi:hover {
    background-color: rgba(33, 37, 41, 1);
}

.curkvi:hover .curkvi-text {
    color: white;
}
.curkvi:hover .link-curkvi {
    color: #7a9cb9;
}

.link-curkvi {
    box-shadow: inset 0 0 0 0 #496d8f;
    color: #496d8f;
    padding: 0 0.25rem;
    margin: 0 -0.25rem;
    transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.link-curkvi:hover {
    color: #fff !important;
    box-shadow: inset 200px 0 0 0 #496d8f;
}

.curkvi-text {
    transition: 0.7s ease;
}

#owl .item {
    margin: 10px;
    color: #000;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
}

.image-container {
    position: relative;
}

.img-slujiteli {
    display: block;
    width: 100%;
    height: auto;
}

.img-overlay {
    position: absolute;
    top: 0;
    opacity: 0;
    height: 100%;
    width: 100%;
    transition: 0.5s ease;
    background-color: rgba(33, 37, 41, 0.7);
}

.image-container:hover .img-overlay {
    opacity: 1;
}

#scrollToTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    z-index: 99;
    font-size: 20px;
    border: none;
    outline: none;
    background-color: rgba(33, 37, 41, 1);
    box-shadow: 0px 0px 150px 1px #ffffff;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    transition: all 0.3s ease 0s;
    justify-content: center;
    align-items: center;
}

#scrollToTop:hover {
    transform: translateY(-7px);
}

.background-image-1 {
    margin-top: 58px;
    height: calc(100vh - 58px);
    background-image: url("images/about_us.webp");
    background-size: cover;
    background-position: center;
    overflow: auto;
}
.background-image-2 {
    margin-top: 58px;
    height: calc(100vh - 58px);
    background-image: url("images/media.webp");
    background-size: cover;
    background-position: center;
    overflow: auto;
}
.background-image-3 {
    margin-top: 58px;
    height: calc(100vh - 58px);
    background-image: url("images/contact_us.webp");
    background-size: cover;
    background-position: center;
    overflow: auto;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .background-image-1 {
        background-image: url("images/about_us_2x.webp");
    }
    .background-image-2 {
        background-image: url("images/media_2x.webp");
    }
    .background-image-3 {
        background-image: url("images/contact_us_2x.webp");
    }
}

@media (orientation: portrait) {
    .background-image-1 {
        background-image: url("images/about_us_portrait.webp");
    }
    .background-image-2 {
        background-image: url("images/media_portrait.webp");
    }
    .background-image-3 {
        background-image: url("images/contact_us_portrait.webp");
    }
}
.modal {
    border-radius: 0%;
}

.sidebar {
    position: sticky;
    top: 0;
    left: 0;
}

.nav {
    width: 100%;
}

.sidenav-links li > a {
    color: white;
    text-decoration: none;
    white-space: nowrap;
}
.sidenav-links li > a > h4 {
    font-weight: 300;
    margin-bottom: 40px;
    margin-right: 20px;
}
.sidenav-links li > a:hover {
    color: #d3d3d3;
}
.sidenav-links li > a:active {
    font-weight: 600;
}

#aboutUsTitle {
    font-size: 50px;
    font-weight: 600;
}

.html-aboutUs {
    overflow: hidden;
}

.coll {
    padding-top: 58px;
    min-width: 300px;
}
.coll-no-padding {
    min-width: 300px;
}
.coll-no-padding-contactUs {
    min-width: 384px;
}
.coll-div {
    padding-top: 58px;
    min-width: 300px;
}
.coll-div-contactUs {
    padding-top: 58px;
    min-width: 384px;
}

.video_wrapper {
    margin: 20px;
    height: 90%;
}

.map_wrapper {
    margin: 20px;
    height: 90%;
    width: 90%;
}

.spacing {
    width: 60vw;
    margin-left: 50px;
    margin-right: 50px;
}

@media (max-width: 1700px) {
    .coll-2 {
        width: calc(100vw - 300px);
    }
}

@media (max-width: 992px) {
    .coll {
        display: none !important;
    }
    .spacing {
        width: 80vw;
    }
    .coll-2 {
        width: 100% !important;
    }
}

@media (max-width: 560px) {
    .spacing {
        width: 95vw;
    }
}

@media (min-width: 992px) {
    .dropdown {
        display: none;
    }
}

@media (max-width: 992px) {
    .current-page-item {
        display: none;
    }
}

@media (max-width: 305px) {
    header nav.navbar {
        padding: 5px 0px;
    }
}

@media (max-width: 768px) {
    .social {
        text-align: center;
    }
    .social > i {
        padding-right: 1%;
    }
    .social-column {
        margin-bottom: 16px;
    }
    .background-image-3 {
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .col-hidden-md {
        flex-direction: column;
    }
}

.contactUs_row {
    height: 70vh;
}

.current-page-link {
    padding-left: 30px;
}

.main-row {
    --bs-gutter-x: 0rem;
    flex-wrap: nowrap;
}

.main-row-contacts {
    --bs-gutter-x: 0rem;
}

.row-hidden-md {
    padding-top: 58px;
}

.opacity-1 {
    background-color: rgba(0, 0, 0, 0.1);
}
.opacity-2 {
    background-color: rgba(0, 0, 0, 0.2);
}
.opacity-3 {
    background-color: rgba(0, 0, 0, 0.3);
}
.opacity-4 {
    background-color: rgba(0, 0, 0, 0.4);
}
.opacity-5 {
    background-color: rgba(0, 0, 0, 0.5);
}
.opacity-6 {
    background-color: rgba(0, 0, 0, 0.6);
}
.opacity-7 {
    background-color: rgba(0, 0, 0, 0.7);
}
.opacity-8 {
    background-color: rgba(0, 0, 0, 0.8);
}
.opacity-9 {
    background-color: rgba(0, 0, 0, 0.9);
}
.opacity-10 {
    background-color: rgba(0, 0, 0, 1);
}
.opacity-1-light {
    background-color: rgba(255, 255, 255, 0.1);
}
.opacity-2-light {
    background-color: rgba(255, 255, 255, 0.2);
}
.opacity-3-light {
    background-color: rgba(255, 255, 255, 0.3);
}
.opacity-4-light {
    background-color: rgba(255, 255, 255, 0.4);
}
.opacity-5-light {
    background-color: rgba(255, 255, 255, 0.5);
}
.opacity-6-light {
    background-color: rgba(255, 255, 255, 0.6);
}
.opacity-7-light {
    background-color: rgba(255, 255, 255, 0.7);
}
.opacity-8-light {
    background-color: rgba(255, 255, 255, 0.8);
}
.opacity-9-light {
    background-color: rgba(255, 255, 255, 0.9);
}
.opacity-10-light {
    background-color: rgba(255, 255, 255, 1);
}
