/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
    --prim: #3C4856;
    --second: #FD505B;
    --third: #4E4E4E;
    --light-gray: #FAFAFA;
}

@font-face {
    font-family: "Shamel";
    src: local("Shamel"), url("../fonts/FF\ Shamel\ Family\ Sans\ One\ Book.ttf") format("truetype");
}

body {
    font-family: "Shamel";
    color: #444444;
    background-color: #fff;
    /* font-family: "Shamel";*/
}

main {
    overflow: hidden;
}

a {
    color: var(--second);
    text-decoration: none;
}

a:hover {
    color: var(--second);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Shamel";
}

p {
    font-size: 19px;
    line-height: 38px;
    color: var(--gray);
}

.nav-link.btnLang {
    background-color: transparent;
    color: #fff !important;
    font-size: 16px;
    padding: 8px 10px 7px !important;
    border-radius: 25px;
    text-align: center;
    font-weight: 400;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-link.btnLang b {
    margin-top: 5px;
}

.nav-link.btnLang:hover {
    background-color: #fff;
    color: var(--prim) !important;
}

.nav-link.btnLang .icon {
    font-size: 24px;
    margin-inline-start: 5px;
}

.second {
    color: var(--second) !important;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--second);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: var(--yello);
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.Object1 {
    position: absolute;
    top: 200px;
    right: 0;
    animation: MoveUpDown2 4s ease-in-out infinite;
}

@-webkit-keyframes MoveUpDown2 {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(30px);
    }
}


/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    height: 80px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    background: var(--prim);
}

#header.header-transparent {
    background: var(--prim);
}


/*#header.header-scrolled {
    background: rgba(255, 255, 255, 0.9);
}*/

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 60px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    align-items: start;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 !important;
    margin-inline: 5px;
    font-size: 16px;
    color: var(--third);
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 50px;
    font-weight: 600;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar-nav .nav-link.active,
.navbar a:hover,
.navbar a:focus,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: var(--second);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 5px;
    top: calc(100% + 30px);
    margin: 5px 0 0 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 15px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    color: #2a2c39;
    margin: 0 5px;
    font-size: 14px;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #fff;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: var(--third);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    /* .navbar ul {
        display: none;
    }*/
    #header .logo img {
        max-height: 40px;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(20, 21, 28, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 0 50px;
    left: px;
    padding: 0 50px 0 0;
    border-radius: 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a {
    padding: 10px 20px;
    margin: 5px;
    font-size: 15px;
    color: #2a2c39;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: var(--third);
}

.navbar-mobile .getstarted {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #fff;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 60px 0;
    overflow: hidden;
}

.mini-title {
    color: var(--second);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    position: relative;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 72px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 15px;
}

.section-title p {
    max-width: 550px;
    margin-inline: auto;
}

.section-title h3 {
    font-size: 38px;
    font-weight: 600;
    line-height: 57px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 15px;
}

.section-title .btnGreenOutline {
    position: absolute;
    bottom: 0;
    inset-inline-end: 0;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    overflow: hidden;
    position: relative;
}

#hero .container {
    position: relative;
    padding-block: 70px;
}

#hero h1 {
    color: #000;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 600;
    line-height: 45.6px;
}

#hero p {
    margin-bottom: 55px;
    font-size: 16px;
    line-height: 30.5px;
    font-weight: 600;
}

.btndownload {
    outline: none !important;
    border: 0;
    padding: 0 5px;
}

#hero .btndownload img {
    border-radius: 5px;
}

#hero .btndownload:hover img {
    box-shadow: 0 0 10px #969696;
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
    width: 10%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: none;
    font-size: 48px;
    line-height: 1;
    width: auto;
    height: auto;
}

#hero .btn-get-started {
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    margin: 10px;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: 2px solid #ef6603;
}

#hero .btn-get-started:hover {
    background: #ef6603;
    color: #fff;
    text-decoration: none;
}

#ex1 {
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
}

#ex1-layer {
    width: 100%;
    padding: 0;
}

#hero #ex1-layer-img {
    width: 100%;
    margin: 0;
    z-index: 1;
    position: relative;
    /*animation: MoveUpDown 2s ease-in-out infinite;*/
}

#hero .img1 {
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 0;
}

@-webkit-keyframes MoveUpDown {
    0%,
    100% {
        bottom: 0;
    }
    50% {
        bottom: 30px;
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background: var(--light-gray);
    color: var(--prim);
    font-size: 14px;
    text-align: start;
    padding: 20px 0;
}

#footer .logo {
    max-width: 100%;
}

#footer a img {
    padding-inline-end: 10px;
    width: 24px;
}

#footer a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--prim);
    margin-bottom: 20px;
}

#footer a:hover {
    color: var(--second);
}

#footer p {
    font-size: 14px;
    font-weight: 600;
    color: var(--prim);
    margin-bottom: 20px;
    line-height: normal;
}

#footer hr {
    border-top-color: #ADADAD33;
    opacity: 1;
    margin-block: 20px;
}

.big {
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    margin-bottom: 20rem;
    animation-name: stretch;
    animation-duration: 5s;
    animation-timing-function: ease-out;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-play-state: running;
    position: absolute;
    z-index: 1;
    top: 40%;
    right: 30%;
}

@keyframes stretch {
    0% {
        opacity: 0.2;
        background-color: var(--prim);
        border-radius: 100%;
    }
    50% {
        background-color: var(--second);
    }
    100% {
        background-color: var(--third);
    }
}

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

@media (max-width: 992px) {
    #footer .col1,
    #footer .col2 {
        margin-bottom: 20px;
    }
    #footer .col3 {
        order: -1;
    }
    #footer .logo {
        display: block;
        margin: 20px 0 50px;
    }
}

@media (max-width: 575px) {
    #footer .logo {
        max-width: 80%;
        margin: 20px auto 50px;
    }
    #footer a,
    #footer p {
        font-size: 10px;
    }
    .btndownload {
        max-width: 48%;
    }
    .btndownload img {
        width: 100%;
    }
    #header .logo img {
        width: 130px;
    }
    .socialhead {
        width: 35px;
    }
    .socialhead img {
        width: 100%;
    }
    .nav-link.btnLang {
        margin: 0;
        font-size: 12px;
    }
    .navbar-nav {
        padding: 0 !important;
    }
}

@media (max-width: 380px) {
    #header {
        height: 60px;
    }
    #header .logo img {
        width: 100px;
    }
    .socialhead {
        width: 25px;
    }
    .socialhead img {
        width: 100%;
    }
    .nav-link.btnLang {
        margin: 0;
        font-size: 12px;
        padding: 2px 5px !important;
    }
    .nav-link.btnLang .icon {
        font-size: 18px;
    }
}