@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

body {
    background-color: #182954;
    font-family: 'Lato', sans-serif !important;
}

section {
    font-size: 21px;
}

.lato-light {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.lato-regular {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.lato-bold {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
}


@media (max-width: 1200px) {
    .container {
        width: 100%;
    }
}

.bg-blue {
    background-color: #182954;
}

.bg-gold {
    background-color: #d6b36a;
}

.bg-white {
    background-color: #ffffff;
}

.bg-dark {
    background-color: #222222;
}

.text-blue {
    color: #182954;
}

.text-gold {
    color: #d6b36a;
}

.border-bottom-gold {
    border-bottom: 1px solid #d6b36a !important;
}

.border-top-gold {
    border-top: 1px solid #d6b36a !important;
}

.border-left-gold {
    border-left: 1px solid #d6b36a !important;
}

.border-right-gold {
    border-right: 1px solid #d6b36a !important;
}

@media (max-width: 768px) {
    .sm-no-border {
        border: none !important;
    }
}

.fullvh {
    height: 100vh;
}

.h50vh {
    height: 50vh;
}

.h80vh {
    height: 80vh;
}

div.main-menu-container {
    display: flex;
    justify-content: center;
}

ul.main-menu {
    display: flex;
    list-style: none;
    padding: 0;
    width: 100%;
    margin-top: 1rem;
    margin-left: 1rem;
}

ul.main-menu li {
    flex-grow: 1;
    text-align: center;
}

ul.main-menu li a {
    text-transform: uppercase;
    color: #ffffff;
    font-size: 1rem;
    padding: 10px 5px;
}

ul.main-menu li a.btn-menu-gold {
    background-color: #d6b36a;
    color: #182954;
    border-radius: 2rem;
}

ul.main-menu li a:hover,
ul.main-menu li a:focus,
ul.main-menu li a.active {
    color: #d6b36a;
}

ul.main-menu li a.btn-menu-gold:hover {
    background-color: #d6b36a;
    color: #ffffff;
    border-radius: 2rem;
}

.our-offer {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin-top: 5rem;
}

.our-offer li {
    flex: 1;
    text-align: center;
}

@media (max-width: 768px) {
    .our-offer {
        flex-wrap: wrap;
        justify-content: center;
    }

    .our-offer li {
        flex-basis: 100%;
        margin: 5px;
    }
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

.z-3 {
    z-index: 3;
}

.z-4 {
    z-index: 4;
}

.z-5 {
    z-index: 5;
}


.gallary-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 0;
    margin: 0 auto;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-container:nth-child(1) {
    grid-column: span 6;
    grid-row: span 2;
}

.image-container:nth-child(2),
.image-container:nth-child(3),
.image-container:nth-child(4) {
    grid-column: span 2;
}

.image-container:nth-child(5),
.image-container:nth-child(6) {
    grid-column: span 3;
}

@media screen and (max-width: 768px) {
    .gallary-container {
        display: block;
    }
}

.rotator-item {
    background-position: right top;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-color: #182954;
    padding: 5rem 0;
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.shortcuts,
.shortcuts-two-column {
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

.shortcuts li,
.shortcuts-two-column li {
    margin-top: 1rem;
}

.shortcuts-two-column li {
    width: 50%;
    float: left;
}

.shortcuts li a,
.shortcuts-two-column li a {
    color: #d6b36a;
}

.shortcuts li a:hover,
.shortcuts-two-column li a:hover {
    color: #ffffff;
}

@media screen and (max-width: 768px) { 
    .shortcuts-two-column li {
        width: 100%;
        float: left;
    }
}

.header {
    background-position: right top;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-image: url('../Media/Images/header.png');
    background-color: #182954;
    padding: 1rem 0;
    width: 100%;
    color: #d6b36a;
}

.side-menu {
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

.side-menu li {
    margin: 0.5rem 0;
}

.side-menu li a {
    color: #182954;
    padding: 5px 15px;
}

.side-menu li a i {
    margin-right: 5px;
}

.side-menu li a.active, 
.side-menu li a:hover {
    background-color: #d6b36a;
    border-radius: 10px;
}

.side-menu li a.active i {
    display: none;
}