/* Variables */
:root {
    --font-default: 'Roboto', sans-serif;
    --font-heading: 'Manrope', sans-serif;
    --color-primary: #1e1c3c;
    --color-secondary: #1e6ba7;
    --color-third: #0060ff;
    --color-paragraph: #666666;
    --box-shadow-primary: 1px 4px 20px -2px rgba(0, 0, 0, 0.1);
    --box-shadow-secondary: 0 20px 50px rgba(0, 0, 0, 0.1);
    --box-shadow-regular: 0px 2px 12px 0px #e7e7e7;
    --box-shadow-extra: 0 5px 50px 0 rgba(0, 0, 0, 0.15);
    --bg-gray: #edf5ff;
    --bg-gradient: linear-gradient(45deg, #02ebad 0%, #5a57fb 50%);
    --transition: all 0.5s ease-in-out
}
html{
    position: relative;
    width: 100%;
    min-height: 100%;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}
body{
    background-color: var(--white);
    color: #222221;
    font-family: 'Montserrat' , 'DIN NEXT ARABIC', Arial, sans-serif;
    width: 100%;
    overflow-x: hidden;
}
* {
    box-sizing: border-box;
    outline: none !important;
}
/* width */
::-webkit-scrollbar {
    width: 6px;
}
/* Track */
::-webkit-scrollbar-track {
    background: #ccc;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--color-primary);
}
::-moz-selection { background: #1e1c3c; color: var(--white)}
::selection { background: #1e1c3c; color: var(--white)}


/*Font css*/
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Thin.ttf');
    font-weight: 100
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-ExtraLight.ttf');
    font-weight: 200
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Light.ttf');
    font-weight: 300
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.ttf');
    font-weight: normal;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.ttf');
    font-weight: 500;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-SemiBold.ttf');
    font-weight: 600;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.ttf');
    font-weight: bold
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-ExtraBold.ttf');
    font-weight: 800
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Black.ttf');
    font-weight: 900;
}
@font-face {
    font-family: 'DIN NEXT ARABIC';
    src: url('../fonts/DIN NEXT ARABIC REGULAR.otf');
    font-weight: normal;
}
@font-face {
    font-family: 'DIN NEXT ARABIC';
    src: url('../fonts/DIN NEXT ARABIC BOLD.otf');
    font-weight: bold
}
.lang-en{
    font-family: 'Montserrat', serif;
}
.lang-ar{
    font-family: 'DIN NEXT ARABIC', serif;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0
}
textarea{resize: none !important;}
a, a:hover {
    color: var(--color-primary);
}
.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 52px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: normal;
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 40px;
    color: var(--white) !important;
    transition: var(--transition);
}
.btn-primary{
    background: var(--color-primary) !important;
    border: 3px solid var(--color-primary) !important;
}
.btn-primary:hover{
    background: var(--color-secondary) !important;
    border: 3px solid var(--color-secondary) !important;
}
.btn-secondary{
    background: var(--color-secondary) !important;
    border: 3px solid var(--color-secondary) !important;
}
.btn-secondary:hover{
    background: var(--color-primary) !important;
    border: 3px solid var(--color-primary) !important;
}
.btn-third{
    background: var(--color-third) !important;
    border: 3px solid var(--color-third) !important;
}
.btn-third:hover{
    background: var(--color-primary) !important;
    border: 3px solid var(--color-primary) !important;
}
.btn-white{
    background: var(--white) !important;
    border: 3px solid var(--white) !important;
    color: var(--color-primary) !important;
}
.btn-white:hover{
    background: var(--color-primary) !important;
    border: 3px solid var(--color-primary) !important;
    color: var(--white) !important;
}
.btn-outline-primary{
    background: transparent !important;
    border: 3px solid var(--color-primary) !important;
    color: var(--color-primary) !important;
}
.btn-outline-primary:hover{
    background: var(--color-primary) !important;
    border: 3px solid var(--color-primary) !important;
    color: var(--white) !important;
}
.btn-outline-secondary{
    background: transparent !important;
    border: 3px solid var(--color-secondary) !important;
    color: var(--color-secondary) !important;
}
.btn-outline-secondary:hover{
    background: var(--color-secondary) !important;
    border: 3px solid var(--color-secondary) !important;
    color: var(--white) !important;
}
.btn-outline-third{
    background: transparent !important;
    border: 3px solid var(--color-third) !important;
    color: var(--color-third) !important;
}
.btn-outline-third:hover{
    background: var(--color-third) !important;
    border: 3px solid var(--color-third) !important;
    color: var(--white) !important;
}
.btn-outline-white{
    background: transparent !important;
    border: 3px solid var(--white) !important;
    color: var(--white) !important;
}
.btn-outline-white:hover{
    background: var(--white) !important;
    border: 3px solid var(--white) !important;
    color: var(--color-primary) !important;
}
.text-primary{
    color: var(--color-primary) !important;
}
.text-secondary{
    color: var(--color-secondary) !important;
}
/* Header */
/* Navbar */
.navbar{
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    transition: var(--transition);
}
.navbar.scrolled{
    background: var(--white);
    box-shadow:  0 2px 5px #ccc;
}
.navbar .navbar-brand img{
    height: 50px;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}
.navbar.scrolled .navbar-brand img{
    height: 40px;
    filter: none;
}
.navbar .nav-item .nav-link{
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-transform: capitalize;
    padding: 30px 10px;
    color: var(--white) !important;
    transition: var(--transition);
}
.navbar.scrolled .nav-item .nav-link{
    color: var(--color-primary) !important;
}
.navbar .nav-item.active .nav-link{
    font-weight: 900;
}
.navbar.scrolled .nav-item.active .nav-link{
    font-weight: 900;
    color: var(--color-secondary);
}
@media screen and (min-width: 992px) {
    .navbar .dropdown .dropdown-menu {
        display: block;
        background: linear-gradient(to top, rgba(30, 28, 60, 0.95) 0%, rgba(30, 107, 167, 0.95) 50%) !important;
        border: none;
        border-radius: 0;
        top: 60%;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition) !important;
        z-index: -1;
    }
    .navbar .dropdown:hover .dropdown-menu {
        top: 97%;
        opacity: 1;
        visibility: visible;
        z-index: 1000;
    }
}
.navbar .dropdown .dropdown-menu .dropdown-item {
    color: var(--white) !important;
    background: transparent !important;
    font-weight: 500;
    font-size: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-transform: capitalize;
    transition: var(--transition);
}
.navbar .dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--white) !important;
    color: var(--color-primary) !important;
}
.dropdown-divider {
    display: none;
    margin: 0;
    border-color: rgba(255, 255, 255, 0.1);
}
/* Hero */
.hero-wrapper {
    position: relative;
    height: 100vh;
    /*background: linear-gradient(45deg, #02ebad 0%, #5a57fb 50%) !important;*/
    background: linear-gradient(45deg, var(--color-primary) 0%, var(--color-third) 50%) !important;
    color: var(--white);
    margin-bottom: 100px;
    padding: 150px 0;
    overflow: hidden;
    z-index: 1;
}
.hero-wrapper.page-header {
    height: 550px;
}
.hero-wrapper::after {
    position: absolute;
    left: -100px;
    top: -20%;
    content: "";
    height: 550px;
    width: 550px;
    color: var(--white);
    background: var(--color-primary);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.07;
}
.hero-wrapper h1 {
    font-weight: 900;
    margin-bottom: 30px;
}
.hero-wrapper p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 30px;
}
.hero-wrapper .bg-img{
    position: absolute;
    top: 50%;
    transform: translateY(-52%);
    right: 0;
    width: 50%;
    height: 70%;
    text-align: center;
}
.hero-wrapper .bg-img img{
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.hero-wrapper .shape-bottom {
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 100% !important;
    width: 100%;
    z-index: -1;
    background-size: cover;
    background-position: bottom center;
}

.hero-wrapper .thumb img {
    max-width: 160%;
    position: relative;
    margin-left: -60px;
}
.animated-wave {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
}

.waves {
    position: absolute;
    width: 100%;
    height: 15vh;
    min-height: 100px;
    max-height: 150px;
    bottom: 0;
    left: 0;
}

.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}


/*Shrinking for mobile*/

@media (max-width: 768px) {
    .waves {
        height: 40px;
        min-height: 40px;
    }
}
.breadcrumb{
    background: none;
    padding: 0;
}
.breadcrumb .breadcrumb-item a {
    color: var(--white);
}
.breadcrumb .breadcrumb-item.active {
    color: var(--white);
}
/* Section title*/
.section-title-block{
    position: relative;
    display: block;
    margin: 50px auto;
    text-align: center;
    transition: var(--transition);
}
.section-title{
    position: relative;
    display: inline-block;
    font-size: 30px;
    font-weight: 800;
    text-transform: capitalize;
    color: var(--color-primary);
    transition: var(--transition);
}
.section-title .shape-1,
.section-title .shape-2{
    position: absolute;
    display: contents;
    transition: var(--transition);
}
.section-title .shape-1:before,
.section-title .shape-1:after{
    content: '';
    position: absolute;
    bottom: -20px;
    left: -40px;
    background: var(--color-secondary);
    transition: all 1s ease-in-out;
}
.section-title:hover .shape-1:before,
.section-title:hover .shape-1:after{
    left: -20px;
}
.section-title .shape-2:before,
.section-title .shape-2:after{
    content: '';
    position: absolute;
    top: -20px;
    right: -40px;
    background: var(--color-primary);
    transition: all 1s ease-in-out;
}
.section-title:hover .shape-2:before,
.section-title:hover .shape-2:after{
    right: -20px;
}
.section-title .shape-1:before,
.section-title .shape-2:before{
    width: 4px;
    height: 40px;
}
.section-title:hover .shape-1:before,
.section-title:hover .shape-2:before{
    height: 60%;
}
.section-title .shape-1:after,
.section-title .shape-2:after{
    width: 40px;
    height: 4px;
}
.section-title:hover .shape-1:after,
.section-title:hover .shape-2:after{
    width: 60%;
}
/* About */
.about-wrapper{
    position: relative;
    display: block;
    margin: 100px auto;
}
.about-wrapper .about-text{
    display: block;
    text-align: center;
    line-height: 2;
    color: #666;
}
.about-wrapper .about-section {
    position: relative;
    display: block;
    width: 100%;
    height: 320px;
    margin: 40px 0 20px;
    text-align: center;
    transition: var(--transition);
}
.about-wrapper .about-section:hover {
    border-color: #E12083;
}
.about-wrapper .about-section .icon-holder {
    position: relative;
    top: 80px;
    display: inline-block;
    background: var(--white);
    color: var(--color-secondary);
    font-size: 48px;
    padding: 10px 20px;
    margin-bottom: 40px;
    transition: var(--transition);
    z-index: 1;
}
.about-wrapper .about-section:hover .icon-holder {
    font-size: 36px;
    top: -32px;
}
.about-wrapper .about-section .heading {
    position: relative;
    top: 50px;
    font-weight: 800;
    color: var(--color-primary);
    -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.about-wrapper .about-section:hover .heading{
    color: var(--color-secondary);
}
.about-wrapper .about-section:hover .heading {
    top: -50px !important;
}
.about-wrapper .about-section .description {
    display: block;
    font-size: 16px;
    line-height: 1.8;
    width: 80%;
    margin: 0 auto;
    opacity: 0;
    -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}
.about-wrapper .about-section:hover .description {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    margin-top: -40px;
}
.about-wrapper .about-section .shape-1,
.about-wrapper .about-section .shape-2{
    position: absolute;
    display: contents;
    transition: var(--transition);
}
.about-wrapper .about-section .shape-1:before,
.about-wrapper .about-section .shape-1:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--color-secondary);
    transition: var(--transition);
}
.about-wrapper .about-section .shape-2:before,
.about-wrapper .about-section .shape-2:after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-primary);
    transition: var(--transition);
}

.about-wrapper .about-section .shape-1:before,
.about-wrapper .about-section .shape-2:before{
    width: 7px;
    height: 50%;
}
.about-wrapper .about-section:hover .shape-1:before,
.about-wrapper .about-section:hover .shape-2:before{
    height: 95%;
}
.about-wrapper .about-section .shape-1:after,
.about-wrapper .about-section .shape-2:after{
    width: 50%;
    height: 7px;
}
.about-wrapper .about-section:hover .shape-1:after,
.about-wrapper .about-section:hover .shape-2:after{
    width: 95%;
}
/* Services */
.services-wrapper{
    position: relative;
    display: block;
    background: url("../images/3.webp") center no-repeat;
    background-size: cover;
    color: var(--white);
    padding: 50px 0;
    z-index: 1;
}
.services-wrapper:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: var(--color-primary);
    opacity: 0.9;
    z-index: -1;
}
.services-wrapper .section-title{
    color: var(--white);
    margin-bottom: 50px;
}
.services-wrapper .section-title .shape-2:before,
.services-wrapper .section-title .shape-2:after {
    background: var(--color-secondary);
}
.services-wrapper .service-item{
    position: relative;
    display: block;
    width: 100%;
    background: rgba(30, 107, 167, 0.8);
    border-radius: 0;
    padding: 30px;
    -webkit-box-shadow: 0 0 15px rgba(0, 96, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 96, 255, 0.1);
    text-align: center;
    margin: 20px auto;
    overflow: hidden;
    transition: var(--transition);
    z-index: 1;
}
.services-wrapper .service-item .shape-1,
.services-wrapper .service-item .shape-2{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.services-wrapper .service-item .shape-1:before,
.services-wrapper .service-item .shape-1:after,
.services-wrapper .service-item .shape-2:before,
.services-wrapper .service-item .shape-2:after{
    content: '';
    position: absolute;
    background: var(--white);
    width: 0;
    height: 0;
    transition: var(--transition);
}
.services-wrapper .service-item .shape-1:before,
.services-wrapper .service-item .shape-1:after{
    bottom: 0;
    left: 0;
}
.services-wrapper .service-item .shape-2:before,
.services-wrapper .service-item .shape-2:after{
    top: 0;
    right: 0;
}
.services-wrapper .service-item:hover .shape-1:before,
.services-wrapper .service-item:hover .shape-2:before{
    width: 4px;
    height: calc(100% - 15px);
}
.services-wrapper .service-item:hover .shape-1:after,
.services-wrapper .service-item:hover .shape-2:after{
    width: calc(100% - 15px);
    height: 4px;
}
.services-wrapper .service-item .service-icon{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    font-size: 64px;
    height: 100px;
    margin: 0 auto;
    color: var(--white);
}
.services-wrapper .service-item .service-icon img{
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    object-position: center;
    filter: brightness(0) invert(1);
    margin-top: 10px;
}
.services-wrapper .service-item .service-title{
    display: block;
    font-weight: 800;
    text-transform: uppercase;
    margin: 10px auto 20px;
}
.services-wrapper .service-item .service-text{
    display: block;
    font-size: 16px;
    line-height: 24px;
    height: calc(5 * 24px);
    margin-bottom: 20px;
    opacity: 0.8;
    overflow: hidden;
}
/* Service single*/
.service-block{
    position: relative;
    display: block;
    margin: 30px auto;
}
.service-block .service-img{
    display: block;
    width: 100%;
    margin: 0 auto 20px;
}
.service-block .service-img img{
    width: auto;
    max-width: 100%;
}
.service-block .service-title{
    display: block;
    font-size: 30px;
    font-weight: bold;
    text-transform: capitalize;
    color: var(--color-secondary);
    margin-bottom: 15px;
}
.service-block .service-subtitle{
    display: block;
    font-size: 20px;
    font-weight: bold;
    text-transform: capitalize;
    color: var(--color-secondary);
    margin-top: 10px;
}
.service-block .service-text{
    display: block;
    font-size: 16px;
    color: var(--color-paragraph);
}
/* Programs */
.programs-wrapper{
    position: relative;
    display: block;
}
.programs-wrapper .program-item{
    position: relative;
    display: block;
    margin: 20px auto;
    text-align: center;
}
.programs-wrapper .program-item .compatible-with{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-size: 12px;
    color: var(--color-primary);
    text-align: start;
    z-index: 2;
}
.programs-wrapper .program-item .compatible-with img{
   width: 120px;
    margin-left: 10px;
}
.programs-wrapper .program-item .program-icon{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 200px;
    padding-top: 40px;
    margin: 0 auto;
    z-index: 1;
}
.programs-wrapper .program-item .program-icon:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 auto;
    right: 0;
    z-index: 1;
}
.programs-wrapper .program-item .program-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.programs-wrapper .program-item .program-title{
    display: block;
    font-weight: bold;
    font-size: 22px;
    text-transform: capitalize;
    color: var(--color-secondary);
    margin: 20px auto;
}
.programs-wrapper .program-item .program-title div{
    font-weight: 500;
}
/* Features */
ul.features-list{
    position: relative;
    display: block;
    margin-bottom: 30px;
}
ul.features-list.reports-list{
    display: flex;
    flex-wrap: wrap;
    align-items: start;
}
ul.features-list li{
    position: relative;
    display: block;
    font-size: 16px;
    padding-left: 30px;
    margin: 10px auto;
    color: var(--color-paragraph);
    transition: var(--transition);
}
ul.features-list.reports-list li{
    display: inline-block;
    width: 50%;
    margin: 10px 0;
}
ul.features-list li:before,
ul.features-list li:after{
    content: '';
    position: absolute;
    left: 0;
    background: var(--color-secondary);
    transition: var(--transition);
}
ul.features-list li:hover:before,
ul.features-list li:hover:after{
    transform: translateX(10px);
}
ul.features-list li:before{
    top: 6px;
    width: 2px;
    height: 10px;
}
ul.features-list li:after{
    top: 16px;
    width: 10px;
    height: 2px;
}
/* Counter */
.counter-wrapper{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: url("../images/177423583iStock-scyther5_EDIT-min.png") center no-repeat fixed;
    background-size: cover;
    color: #fff;
    padding: 70px 0;
    margin: 50px auto;
    text-align: center;
    z-index: 1;
}
.counter-wrapper:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: rgba(30, 28, 60, 0.7);
    width: 100%;
    height: 100%;
    z-index: -1;
}
.counter-wrapper .counter-number{
    display: block;
    font-size: 64px;
    font-weight: bold;
    margin: 50px auto 15px;
}
.counter-wrapper .counter-title{
    display: block;
    font-weight: normal;
    font-size: 18px;
    text-transform: capitalize;
}
.counter-wrapper .counter-title div{
    font-weight: bold;
    font-size: 24px;
}
.counter-wrapper .section-title{
    color: var(--white);
}
.counter-wrapper .section-title .shape-2:before,
.counter-wrapper .section-title .shape-2:after {
    background: var(--color-secondary);
}
/* Partners */
.partner-wrapper{
    position: relative;
    display: block;
    margin: 100px auto 80px;
}
.partner-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    max-width: 100%;
    height: 120px;
    margin: 40px auto;
    text-align: center;
}
.partner-logo img{
    width: auto !important;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}
/* Owl Carousel */
.owl-theme .owl-nav {
    margin-top: 0;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
    color: #222221;
    border: 3px solid #222221;
    border-radius: 50%;
    width: 36px;
    height: 36px;
}
.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover{
    background: #222221;
    color: var(--white);
}
.owl-carousel .owl-nav button.owl-next{
    right: -30px;
}
.owl-carousel .owl-nav button.owl-prev{
    left: -30px;
}
/* Subscribe */
.subscribe-wrapper{
    position: relative;
    display: flex;
    align-items: center;
    background: var(--color-primary);
    width: 100%;
    min-height: 400px;
    padding: 100px 0;
    color: var(--white);
    overflow: hidden;
}
.subscribe-wrapper h2{
    display: block;
    font-weight: 800;
    margin-bottom: 50px !important;
}
.subscribe-wrapper form{
    position: relative;
}
.subscribe-wrapper form .form-group .form-control{
    padding: 0 30px;
    background-color: var(--white);
    border-radius: 35px;
    height: 70px;
}
.subscribe-wrapper form .btn{
    position: absolute;
    top: 10px;
    right: 10px;
    min-width: auto;
}
.subscribe-wrapper svg.shape{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
}
.subscribe-wrapper svg.shape path {
    fill: #FFB800;
}
.subscribe-wrapper .bg-img{
    position: absolute;
    bottom: 0;
    right: -145px;
    width: 50%;
}
.subscribe-wrapper .bg-img img{
    width: auto;
    max-width: 100%;
}
/* Contact Us*/
.contact-wrapper .contact-us{
    position: relative;
    display: block;
    /*-webkit-transform: translateY(130px);*/
    /*-ms-transform: translateY(130px);*/
    /*transform: translateY(130px);*/
    -webkit-box-shadow: 0 0 33px 0 rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 33px 0 rgba(0, 0, 0, 0.07);
    padding: 50px;
    margin: 100px auto;
}
.contact-wrapper .contact-us .contact-form{
    margin-top: 40px;
}
.contact-wrapper .contact-us .contact-form h3{
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 40px;
}
.contact-wrapper .contact-us .contact-form .form-group{
    position: relative;
    margin-top: 20px;
    margin-bottom: 32px;
}
.contact-wrapper .contact-us .contact-form .form-group:before,
.contact-wrapper .contact-us .contact-form .form-group:after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-primary);
}
.contact-wrapper .contact-us .contact-form .form-group:before{
    width: 2px;
    height: calc(100% - 15px);
}
.contact-wrapper .contact-us .contact-form .form-group:after{
    width: calc(100% - 15px);
    height: 2px;
}
.contact-wrapper .contact-us .contact-form .form-group .form-control{
    background: transparent;
    border: 2px solid var(--color-secondary);
    border-top-width: 0;
    border-right-width: 0;
    border-radius: 0;
    box-shadow: none;
    transition: var(--transition);
}
.contact-wrapper .contact-us .contact-form .form-group label{
    position: absolute;
    top: 10px;
    left: 15px;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 300;
    opacity: 0.7;
    z-index: -1;
    transition: var(--transition);
}
.contact-wrapper .contact-us .contact-form .form-group .form-control:focus ~ label,
.contact-wrapper .contact-us .contact-form .form-group .form-control:valid ~ label{
    top: -35px;
    left: 15px;
    color: var(--color-secondary);
    font-size: 16px;
    font-weight: 800;
    opacity: 1;
}
.contact-wrapper .contact-menu-wrapper{
    position: relative;
    display: block;
    width: 100%;
    background: url("../images/home-two-min.png") center no-repeat;
    background-size: cover;
    color: var(--white);
    padding: 40px 30px 80px;
    z-index: 1;
}
.contact-wrapper .contact-menu-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-secondary);
    opacity: 0.9;
    z-index: -1;
}
.contact-wrapper .contact-menu-wrapper h3{
    font-weight: 800;
    margin-bottom: 60px;
}
.contact-wrapper .contact-us ul.contact-menu{
    display: block;
}
.contact-wrapper .contact-us ul.contact-menu li{
    display: flex;
    align-content: center;
    margin: 40px auto;
}
.contact-wrapper .contact-us ul.contact-menu li .contact-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    min-width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    margin-right: 10px;
}
.contact-wrapper .contact-us ul.contact-menu li .contact-details{
    display: inline-block;
}
.contact-wrapper .contact-us ul.contact-menu li .contact-details h6{
    font-size: 16px;
    color: var(--white);
    opacity: 0.7;
}
.contact-wrapper .contact-us ul.contact-menu li .contact-details a{
    font-size: 16px;
    color: var(--white);
}
/* Team*/
.team-wrapper{
    position: relative;
    display: block;
    margin: 20px auto 40px;
}
.team-item{
    position: relative;
    display: block;
    width: 260px;
    max-width: 100%;
    margin: 20px auto;
    text-align: center;
    transition: var(--transition);
    z-index: 1;
}
.team-item  .team-img{
    display: block;
    width: 100%;
    height: 300px;
    overflow: hidden;
}
.team-item .team-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-item  .team-info{
    position: relative;
    display: inline-block;
    width: 100%;
    background: var(--color-primary);
    padding: 20px 10px 10px;
    transition: var(--transition);
}
.team-item:hover .team-info{
    /*margin-top: -50px;*/
}
.team-item  .team-info .team-name{
    display: block;
    font-weight: bold;
    text-transform: capitalize;
    color: var(--white);
}
.team-item  .team-info .team-title{
    display: block;
    font-weight: bold;
    text-transform: capitalize;
    color: var(--color-secondary);
}
.team-item .shape-1,
.team-item .shape-2{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.team-item .shape-1:before,
.team-item .shape-1:after,
.team-item .shape-2:before,
.team-item .shape-2:after{
    content: '';
    position: absolute;
    background: var(--color-secondary);
    width: 0;
    height: 0;
    transition: var(--transition);
}
.team-item .shape-1:before,
.team-item .shape-1:after{
    bottom: 0;
    left: 0;
}
.team-item .shape-2:before,
.team-item .shape-2:after{
    top: 0;
    right: 0;
}
.team-item:hover .shape-1:before,
.team-item:hover .shape-2:before{
    width: 4px;
    height: calc(100% - 15px);
}
.team-item:hover .shape-1:after,
.team-item:hover .shape-2:after{
    width: calc(100% - 15px);
    height: 4px;
}
/* */
.gallery-slider{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 400px;
    transform-style: preserve-3d;
    margin: 50px auto ;
    text-align: center;
}
.gallery-slider input[type=radio] {
    display: none;
}
.gallery-slider .cards {
    position: relative;
    width: 100%;
    height: 100%;
}
.gallery-slider .card {
    position: absolute;
    width: 60%;
    height: 100%;
    left: 0;
    right: 0;
    margin: auto;
    background: none;
    border: none ;
    box-shadow: none;
    transition: transform .4s ease;
    cursor: pointer;
}
.gallery-slider img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
}
#item-1:checked ~ .cards #song-5,
#item-2:checked ~ .cards #song-1,
#item-3:checked ~ .cards #song-2 ,
#item-4:checked ~ .cards #song-3 ,
#item-5:checked ~ .cards #song-4 {
    transform: translatex(-40%) scale(0.8);
    z-index: 0;
}

#item-1:checked ~ .cards #song-2,
#item-2:checked ~ .cards #song-3,
#item-3:checked ~ .cards #song-4 ,
#item-4:checked ~ .cards #song-5 ,
#item-5:checked ~ .cards #song-1 {
    transform: translatex(40%) scale(0.8);
    z-index: 0;
}

#item-1:checked ~ .cards #song-1,
#item-2:checked ~ .cards #song-2,
#item-3:checked ~ .cards #song-3,
#item-4:checked ~ .cards #song-4,
#item-5:checked ~ .cards #song-5 {
    transform: translatex(0) scale(1);
    opacity: 1;
    z-index: 1;
}
#item-1:checked ~ .cards .card img {
    width: 100%;
    height: auto;
}
/* Footer */
footer {
    display: none;
    position: absolute;
    left: 0;
    bottom: 0;
    height: auto;
    width: 100%;
    background: #222b40;
    color: var(--white);
    padding-top: 50px;
    overflow: hidden;
    z-index: 1;
}
footer:before,
footer:after{
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    text-align: center;
    z-index: -1;

}
footer:before {
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    text-align: center;
    filter: blur(100px);
    background: #ee9a38;
}
footer:after {
    bottom: 0;
    right: 0;
    width: 250px;
    opacity: .5;
    height: 250px;
    position: absolute;
    background: #00ff12;
}
.dots-shape, .triangle-shape, .close-shape, .circle-shape{
    position: absolute;
    z-index: -1;
}
.dots-shape {
    left: 6%;
    top: 30%;
    animation: slideUpDown 20s infinite linear;
}
.triangle-shape {
    left: 3%;
    bottom: 30%;
    animation: shapeAnimationOne 20s infinite linear;
}
.close-shape {
    left: 50%;
    top: 25%;
    animation: shapeAnimationThree 20s infinite linear;
}
.circle-shape {
    right: 8%;
    bottom: 0;
    animation: shapeAnimationTwo 20s infinite linear;
}
@-webkit-keyframes sticky{
    0%{
        top:-100px
    }
    100%{
        top:0
    }
}
@keyframes sticky{
    0%{
        top:-100px
    }
    100%{
        top:0
    }
}
@keyframes shapeAnimationOne{
    0%{
        -webkit-transform:translate(0px,0px) rotate(0deg);
        transform:translate(0px,0px) rotate(0deg)
    }
    25%{
        -webkit-transform:translate(0px,150px) rotate(90deg);
        transform:translate(0px,150px) rotate(90deg)
    }
    50%{
        -webkit-transform:translate(150px,150px) rotate(180deg);
        transform:translate(150px,150px) rotate(180deg)
    }
    75%{
        -webkit-transform:translate(150px,0px) rotate(270deg);
        transform:translate(150px,0px) rotate(270deg)
    }
    100%{
        -webkit-transform:translate(0px,0px) rotate(360deg);
        transform:translate(0px,0px) rotate(360deg)
    }
}
@keyframes shapeAnimationTwo{
    0%{
        -webkit-transform:translate(0px,0px) rotate(0deg);
        transform:translate(0px,0px) rotate(0deg)
    }
    25%{
        -webkit-transform:translate(-150px,-0px) rotate(270deg);
        transform:translate(-150px,-0px) rotate(270deg)
    }
    50%{
        -webkit-transform:translate(-150px,-150px) rotate(180deg);
        transform:translate(-150px,-150px) rotate(180deg)
    }
    75%{
        -webkit-transform:translate(-0px,-150px) rotate(90deg);
        transform:translate(-0px,-150px) rotate(90deg)
    }
    100%{
        -webkit-transform:translate(0px,0px) rotate(360deg);
        transform:translate(0px,0px) rotate(360deg)
    }
}
@keyframes shapeAnimationThree{
    0%{
        -webkit-transform:translate(0px,0px) rotate(0deg);
        transform:translate(0px,0px) rotate(0deg)
    }
    25%{
        -webkit-transform:translate(50px,150px) rotate(90deg);
        transform:translate(50px,150px) rotate(90deg)
    }
    50%{
        -webkit-transform:translate(150px,150px) rotate(180deg);
        transform:translate(150px,150px) rotate(180deg)
    }
    75%{
        -webkit-transform:translate(150px,50px) rotate(270deg);
        transform:translate(150px,50px) rotate(270deg)
    }
    100%{
        -webkit-transform:translate(0px,0px) rotate(360deg);
        transform:translate(0px,0px) rotate(360deg)
    }
}
@keyframes shapeAnimationFour{
    0%{
        -webkit-transform:translate(0px,0px) rotate(0deg);
        transform:translate(0px,0px) rotate(0deg)
    }
    25%{
        -webkit-transform:translate(-150px, -50px) rotate(90deg);
        transform:translate(-150px, -50px) rotate(90deg)
    }
    50%{
        -webkit-transform:translate(-150px,-150px) rotate(180deg);
        transform:translate(-150px,-150px) rotate(180deg)
    }
    75%{
        -webkit-transform:translate(-50px,-150px) rotate(270deg);
        transform:translate(-50px,-150px) rotate(270deg)
    }
    100%{
        -webkit-transform:translate(0px,0px) rotate(360deg);
        transform:translate(0px,0px) rotate(360deg)
    }
}
@keyframes shapeAnimationFive{
    0%{
        -webkit-transform:translate(0px,0px) rotate(0deg);
        transform:translate(0px,0px) rotate(0deg)
    }
    25%{
        -webkit-transform:translate(-100px, -100px) rotate(90deg);
        transform:translate(-100px, -100px) rotate(90deg)
    }
    50%{
        -webkit-transform:translate(100px,50px) rotate(180deg);
        transform:translate(100px,50px) rotate(180deg)
    }
    75%{
        -webkit-transform:translate(-100px,150px) rotate(270deg);
        transform:translate(-100px,150px) rotate(270deg)
    }
    100%{
        -webkit-transform:translate(0px,0px) rotate(360deg);
        transform:translate(0px,0px) rotate(360deg)
    }
}
@keyframes circleRotated{
    0%{
        -webkit-transform:rotate(0deg);
        transform:rotate(0deg)
    }
    100%{
        -webkit-transform:rotate(360deg);
        transform:rotate(360deg)
    }
}
.circleRotated{
    animation:circleRotated 10s infinite linear
}
@keyframes slideLeftRight{
    0%{
        -webkit-transform:translate(0);
        transform:translate(0)
    }
    50%{
        -webkit-transform:translate(20px);
        transform:translate(20px)
    }
    100%{
        -webkit-transform:translate(0);
        transform:translate(0)
    }
}
.slideLeftRight{
    animation:slideLeftRight 5s infinite linear
}
@keyframes slideUpDown{
    0%{
        -webkit-transform:translate(0px,0px);
        transform:translate(0px,0px)
    }
    50%{
        -webkit-transform:translateY(-20px);
        transform:translateY(-20px)
    }
    100%{
        -webkit-transform:translate(0px,0px);
        transform:translate(0px,0px)
    }
}
.slideUpDown{
    animation:slideUpDown 5s infinite linear
}
@keyframes slideUpRight{
    0%{
        -webkit-transform:translate(0px,0px);
        transform:translate(0px,0px)
    }
    50%{
        -webkit-transform:translate(-20px,20px);
        transform:translate(-20px,20px)
    }
    100%{
        -webkit-transform:translate(0px,0px);
        transform:translate(0px,0px)
    }
}
.slideUpRight{
    animation:slideUpRight 5s infinite linear
}
@-webkit-keyframes circleAnimation{
    0%{
        border-radius:60% 40% 30% 70%/60% 30% 70% 40%
    }
    50%{
        border-radius:30% 60% 70% 40%/50% 60% 30% 60%
    }
    100%{
        border-radius:60% 40% 30% 70%/60% 30% 70% 40%
    }
}
@keyframes circleAnimation{
    0%{
        border-radius:60% 40% 30% 70%/60% 30% 70% 40%
    }
    50%{
        border-radius:30% 60% 70% 40%/50% 60% 30% 60%
    }
    100%{
        border-radius:60% 40% 30% 70%/60% 30% 70% 40%
    }
}

footer .footer-logo{
    display: block;
    width: 100%;
    margin: 0 auto 40px;
}
footer .footer-logo img{
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
}
footer .footer-text{
    /*opacity: 0.8;*/
}
footer h4{
    margin: 20px auto;
    font-weight: 800;
    color: var(--white);
}
footer ul.footer-links{
    display: block;
    margin-bottom: 20px;
}
footer ul.footer-links li{
    display: block;
    margin: 10px auto;
}
footer ul.footer-links li a{
    display: block;
    color: var(--white);
    text-decoration: none !important;
    transition: var(--transition);
}
footer ul.footer-links li a:hover{
    display: block;
    color: var(--color-third);
}
footer ul.footer-contact{
    display: table;
    margin-bottom: 20px;
}
footer ul.footer-contact li{
    display: table-row;

}
footer ul.footer-contact li i,
footer ul.footer-contact li svg{
    display: table-cell;
    color: var(--white);
}
footer ul.footer-contact li a{
    display: table-cell;
    color: var(--white);
    padding-bottom: 10px;
    padding-left: 20px;
}
footer hr{
    border-top-color: var(--white);
    opacity: 0.1;
}
footer .copyrights{
    display: block;
    margin: 30px auto;
    text-align: center;
}
footer .copyrights a{
    font-weight: 700;
    color: var(--white);
    text-decoration: none !important;
}
/* Socials*/
.socials{
    display: block;
    margin: 10px auto;
    text-align: center;
}
.socials a{
    text-decoration: none !important;
    vertical-align: middle;
}
.socials span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 16px;
    color: var(--color-primary) !important;
    background: var(--white);
    border-radius: 50%;
    margin-right: 5px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.socials span:hover{
    transform: rotate(360deg);
    border: none !important;
    color: var(--white) !important;
}
.socials .fa-facebook-f:hover{
    background: #4267B2 !important;
}
.socials .fa-instagram:hover{
    background: linear-gradient(to left top, #fd5949, #d6249f, #285AEB );
}
.socials .fa-twitter:hover{
    background: #55acee !important;
}
.socials .fa-linkedin-in:hover{
    background: #0077b5 !important;
}
.socials .fa-youtube:hover{
    background: #f00 !important;
}
.socials .fa-snapchat-ghost:hover{
    background: var(--white)c00 !important;
    color: #000 !important;
}
/* Responsive*/
@media screen and (max-width: 1199px) {
    .owl-carousel .owl-nav button.owl-next{
        right: -15px;
    }
    .owl-carousel .owl-nav button.owl-prev{
        left: -15px;
    }
}
@media screen and (max-width: 991px) {
    h1{
        font-size: 36px;
    }
    h2 {
        font-size: 26px;
    }
    .navbar {
        background: #025bf2;
        padding: 15px;
        overflow: auto;
    }
    .navbar .navbar-toggler {
        color: var(--white);
        border-color: var(--white);
        transition: var(--transition);
    }
    .navbar.scrolled .navbar-toggler {
        color: var(--color-primary);
        border-color: var(--color-primary);
    }
    .navbar-collapse {
        min-height: calc(100vh - 80px);
    }
    .navbar .navbar-nav{
        padding: 50px 0;
    }
    .navbar .nav-item {
        margin: 10px 0;
    }
    .navbar .nav-item .nav-link {
        padding: 5px 10px;
    }
    .navbar .dropdown .dropdown-menu {
        border: none;
        background: none;
        height: 140px;
        width: 100%;
        overflow-y: scroll;
        -webkit-overflow-scrolling:touch; // mobile safari
    }
    .navbar.scrolled .dropdown .dropdown-menu .dropdown-item {
        color: var(--color-primary) !important;
    }
    .hero-wrapper {
        height: auto !important;
        min-height: 100vh;
        padding: 120px 0 150px;
    }
    .hero-wrapper .bg-img {
        position: relative;
        top: auto;
        transform: none;
        left: 0 !important;
        right: 0 !important;
        width: 500px;
        max-width: 80%;
        height: auto;
        text-align: center;
        margin: 0 auto 40px;
    }
    .section-title {
        font-size: 24px;
        max-width: calc(100% - 90px);
    }
    .about-wrapper .about-section .icon-holder {
        font-size: 36px;
        top: -32px;
    }
    .about-wrapper .about-section {
        height: auto;
        padding-bottom: 40px;
    }
    .about-wrapper .about-section.heading{
        color: var(--color-secondary);
    }
    .about-wrapper .about-section .heading {
        top: -50px !important;
    }
    .about-wrapper .about-section .description {
        width: 90%;
        margin-top: -40px;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    .about-wrapper .about-section .shape-1:before,
    .about-wrapper .about-section .shape-2:before{
        height: 95%;
    }
    .about-wrapper .about-section .shape-1:after,
    .about-wrapper .about-section .shape-2:after{
        width: 95%;
    }
    .counter-wrapper .counter-number {
        font-size: 48px;
        margin: 50px auto 15px;
    }
    .subscribe-wrapper form .btn {
        top: 85px;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 270px;
    }
    .subscribe-wrapper {
        min-height: auto;
        padding: 60px 0 225px;
    }
    .subscribe-wrapper .bg-img {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 220px;
    }
    .contact-wrapper .contact-us {
        padding: 50px 15px;
        margin-bottom: 50px;
    }
    .contact-wrapper .contact-us .contact-form {
        margin-top: 0;
    }
    .contact-wrapper .contact-menu-wrapper {
        margin-top: 40px;
    }
    .service-block {
        text-align: center;
    }
    ul.features-list.reports-list{
        display: flex;
        flex-wrap: wrap;
        align-items: start;
    }
    ul.features-list.reports-list li{
        width: 100%;
    }
    .gallery-slider{
        height: 200px;
        overflow: hidden;
    }
    #item-1:checked ~ .cards #song-1, #item-2:checked ~ .cards #song-2, #item-3:checked ~ .cards #song-3, #item-4:checked ~ .cards #song-4, #item-5:checked ~ .cards #song-5 {
        width: 80%;
    }
}
@media screen and (max-width: 767px) {
    .owl-carousel .owl-nav button.owl-next{
        right: 0;
    }
    .owl-carousel .owl-nav button.owl-prev{
        left: 0;
    }
}