* {
    padding-right: 10px;
    box-sizing: border-box;
    font-family: "Pangolin", cursive;
    font-weight: 400;
    font-style: normal;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
}

:root {
    --bg-color: #fff;
    --main-color: #c9a788;
    --text-color: ;
    --2nd-color: #434343;
    --other-color: #666666;
    --big-font: 5rem;
    --h2-font: 2.3rem;
    --p-font: 1.3rem;
}

border{
	color: var(--text-color);
	background: var(--bg-color);
}

header img {
    max-width: 80px;
    height: auto;
}


header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    background-color: #FAD6A5; 
    box-shadow: 0 1px 6px 0 rgb(32 33 36 / 10%);
    display: flex;
    justify-content: space-between;
    align-items: center; 
    padding: 20px 14%;
    transition: all .50s ease;
}

.navbar {
    display: flex;
}

.navbar a {
    color: var(--text-color);
    font-size: 15px;
    font-weight: 500;
    margin: 10px 22px;
    transition: all .50s ease;
}

.navbar a:hover {
    color: var(--main-color);
}

.h-icons {
    display: flex;
    align-items: center;
}

.h-icons i {
    font-size: 25px;
    color: black;
    margin-left: 5px;
    margin-right: 20px;
    transition: all .50s ease;
} 

.h-icons i:hover {
    transform: translateY(-4px);
    color: gray;
}

#menu-icon {
    height: 30px;
    width: 30px;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
}

body{
    width: 100%;
    height: 100%;
    display: grid;
    align-items: center;
    background: url(index\ bg.jpg);
}

body {
    background: url(ad.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.Gugol {
    width: 100%;
    height: auto;
}

.Gugol iframe {
    width: 100%;
    height: 100%;
}

.contact .content {
    max-width: 800px;
    margin: 0 auto; /* Center the content horizontally */
    text-align: center; /* Center text within the content */
}

.contact .content h2 {
    font-size: 3em;
    color: black;
    font-weight: 500;
    text-align: center; /* Center the heading text */
}

.contact .content p {
    color: black;
    font-size: 1.1em;
    font-weight: 300;
    text-align: center; /* Center the paragraph text */
}


.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    flex-wrap: wrap;
    margin-top: 50px;
    padding: 10px;
    border-radius: 10px;
    background: white;
    box-shadow: 0px 0px 10px 0px #666;
}

.contact .content {
    max-width: 800px;
    text-align: center;
}

.contact .content h2 {
    font-size: 40px;
    color: #807878;
}

.contact .content p {
    font-size: 36px;
    font-weight: 300;
    color: #807878;
}

.container .contactInfo .box .icon {
    min-width: 60px;
    height: 60px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 22px;
}

.container .contactInfo .box .icon .text {
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    color: #bcbcbc;
    flex-direction: column;
    font-weight: 300;
}

.container .contactInfo .box .icon .text h2 {
    font-weight: 500;
    color: antiquewhite;
}

@media (max-width: 920px) {
    #menu-icon {
        display: block;
    }
    .navbar {
        position: absolute;
        top: -800px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        text-align: center;
        background: white;
        transition: all .50s ease;
    }
    .navbar a {
        display: block;
        padding: 5px;
        margin: 15px;
        font-size: 20px;
        font-weight: 600;
        transition: all .50s ease;
    }
    .navbar a:hover {
        color: darkblue;
    }
    .navbar.active {
        top: 100%;
    }
}

@media (max-width: 640px) {
    :root {
        --big-font: 3.8rem;
        --h2-font: 2rem;
        --p-font: 1.1rem;
    }
    .home-text h1 {
        line-height: 1.1;
    }
    .home {
        height: 85vh;
    }
}
