*{
    top: 0;
    left: 0;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Secular One", sans-serif;
    scroll-behavior: smooth;
    direction: rtl;
}

:root{
    --main-color: #d98b2b;
    --primary-color: #1c3b4a;
    --background-color: #fff;
    --second-bg-color: #F7F7F7;
    --text-color: #FAFAF9;
    --second-text-color: #383838;
    --contact-text-color: #262626;
    --p-color: #525151;
}

::selection{
    background-color: var(--main-color);
    color: var(--contact-text-color);
}

::-webkit-selection{
    background-color: var(--main-color);
    color: var(--contact-text-color);
}

section{
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 70px;
    background-color: var(--background-color);
}


.hero-section{
    position: relative;
    width: 100%;
    height: 600px;
    background: radial-gradient(at bottom right, rgba(217,139,43,1) 0%, #2F5D8C73 90%);
  }
  
.hero-section img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-section .info{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    color: white;
    overflow: hidden;
    padding: 7px;
    margin: 150px -22px 0 0;
}

.hero-section h1{
    color: var(--text-color);
    margin: 0;
}

.hero-section p{
    font-size: 1rem;
    color: var(--text-color);
}

.hero-section a{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    width: 200px;
    height: 55px;
    cursor: pointer;
    border: none;
    border-radius: 999px;
    font-size: 1.1rem;
    color: var(--text-color);
    background-color: var(--main-color);
    transition: 0.8s;
}

.hero-section a:hover{
    transform: scale(107%);
}

.heading{
    font-size: clamp(34px, 5vw,  48px);
    font-weight: 600;
    color: var(--second-text-color);
    margin-bottom: 20px;
}

@media(min-width: 879px){
    .hero-section .info{
        align-items: flex-start;
    }
}