:root{
    --color-white: #E0DBCF;
    --color-gold: #D08C39;
}

@font-face {
    font-family: "Cormorant_Garamond";
    src: url("/wp-content/themes/royal/assets/font/Cormorant_Garamond/static/CormorantGaramond-Light.ttf");
    font-weight: 300;
}
@font-face {
    font-family: "Cormorant_Garamond";
    src: url("/wp-content/themes/royal/assets/font/Cormorant_Garamond/static/CormorantGaramond-Regular.ttf");
    font-weight: 400;
}
@font-face {
    font-family: "Cormorant_Garamond";
    src: url("/wp-content/themes/royal/assets/font/Cormorant_Garamond/static/CormorantGaramond-Medium.ttf");
    font-weight: 500;
}
@font-face {
    font-family: "Cormorant_Garamond";
    src: url("/wp-content/themes/royal/assets/font/Cormorant_Garamond/static/CormorantGaramond-SemiBold.ttf");
    font-weight: 600;
}
@font-face {
    font-family: "Cormorant_Garamond";
    src: url("/wp-content/themes/royal/assets/font/Cormorant_Garamond/static/CormorantGaramond-Bold.ttf");
    font-weight: 700;
}

/*==*/
@font-face {
    font-family: "Mulish";
    src: url("/wp-content/themes/royal/assets/font/Mulish/static/Mulish-ExtraLight.ttf");
    font-weight: 200;
}
@font-face {
    font-family: "Mulish";
    src: url("/wp-content/themes/royal/assets/font/Mulish/static/Mulish-Light.ttf");
    font-weight: 300;
}
@font-face {
    font-family: "Mulish";
    src: url("/wp-content/themes/royal/assets/font/Mulish/static/Mulish-Regular.ttf");
    font-weight: 400;
}
@font-face {
    font-family: "Mulish";
    src: url("/wp-content/themes/royal/assets/font/Mulish/static/Mulish-Medium.ttf");
    font-weight: 500;
}
@font-face {
    font-family: "Mulish";
    src: url("/wp-content/themes/royal/assets/font/Mulish/static/Mulish-SemiBold.ttf");
    font-weight: 600;
}
@font-face {
    font-family: "Mulish";
    src: url("/wp-content/themes/royal/assets/font/Mulish/static/Mulish-Bold.ttf");
    font-weight: 700;
}
@font-face {
    font-family: "Mulish";
    src: url("/wp-content/themes/royal/assets/font/Mulish/static/Mulish-ExtrasBold.ttf");
    font-weight: 800;
}
/*==*/
@font-face {
    font-family: "Inter-my";
    src: url("/wp-content/themes/royal/assets/font/Inter/static/Inter-ExtraLight.ttf");
    font-weight: 200;
}
@font-face {
    font-family: "Inter-my";
    src: url("/wp-content/themes/royal/assets/font/Inter/static/Inter_18pt-ExtraLight.ttf");
    font-weight: 300;
}
@font-face {
    font-family: "Inter-my";
    src: url("/wp-content/themes/royal/assets/font/Inter/static/Inter_18pt-Regular.ttf");
    font-weight: 400;
}
@font-face {
    font-family: "Inter-my";
    src: url("/wp-content/themes/royal/assets/font/Inter/static/Inter-Medium.ttf");
    font-weight: 500;
}
@font-face {
    font-family: "Inter-my";
    src: url("/wp-content/themes/royal/assets/font/Inter/static/Inter-SemiBold.ttf");
    font-weight: 600;
}
@font-face {
    font-family: "Inter-my";
    src: url("/wp-content/themes/royal/assets/font/Inter/static/Inter-Bold.ttf");
    font-weight: 700;
}
@font-face {
    font-family: "Inter-my";
    src: url("/wp-content/themes/royal/assets/font/Inter/static/Inter-ExtrasBold.ttf");
    font-weight: 800;
}
/*==*/
@font-face {
    font-family: "Suranna";
    src: url("/wp-content/themes/royal/assets/font/Suranna/static/Suranna-ExtraLight.ttf");
    font-weight: 200;
}
@font-face {
    font-family: "Suranna";
    src: url("/wp-content/themes/royal/assets/font/Suranna/static/Suranna-Light.ttf");
    font-weight: 300;
}
@font-face {
    font-family: "Suranna";
    src: url("/wp-content/themes/royal/assets/font/Suranna/static/Suranna-Regular.ttf");
    font-weight: 400;
}
@font-face {
    font-family: "Suranna";
    src: url("/wp-content/themes/royal/assets/font/Suranna/static/Suranna-Medium.ttf");
    font-weight: 500;
}
@font-face {
    font-family: "Suranna";
    src: url("/wp-content/themes/royal/assets/font/Suranna/static/Suranna-SemiBold.ttf");
    font-weight: 600;
}
@font-face {
    font-family: "Suranna";
    src: url("/wp-content/themes/royal/assets/font/Suranna/static/Suranna-Bold.ttf");
    font-weight: 700;
}
@font-face {
    font-family: "Suranna";
    src: url("/wp-content/themes/royal/assets/font/Suranna/static/Suranna-ExtrasBold.ttf");
    font-weight: 800;
}
* {
    box-sizing: border-box;
}

html,body{
    overflow-x: hidden;
}
body {
    margin: 0;
    padding: 0;
    font-family: Cormorant_Garamond , sans-serif;
}

.wrapper {
    /*max-width: 1920px;*/
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #141850;
    position: relative;
    overflow: hidden;
}
.wrapper:after{
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background:     linear-gradient(180deg, #111430 0%, #151951 100%);

}
main {
    flex: 1;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.container {
    max-width: 1920px;
    padding-left: 15px;
    padding-right: 15px;
    width: calc(100% - 160px);
    margin: auto;
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    .container {
        width: 100%;
    }
}


.pt160{
    padding-top: 160px;
}
.pb160{
    padding-bottom: 160px;
}

.pt80{
    padding-top: 80px;
}
.pb80{
    padding-bottom: 80px;
}
.pt60{
    padding-top: 60px;
}
.pb60{
    padding-bottom: 60px;
}
.pt40{
    padding-top: 40px;
}
.pb40{
    padding-bottom: 40px;
}
.mt80{
    margin-top: 80px;
}
.mb80{
    margin-bottom: 80px;
}
.mt60{
    margin-top: 60px;
}
.mb60{
    margin-bottom: 60px;
}
.mt40{
    margin-top: 40px;
}
.mb40{
    margin-bottom: 40px;
}
@media (max-width: 1200px) {
    .pt160{
        padding-top: 80px;
    }
    .pb160{
        padding-bottom: 80px;
    }

    .pt80{
        padding-top: 40px;
    }
    .pb80{
        padding-bottom: 40px;
    }
    .mt80{
        margin-top: 40px;
    }
    .mb80{
        margin-bottom: 40px;
    }
    .mt60{
        margin-top: 30px;
    }
    .mb60{
        margin-bottom: 30px;
    }
    .mt40{
        margin-top: 20px;
    }
    .mb40{
        margin-bottom: 20px;
    }
}
/*================*/
ul{
    margin: 0;
    padding: 0;
}
/*================*/

h1, h2, h3, h4,h5,h6{
    margin: 0;
    padding: 0;
}


/*======================*/
.button{
    display: block;
    width: fit-content;
    border-radius: 50px;
    padding: 16px 40px;
    gap: 4px;
    border: 1px solid #B99766;
    color:#FFFFFF ;

    font-family: Suranna, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s;
}

@media (max-width: 991px) {
    .button {
        font-size: 14px;
    }
}

.button.var-2{
    background-color: #B99766;
}

.button:hover{
    background-color: #B99766;
}
