html, body, div, span, 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,  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%;
	vertical-align: baseline;
	list-style: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, {
	display: block;
}
html{
    height: 100%;
}
body {
    height: 100%;
    width: 100%;
	margin: 0px;
    background-color: #F5F5F5;
}
*{
    box-sizing: border-box;
}

p,a,li,span,div,option,button{
	font-family: 'Inter', sans-serif;
	text-decoration: none;
}
h1,h2,h3,h4,h5,h6{
    font-family: 'Inter', sans-serif;
}
.app{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.line{
  padding: 14px 0px;
  width: 100%;    
   background: #2C4B9F;
}
.wrapp{
    width: 90%;
    margin: auto;
}
header .wrapp{
    display: flex;
    justify-content: space-between;
    padding: 30px 0px;
}
header .wrapp .col{
    padding-top: 30px;
    width: 50%;
}
header .wrapp .col:nth-child(1){
    border-right: 2px solid #2C4B9F;
}	
header .wrapp .col:nth-child(2){
     border-left: 2px solid #2C4B9F;
     padding-left: 60px;
    padding-right: 210px;
   color: #2C4B9F;
    font-size: 20px;
}	
.message{
    padding: 50px 0px;
}
.message .wrapp{
    display: flex;
    justify-content: space-between;
}
.message .col{
    width: 50%;
}
.message .col:nth-child(1){
       display: flex;
      flex-direction: column;
      gap:10px;
}
.message .col:nth-child(1) h1{
     color:#2B3990;
     font-size: 32px;
}
.message .col:nth-child(1) .text{
    color: #55636B;
}
.link span{
     color: #55636B;
     
     border-bottom: 1px solid #55636B;
}

.message .col:nth-child(2) img{
    width: 100%;
    display: block;
}

footer{
    background: #E9FAFF;
    padding: 40px 0px 0px;
    
}

footer .wrapp{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer .wrapp .col{
    width: 50%;
     display: flex;
      flex-direction: column;
      gap:10px;
}
footer .wrapp .col:nth-child(1){
    border-right: 4px solid #2C4B9F;
    padding-right: 50px;
    padding-top: 30px;
    padding-bottom: 30px;
}	
footer .wrapp .col:nth-child(2){
    
     padding-left: 60px;
}	
footer .wrapp .col:nth-child(2) h2{
    color: #2C4B9F;
    font-size: 22px;
    font-size: 16px;
}
footer .wrapp .col:nth-child(2) p{
    color: #55636B;
    margin-top: 30px;
}
footer .line{
    margin-top: 70px;
    font-size: 16px;
}

footer .line p{
    text-align: center;
    color: #ffffff;
    font-size: 12px;
}

@media screen and (max-width:1272px){
    header .wrapp .col:nth-child(2){
        padding-right: 10px;
    }
}

@media screen and (max-width:960px){
    header .wrapp{
        flex-direction: column;
    }
    header .wrapp .col{
         width: 100%;
    }
    header .wrapp .col:nth-child(1){
        border: none;
         border-bottom: 4px solid #2C4B9F;
        padding: 0px 0px 40px 0px;
        
        
    }
    header .wrapp .col:nth-child(1) img{
        margin: auto;
        display: block;
        width: 100%;
    }
    header .wrapp .col:nth-child(2){
        border: none;
        padding: 30px 0px 0px 0px;
    }
    header .wrapp .col:nth-child(2) span{
        width: 100%;
        display: block;
    }
    .message .wrapp{
        flex-direction: column;
    }
    .message .wrapp .col{
        width: 100%;
        padding: 0px;
    }
    footer .wrapp{
        flex-direction: column;
        
    }
    footer .wrapp .col{
        width: 100%;
        padding: 0px;
    }
    .footer .wrapp .col:nth-child(1){
        border: none;
         border-bottom: 4px solid #2C4B9F;
    }
    footer .wrapp .col:nth-child(2){
        padding: 0px;
    }
}