@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: "Nunito", sans-serif !important;
    color: #444;
    background: transparent !important;
}

a {
    color: #FF7E00;
}

a:hover {
    color: #9eccf4;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
    font-family: "Raleway", sans-serif;
}

.heading-hero {
    color: #fff;
    margin-bottom: 30px;
    font-size: 48px;
    font-weight: 900;
}

@media (max-width: 600px) {
    .heading-hero {
        font-size: 28px;
    }
}

.paragraph-hero {
    line-height: 28px;
    width: 40%;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    color: #fff;
}

@media (max-width: 600px) {
    .paragraph-hero {
        width: 70%;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f7faff;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #FF7E00;
}

.section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #FF7E00;
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    right: 15px;
    bottom: 15px;
    background: #FF7E00;
    color: #fff;
    transition: display 0.5s ease-in-out;
    z-index: 99999;
}

.back-to-top:hover {
    color: #fff;
    background: #FF7E00;
    transition: background 0.2s ease-in-out;
}

.back-to-top i {
    font-size: 24px;
    position: absolute;
    top: 8px;
    left: 8px;
}

.btn {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 11px 40px;
    border-radius: 4px;
    transition: 0.5s;
    margin: 10px 0px;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: none;
    outline: none;
}

@media (max-width: 600px) {
    .btn {
        padding: 1rem 1rem;
        font-size: 1.2rem;
        width: 150px;
        margin: 20px 0;
    }
}

.btn--primary {
    background: #FF7E00;
    color: #fff !important;
    border: none !important;
    outline: none;
}

.btn--primary:hover {
    background: #1c5c93;
}

.btn--outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn--outline:hover {
    color: #fff;
}

.carousel-container {
    background: url(../img/coverbg.jpg) no-repeat center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    height: 100vh;
}

.carousel-item {
    width: 100%;
    height: calc(100vh - 100px);
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
    overflow: hidden;
}

@media (max-width: 900px) {
    .carousel-item {
        height: calc(100vh - 70px);
    }
}

.carousel-item::before {
    content: "";
    background: rgba(14, 6, 36, 0.9);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
}

.carousel-content {
    text-align: left;
}

.carousel-content.container {
    padding: 0 10px;
}

@media (max-width: 900px) {
    .carousel-content.container {
        padding: 0 10px;
    }
}

@media (max-width: 600px) {
    .carousel-content.container {
        padding: 0 20px;
    }
}

.carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
}

.carousel-inner .carousel-item,
.carousel-inner .active.carousel-item-left,
.carousel-inner .active.carousel-item-right {
    opacity: 0;
}

.carousel-inner .active,
.carousel-inner .carousel-item-next.carousel-item-left,
.carousel-inner .carousel-item-prev.carousel-item-right {
    opacity: 1;
    transition: 0.5s;
}

.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev,
.carousel-inner .active.carousel-item-left,
.carousel-inner .active.carousel-item-right {
    left: 0;
    transform: translate3d(0, 0, 0);
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    background: none;
    font-size: 48px;
    line-height: 1;
    width: auto;
    height: auto;
}

.carousel-indicators li {
    cursor: pointer;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    font-size: 14px;
    background: #0f0e44;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    background: #f3f5fa;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #FF7E00;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #209dd8;
    color: #fff;
    text-decoration: none;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #FF7E00;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li :first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #777777;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a :hover {
    text-decoration: none;
    color: #47b2e4;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #FF7E00;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
    font-size: 28px;
    margin: 0 0 10px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 600;
    color: #37517e;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Jost", sans-serif;
    color: #5e5e5e;
}

#footer .footer-bottom {
    padding-top: 30px;
    padding-bottom: 30px;
    color: #fff;
}

@media (max-width: 600px) {
    #footer .footer-bottom {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

#footer .copyright {
    float: left;
}

#footer .credits {
    float: right;
    font-size: 13px;
}

@media (max-width: 600px) {
    #footer .credits {
        padding-top: 4px;
    }
}

#footer .credits a {
    transition: 0.3s;
}

#footer .copyright,
#footer .credits {
    text-align: center;
    float: none;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */

.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: "Nunito" !important;
}

.nav-menu>ul>li,
.nav-menu *>ul>li {
    position: relative;
    white-space: nowrap;
    float: left;
}

.nav-menu a,
.nav-menu * a {
    display: block;
    position: relative;
    color: #425463;
    padding: 12px 15px;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 800;
    font-family: "Nunito", sans-serif !important;
}

.nav-menu a:hover,
.nav-menu a .active>a,
.nav-menu a li:hover>a,
.nav-menu * a:hover,
.nav-menu * a .active>a,
.nav-menu * a li:hover>a {
    color: #FF7E00;
    text-decoration: none;
}

.nav-menu .drop-down .drop-down>a:after,
.nav-menu * .drop-down .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down :hover>ul,
.nav-menu * .drop-down :hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down ul,
.nav-menu * .drop-down ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: ease all 0.3s;
}

.nav-menu .drop-down ul a,
.nav-menu * .drop-down ul a {
    padding: 10px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: none;
    color: #103453;
}

.nav-menu .drop-down li,
.nav-menu * .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a,
.nav-menu * .drop-down ul a:hover,
.nav-menu * .drop-down ul .active>a,
.nav-menu * .drop-down ul li:hover>a {
    color: #FF7E00;
}

.nav-menu .drop-down .drop-down ul,
.nav-menu * .drop-down .drop-down ul {
    top: 0;
    left: 100%;
}

@media (min-width: 1800px) {
    .nav-menu .drop-down .drop-down ul,
    .nav-menu * .drop-down .drop-down ul {
        left: -90%;
    }
}

.nav-menu.drop-down .drop-down:hover>ul :hover>ul,
.nav-menu *.drop-down .drop-down:hover>ul :hover>ul {
    opacity: 1;
    top: 0;
}

@media (min-width: 1800px) {
    .nav-menu.drop-down .drop-down:hover>ul :hover>ul,
    .nav-menu *.drop-down .drop-down:hover>ul :hover>ul {
        left: -100%;
    }
}

.nav-menu .drop-down .drop-down>a,
.nav-menu * .drop-down .drop-down>a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after,
.nav-menu * .drop-down .drop-down>a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (min-width: 1800px) {
    .nav-menu .drop-down .drop-down>a:after,
    .nav-menu * .drop-down .drop-down>a:after {
        content: "\ea9d";
    }
}

/* Mobile Navigation */

.mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    left: -260px;
    width: 260px;
    padding-top: 18px;
    background: #1f3548;
    transition: 0.4s;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #e3f0fc;
    padding: 10px 20px;
    font-weight: 500;
}

@media (max-width: 600px) {
    .mobile-nav a .btn {
        padding: 11px 10px;
        margin: 10px 0;
    }
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: #9eccf4;
    text-decoration: none;
}

.mobile-nav .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down>a:after {
    content: "\eaa0";
}

.mobile-nav .drop-down>a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 20px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: #5c768d;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(31, 53, 72, 0.7);
    overflow: hidden;
    display: none;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    height: 70px;
    transition: all 0.5s;
    transition: all 0.5s;
    padding: 10px 0;
    background: #fff;
    z-index: 997;
}

@media (max-width: 600px) {
    #header {
        background: #22293d;
    }
}

#header .header-scrolled {
    background-color: #FF7E00;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    background: #fff;
}

#header .logo h1 {
    font-size: 25px;
    margin: 0;
    padding: 10px 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

#header .logo img {
    max-height: 60px;
    margin-bottom: 15px;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/

.about {
    padding-bottom: 30px;
}

.about .container {
    box-shadow: 0 5px 25px 0 rgba(214, 215, 216, 0.6);
}

.about .video-box img {
    padding: 15px 0;
}

.about .section-title p {
    text-align: left;
    font-style: italic;
    color: #666;
}

.about .about-content {
    padding: 40px;
}

.about .icon-box:hover .icon {
    background: #428bca;
}

.about .icon-box:hover .icon i {
    color: #fff;
}

.about .icon-box+.icon-box {
    margin-top: 40px;
}

.about .icon-box .icon {
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: #f1f7fb;
    border-radius: 6px;
    transition: 0.5s;
}

.about .icon-box .icon i {
    color: #428bca;
    font-size: 32px;
}

.about .icon-box .title {
    margin-left: 95px;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
    text-transform: uppercase;
}

.about .icon-box .title a {
    color: #343a40;
    transition: 0.3s;
}

.about .icon-box .title a:hover {
    color: #428bca;
}

.about .icon-box .description {
    margin-left: 95px;
    line-height: 24px;
    font-size: 14px;
}

.about .video-box {
    position: relative;
}

.about .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#428bca 50%, rgba(66, 139, 202, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.about .play-btn:hover::after {
    border-left: 15px solid #428bca;
    transform: scale(20);
}

.about .play-btn:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
}

.about .play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(66, 139, 202, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

/*--------------------------------------------------------------
  # About Lists
  --------------------------------------------------------------*/

.about-lists {
    padding: 40px 0;
}

.about-lists .row {
    overflow: hidden;
}

.about-lists .content-item {
    padding: 40px;
    margin: 10px 7px;
}

@media (max-width: 600px) {
    .about-lists .content-item {
        padding: 40px 0;
    }
}

.about-lists .content-item span {
    display: block;
    font-size: 24px;
    font-weight: 400;
    color: #9eccf4;
}

.about-lists .content-item h4 {
    font-size: 20px;
    font-weight: 600;
    padding: 0;
    margin: 20px 0;
}

.about-lists .content-item p {
    color: #181717;
    font-size: 15px;
    margin: 0;
    padding: 0;
}

.about-lists .icon-box {
    background: #fff;
    box-shadow: 0px 0px 3px rgba(73, 78, 92, 0.15);
    padding: 20px 20px;
    margin: 10px 7px;
    border-radius: 4px;
}

.about-lists .icon-box:hover .icon {
    background: #FF7E00;
}

.about-lists .icon-box:hover .icon i {
    color: #fff;
}

.about-lists .icon-box+.icon-box {
    margin-top: 40px;
    text-align: center;
}

.about-lists .icon-box .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: #f1f7fb;
    border-radius: 6px;
    transition: 0.5s;
}

.about-lists .icon-box .icon i {
    color: #FF7E00;
    font-size: 32px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services {
    padding: 60px 0;
}

.services .icon-box {
    padding: 15px 10px;
    margin: 10px 30px 10px 10px;
    text-align: center;
    box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    border-radius: 3px;
}

@media (max-width: 600px) {
    .services .icon-box {
        margin: 10px;
    }
}

.services .icon-box:hover .icon i {
    box-shadow: 0px 0 30px rgba(22, 49, 146, 0.5);
}

.services .icon-box .icon {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.services .icon-box .icon i {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 50%;
    transition: 0.5s;
    color: #FF7E00;
    font-size: 40px;
    overflow: hidden;
    padding-top: 20px;
    box-shadow: 0px 0 25px rgba(0, 0, 0, 0.15);
}

.services .title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 18px;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
}

.services .title a {
    color: #444;
    transition: 0.3s;
}

.services .title a a:hover {
    color: #FF7E00;
}

.services .description {
    line-height: 24px;
    font-size: 14px;
}

.pricing {
    padding: 70px 0;
}

.pricing .pricing-box {
    border-radius: 20px;
    box-shadow: 0 3px 0px 0 rgba(65, 62, 102, 0.08);
    transition: all 0.3s ease-in-out;
    padding: 40px 0px;
    position: relative;
    backface-visibility: hidden;
    margin: 60px 5px;
}

.pricing .pricing-box--1 {
    background-image: linear-gradient( to right bottom, rgba(255, 185, 0, 0.85), rgba(255, 119, 48, 0.85));
}

.pricing .pricing-box--2 {
    background-image: linear-gradient( to right bottom, rgba(126, 213, 111, 0.85), rgba(40, 180, 133, 0.85));
}

.pricing .pricing-box--3 {
    background-color: #0f0e44;
}

@media (max-width: 600px) {
    .pricing .pricing-box {
        margin: 10px 5px;
    }
}

.pricing .pricing-box:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    box-shadow: 0 20px 35px 0 rgba(65, 62, 102, 0.08);
}

.pricing .pricing-box .pricing-content {
    overflow: hidden;
    margin: 0;
}

.pricing .pricing-box .pricing-content .title-box {
    text-align: center;
    margin: 0;
}

.pricing .pricing-box .pricing-content .title-box h3 {
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.pricing .pricing-box .pricing-content .curr-box {
    position: relative;
    left: -22px;
    background: white;
    padding: 10px;
    border-bottom-right-radius: 80px;
    border-top-right-radius: 80px;
    box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.2);
    margin-right: 50px;
    display: block;
}

.pricing .pricing-box .pricing-content .curr-box .amount.amount-1 {
    color: #0f0e44;
}

.pricing .pricing-box .pricing-content .curr-box .amount.amount-2 {
    background-image: linear-gradient( to right bottom, rgba(126, 213, 111, 0.85), rgba(40, 180, 133, 0.85));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pricing .pricing-box .pricing-content .curr-box .amount.amount-3 {
    background-image: linear-gradient( to right bottom, rgba(41, 152, 255, 0.85), rgba(86, 67, 250, 0.85));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pricing .pricing-box .pricing-content .curr-box .amount .price {
    font-size: 30px;
    font-weight: 600;
    display: block;
    margin-left: 50px;
}

.pricing .pricing-box .pricing-content .curr-box .amount .duration {
    font-size: 17px;
    font-weight: 600;
    display: block;
    margin-left: 50px;
}

.pricing .pricing-box .pricing-content .price-list {
    text-align: center;
    margin: 20px 0;
}

.pricing .pricing-box .pricing-content .price-list .list-unstyled {
    padding: 20px 0;
    list-style: none;
    color: #fff;
    text-align: left;
    line-height: 20px;
}

.pricing .pricing-box .pricing-content .price-list .list-unstyled .list-item {
    padding: 10px 0 10px 30px;
    position: relative;
    margin: 0 30px;
}

.pricing .pricing-box .pricing-content .price-list .list-unstyled .list-item i {
    color: #fff;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 6px;
}

.pricing .pricing-box .pricing-content .pricing-button {
    text-align: center;
    margin-top: 30px;
}

.pricing .pricing-box .pricing-content .pricing-button .btn {
    padding: 10px 40px;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 15px;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/

.faq .faq-list {
    padding: 0 100px;
}

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 30px;
    outline: none;
}

.faq .faq-list a .collapsed {
    color: #37517e;
    transition: 0.3s;
}

.faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.faq .faq-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    position: relative;
}

.faq .faq-list li+li {
    margin-top: 15px;
}

.faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: #FF7E00;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list a.collapsed:hover {
    color: #FF7E00;
}

.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
    display: none;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/

.contact {
    overflow: hidden;
}

.contact .info-box {
    color: #444;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px 0 30px 0;
    margin-bottom: 30px;
    width: 100%;
}

.contact .info-box i {
    font-size: 32px;
    color: #FF7E00;
    border-radius: 50%;
    padding: 8px;
    border: 2px solid #9eccf4;
}

.contact .info-box h3 {
    font-size: 20px;
    color: #666;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.contact .email-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px;
    border: none;
    outline: none;
}

.contact .email-form button[type="submit"] {
    background: #FF7E00;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
}

.contact .email-form button[type="submit"] button[type="submit"]:hover {
    background: #6aa3d5;
}

.contact .email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.contact .email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .email-form .error-message br+br {
    margin-top: 25px;
}

.contact .email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .email-form input {
    padding: 20px 15px;
}

.contact .email-form input::focus {
    border: none;
    outline: none;
}

.contact .email-form input,
.contact .email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    padding: 12px 15px;
}

.contact .email-form input::focus,
.contact .contact .email-form::focus {
    background-color: #FF7E00;
}

/*--------------------------------------------------------------
  # forms Login | Input  Sections
  --------------------------------------------------------------*/

.auth {
    padding: 60px 0;
    overflow: hidden;
}

.h-100 {
    height: 100% !important;
    background-color: #0f0e44 !important;
}

.auth__logo {
    max-height: 70px;
}

.auth .card {
    max-width: 450px;
    display: block;
    margin: 0 30px;
    padding: 20px 30px;
    border-color: #edf2f9;
    -webkit-box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03);
    box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03);
}

@media (max-width: 600px) {
    .auth .card {
        margin: 0 10px;
    }
}

.auth .card h1 {
    font-size: 26px;
    line-height: 29px;
    font-weight: 600;
    color: #22293d;
}

.auth .card h2 {
    font-size: 17px;
    line-height: 29px;
    font-weight: 500;
    color: #22293d;
    text-transform: capitalize;
}

.auth .card__form {
    width: 100%;
    background: transparent;
}

.auth .card__form ::-webkit-input-placeholder {
    color: #999;
}

.auth .card__form .form-control {
    display: block;
    width: 100%;
    padding: 22px 22px;
    font-size: .9375rem;
    font-weight: 400;
    line-height: 1.5;
    color: #12263f;
    background-color: #fff;
    background-clip: padding-box;
    border-radius: 4px;
    -webkit-transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
}

.auth .card__form .form_control {
    display: block;
    width: 100%;
    padding: 8px 22px;
    font-size: .9375rem;
    border: 1px solid #999;
}

.auth .card__form input,
.auth .card__form select {
    border-radius: 4px;
    box-shadow: none;
    font-size: 12px;
    outline: none;
    padding: 20px 12px;
    transition: border-color .15s ease-in-out;
}

/* .auth .card__form select option{
  border: 1px solid #999;

} */

.auth .card__form input:focus,
.auth .card__form select:focus {
    border: 1px solid #0f0e44;
}

.auth .card__form label {
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    text-align: left !important;
}

.auth .card__form button {
    text-transform: capitalize;
    font-size: 15px;
    background: #0f0e44 !important;
    font-weight: 500;
    padding: 12px 20px;
    width: 100%;
    transition: all .3s;
    border-radius: 4px;
    margin: 0;
    border: none !important;
}

.auth .card__form button:focus {
    border: none !important;
}

.auth .card__form small {
    color: rgb(71, 71, 71);
    display: block;
    text-transform: capitalize;
    font-size: 14px;
}

.auth .card__form small a {
    color: #0f0e44;
}

/*--------------------------------------------------------------
  # Transactions Sections
  --------------------------------------------------------------*/

#transaction {
    padding: 60px 0;
}

#transaction .transaction-box {
    display: block;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.2);
    margin: 0 10px;
}

#transaction .transaction-box .nav-tabs {
    background-color: #0f0e44;
    display: block;
    padding: 25px 100px;
    color: #ddd;
}

@media (max-width: 600px) {
    #transaction .transaction-box .nav-tabs {
        padding: 8px 44px;
        display: inline-block;
        backface-visibility: none;
    }
}

#transaction .transaction-box .nav-tabs .nav-item {
    display: inline-block;
}

#transaction .transaction-box .nav-tabs .nav-item .nav-link {
    display: inline-block;
    text-transform: uppercase;
    color: #ddd;
    font-weight: 700;
    margin: 0px 40px;
    transition: color 0.4s;
}

@media (max-width: 600px) {
    #transaction .transaction-box .nav-tabs .nav-item .nav-link {
        margin: 0 5px;
        font-weight: 600;
        font-size: 16px;
    }
}

#transaction .transaction-box .nav-tabs .nav-item .nav-link.active {
    background: #fff;
    color: #FF7E00 !important;
    border: none;
}

#transaction .transaction-box .tab-content .tab-pane {
    overflow: hidden;
}

#testimonial {
    padding: 60px 0;
}

#testimonial .testimonial-box {
    padding: 30px;
    text-align: center;
    box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background: #fff;
    margin: 10px;
}

#testimonial .testimonial-box img {
    height: 120px;
    height: 120px;
    border-radius: 50%;
}

#testimonial .testimonial-box .name {
    font-size: 20px;
    text-transform: uppercase;
    margin: 10px 0;
}

#testimonial .testimonial-box .stars {
    display: inline-block;
}

#testimonial .testimonial-box .stars i {
    color: #FF7E00;
    margin-bottom: 20px;
}

#testimonial .testimonial-box p {
    position: relative;
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#intro {
    width: 100%;
    height: 80%;
    background: #000;
    overflow: hidden;
    position: relative;
}

@media (max-height: 500px) {
    #intro {
        height: 150vh;
    }
}

#featured-services {
    background: #fff;
}