::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #d9eaff
}

::-webkit-scrollbar-thumb {
    background: #0087ff;
}

::-webkit-scrollbar-thumb:active {
    background: #005fb4;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

body {
    margin: 0;
    padding: 0;
    position: relative;
    height: 100vh;
    overflow: hidden
}

a {
    text-decoration: none;
    color: #1B305B;
    display: inline-block;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out
}

h2 {
    font: 600 58px 'Poppins';
    color: #1b305b;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    position: relative;
    margin-top: 0;
    text-shadow: -3px 2px 1px #7688a2
}

h3,
h4 {
    color: #1B305B;
    font-family: 'Poppins';
}

section {
    padding: 6% 0;
}

section:first-of-type {
    padding-top: 10%
}

section p {
    font: 500 16px 'Poppins';
    color: #7688a2
}

.container {
    padding-left: 12%;
    padding-right: 12%;
    position: relative
}

.flex {
    width: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-2 > div {
    width: 44%;
}

.flex-3 > div,
.flex3-2 > div:first-of-type,
.flex2-3 > div:last-of-type {
    width: calc((100% / 3) - 2%)
}

.flex-4 > div {
    width: 23%;
}

.flex3-2 > div:last-of-type,
.flex2-3 > div:first-of-type {
    width: calc(100% - (100% /3) - 2%)
}

.jc-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.jc-space {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.ai-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.ac-space {
    -ms-flex-line-pack: distribute;
    align-content: space-around
}

.res-img {
    width: 100%
}

.unstyled {
    padding: 0;
    margin: 0;
    list-style: none
}

.unstyled li {
    display: inline-block
}

.btn {
    position: relative;
    padding: 15px 46px;
    text-align: center;
    font: 600 15px 'Poppins';
    border-radius: 4px;
    color: #fff;
    background: #0087ff;
    -webkit-box-shadow: 0 15px 20px 0px #cee8ff;
    box-shadow: 0 15px 20px 0px #cee8ff;
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    margin-top: 1.7em;
}

.btn-light {
    color: #0087ff;
    background: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn-border {
    font-size: 14px;
    border: 2px solid #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 12px 35px;
    background: transparent;
    border-radius: 0;
    z-index: 1;
    margin: 0;
    overflow: hidden
}

.btn-border:after {
    content: '';
    position: absolute;
    bottom: -100%;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: #fff;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out
}

.btn-border:hover {
    color: #0087ff
}

.btn-border:hover:after {
    bottom: 0%
}

.colored {
    color: #0087ff;
    font-size: 22px;
    margin-bottom: 0
}

.txt-center {
    text-align: center
}

p.alert {
    background: #ffdada;
    padding: 9px;
    color: #ff1212;
    border-radius: 4px;
    -webkit-box-shadow: 5px 5px 20px rgba(55, 84, 170, 0.1), -5px -5px 20px rgba(55, 84, 170, 0.1);
    box-shadow: 5px 5px 20px rgba(55, 84, 170, 0.1), -5px -5px 20px rgba(55, 84, 170, 0.1);
}

p.success {
    background: #daffe7;
    padding: 9px;
    color: #6d9c7e;
    border-radius: 4px;
    -webkit-box-shadow: 5px 5px 20px rgba(55, 84, 170, 0.1), -5px -5px 20px rgba(55, 84, 170, 0.1);
    box-shadow: 5px 5px 20px rgba(55, 84, 170, 0.1), -5px -5px 20px rgba(55, 84, 170, 0.1);
}

/* Header */

header {
    height: 100vh;
    position: relative
}

header * {
    position: relative;
    z-index: 1
}

header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(0, 0, 0, 0.9)), color-stop(100%, rgba(27, 48, 91, 0.9)));
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.9) 0%, rgba(27, 48, 91, 0.9) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#8cc9ff', endColorstr='#0087ff', GradientType=1);
    z-index: 0;
}

header nav {
    font: 600 16px 'Poppins';
    width: 100%;
    padding-top: 40px;
    z-index: 500
}

header nav div:nth-of-type(2) li a {
    margin: 0 14px;
    font-size: 15px;
    position: relative;
    color: #fff;
}

header nav div:nth-of-type(2) li a:hover {
    color: #0087ff
}

header nav div:nth-of-type(2) a:after {
    content: "";
    background: #ffffff;
    width: 100%;
    height: 0;
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 4px;
    -webkit-transition: .15s ease-in-out;
    transition: .15s ease-in-out;
}

header nav div:nth-of-type(2) li a:hover:after {
    height: 4px;
}

header nav .logo {
    width: 170px;
}

header > div {
    width: 80%
}

header > div div {
    height: 250px
}

header > div p {
    font: 600 48px 'Poppins';
    color: #0087ff;
    text-shadow: -3px 2px 0px #005098;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .6s ease-in-out;
    transition: .6s ease-in-out
}

header > div p.show {
    opacity: 1;
    visibility: visible
}

header > div p span {
    color: #ffffff;
    text-shadow: -3px 2px 0px #7688a2;
}

header > div i {
    color: #ffffff;
    font-size: 50px;
    margin-right: 12px;
    cursor: pointer;
    opacity: .7
}

header > div i:hover {
    opacity: 1
}

header .slider-images img,
header .slider-images {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1
}

header .slider-images img {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: .6s ease-in-out;
    transition: .6s ease-in-out;
    -o-object-fit: cover;
    object-fit: cover;
}

header .slider-images img.show-img {
    visibility: visible;
    opacity: 1
}

section div {
    position: relative;
}

/*Get Started*/

.start {
    background-color: #26c195;
    background-image: url(../images/ready.jpg);
    background-blend-mode: color-burn;
}

.start h2 {
    font-family: 'Poppins';
    font-size: 48px;
    margin-bottom: 0;
    text-shadow: none
}

.start p {
    color: #fff
}

.start .btn {
    color: #1B305B
}

/*Footer*/

footer {
    background: #1B305B;
    padding-top: 5%;
    padding-bottom: 2%;
}

footer h3 {
    color: #26c195;
    font-size: 22px;
}

footer a,
footer p {
    color: #7688a2;
    font-family: 'Poppins';
    font-size: 14px
}

footer a:hover {
    color: #fff
}

footer .mail a {
    color: #fff;
    font-size: 22px;
}

footer .mail a:hover {
    color: #0087ff
}

footer ul.unstyled li {
    display: block
}

footer .flex:last-of-type {
    margin-top: 6%;
    padding-top: 2%;
    border-top: 1px dotted #7688a2
}

footer .footer-img {
    width: 170px
}

footer .social i {
    width: 40px;
    height: 40px;
    padding: 12px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    opacity: .8;
    color: #1B305B;
    margin-right: 4px;
    display: inline-block;
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out
}

footer .social i:hover {
    opacity: 1
}

footer .fa-facebook-f:hover {
    color: #3b5998
}

footer .fa-twitter:hover {
    color: #1da1f2
}

footer .fa-linked-in:hover {
    color: #0077b5
}

/*Loader*/

.loading {
    position: fixed;
    z-index: 3000;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: #fff
}

.loader {
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    border: 4px solid #d9eaff;
    border-top: 4px solid #0087ff;
    border-radius: 50%;
    height: 75px;
    width: 75px;
}

@-webkit-keyframes spin {
    25% {
        border-top-color: #26c195;
    }

    50% {
        border-top-color: #F8C545;
    }

    75% {
        border-top-color: #EB6872;
    }

    to {
        border-top-color: #0087ff;
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    25% {
        border-top-color: #26c195;
    }

    50% {
        border-top-color: #F8C545;
    }

    75% {
        border-top-color: #EB6872;
    }

    to {
        border-top-color: #0087ff;
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* Responsive */

.visible-sm {
    display: none
}

.humburger {
    width: 48px;
    padding: 10px 8px;
    height: 45px;
    border: 2px solid #f4f9ff;
    -ms-flex-line-pack: justify;
    align-content: space-between;
    cursor: pointer;
    overflow: hidden;
    display: none;
}

.humburger:after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background: #f4f9ff;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

.humburger.active:after {
    top: 0
}

.humburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #f4f9ff;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

.humburger.active span {
    background: #0087ff
}

.res-nav {
    position: absolute;
    top: 120%;
    right: 0;
    width: 50%;
    background: #f4f9ff;
    -webkit-box-shadow: 0 0 15px rgba(55, 84, 170, 0.3);
    box-shadow: 0 0 15px rgba(55, 84, 170, 0.3)
}

.res-nav li {
    display: block;
}

.res-nav li a {
    color: #1B305B;
    width: 100%;
    padding: 15px 20px;
}

.res-nav li a:hover {
    color: #fff;
    background: #0087ff
}

@media (max-width: 1200px) {
    .container {
        padding-left: 8%;
        padding-right: 8%;
    }

    section:first-of-type {
        padding-top: 8%
    }

    header nav .logo {
        width: 140px
    }

    header nav div:nth-of-type(2) li a {
        margin: 0 8px
    }

    .btn-border {
        padding: 10px 28px
    }

    .flex-4 > div {
        width: 48%;
        margin-bottom: 50px;
    }
}

@media (max-width: 992px) {
    .hide-sm {
        display: none
    }

    .visible-sm {
        display: block;
    }

    .humburger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    header > div {
        width: 100%
    }

    .flex-3 > div,
    .projects .grid > div {
        width: 47% !important;
        margin-bottom: 4%
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 6%;
        padding-right: 6%;
    }

    header nav {
        padding-top: 30px
    }

    .res-nav {
        width: 100%
    }

    header > div p {
        font-size: 30px
    }

    header > div div {
        height: 280px;
    }

    h2 {
        font-size: 42px
    }

    .flex-2 > div {
        width: 100%;
        margin-bottom: 4%
    }

    .flex-3 > div,
    .flex3-2 > div,
    .flex2-3 > div,
    .projects .grid > div {
        width: 100% !important;
        margin-bottom: 4%;
    }

    .flex-4 > div {
        width: 100%;
        margin-bottom: 4%;
    }

    .start h2 {
        font-size: 32px
    }

    .btn {
        margin-top: 1.2em
    }

    footer h3 {
        font-size: 24px;
        margin-bottom: 10px;
        padding-bottom: 5px;
        border-bottom: 1px dashed #7688a2;
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
    }
    
    footer h3.mail {
        border-bottom: none
    }
    
    footer .flex-4 {
        margin-bottom: 0
    }

    footer a,
    footer p {
        font-size: 16px
    }

    footer div.ai-center p {
        font-size: 14px
    }

    footer .footer-img {
        width: 130px
    }
}
