/* ==========================================================================Global Settings========================================================================== */


/** Remove text-shadow in selection highlight.*/

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}


/** Body settings, change it as required*/

body {
    font-size: 16px;
    line-height: 1.2;
    color: #161616;
    font-family: sans-serif, arial;
    text-rendering: optimizeLegibility;
}

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


/** Links*/

a,
a:hover {
    text-decoration: none;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}


/** A better looking default horizontal rule*/

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}


/** Remove the gap between images and the bottom of their containers.*/

img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
    -ms-interpolation-mode: bicubic;
}


/** Allow only vertical resizing of textareas.*/

textarea {
    resize: none;
}


/** Other*/

*:focus {
    outline: none !important;
}


/* ==========================================================================Helper classes========================================================================== */

img.alignleft {
    float: left;
    margin: 0 10px 10px 0;
    display: block;
}

img.alignright {
    float: right;
    margin: 0 0px 10px 10px;
    display: block;
}

img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

.hidden {
    display: none !important;
    visibility: hidden;
}

.clear {
    clear: both;
    height: 1px;
    line-height: 1px;
}


/** Other*/


/* ==========================================================================Layout========================================================================== */


/**container*/

#container {
    overflow-x: hidden;
    min-width: 320px;
    display: flex;
    min-height: 100vh;
    flex-wrap: wrap;
    align-items: center;
}

@media (min-width:1200px) {
    .container {
        max-width: 1510px;
    }
}


/* ==========================================================================Common Functionalities & UI Elements========================================================================== */


/** Typography*/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Gilroy';
    font-weight: 700;
}

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

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

h1 {
    font-size: 40px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 17px;
}

h6 {
    font-size: 14px;
}

@media (max-width: 1199px) {}

@media (max-width: 767px) {}


/* Lists ---------------------- */

ul,
ol {
    margin-bottom: 16px;
    list-style-position: outside;
}

ul li ul,
ul li ol {
    margin-left: 20px;
    margin-bottom: 0;
}

ol {
    margin-left: 20px;
}

ol li ul,
ol li ol {
    margin-left: 20px;
    margin-bottom: 0;
}


/*
*btn
*/

.btn:focus {
    box-shadow: none;
}

.btn:active+.btn:focus,
.btn:active:focus {
    box-shadow: none;
}

/* header */
#header {
    margin-bottom: 20px;
}
#header .logo img {
    max-height: 200px;
}

#content p span {
    border-bottom: 1px solid #266342;
}

@media (max-width: 767px) {
    #header .logo img {
        max-height: 150px;
    }
    h1 {
        font-size: 28px;
    }
}