/*Main stylesheet*/


/*Reset CSS*/
html, body, div, span, applet, object, iframe, 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;
}

img{
    max-width: 100%;
}

/*importing font family*/

body{
    height: 100vh;
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: linear-gradient(to right top, #004066, #0099cc, #00cccc);
    margin: 0;
    padding: 0;
}
.text-white{
    color: #fff;
}
.text-center{
    text-align: center !important;
}
.logo_wrape {
    background: white;
    max-width: 260px;
    height: 105px;
    margin: 0 auto;
    box-shadow: 0px 0px 5px 5px #d3d3d3;
    -webkit-box-shadow: 0px 0px 5px 5px #d3d3d3;
    border-radius: 0px 0px 75% 75%;
    -webkit-border-radius: 0px 0px 75% 75%;
    transition: all 0.5s linear !important;
}
.logo_wrape:hover{
    transform: scale(1.02);
}
.logo_wrape a{
    display: block;
}
.page_content h2 {
    font-size: 52px;
    line-height: 56px;
    font-weight: 600;
    margin: 190px auto 15px;
}

.page_content .btn {
    font-size: 20px;
    color: #000;
    background: #fff;
    font-weight: 600;
    display: block;
    max-width: 300px;
    margin: 0 auto;
    padding: 12px 5px;
    transition: all 0.5s linear !important;
}
.page_content .btn:hover{
    background: #00bccc;
    color: #fff !important;
     transform: scale(1.02);
}
@media only screen and (max-width: 767px) {
  .page_content h2 {
    font-size: 36px;
    line-height: 42px;
    margin: 60px auto 15px;
}
    .page_content .btn {
    font-size: 17px !important;
    }
}