@font-face {
    font-family: Coco;
    src: url(../fonts/cocogoose/CocogoosePro.ttf);
}

@font-face {
    font-family: CocoL;
    src: url(../fonts/cocogoose/CocogoosePro_Light.ttf);
}

@font-face {
    font-family: CocoSL;
    src: url(../fonts/cocogoose/CocogoosePro_Semilight.ttf);
}

@font-face {
    font-family: CocoSLI;
    src: url(../fonts/cocogoose/CocogoosePro_Semilight-Italic.ttf);
}

@font-face {
    font-family: CocoBI;
    src: url(../fonts/cocogoose/CocogoosePro_Italic.ttf);
}

@font-face {
    font-family: CocoT;
    src: url(../fonts/cocogoose/CocogoosePro_Thin.ttf);
}

@font-face {
    font-family: CocoTI;
    src: url(../fonts/cocogoose/CocogoosePro_Thin-Italic.ttf);
}

@font-face {
    font-family: Gothic;
    src: url(../fonts/century_gothic/GOTHIC.TTF);
}


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

body {
    font-family: Gothic;
    color: #444444;
}

a {
    color: #5846f9;
    text-decoration: none;
}

a:hover {
    color: #8577fb;
    text-decoration: none;
}

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


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

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #5846f9;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

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

.back-to-top:hover {
    background: #7b27d8;
    color: #fff;
}

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


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #5846f9;
    border-top-color: #e7e4fe;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

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


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

#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
    background: rgb(255, 255, 255);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}

#header .logo img {
    max-height: 70px;
}

#header .logo img.log-c {
    display: none;
}

#header.header-scrolled img.log-bn {
    display: none;
}

#header.header-scrolled img.log-c {
    display: inline-block;
}

#header.header-scrolled .navbar a {
    color: #ea581f;
}

#header.header-scrolled .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ea581f;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

#header.header-scrolled .navbar a:hover:before,
#header.header-scrolled .navbar li:hover>a:before,
#header.header-scrolled .navbar .active:before {
    visibility: visible;
    width: 100%;
}


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


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

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

.navbar li {
    position: relative;
}

.navbar>ul>li {
    padding: 10px 0 10px 24px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    font-family: Gothic;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
}

.navbar a.ctz,
.navbar a.ctz:focus {
    font-weight: bolder;
    font-size: 22px;
}

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

.navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #fff;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
    visibility: visible;
    width: 100%;
}

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

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 24px;
    top: calc(100% + 30px);
    margin: 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;
}

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

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

.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: #5846f9;
}

.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: #fff;
    font-size: 40px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

#header.header-scrolled .mobile-nav-toggle {
    color: #ea581f;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(28, 47, 65, 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: 55px;
    right: 15px;
    /*bottom: 15px;*/
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile>ul>li {
    padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 20px;
    color: #2c4964;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
    visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #5846f9;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    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: #5846f9;
}

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


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

#hero {
    width: 100%;
    height: 100vh;
    background: url("../img/SIELME_Banners/hero_bg.png") center center no-repeat;
    background-size: cover;
}

#hero .container,
#hero .container-fluid {
    padding-top: 84px;
}

#hero h1 {
    margin: 0;
    font-size: 60px;
    font-family: Gothic;
    line-height: 64px;
    color: #fff;
    font-style: italic;
}

#hero h1 span {
    font-style: normal;
}

#hero h1 span.typed {
    font-size: 70px;
    font-style: normal;
    font-weight: bolder;
}

#hero h2 {
    color: rgba(255, 255, 255, 0.8);
    margin: 10px 0 0 0;
    font-size: 20px;
}

#hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

#hero img.imgfull {
    position: absolute;
    max-width: 125%;
    bottom: -260px;
    right: -190px;
}

#hero img.imgfull.img2 {
    max-width: 110%;
}

#hero img.imgfull.img1.animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

@media (min-width: 1200px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 991px) {
    #hero {
        text-align: center;
    }
    #hero .container,
    #hero .container-fluid {
        padding-top: 68px;
    }
    #hero .animated {
        -webkit-animation: none;
        animation: none;
    }
    #hero .hero-img {
        text-align: center;
    }
    #hero .hero-img img {
        width: 50%;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 25px;
        line-height: 36px;
    }
    #hero h1 span.typed {
        font-size: 45px;
    }
    #hero h2 {
        font-size: 18px;
        line-height: 24px;
    }
    /*#hero .hero-img img {
        width: 60%;
    }*/
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: 80%;
    }
    #hero img.imgfull {
        position: relative;
        max-width: 125%;
        bottom: 0;
        right: 0;
    }
    #hero img.imgfull.img2 {
        max-width: 70%;
        position: absolute;
        left: 70px;
    }
}

@media (max-width: 575px),
(max-height: 600px) {
    #hero {
        height: auto;
    }
}


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

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

.section-bg {
    background-color: #f9f8ff;
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about {
    padding: 135px 0;
    background: url(../img/SIELME_Banners/about_bg.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
}

.about .content h1.tit-num {
    font-family: CocoBI;
    color: #ea581f;
    font-size: 200px;
    margin-bottom: 0;
}

.about .content h3.txt-1,
.about .content h3.txt-2 {
    font-size: 60px;
    color: #ea581f;
    margin-bottom: 0;
}

.about .content h3.txt-1 {
    font-family: CocoT;
    font-style: italic;
}

.about .content h3.txt-2 {
    font-family: Coco;
}

.about .content p.txt-p {
    font-family: CocoTI;
    font-size: 20px;
    color: #20306e;
    padding-left: 150px;
    padding-right: 200px;
    font-weight: 700;
    text-align: justify;
}

.about .content .boxes {
    padding-left: 150px;
    padding-right: 200px;
}

.about .content .boxes .icon-box {
    padding: 30px 10px;
    display: inline-flex;
    border-radius: 25px;
}

.about .content .boxes .icon-box.ib1 {
    background: #c23802;
}

.about .content .boxes .icon-box.ib2 {
    background: #ea581f;
}

.about .content .boxes .icon-box.ib3 {
    background: #dcb12b;
}

.about .content .boxes .icon-box i {
    float: left;
    color: #ffffff;
    font-size: 40px;
    align-self: center;
}

.about .content .boxes .icon-box h4 {
    margin-bottom: 0;
    margin-left: 15px;
    color: #ffffff;
    font-family: CocoTI;
}

@media (max-width: 768px) {
    .about {
        background-position: right;
        padding: 30px 0;
    }
    .about .content h1.tit-num {
        margin-bottom: -40px;
    }
    .about .content h3.txt-1,
    .about .content h3.txt-2 {
        font-size: 50px;
        margin-left: 10px;
    }
    .about .content p.txt-p {
        padding: 25px 35px;
        text-align: left;
        padding-bottom: 0%;
    }
    .about .content .boxes {
        padding: 45px;
    }
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services {
    background: url(../img/SIELME_Banners/services_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: -175px;
}

.services .section-title {
    color: #fff;
}

.services .section-title h4 {
    font-family: CocoTI;
    font-size: 25px;
}

.services .section-title h2 {
    font-family: CocoSL;
    font-size: 65px;
    margin-top: -15px;
}

.services img.imgfull.img1 {
    position: absolute;
    left: 0;
    max-width: 430px;
    bottom: 0;
}

.services img.imgfull.img2 {
    max-width: 85%;
}

.services img.imgfull.img2.animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

.services ul.the-services {
    list-style: none;
    padding-left: 60px;
    color: #fff;
    font-size: 25px;
    font-family: CocoL;
}

.services .the-services li {
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.services .the-services li:before {
    font-family: 'bootstrap-icons';
    content: '\f280';
    color: #fff;
    font-size: 35px;
    margin: 0 5px 0 -15px;
}

.services .the-services li a {
    text-decoration: none;
    color: #fff;
    opacity: 0.6;
    transition: 0.5s all;
}

.services .the-services li a:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .services {
        margin-bottom: 0;
    }
    .services img.imgfull.img1 {
        max-width: 70%;
        position: relative;
        left: 50px;
    }
    .services img.imgfull.img2 {
        max-width: 55%;
        position: absolute;
        left: 95px;
    }
    .services .section-title {
        margin-top: 50px;
    }
    .services .the-services li {
        align-items: flex-start;
    }
}


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/

.features {
    background: #fff;
    padding-top: 150px;
}

.features .box-tit {
    text-align: right !important;
}

.features .box-tit .tit {
    background: linear-gradient(180deg, rgba(246, 193, 8, 1) 0%, rgba(227, 141, 1, 1) 100%);
    padding: 15px 20px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    display: inline-block;
    padding-right: 120px;
    margin-right: -120px;
    padding-left: 35px;
    color: #fff;
}

.features .box-tit .tit h4 {
    font-family: CocoTI;
    font-size: 20px;
    text-align: left;
    margin-bottom: 0;
}

.features .box-tit .tit h2 {
    font-family: CocoSL;
    font-size: 35px;
    margin-bottom: 0;
}

.features .section-title {
    margin-top: 25px;
    color: #ea581f;
}

.features .section-title .tit {
    display: inline-block;
}

.features .section-title .tit h4 {
    font-family: CocoTI;
    font-size: 20px;
    margin-bottom: 0;
}

.features .section-title .tit h2 {
    font-family: CocoSL;
    font-size: 40px;
    margin-bottom: 0;
}

.features .p-txt {
    font-family: CocoTI;
    font-size: 18px;
    color: #2c2c2c;
    margin-top: 25px;
    padding: 0 50px;
    font-weight: 700;
}

.features .p-txt b {
    font-family: CocoSLI;
}

.features .box-download {
    padding: 100px;
}

.features .box-download h5 {
    font-family: CocoTI;
    font-size: 15px;
    margin-bottom: 20px;
}

.features .box-download h5 b {
    font-family: CocoSLI;
}

.features .box-download a {
    background: linear-gradient( 180deg, rgba(246, 193, 8, 1) 0%, rgba(227, 141, 1, 1) 100%);
    padding: 10px 20px;
    border-radius: 30px;
    color: #fff;
}

@media (max-width: 768px) {
    .features .section-title .tit h2 {
        font-size: 35px;
    }
}


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

.clients {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: -50px;
}

.clients .section-title {
    margin-top: 25px;
    color: #ea581f;
    margin-bottom: -90px;
}

.clients .section-title .tit {
    display: inline-block;
}

.clients .section-title .tit h4 {
    font-family: CocoTI;
    font-size: 20px;
    margin-bottom: 0;
}

.clients .section-title .tit h2 {
    font-family: CocoSL;
    font-size: 65px;
    margin-bottom: 0;
}

.clients img {
    padding: 25px;
    transition: all 0.4s ease-in-out;
    filter: grayscale(100);
}

.clients img:hover {
    padding: 10px;
    filter: none;
}


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

#footer {
    color: #fff;
    font-size: 14px;
    background: linear-gradient(180deg, rgba(76, 200, 239, 1) 0%, #0f2367 100%);
    background-size: cover;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    position: relative;
}

#footer .footer-top .footer-contact .section-title {
    margin-top: 25px;
    color: #fff;
    padding: 20px;
}

#footer .footer-top .footer-contact .section-title .tit {
    display: inline-block;
}

#footer .footer-top .footer-contact .section-title .tit h4 {
    font-family: CocoTI;
    font-size: 25px;
    margin-bottom: 0;
}

#footer .footer-top .footer-contact .section-title .tit h2 {
    font-family: CocoSL;
    font-size: 55px;
    margin-bottom: 0;
}

#footer .footer-top .footer-contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

#footer .footer-top .footer-contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

#footer .footer-top .footer-contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

#footer .footer-top .footer-contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

#footer .footer-top .footer-contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

#footer .footer-top .footer-contact .php-email-form input,
#footer .footer-top .footer-contact .php-email-form textarea {
    border-radius: 15px;
    box-shadow: none;
    font-size: 14px;
}

#footer .footer-top .footer-contact .php-email-form input:focus,
#footer .footer-top .footer-contact .php-email-form textarea:focus {
    border-color: #5846f9;
}

#footer .footer-top .footer-contact .php-email-form input {
    padding: 10px 15px;
}

#footer .footer-top .footer-contact .php-email-form input.form-check-input {
    padding: 8px 8px;
}

#footer .footer-top .footer-contact .php-email-form .dashboardcode-bsmultiselect ul {
    border-radius: 25px;
}

#footer .footer-top .footer-contact .php-email-form .dashboardcode-bsmultiselect ul li.badge {
    text-align: start;
    white-space: normal;
}

#footer .footer-top .footer-contact .php-email-form textarea {
    padding: 12px 15px;
}

#footer .footer-top .footer-contact .php-email-form button[type=submit] {
    background: linear-gradient( 180deg, rgba(246, 193, 8, 1) 0%, rgba(227, 141, 1, 1) 100%);
    border: 0;
    padding: 10px 24px;
    font-size: 18px;
    color: #fff;
    transition: 0.4s;
    border-radius: 25px;
    font-family: CocoSLI;
}


/*#footer .footer-top .footer-contact .php-email-form button[type=submit]:hover {
    background: #7b27d8;
}*/

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#footer .copyright-wrap {
    border-top: 1px solid #8577fb;
}

#footer .copyright-wrap .power-by img {
    width: 25%;
    padding-bottom: 20px;
}
@media (max-width: 768px){
    #footer .footer-top .footer-contact .section-title .tit h2{
        font-size:45px;
    }
}