/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #ccd5ae #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 10px;
}

*::-webkit-scrollbar-track {
    background: #ffffff;
}

*::-webkit-scrollbar-thumb {
    background-color: #ccd5ae;
    border-radius: 5px;
    border: 5px ridge #ffffff;
}


:root {
    --main-color: #CCD5AE;
    --second-color: #FAEDCD;
    --nav-active: #FEFAE0;
    --three-color: #E9EDC9;
}

/* BETŰSTÍLUSOK */
@font-face {
    font-family: Cormorant;
    src: url('../font/CormorantGaramond-Regular.ttf');
}

@font-face {
    font-family: Cormorant-light;
    src: url('../font/CormorantGaramond-Light.ttf');
}

@font-face {
    font-family: Cormorant-medium;
    src: url('../font/CormorantGaramond-Medium.ttf');
}

@font-face {
    font-family: Cormorant-bold;
    src: url('../font/CormorantGaramond-Bold.ttf');
}

@font-face {
    font-family: TT;
    src: url('../font/OldStandardTT-Regular.ttf');
}

.cormorant {
    font-family: Cormorant;
}

.cormorant-light {
    font-family: Cormorant-light;
}

.cormorant-medium {
    font-family: Cormorant-medium;
}

.cormorant-bold {
    font-family: Cormorant-bold;
}

.TT {
    font-family: TT;
}


/* BODY */
.navbar-brand {
    padding-top: var(--bs-navbar-brand-padding-y);
    padding-bottom: var(--bs-navbar-brand-padding-y);
    margin-right: var(--bs-navbar-brand-margin-end);
    font-size: var(--bs-navbar-brand-font-size);
    color: var(--bs-navbar-brand-color);
    text-decoration: none;
    white-space: nowrap;
    margin-left: 15px !important;
}
body {
    background-color: var(--second-color);
    font-family: Cormorant;
    position: relative;
}



/* NAVBAR HEADER */

.nav-item .active {
    background-color: var(--nav-active) !important;
    height: 55px;
    border-radius: 30px;
}

.nav-link,
h1 {
    color: #000000;
    text-align: center;
    vertical-align: text-middle;
    font-size: 30px;
    line-height: auto;
    border-style: hidden;
    outline: none;
    font-family: "Cormorant";
}

/* @media (max-width: 1220px) {
    .nav-link,h1{
        font-size: 20px;
    }
}   */


.navbar {
    background-color: var(--main-color) !important;
    min-height: 130px;
}


/* Footer */

footer {
    background-color: var(--main-color);
    font-size: 20px;
}

/* Info */

.back {
    border-radius: 20px;
    text-align: center;
    height: 84px;
    width: 84px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.20000000298023224);
}

.bi {
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    color: var(--main-color);
    font-size: 72px;
    margin: 0;
}



.infohatter {
    background-color: #f5f5f5;
    border-radius: 20px;
}

@media only screen and (max-width: 600px) {

    input[type=text],
    input[type=email],
    input[type=tel] {
        font-size: 15px;
    }
}

.btn-primary {
    background-color: var(--main-color);
    border-color: transparent;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    font-family: Cormorant;
    font-size: 28px;
}

.btn-primary:hover {
    background-color: var(--main-color);
    border-color: transparent;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    font-family: Cormorant;
    font-size: 28px;
}

.hatter>h1 {
    font-size: 34px;
}

.hatter>p {
    font-size: 25px;
}

.main-text {
    font-size: 50px
}

.sec-text {
    font-size: 25px;
}

@media only screen and (max-width: 1200px) {
    .hatter {
        margin-bottom: 10px;
        margin-left: 20px;
        margin-right: 20px;
    }
}



/* HATTER */

.hatter {
    background-color: var(--three-color);
    border-radius: 25px;
    z-index: 1;
    padding: 25px;
    position: relative;
    /* height: 680px; */
}

/* CRICLE BLURE */
.ellipse1 {
    background-color: rgba(255, 181, 52, 0.6499999761581421);
    height: 530px;
    width: 530px;
    position: absolute;
    filter: blur(150px);
    border-radius: 50%;
    z-index: 0;
}

@media only screen and (max-width: 600px) {
    .ellipse1 {
        background-color: rgba(255, 181, 52, 0.6499999761581421);
        height: 330px;
        width: 330px;
        position: absolute;
        filter: blur(150px);
        border-radius: 50%;
        z-index: 0;
    }

    .hatter>p {
        font-size: 20px;
    }

    .main-text {
        font-size: 40px;
    }
}