/*Fonts*/

@font-face {
    font-family: 'Epilogue';
    src: url('../fonts/Epilogue-Bold.eot');
    src: url('../fonts/Epilogue-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Epilogue-Bold.woff2') format('woff2'),
    url('../fonts/Epilogue-Bold.woff') format('woff'),
    url('../fonts/Epilogue-Bold.ttf') format('truetype'),
    url('../fonts/Epilogue-Bold.svg#Epilogue-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Epilogue';
    src: url('../fonts/Epilogue-Regular.eot');
    src: url('../fonts/Epilogue-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Epilogue-Regular.woff2') format('woff2'),
    url('../fonts/Epilogue-Regular.woff') format('woff'),
    url('../fonts/Epilogue-Regular.ttf') format('truetype'),
    url('../fonts/Epilogue-Regular.svg#Epilogue-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*Fonts*/




/*css Reset*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

a{
    text-decoration: none !important;
}

 /*css Reset*/

body{
    font-family: 'Epilogue';
    background-color: #043843;
    background-image: url("../image/wrapper.svg");
    background-size: cover;
    background-position: center center;
    min-width: 320px;
}

 .wrapper{
     display: flex;
     align-items: center;
     justify-content: center;
     flex-wrap: wrap;
     width: 100%;
     height: 100vh;

 }

 .main__center{
     width: 100%;
     max-width: 1232px;
     padding: 0px 16px;

 }



.logo{
    width: 350px;
    height: 88px;
    background-image: url("../image/bannerlogo.svg");
    background-size: contain;
    margin-bottom: 32px;
    background-repeat: no-repeat;
}

 .infoTitle{
     margin-bottom: 24px;
 }

 .infoTitle>h1{
     font-size: 68px;
     line-height: 78px;
     color: #FFFFFF;
     font-weight: bold;
 }

 .infoText{
     width: 100%;
     max-width: 688px;
     margin-bottom: 32px;
 }

 .infoText>p{
     color: #FFFFFF;
     font-size: 16px;
     line-height: 26px;
     text-align: left;
     font-weight: normal;
 }

 .buttons{
     width: 100%;
     display: flex;
     flex-wrap: wrap;
     justify-content: flex-start;
     margin-bottom: 32px;

 }

 .facebook_button{
     display: flex;
     align-items: center;
     justify-content: center;
     text-decoration: none;
     width: 172px;
     height: 56px;
     border: 5px;
     background-color: #ffffff;
     background-size: 100% 100%;
     margin-right: 16px;
     box-sizing: border-box;
     border-radius: 5px;

 }

 .facebook_button>span{
     color: #000000;
     font-size: 16px;
     line-height: 26px;
     display: flex;
     align-items: center;
 }

 .facebook_button>span::before{
     display: inline-block;
     content: "";
     width: 24px;
     height: 24px;
     background-image: url("../image/fb.svg");
     background-size: cover;
     position: relative;
     margin-right: 4px;
 }

 .instagram_button{
     display: flex;
     align-items: center;
     justify-content: center;
     width: 172px;
     height: 56px;
     border: 5px;
     background-size: 100% 100%;
     background-color: #ffffff;
     box-sizing: border-box;
     border-radius: 5px;


 }

 .instagram_button>span {
     color: #000000;
     font-size: 16px;
     line-height: 26px;
     text-decoration: none !important;
     display: flex;
     align-items: center;
 }


 .instagram_button>span::before{
     display: inline-block;
     content: "";
     width: 24px;
     height: 24px;
     background-image: url("../image/ins.svg");
     background-size: cover;
     position: relative;
     margin-right: 4px;
 }

 .link{
     margin-top: 32px;
 }

 .link>a{
     color: #FFFFFF;
     font-size: 14px;
     line-height: 16px;
     text-decoration: none;
     font-weight: normal;
 }


 /*responsive*/
@media only screen and (max-width: 561px) {

    .logo{
        width: 272px;
        height: 68px;
    }

    .infoTitle>h1{
        font-size: 30px;
        line-height: 31px;
    }
    .infoText>p{
        font-size: 16px;
        line-height: 28px;
    }
    .facebook_button{
        width: 164px;
        height: 56px;
        margin-right: 15px;
    }

    .instagram_button {
        width: 164px;
        height: 56px;

    }

}

@media only screen and (max-width: 390px){
    .facebook_button{
        width: 164px;
        height: 56px;
        margin-right: 15px;
        margin-bottom: 10px;
    }
}

 /*responsive*/