body,
html {
    margin: 0;
    padding: 0;
    background-color: #f7f1da;
    scroll-behavior: smooth;
    font-family: 'Noto Sans', 'myriad-pro', sans-serif;
}

body{
    background-image: url('background.svg');
    background-size: cover;
    background-position: top;
    background-repeat: repeat;
}

.image-container {
    display: flex;
    align-items: center;
    justify-content: center; 
    text-align: center;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.bg-img {
    width: 100%;
    display: block;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: min(100px, 15%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 30;
}

.logo-img-main {
    width: min(350px, 45%);
    transition: all 0.3s;
}

.logo-img-head {
    width: min(150px, 20%);
    padding: min(50px, 3%);
    opacity: 0;
}

.sticky-logo {
    position: fixed !important;
    top: 10px !important;
    left: 10px !important;
    width: 100px !important;
    transform: none !important;
}

.menu-icons {
    padding: min(100px, 7%);
    text-align: right;
    width: inherit;
}

.header-logo {
    width: min(40px, 17%);
    margin-left: min(30px, 5%);
    vertical-align: middle;
    cursor: pointer;
}

.whatsapp {
    width: min(32px, 14%);
}

.down-arrow {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: min(70px, 10%);
    cursor: pointer;
    z-index: 20;
}

.down-arrow:hover {
    animation-name: arrowhov;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

@keyframes arrowhov {
    0% {
        transform: translate(-50%, 0);
    }

    100% {
        transform: translate(-50%, -20%);
    }
}

@media screen and (max-width: 700px) {
    .menu-icons {
        top: 3.5%;
    }
}

.content {
    padding: 10% 20%;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    /*
    background-image: url('background_l.svg');
    background-size: cover;
    background-position: top;
    background-repeat: repeat;
    */
}

@media screen and (max-width: 700px) {
    .content {
        padding: 100px 5% 0;
    }
}

.content div {
    margin-bottom: 50px;
}

.sub-head {
    font-size: 18px;
    font-weight: bold;
}

.sub-head span {
    font-size: 14px;
    font-weight: normal;
    font-style: italic;
}

.head {
    font-size: 24px;
    font-weight: bold;
    border-bottom: #F4E33F 3px solid;
}

.center {
    text-align: center;
}

.center-img {
    width: 50px;
}

.footer {
    background-color: white;
    padding: 50px 30px 30px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.footer img {
    width: 20px;
    vertical-align: middle;
    margin-right: 10px;
}