/*Preloader*/
.loader {
    background: none repeat scroll 0 0 #ffffff;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.loader .loader_inner {
    background-image: url("../img/logo.gif");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #fff;
    height: 300px;
    width: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

/*head*/
::-webkit-scrollbar {
    width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #C8C8C8;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #458ECC;
}

p, h1, h2, h3, h4, h5, h6, body {
    font-family: SofiaPro, "Proxima Nova ", "Segoe UI", "Opensans", "Roboto", "Helvetica", -apple-system, system-ui, BlinkMacSystemFont, sans-serif;
}

/*This is for Head*/
.ak-head-landing-section {
    background-color: #172E41;
    height: 100vh;
}

.ak-head-landing-section .content {
    padding-top: 30vh;
}

.ak-head-landing-section-heading {
    width: 250px;
}

.ak-head-landing-section-img {
    width: 450px;
    height: 292px;
}

/*Main Function*/
.ak_top_page {
    padding-top: 120px;
}

.ak_container {
    height: 80vh;
}

@media (max-width: 992px) {
    .ak_top_page {
        padding-top: 20px;
    }

    .ak_container {
        height: inherit;
    }
}

.ak-img {
    width: 50px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;

}

/*Arrow Animation*/

.arrow-down {
    width: 30px;
    height: auto;
    cursor: pointer;
    overflow: visible;
}

svg polygon, svg path {
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

svg:hover polygon, svg:hover path {
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
    fill: #458ECC;
}

svg:hover .arrow {
    animation: arrow-anim 2s cubic-bezier(0.2, 1, 0.3, 1) infinite;
}

svg:hover .arrow-fixed {
    animation: arrow-fixed-anim 2s cubic-bezier(0.2, 1, 0.3, 1) infinite;
}

@keyframes arrow-anim {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    5% {
        transform: translateY(0.1rem);
    }
    100% {
        transform: translateY(1rem);
        opacity: 0;
    }
}

@keyframes arrow-fixed-anim {
    5% {
        opacity: 0;
    }
    20% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
    }
}

.ak_text_blue {
    color: #458ECC !important;
}

.ak_bg {
    background-color: #172E41;
}

.ak_more_btn {
    position: absolute;
    bottom: 16px;
    right: 0;
    z-index: 1;
    width: 100%;
}

.card-img-overlay {
    background-color: rgba(0, 0, 0, 0.4);
}

.ak_overlay {
    opacity: 0;
    transition: .5s ease;
}

.ak_container_for_overlay:hover .ak_overlay {
    opacity: 1;
}

/* Floating Whatsapp Icon */
.float{
    position:fixed;
    width:60px;
    height:60px;
    bottom:40px;
    /*left:40px;*/
    background-color:#458ECC;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    box-shadow: 2px 2px 3px #999;
    z-index:100;
}

.my-float{
    margin-top:16px;
}