/* ----------------------------------
Basic CSS
-------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');
body {
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
div,
a {
    color: #000000;
    margin: 0;
    padding: 0;
    line-height: 1.4;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
}

a {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    border: none;
    outline: 0 none;
}

img {
    max-width: 100%;
}

.section-padding {
    padding: 80px 0;
}

.pt0 {
    padding-top: 0;
}

.pb0 {
    padding-bottom: 0;
}

/*Header*/
.header-area {
    position: relative;
    padding: 50px 0;
    background: #124767;
    z-index: 1;
}
.header-area::before {
    width: 100%;
    height: 100%;
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    background: url(../img/header-bg.png) no-repeat scroll left center / contain;
    z-index: 1;
}
.header-wrap img {
	width: 700px;
    margin-bottom: 30px;
}
.header-wrap h2 {
    font-weight: 300;
	text-transform: uppercase;
	font-size: 30px;
    color: #ffffff;
}
.header-wrap h2 span {
    font-weight: 600;
}

/*Promo Area CSS*/
.promo_area {
    padding: 70px 0;
}
.sec-title h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}
.insta-wrapper {
    width: 525px;
    margin: 0 auto;
}
.insta-wrapper {
    margin-top: 30px;
}
.share-step h2, .share-info h2 {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    padding-left: 35px;
}
.share-step h2:before, .share-info h2:before {
    position: absolute;
    content: "\f14a";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-family: 'FontAwesome';
    font-size: inherit;
}
.share-info p {
    font-size: 20px;
    padding-left: 35px;
    margin-bottom: 15px;
}
.social-img img {
    max-width: 100%;
    margin-bottom: 0;
}

/*Slider*/
.slider-wrapper.slick-slider {
    max-width: 545px;
    margin: 0 auto;
}
.single-slide {
    max-width: 525px;
}
.slick-prev, .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-next.slick-arrow, .slick-prev.slick-arrow {
    background: #00AEEF;
    border: 1px solid #00AEEF;
    border-radius: 4px;
}
.slick-prev:before, .slick-next:before {
    color: #fff;
}
/*Footer CSS*/
.footer-area {
    position: relative;
    padding: 50px 0;
    background: #124767;
    z-index: 1;
}
.footer-area::before {
    width: 100%;
    height: 100%;
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    background: url(../img/header-bg.png) no-repeat scroll left center / contain;
    z-index: 1;
}
.footer-wrap h1 {
	font-size: 80px;
	text-transform: uppercase;
	line-height: 1;
	color: #fff;
	margin-bottom: 20px;
}
.social h2 {
	font-size: 30px;
	color: #fff;
}
.social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
    gap: 30px;
}
.social ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
}
.social ul li a {
    font-size: 30px;
	color: #fff;
}
.social ul li a:hover {
    color: #2FC0CD
}