/* Reset CSS :: Start */

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;
}
/* Reset CSS :: End */

/*** Global CSS :: Start ***/
body{
    font-size: 18px;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
    background: #F5F6FC;
    position: relative;
}
h1{
    font-size: 36px;
}
a{
    color: #0F6BAC;
    transition: 0.4s;
    font-weight: 500;
}
a:hover{
    color: #0C568B;
}
.color-primary{
    color: #0F6BAC;
}
/*** Global CSS :: End ***/

.page-head {
    text-align: center;
    padding: 20px;
    position: absolute;
    left: 0;
    right: 0;
    top: 20px;
}
.page-head .logo{
    height: 44px;
    margin: 0 0 20px;
}
.page-head h1{
    font-size: 36px;
    font-weight: 500;
}
.page-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.content-wrap{
    display: flex;
    align-items: center;
    width: 100%;
    padding: 170px 0 60px;
}
.content-img, .content-text{
    width: 50%;
    text-align: center;
    padding: 30px;
}
.content-img img{
    width: 100%;
    max-height: 440px;
}
.content-text .welcome{
    font-size: 48px;
    font-weight: 500;
    color: #000;
    margin: 0 0 20px;
    text-transform: uppercase;
}
.content-text p{
    font-size: 20px;
    margin: 0 0 20px;
}
.content-text p:last-child{
    margin: 0;
}
.page-footer{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 13px;
    padding: 20px;
}

/*** Media Queries :: Start ***/
@media only screen and (min-width: 1560px) {
    .page-head .logo{
        height: 60px;
    }
    .content-img img{
        max-height: 540px;
    }
    .page-head h1{
        font-size: 40px;
    }
    .content-text p{
        font-size: 24px;
    }
    .page-footer{
        font-size: 16px;
    }
}

@media only screen and (max-width: 992px) {
    .content-wrap{
        flex-wrap: wrap;
    }
    .content-img, .content-text{
        width: 100%;
        padding: 15px 30px;
    }
    .content-img img{
        max-height: 380px;
    }
}

@media only screen and (max-width: 767px) {
    .content-wrap{
        padding: 150px 0 60px;
    }
    .page-head .logo{
        height: 42px;
        margin: 0 0 10px;
    }
    .page-head h1{
        font-size: 32px;
    }
    .content-text .welcome{
        font-size: 36px;
    }
    .content-text p{
        font-size: 16px;
    }
}

@media only screen and (max-width: 376px) {
    .page-head{
        padding: 15px 20px;
    }
    .content-wrap{
        padding: 140px 0 60px;
    }
    .page-head .logo{
        height: 40px;
        margin: 0 0 10px;
    }
    .content-img, .content-text{
        width: 100%;
        padding: 15px 20px;
    }
    .page-head h1{
        font-size: 28px;
    }
    .content-text .welcome{
        font-size: 28px;
        margin: 0 0 10px;
    }
    .content-text p{
        font-size: 15px;
    }
}
/*** Media Queries :: End ***/