/* Myriad Pro - Bold */
@font-face {
    font-family: 'Myriad Pro';
    src: url("../fonts/myriadpro/MYRIADPRO-BOLD.OTF") format('otf');
    font-weight: 700;
    font-style: normal;
}

/* Myriad Pro - Bold Condensed */
@font-face {
    font-family: 'Myriad Pro';
    src: url("../fonts/myriadpro/MYRIADPRO-BOLDCOND.OTF") format('otf');
    font-weight: 700;
    font-style: normal;
    font-stretch: condensed;
}

/* Myriad Pro - Bold Condensed Italic */
@font-face {
    font-family: 'Myriad Pro';
    src: url("../fonts/myriadpro/MYRIADPRO-BOLDCONDIT.OTF") format('otf');
    font-weight: 700;
    font-style: italic;
    font-stretch: condensed;
}

/* Myriad Pro - Bold Italic */
@font-face {
    font-family: 'Myriad Pro';
    src: url("../fonts/myriadpro/MYRIADPRO-BOLDIT.OTF") format('otf');
    font-weight: 700;
    font-style: italic;
}

/* Myriad Pro - Condensed */
@font-face {
    font-family: 'Myriad Pro';
    src: url("../fonts/myriadpro/MYRIADPRO-COND.OTF") format('otf');
    font-weight: 400;
    font-style: normal;
    font-stretch: condensed;
}

/* Myriad Pro - Condensed Italic */
@font-face {
    font-family: 'Myriad Pro';
    src: url("../fonts/myriadpro/MYRIADPRO-CONDIT.OTF") format('otf');
    font-weight: 400;
    font-style: italic;
    font-stretch: condensed;
}

/* Myriad Pro - Light */
@font-face {
    font-family: 'Myriad Pro';
    src: url("../fonts/myriadpro/MyriadPro-Light.otf") format('otf');
    font-weight: 300;
    font-style: normal;
}

/* Myriad Pro - Regular */
@font-face {
    font-family: 'Myriad Pro';
    src: url("../fonts/myriadpro/MYRIADPRO-REGULAR.OTF") format('otf');
    font-weight: 400;
    font-style: normal;
}

/* Myriad Pro - Semibold */
@font-face {
    font-family: 'Myriad Pro';
    src: url("../fonts/myriadpro/MYRIADPRO-SEMIBOLD.OTF") format('otf');
    font-weight: 600;
    font-style: normal;
}

/* Myriad Pro - Semibold Italic */
@font-face {
    font-family: 'Myriad Pro';
    src: url("../fonts/myriadpro/MYRIADPRO-SEMIBOLDIT.OTF") format('otf');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url("../fonts/myriadpro/MYRIADPRO-SEMIBOLDIT.OTF") format('otf');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'SFUIText';
    src: url('fonts/sfuitext_light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'SFUIText';
    src: url('fonts/sfuitext_lightitalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

body{
    font-family: 'Myriad Pro', sans-serif;
    font-weight: 400;
}

.myriadpro{
    font-family: 'Myriad Pro', sans-serif;
}

.sfuitext{
    font-family: 'SFUIText', sans-serif;
}

.bold-text {
    font-weight: 700;
}

.italic-text {
    font-style: italic;
}

.light-text {
    font-weight: 300;
}

.semibold-text {
    font-weight: 600;
}

.condensed-text {
    font-stretch: condensed;
}

.main-text{
    font-size: 9pt;
    line-height: 11pt;
}

.comment-text{
    font-size: 7pt;
    line-height: 11pt;
}

.news-text{
    font-size: 10pt;
    line-height: 10pt;
    text-transform: uppercase;
}

.half-title-text{
    font-size: 12pt;
    line-height: 12pt;
}

.title-text{
    font-size: 21pt;
    line-height: 23pt;
}

.ad-title-text{
    font-size: 48pt;
    line-height: 48pt;
}

*{
    margin: 0;
}

.center{
    display: flex;
    justify-content: center;
    align-items: center;
}

.container{
    max-width: 1920px;
    width: 100vw;
    margin: 0px auto;
}

header{
    height: 5vh;
    max-height: 150px;
    padding: 2vw;
    box-shadow: 0px 1px 25px 25px rgba(187, 128, 134, 0.4);
}

header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo{
    width: 20%;
    height: 100%;
}

.header-logo img{
    width: 150%;
}

.header-button button{
    padding: 20px 40px;
    border-radius: 50px;
    border: 3px solid #898C8E;
    color: #898C8E;
    text-transform: uppercase;
    transition: 0.6s ease-in-out;
    cursor: pointer;
    font-weight: 900;
}

.header-button button:hover{
    background-color: #898C8E;
    color: #fff;
}

.message{
    position: fixed;
    margin-left: 40%;
    margin-top: 2%;
    width: 20%;
    min-height: 100px;
    border-radius: 25px;
    background-color: #ba8187;
    border: 5px solid #ba818783;
    box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    color: #fff;
    font-weight: 900;
    font-size: 16pt;
    padding: 40px;
    gap: 10px;
    text-align: center;
    z-index: 999;
}

.none{
    display: none;
}