html {
    scroll-behavior: smooth;
}

body {
    margin: 0 !important;
    background-color: #1e1b11;
    color: white;
    font-size: 1.3rem;
    line-height: 1.3rem;
    font-family: 'Open Sans', sans-serif;
}

.contact-info div {
    margin-bottom: 5px;
    line-height: 1.8rem;
}

ul {
    list-style: outside;
}

li {
    margin-top: 10px;
    line-height: 1.8rem;
}


.section-1 {
    background: url("../img/krrrb.jpg");
    background-position-y: -160px;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
}

.t-center {
    text-align: center;
    padding: 0 30px;
}

.heading {
    padding-top: 280px;
    font-size: 5rem;
    line-height: 5.5rem;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

h2 {
    font-size: 3rem;
    line-height: 3.2rem;
    margin-top: 60px;
}

.sub-heading {
    font-size: 3rem;
    line-height: 3.2rem;
    font-family: 'Cinzel', serif;
}

.arrow {
    height: 20px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    animation: Arrow ease-in-out;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    padding: 10px;
}

.arrow:hover {
    cursor: pointer;
}

.arrow-1 {
    bottom: 30px;
}

.section-2 {
    /*border-top: white 16px solid;*/
    padding: 0 100px;
}

.img-container {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    gap: 30px
}

.img-container img {
    flex: 33%;
    width: 0;
}

.contact-container {
    display: flex;
    flex-direction: row;
    padding-bottom: 10px;
    gap: 50px;
}

a {
    color: white;
}

@media screen and (max-width: 600px) {
    .contact-container {
        flex-direction: column-reverse;
    }

    #map {
        width: 100%;
    }

    .heading {
        padding-top: 200px;
        font-size: 3rem;
        line-height: 3.3rem;
        margin-bottom: 10px;
    }

    .sub-heading {
        font-size: 2rem;
        line-height: 2.2rem;
    }

    .img-container {
        flex-direction: column;
    }

    .img-container img {
        width: auto;
    }

    .section-2 {
        padding: 0 30px;
    }
}

.contact-button {
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    width: 100px;
    padding: 10px;
    border: 2px solid white;
    text-decoration: none;
    transition: 0.1s;
}

.contact-button:hover {
    background-color: white;
    color: #ce9530;
    transition: 0.1s;
}

.contact-map {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.contact-map img {
    max-width: 600px;
}

@media screen and (max-width: 600px) {
    .contact-map {
        flex-direction: column;
    }
}


@keyframes Arrow {
    0% {
        transform: translate(-50%, 0);
    }

    65% {
        transform: translate(-50%, 10px);
    }

    100% {
        transform: translate(-50%, 0px);
    }
}
