/*@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');*/

@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&display=swap');

* { scroll-behavior: smooth; }
:root {
    --base-font-size: 30px;
    --base-font: "Epilogue", sans-serif;
    --red: #FF0000;
    --dirty-white: #F7FBFF;
    --gray: #7188A4;
    --dark-gray: #b7b7b7;
    --solid-gray: #E6E6E6;
    --light-green: #eef9f9;
    --green: #37827e;
    --black: rgb(10, 13, 20);
    --white: #fff;
    --border-radius: 8px;
    --theme-color: #981e6f;
    --theme-font-color: rgba(211,227,253,0.9);
    --theme-font-color-blue: rgb(3, 27, 78);
    --theme-font-color-light: rgb(77, 91, 124);
    --animate-duration: 800ms;
    --animate-delay: 0.9s;
    --bs-border-color: #981e6f;
    --bs-body-color: #981e6f;
    --bs-btn-bg: #981e6f;
    --bs-btn-color: #fff;
    --bs-gradient: linear-gradient(135deg, rgba(152,30,111,1) 60%, rgba(33,33,33,1) 100%);
    --lh: 1;
    --lh_2: calc(0.9020em + 7.7179rem);
}
html {}
body {
    font-family: var(--base-font);
    font-weight: normal;
    font-style: normal;
    font-optical-sizing: auto;
    line-height: 1.5rem;
    color: var(--theme-font-color-blue);
    background-color: var(--white);
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: calc(16px + (26 - 16) * ((100vw - 300px) / (1600 - 300)));
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust:100%;
    -ms-text-size-adjust:100%;
    scroll-behavior: smooth;
    letter-spacing: -0.9px;
    line-height: 28px;
    word-break: break-word;
}
::-moz-selection {
    background-color: var(--gray);
    color: var(--theme-color);
    text-shadow: none;
}
::selection {
    background-color: var(--gray);
    color: var(--theme-color);
    text-shadow: none;
}
/*Global*/
p{
    line-height: 1.4;
}
a{ color: var(--black); text-decoration: none; transition: 0.5s; position: relative; }
a:hover{ color: var(--theme-color); }
a.link-effect::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: var(--theme-color);
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}
a.link-effect:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

.light-link-effect{
    font-size: 12px;
    color: var(--gray);
    font-weight: normal;
    border: solid 1px var(--gray);
    border-radius: 8px;
    padding: 8px;
    transition: background-color 1000ms linear;
}
.light-link-effect:hover{
    background-color: var(--theme-color);
    color: var(--theme-font-color);
}

a.btn-white{
    text-align: left;
    padding: 5px 16px 5px 16px;
    border: #efefef solid 3px;
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
    color: #efefef;
    text-decoration: none;
    background: linear-gradient(to left, transparent 50%, white 50%) right;
    background-size: 200%;
    transition: .3s ease-out;
    font-weight: bold;
    font-size: 0.8rem;
}
a.btn-white span:after {
    content: ' \003E';
    font-weight: bold;
    float: right;
    margin-left: 20px;
    margin-top: 1px;
}
a.btn-white:hover {
    color: var(--theme-color);
    background-position: left;
}

a.btn-gray{
    text-align: left;
    padding: 5px 16px 5px 16px;
    border: var(--gray) solid 3px;
    border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
    color: var(--gray);
    text-decoration: none;
    background: linear-gradient(to left, transparent 50%, white 50%) right;
    background-size: 200%;
    transition: .3s ease-out;
    font-weight: bold;
    font-size: 0.8rem;
}
a.btn-gray span:after {
    content: ' \003E';
    font-weight: bold;
    float: right;
    margin-left: 20px;
    margin-top: -1px;
}
a.btn-gray:hover {
    color: var(--theme-color);
    background-position: left;
}
.language-button{
    border-color: var(--gray);
    border-style: solid;
    border-width: 1px;
    padding: 6px 10px 4px 10px;
    border-radius: 8px;
    color: var(--gray) !important;
    font-size: 0.8rem;
}
.language-button:hover{
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    color: var(--white) !important;
}
.default-button{
    border-radius: 20px;
    background-color: var(--theme-color);
    color: var(--white);
    font-size: 0.8rem;
    padding: 9px 45px 9px 40px;
    text-align: center;
    border: solid 1px var(--theme-color);
    font-weight: bold;
}
.default-button:hover{
    background-color: transparent;
}
.default-button:after{
    content: '';
    position: absolute;
    font-weight: bold;
    right: 15px;
    width: 14px;
    height: 14px;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--dirty-white);
    -webkit-mask: url("../img/arrow-up.svg") no-repeat 50% 50%;
    mask: url("../img/arrow-up.svg") no-repeat 50% 50%;
}
.default-button:hover:after{
    background-color: var(--theme-color);
}


.white-button{
    border-radius: 20px;
    color: var(--theme-color);
    font-size: 0.8rem;
    padding: 9px 45px 9px 40px;
    text-align: center;
    border: solid 1px var(--white);
    font-weight: bold;
}
.white-button:hover{
    background-color: transparent;
}
.white-button:after{
    content: '';
    position: absolute;
    font-weight: bold;
    right: 15px;
    width: 14px;
    height: 14px;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--white);
    -webkit-mask: url("../img/arrow-up.svg") no-repeat 50% 50%;
    mask: url("../img/arrow-up.svg") no-repeat 50% 50%;
}
.white-button:hover:after{
    background-color: var(--white);
}

img.black{
    -webkit-filter: saturate(0%) grayscale(100%) brightness(69%) contrast(1000%);
}
.margin-reset{ padding: 0; margin: 0; }
.full-height-pages{ height: 100dvh; }
.none{ display: none !important; }
.radius-20px{ border-radius: 20px; }
.font-color-theme{ color: var(--theme-color); }
/*Global*/

/*Header*/
header{
    margin-top: 16px;
    margin-bottom: 10px;
}
header .logo{
    width: 25%;
    padding: 0;
}
header .logo img{
    width: 300px;
}
header .logo h1{
    position: absolute;
    left: -9999px;
    top: -9999px;
}
header .primary-menu nav ul{
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}
header .primary-menu nav ul li, header .secondary-menu nav ul li{
    list-style: none;
}
header .primary-menu nav ul li a{
    color: var(--theme-color);
    font-size: 1rem;
    font-weight: bold;
}
header .secondary-menu nav ul{
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}
header .secondary-menu nav ul li{
    margin-left: 0.8rem;
}
header .secondary-menu nav ul li:first-child{
    margin-left: 0;
}
header .secondary-menu nav ul li:last-child{
    margin-left: 10px;
}
header .secondary-menu nav ul li a{
    color: var(--theme-color);
    font-size: 0.8rem;
}
header .top-menu{
    width: 75%;
}
/*Header*/



/*Mobile Menu*/
.primary-menu label{
    display: none;
    flex-direction:column;
    width:70px;
    cursor:pointer;
    align-items: flex-end;
    z-index: 100;
}
.primary-menu label span{
    background: var(--theme-color);
    border-radius:10px;
    height: 4px;
    margin: 5px 0;
    transition: .4s  cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.primary-menu label span:nth-of-type(1){
    width:40%;
}
.primary-menu label span:nth-of-type(2){
    width:80%;
}
.primary-menu label span:nth-of-type(3){
    width:55%;
}
.primary-menu label input[type="checkbox"]{
    display:none;
}
.primary-menu label input[type="checkbox"]:checked ~ span:nth-of-type(1){
    transform-origin:bottom;
    transform: rotatez(45deg) translate(-13px, 18px);
}
.primary-menu label input[type="checkbox"]:checked ~ span:nth-of-type(2){
    transform-origin:top;
    transform:rotatez(-45deg);
}
.primary-menu label input[type="checkbox"]:checked ~ span:nth-of-type(3){
    transform-origin:bottom;
    width:50%;
    transform: translate(0px,-5px) rotatez(45deg);
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(152, 30, 111, 0.8);
    backdrop-filter: blur(5px);
    padding: 20px;
    transition: transform 0.3s ease-in-out;
    z-index: 98;
    transform: translateX(0);
    overflow: scroll;
}
.mobile-menu ul{
    width: 90%;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 0;
}
.mobile-menu ul li{
    margin-bottom: 22px;
    list-style: none;
}
.mobile-menu ul li a{
    font-size: 22px;
    font-weight: bold;
    text-decoration: underline;
}
.mobile-menu label{
    display: none !important;
}
.mobile-menu .link-effect{
    color: var(--theme-color);
}
.mobile-menu .mobile-menu-secondary-content .link-effect{
    color: var(--white);
}
.mobile-menu .mobile-menu-secondary-content ul{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.mobile-menu .mobile-menu-secondary-content ul li{
    margin-bottom: 4px;
}
.mobile-menu .mobile-menu-secondary-content ul li a{
    font-size: 0.9rem;
}
.mobile-menu .mobile-menu-secondary-content ul li.language-menu-item{

}
/*Mobile Menu*/






/*Top Notice*/
section.header-notice{
    padding: 20px;
    background-color: var(--theme-color);
    border-radius: var(--border-radius);
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
}
section.header-notice a{
    color: var(--white);
}
section.header-notice .title{
    text-align: right;
    font-size: 1rem;
    font-weight: bold;
}
section.header-notice p{
    margin: 0;
    font-size: 0.9rem;
}
section.header-notice .close{
    text-align: right;
    cursor: pointer;
    font-weight: bold;
    transition: all 1s ease;
}
section.header-notice .close:hover{
    color: var(--dark-gray);
}
section.header-notice .notice-item {
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
section.header-notice .notice-item.show {
    display: block;
    opacity: 1;
}
/*Top Notice*/

/*Slider*/
section.slider{
    margin-top: 20px;
    margin-bottom: 20px;
}
section.slider .slider-image{
    border-radius: var(--border-radius);
    width: 100%;
    height: 500px;
    background-color: var(--theme-color);
    aspect-ratio: 3 / 2;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}
section.slider .slider-content{
    display: flex;
    position: relative;
    margin-top: -100px;
    width: 85%;
    padding: 20px 30px 30px 30px;
    background-color: #efefef;
    gap: 40px;
    border-radius: var(--border-radius);
    border-top-left-radius: 0;
}
section.slider .slider-content .info{
    font-size: 0.8rem;
}
section.slider .slider-content h2{
    font-weight: bold;
    text-transform: uppercase;
}
section.slider .slider-content p{
    font-size: 0.9rem;
    margin-top: 5px;
}
/*Slider*/


/*WWDL Grid*/
.wwdl-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 40px;
    height: 400px;
}
.wwdl-block {
    justify-content: center;
    align-items: center;
    height: 100%;
    overflow: hidden;
    border-radius: var(--border-radius);
}
.wwdl-block .wwdl-bg{
    width: 100%;
    height: 100%;
    padding: 5px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    background-color: var(--gray);
    border-radius: var(--border-radius);
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.wwdl-block:hover .wwdl-bg {
    -ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.wwdl-block:hover .wwdl-bg .wwdl-content {
    -ms-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
    padding: 20px;
}
.wwdl-block .wwdl-bg:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: rgb(137 48 107 / 70%);
    border-radius: var(--border-radius);
    transition: .3s ease-out;
}
.wwdl-block:hover:before {
    background-color: rgb(152 30 111 / 70%);
}
.wwdl-block a{
    color: var(--white);
}
.wwdl-block h3{
    text-transform: uppercase;
    font-weight: bold;
    font-size: 2rem;
}
.wwdl-block p{
    font-size: 1rem;
    margin: 0;
}
.wwdl-block.big {
    grid-row: span 1;
}
.wwdl-block .wwdl-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    top: -5px;
    position: absolute;
    padding: 20px;
    z-index: 9;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
/*WWDL Grid*/

/*News Block*/
section.news-block{
    text-align: center;
    margin-bottom: 40px;
}
section.news-block h4{
    font-size: 2.4rem;
    font-weight: bold;
}
section.news-block .news-items{
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
}
section.news-block .news-items .news-item{
    flex: 1;
    border-radius: var(--border-radius);
    border: solid 2px #efefef;
    overflow: hidden;
    text-align: left;
    padding-bottom: 30px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
section.news-block .news-items .news-item:hover .zoom-img img{
    transform: scale(1.05);
}
section.news-block .news-items .news-item .zoom-img{
    border-radius: 0;
}
section.news-block .news-items .news-item .zoom-img img{
    aspect-ratio: 3 / 2;
}
section.news-block .news-items .news-item .info{
    overflow: hidden;
    border-bottom: solid 2px #efefef;
    padding: 15px;
    width: 100%;
}
section.news-block .news-items .news-item .info span{
    font-weight: bold;
    color: var(--theme-color);
}
section.news-block .news-items .news-item .info p{
    font-size: 0.8rem;
    padding: 0;
    margin: 0;
    text-wrap: nowrap;
}
section.news-block .news-items .news-item .title{
    min-height: 110px;
    overflow: hidden;
    padding: 15px;
}
section.news-block .news-items .news-item .title h4{
    font-size: 1.1rem;
}
/*News Block*/

/*Newsletter Block*/
section.newsletter-block{
    width: 100%;
    background-color: var(--theme-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    color: var(--white);
}
section.newsletter-block h4{
    font-size: 2.8rem;
    font-weight: bold;
}
section.newsletter-block p{
    font-size: 1rem;
}
section.newsletter-block .newsletter-form-block{
    width: 35%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
section.newsletter-block form{
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
section.newsletter-block input[type=email] {
    width: 100%;
    height: 60px;
    border-radius: var(--border-radius);
    background-color: rgb(255 255 255 / 1);
    color: var(--theme-color);
    padding: 10px 0 10px 65px;
    font-size: 16px;
    border: none;
    background-image: url(../img/email-icon.svg);
    background-repeat: no-repeat;
    background-position: top 50% left 10px;
    background-size: 40px;
}
section.newsletter-block input[type=submit] {
    height: 40px;
    width: 120px;
    border-radius: 20px;
    background-color: var(--theme-color);
    color: var(--white);
    font-size: 0.8rem;
    padding: 7px 10px 9px 10px;
    text-align: center;
    border: solid 1px var(--theme-color);
    position: absolute;
    right: 10px;
    font-weight: bold;
    transition: .3s ease-out;
}
section.newsletter-block input[type=submit]:hover {
    background-color: var(--white);
    color: var(--theme-color);
}
section.newsletter-block input::placeholder {
    color: var(--dark-gray);
}
/*Newsletter Block*/

/*Wave Effect*/
.wawe-effect{
    width: 100%;
    height: 90px;
    margin-bottom: -1px;
    background-color: #fefefe;
    clip-path: polygon(100% 100%, 0% 100% , 0.00% 88.33%, 2.22% 88.20%, 4.44% 87.79%, 6.67% 87.13%, 8.89% 86.23%, 11.11% 85.13%, 13.33% 83.86%, 15.56% 82.46%, 17.78% 80.99%, 20.00% 79.48%, 22.22% 77.98%, 24.44% 76.56%, 26.67% 75.24%, 28.89% 74.09%, 31.11% 73.12%, 33.33% 72.39%, 35.56% 71.90%, 37.78% 71.68%, 40.00% 71.73%, 42.22% 72.06%, 44.44% 72.64%, 46.67% 73.47%, 48.89% 74.51%, 51.11% 75.73%, 53.33% 77.10%, 55.56% 78.55%, 57.78% 80.06%, 60.00% 81.56%, 62.22% 83.01%, 64.44% 84.37%, 66.67% 85.58%, 68.89% 86.60%, 71.11% 87.41%, 73.33% 87.98%, 75.56% 88.28%, 77.78% 88.31%, 80.00% 88.07%, 82.22% 87.56%, 84.44% 86.81%, 86.67% 85.83%, 88.89% 84.66%, 91.11% 83.34%, 93.33% 81.90%, 95.56% 80.41%, 97.78% 78.90%, 100.00% 77.42%);
}
/*Wave Effect*/

/*Footer*/
footer{
    padding: 30px;
}
footer .content {
    display: flex;
    justify-content: center;
}
footer .content div:nth-child(2){
    width: 75%;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: center;
}

footer .footer-language-block{
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

footer .footer-logo{
    width: 170px;
}
footer .footer-main-menu ul{
    display: flex;
    gap: 20px;
}
footer .footer-main-menu ul li{
    list-style: none;
}
footer .footer-main-menu ul li a{
    color: var(--theme-color);
    font-size: 1rem;
    font-weight: bold;
}

footer nav.footer-language-block ul{
    display: flex;
    gap: 5px;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 10px;
}
footer nav.footer-language-block ul li{
    list-style: none;
}
footer nav.footer-secondary-menu ul{
    padding: 0;
    margin: 0;
}
footer nav.footer-secondary-menu ul li{
    list-style: none;
}
footer nav.footer-secondary-menu ul li a{
    font-size: 0.9rem;
    color: var(--theme-color);
}
footer .footer-social{
    display: flex;
    gap: 10px;
    margin: 10px 0 0 0;
    padding: 0;
}
footer .footer-social li{
    list-style: none;
}
footer .footer-social li img{
    width: 14px;
    height: 14px;
}

footer address, footer address a{
    font-size: 0.9rem;
    color: var(--gray);
    text-align: center;
}
footer .copyright, footer .copyright a{
    font-size: 0.8rem;
    text-align: center;
    color: var(--gray);
}
/*Footer*/