@charset "utf-8";



@font-face { font-family: 'Vonca Exp'; src: local('Vonca Bold Regular'), local('Vonca-MediumBoldRegular'), url('fonts/Vonca-Medium.woff') format('woff2'), url('fonts/Vonca-Medium.woff') format('woff'), url('fonts/Vonca-Medium.woff') format('truetype'); font-weight: bold; font-style: normal; font-display: swap; }



* {
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    color: #000000;
    transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

body {

    /*background: #fff;*/
    background: url("../images/body-bg.jpg");

    color: #000;
}

p {
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
    color: #000000;
}

a {}

a small {
    font-size: 92%;
}

a:hover {

    text-decoration: none;
}

.main-wrapper {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%
}
.main-wrapper .container{
        padding-bottom: 50px;
    background: #ffffffb0;
    
}

.logo {
    display: inline-block;
    margin-bottom: 10px;
    width: 440px
}

.logo img {
    width: 100%
}

.content h2 {
    font-size: 40px;
    color: #000;
    margin-bottom: 20px;
    font-family: 'Vonca Exp';
    font-weight: 600;
    line-height: 1;
}

.content p {
    font-size: 18px;
    color: #000;
    opacity: 0.7;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

.content a {
    color: #000;
    font-size: 18px;
      transition: all 0.3s;
    opacity: 1;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.content a:hover {
    opacity: 0.6
}

::selection {
    color: #fff;
    background: #8f052e;
}

@media screen and (max-width: 1280px) {

    .logo {
        display: inline-block;
        margin-bottom: 30px;
        width: 280px;
    }

}

@media screen and (max-width: 991px) {}

@media screen and (max-width: 767px) {
    body { background-position: top center;}

    .logo {
        width: 220px; margin-bottom: 20px
    }

    .content h2 {
        font-size: 13px; margin-bottom: 10px;
    }

    .content a , .content p {
        font-size: 14px; line-height: 1.5;
        display: block;
    }

}