/*================================================
[  Table of contents  ]
================================================
 1 Google Font
 2 Import Css
 3 General
 4 Input and textarea
 5 Text color
 6 Title
 7 Button
 8 Background  color
 9 Background overlay color
10 Back to Top
11 Loader
12 Form
======================================
[ End table content ]
======================================*/

/*---------------------------------------------------------------------
2 import Css
-----------------------------------------------------------------------*/

@import url("ionicons.min.css");

/*---------------------------------------------------------------------
3 General
-----------------------------------------------------------------------*/

*::-moz-selection {
    background: #0053d5;
    color: #ffffff;
    text-shadow: none;
}

::-moz-selection {
    background: #0053d5;
    color: #ffffff;
    text-shadow: none;
}

::selection {
    background: #0053d5;
    color: #ffffff;
    text-shadow: none;
}

body {
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    color: #444444;
}

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

a:focus {
    text-decoration: none !important;
}

a:focus,
a:hover {
    color: #0053d5;
    text-decoration: none !important;
}

a,
button {
    outline: medium none !important;
    color: #0053d5;
}

.uppercase {
    text-transform: uppercase;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0px;
    color: #222222;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

label {
    font-weight: normal;
}

h1 {
    font-size: 36px;
    font-style: normal;
    line-height: 60px;
}

h2 {
    font-size: 28px;
    line-height: 34px;
    font-style: normal;
}

h3 {
    font-size: 24px;
    font-style: normal;
    line-height: 36px;
}

ul {
    margin: 0px;
    padding: 0px;
}

section {
    padding: 50px 0;
}

/*---------------------------------------------------------------------
4 Input and textarea
-----------------------------------------------------------------------*/

.form-control,
textarea {
    border: 2px solid #dddddd;
    outline: none;
    box-shadow: inherit !important;
}

textarea {
    padding: 10px 0 0 10px;
    border-radius: .25rem;
}

.form-control:hover,
.form-control:focus,
textarea:focus,
textarea:hover {
    border: 2px solid #0053d5;
}

/*---------------------------------------------------------------------
5 Text color
-----------------------------------------------------------------------*/

.text-white {
    color: #ffffff;
}

.text-dark {
    color: #222222;
}

/*---------------------------------------------------------------------
6 Title
-----------------------------------------------------------------------*/

.title-box .title {
    font-size: 36px;
    letter-spacing: 5px;
    margin-bottom: 0px;
}

.title-box p {
    font-size: 17px;
    line-height: 27px;
}

/*---------------------------------------------------------------------
7 Button
-----------------------------------------------------------------------*/

.button {
    background: #0053b3;
    /* Old browsers */
    background: -moz-linear-gradient(left, #0053b3 0%, #0053d5 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #0053b3 0%, #0053d5 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #0053b3 0%, #0053d5 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0053b3', endColorstr='#0053d5', GradientType=1);
    /* IE6-9 */
    color: #ffffff;
    padding: 15px 30px;
    display: inline-block;
    text-decoration: none !important;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    border-radius: 6px;
    letter-spacing: 1px;
}

.button:hover,
.button:focus {
    color: #ffffff;
    background: #0053d5;
    /* Old browsers */
    background: -moz-linear-gradient(left, #0053d5 0%, #0053b3 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #0053d5 0%, #0053b3 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #0053d5 0%, #0053b3 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0053d5', endColorstr='#0053b3', GradientType=1);
    /* IE6-9 */
}

/*---------------------------------------------------------------------
8 Background  color
-----------------------------------------------------------------------*/

.white-bg {
    background: #ffffff;
}

.gray-bg {
    background: #FAFAFA;
}

.main-bg {
    background: #0053d5;
}

.black-bg {
    background: #828286;
}

/*************************
9 BG - Images
*************************/

.parallax {
    background-size: cover !important;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -ms-background-size: cover !important;
    position: relative;
    z-index: 0;
    background-origin: initial;
    background-position: center center !important;
    background-repeat: no-repeat;
}

/*---------------------------------------------------------------------
Background overlay color
-----------------------------------------------------------------------*/

/* Background Gradient Black */

.bg-over-black-10:before {
    background: rgba(0, 0, 0, 0.1);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

.bg-over-black-20:before {
    background: rgba(0, 0, 0, 0.2);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

.bg-over-black-30:before {
    background: rgba(0, 0, 0, 0.3);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

.bg-over-black-40:before {
    background: rgba(0, 0, 0, 0.4);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

.bg-over-black-50:before {
    background: rgba(0, 0, 0, 0.5);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

.bg-over-black-60:before {
    background: rgba(0, 0, 0, 0.6);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

.bg-over-black-70:before {
    background: rgba(0, 0, 0, 0.7);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

.bg-over-black-80:before {
    background: rgba(0, 0, 0, 0.8);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

.bg-over-black-90:before {
    background: rgba(0, 0, 0, 0.9);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

/*---------------------------------------------------------------------
10 Back to Top
-----------------------------------------------------------------------*/

#back-to-top .top {
    z-index: 999;
    position: absolute;
    margin: 0px;
    color: #ffffff;
    background: #0053b3;
    background: -moz-linear-gradient(left, #0053b3 0%, #0053d5 100%);
    background: -webkit-linear-gradient(left, #0053b3 0%, #0053d5 100%);
    background: linear-gradient(to right, #0053b3 0%, #0053d5 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0053b3', endColorstr='#0053d5', GradientType=1);
    bottom: 20px;
    right: 20px;
    z-index: 9;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 44px;
    border-radius: 5px;
    overflow: hidden;
}

#back-to-top .top i {
    font-size: 30px;
    position: absolute;
    left: 17px;
    top: 6px;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

#back-to-top:hover .top i {
    top: -3px;
}

#back-to-top .top:hover {
    background: #0053d5;
    background: -moz-linear-gradient(left, #0053d5 0%, #0053b3 100%);
    background: -webkit-linear-gradient(left, #0053d5 0%, #0053b3 100%);
    background: linear-gradient(to right, #0053d5 0%, #0053b3 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0053d5', endColorstr='#0053b3', GradientType=1);
    color: #fff;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(34, 34, 34, 0.1);
    -moz-box-shadow: 0px 0px 30px 0px rgba(34, 34, 34, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(34, 34, 34, 0.1);
}

/*---------------------------------------------------------------------
11 Loader
-----------------------------------------------------------------------*/

#loading {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 9999;
}

#loading img {
    width: 150px;
}

/*---------------------------------------------------------------------
12 Form
-----------------------------------------------------------------------*/

form {
    padding: 30px 30px;
    background-position: left center;
    background-attachment: fixed;
    background-repeat: repeat;
    border: 2px solid #0053d5;
    border-radius: 6px;
}

form .form-control {
    height: 45px;
}

form label {
    font-weight: 600;
}

form .link {
    color: #222222;
    font-weight: 600;
}

button.button {
    outline: inherit !important;
    border: none;
    cursor: pointer;
}