/*
@File: Emilono Template Styles

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the
template.

This files table contents are outlined below>>>>>

*******************************************
*******************************************

** - Default CSS
** - Preloader CSS
** - Main Banner CSS
** - Sidebar Modal CSS
** - Footer CSS
*/


/*================================================
Default CSS
=================================================*/

@import url("https://fonts.googleapis.com/css?family=Barlow:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&amp;display=swap");
@import url("https://fonts.googleapis.com/css?family=Dosis:200,300,400,500,600,700,800&amp;display=swap");
body {
    padding: 0;
    margin: 0;
    font-family: "Barlow", sans-serif;
}

a {
    text-decoration: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

a:hover,
a:focus {
    text-decoration: none;
}

p:last-child {
    margin-bottom: 0;
}

.d-table {
    width: 100%;
    height: 100%;
}

.d-table-cell {
    vertical-align: middle;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000000;
}

img {
    max-width: 100%;
}


/*================================================
Preloader CSS
=================================================*/

.preloader {
    position: fixed;
    left: 0;
    width: 0;
    height: 100%;
    width: 100%;
    text-align: center;
    z-index: 9999999;
    background-color: #0969B4;
}

.preloader .loader {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-block;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 45%;
    -webkit-transform: translateY(-45%);
    transform: translateY(-45%);
}

.preloader .loader .loader-outter {
    position: absolute;
    border: 4px solid #ffffff;
    border-left-color: transparent;
    border-bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
    animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

.preloader .loader .loader-inner {
    position: absolute;
    border: 4px solid #ffffff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    left: calc(50% - 20px);
    top: calc(50% - 20px);
    border-right: 0;
    border-top-color: transparent;
    -webkit-animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
    animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

@-webkit-keyframes loader-outter {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loader-outter {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes loader-inner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes loader-inner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}


/*================================================
Navbar CSS
=================================================*/

.navbar-area {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 99;
    padding-top: 30px;
}

.navbar-menu {
    text-align: right;
}

.navbar-menu .logo {
    text-align: left;
}

.navbar-menu .logo a {
    display: inline-block;
}

.navbar-menu .logo img {
    max-width: 300px;
}

.navbar-menu .burger-menu {
    cursor: pointer;
    text-align: center;
    margin-left: auto;
    width: 45px;
    height: 45px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    padding-top: 13px;
    padding-right: 10px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.navbar-menu .burger-menu span {
    display: block;
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 5px;
    margin-bottom: 3px;
    margin-left: auto;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.navbar-menu .burger-menu span:last-child {
    margin-bottom: 0;
}

.navbar-menu .burger-menu span:nth-child(2),
.navbar-menu .burger-menu span:nth-child(3) {
    width: 23px;
}

.navbar-menu .burger-menu:hover span {
    width: 23px !important;
}


/*================================================
Main Banner CSS
=================================================*/

.main-banner {
    position: relative;
    z-index: 1;
    height: 100vh;
    overflow: hidden;
    background-color: #ffffff;
}

.main-banner::before {
    content: '';
    position: absolute;
    right: -200px;
    top: 0;
    width: 900px;
    height: 100%;
    background-image: url(../img/color-shape3.png);
    background-position: bottom right;
    background-size: cover;
    background-repeat: no-repeat;
}

.main-banner-content #timer {
    margin-bottom: 15px;
}

.main-banner-content #timer div {
    display: inline-block;
    color: #000000;
    text-align: center;
    position: relative;
    margin-left: 30px;
    margin-right: 30px;
    font-size: 50px;
    font-family: "Dosis", sans-serif;
    font-weight: 700;
}

.main-banner-content #timer div span {
    display: block;
    text-transform: capitalize;
    margin-top: -8px;
    color: #1e1b1b;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

.main-banner-content #timer div:last-child {
    margin-right: 0;
}

.main-banner-content #timer div:last-child::before {
    display: none;
}

.main-banner-content #timer div:first-child {
    margin-left: 0;
}

.main-banner-content #timer div::before {
    content: ':';
    position: absolute;
    right: -39px;
    top: -16px;
    font-size: 60px;
    color: #000000;
}

.main-banner-content h1 {
    margin-bottom: 0;
    font-size: 55px;
    font-weight: 700;
}

.main-banner-content p {
    color: #666666;
    line-height: 1.5;
    max-width: 600px;
    margin-top: 15px;
    margin-bottom: 0;
    text-align: justify;
}

.main-banner-content .newsletter-form {
    margin-top: 28px;
    position: relative;
    max-width: 480px;
}

.main-banner-content .newsletter-form .input-newsletter {
    display: block;
    width: 100%;
    border-radius: 30px;
    height: 60px;
    font-size: 15px;
    border: none;
    background-color: #ffffff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: 0;
    color: #000000;
    padding-left: 20px;
    -webkit-box-shadow: 0 5px 28.5px 1.5px rgba(149, 152, 200, 0.15);
    box-shadow: 0 5px 28.5px 1.5px rgba(149, 152, 200, 0.15);
}

.main-banner-content .newsletter-form .input-newsletter::-webkit-input-placeholder {
    color: #666666;
}

.main-banner-content .newsletter-form .input-newsletter:-ms-input-placeholder {
    color: #666666;
}

.main-banner-content .newsletter-form .input-newsletter::-ms-input-placeholder {
    color: #666666;
}

.main-banner-content .newsletter-form .input-newsletter::placeholder {
    color: #666666;
}

.main-banner-content .newsletter-form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 60px;
    line-height: 60px;
    letter-spacing: .5px;
    text-transform: uppercase;
    background-color: #0969B4;
    border: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: 0;
    color: #ffffff;
    border-radius: 33px;
    padding: 0 30px;
    -webkit-box-shadow: 0 5px 28.5px 1.5px rgba(127, 74, 162, 0.25);
    box-shadow: 0 5px 28.5px 1.5px rgba(127, 74, 162, 0.25);
    font-family: "Dosis", sans-serif;
    font-weight: 600;
    font-size: 15px;
}

.main-banner-content .newsletter-form button:hover {
    color: #ffffff;
    background-color: #000000;
}

.main-banner-content .newsletter-form #validator-newsletter {
    font-size: 15px;
    position: absolute;
    left: 0;
    bottom: -31px;
    color: #000000;
}

.main-banner-content .newsletter-form #validator-newsletter.validation-danger {
    color: red;
}

.main-banner-image {
    position: relative;
    text-align: center;
    left: -75px;
    bottom: -10px;
}


/*================================================
Footer CSS
=================================================*/

.footer-area {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    z-index: 1;
    padding-top: 30px;
    padding-bottom: 30px;
}

.footer-area ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}

.footer-area ul li {
    display: inline-block;
    color: #000000;
    margin-right: 2px;
}

.footer-area ul li span {
    display: inline-block;
    margin-right: 3px;
    color: #0969B4;
    font-size: 15px;
    font-weight: 500;
}

.footer-area ul li a {
    display: inline-block;
    width: 30px;
    height: 30px;
    color: #403092;
    border-radius: 50%;
    background-color: transparent;
    text-align: center;
    line-height: 29px;
    font-size: 12.5px;
    border: 1px solid #eeeeee;
}

.footer-area ul li a:hover {
    background-color: #0969B4;
    color: #ffffff;
    border-color: #0969B4;
    -webkit-box-shadow: rgba(93, 40, 119, 0.57) 0px 12px 24px -10px;
    box-shadow: rgba(93, 40, 119, 0.57) 0px 12px 24px -10px;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}


/*================================================
Contact CSS
=================================================*/

.contact-area .title {
    margin-top: 30px;
    margin-bottom: 10px;
    /* text-align: center; */
}

.contact-area .title h2 {
    margin-bottom: 0;
    font-size: 36px;
    font-weight: 700;
    font-family: "Dosis", sans-serif;
}

.contact-area .contact-info {
    /* text-align: center; */
    margin-top: 30px;
}

.contact-area .contact-info .contact-info-content h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
    font-family: "Dosis", sans-serif;
}

.contact-area .contact-info .contact-info-content h2 {
    margin-bottom: 0;
    font-size: 28px;
    font-weight: 700;
    font-family: "Dosis", sans-serif;
    display: flex;
}

.contact-area .contact-info .contact-info-content h2 a {
    display: inline-block;
    color: #0969B4;
}

.contact-area .contact-info .contact-info-content h2 a:hover {
    color: #000000;
}

.contact-area .contact-info .contact-info-content h2 a:not(:first-child) {
    color: #000000;
}

.contact-area .contact-info .contact-info-content h2 a:not(:first-child):hover {
    color: #0969B4;
}

.contact-area .contact-info .contact-info-content h2 span {
    display: block;
    color: #57647c;
    margin-top: 8px;
    margin-bottom: 2px;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 18px;
    font-weight: 500;
}