/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Jost", sans-serif;
    --heading-font: "Jost", sans-serif;
    --nav-font: "Jost", sans-serif;
}

/* Global Colors */
:root {
    --background-color: #fdfdfd;
    /* Background color for the entire website, including individual sections */
    --default-color: #5e6265;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #124265;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #16517c;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #f3f3f3;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors */
:root {
    --nav-color: #485664;
    /* The default color of the main navmenu links */
    --nav-hover-color: #4d7bd2;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #485664;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #0ea2bd;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

.light-background {
    --background-color: #eef0f2;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #3a4753;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #4f6171;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

.hidemov {
    display: block;
}

.showmov {
    display: none;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    background-color: #fdfdfd;
    padding: 20px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 50px;
    margin-right: 32px;
    margin-left: 30px;
}

.header .logo img+img {
    height: 30px;
    padding-bottom: 5px;
    margin-left: 4px;
    margin-right: 1px;
}

.header .logo h1 {
    font-size: 1px;
    font-weight: 300;
    margin: 0;
    color: white;
}

.header .logo span {
    color: var(--accent-color);
    font-weight: 400;
    font-size: 34px;
    margin-left: 2px;
}

.btn-getstarted,
.btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 16px;
    font-weight: 500;
    padding: 8px 26px;
    margin: 0;
    border-radius: 4px;
    transition: 0.3s;
    margin-right: 35px;
}

.btn-getstarted:hover,
.btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background: var(--heading-color);
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 20px;
    }

    .header .navmenu {
        order: 3;
    }
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu>ul>li {
        white-space: nowrap;
        padding: 15px 14px;
    }

    .navmenu>ul>li:last-child {
        padding-right: 0;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        font-size: 17px;
        padding: 0 2px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu>ul>li>a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--accent-color);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navmenu a:hover:before,
    .navmenu li:hover>a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--accent-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: #fdfdfd;
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 8px 15px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: #fdfdfd;
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    color: var(--contrast-color);
    background-color: #06324c;
    font-size: 14px;
    position: relative;
}

.footer img {
    height: 35px;
    margin-right: 15px;
}

.footer a {
    color: #cf601d;
}

.footer .copyright {
    padding: 20px 0;
}



/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--heading-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Page Titles
--------------------------------------------------------------*/
.page-title {
    --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 25px 0;
    position: relative;
}

.page-title h1 {
    font-size: 28px;
    font-weight: 300;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 100px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 4px;
    position: relative;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.section-title p {
    margin-bottom: 0;
    font-size: 24px;
    margin-left: 14%;
    margin-right: 14%;
    font-weight: 300;
}

.section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 160px;
    height: 1px;
    background: #dadee2;
    left: 0;
    right: 0;
    bottom: 1px;
    margin: auto;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 52vh;
    position: relative;
    padding: 50px 0 40px 0;
    display: flex;
    align-items: center;
    background: url("../img/header.jpg") center center no-repeat;
    background-size: cover;
    background-color: #06324c;
}

.hero h1 {
    margin: 0 0 20px 0;
    font-size: 40px;
    font-weight: 400;
    text-align: left;
    color: #82a4cd;
}

.hero p {
    margin: 5px -16px 30px 0;
    font-size: 24px;
    font-weight: 300;
    text-align: left;
    line-height: 1.4;
    color: silver;
}

.hero p img {
    width: 520px;
    margin-bottom: 20px;
    margin-left: 4px;
}

.hero .animated {
    margin-bottom: 60px;
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.imgheader {
    display: none;
}

@media (min-width: 992px) {
    .hero .animated {
        max-width: 92%;
        margin-right: 8%;
    }
}

@media (max-width: 991px) {
    .hero .animated {
        max-width: 60%;
    }
}

@media (max-width: 575px) {
    .hero .animated {
        max-width: 80%;
    }
}


@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
    padding: 25px;
    transition: all ease-in-out 0.4s;
    height: 100%;
}

.featured-services .service-item .icon {
    margin-bottom: 20px;
    text-align: center;
}

.featured-services .service-item .icon i {
    color: var(--heading-color);
    font-size: 60px;
    transition: 0.3s;
}

.featured-services .content h2 {
    font-size: 22px;
    font-weight: 500;
}

.featured-services .content p {
    font-size: 20px;
    line-height: 1.3;
    margin-right: 30px;
    margin-top: 20px;
    font-weight: 300;
}

.featured-services .service-item h4 {
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 24px;
    text-align: center;
}

.featured-services .service-item h4 a {
    color: var(--heading-color);
    transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
    line-height: 24px;
    font-size: 20px;
    margin-bottom: 0;
    text-align: center;
    font-weight: 300;
}

.featured-services .service-item:hover {
    transform: translateY(-10px);
    background-color: var(--surface-color);
    box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
}

.featured-services .service-item:hover h4 a {
    color: var(--accent-color);
}

.featured-services h3 {
    color: #16517c;
    font-size: 34px;
}

.icon-box {
    height: 100%;
    padding: 40px 15px 40px 34px;
    text-align: left;
    transition: 0.3s;
    border-radius: 8px;
    border: 1px solid #e7e7e7;
    border-bottom: 7px solid #dadee2;
}

.icon-box i {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 46px;
    line-height: 0;
    transition: all 0.4s ease-out 0s;
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.icon-box h4 {
    font-size: 24px;
    color: #2e65a3;
}

.icon-box p {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 300;
    margin-right: 50px;
    line-height: 1.4;
}

.board {
    height: 100%;
    padding: 40px 15px 40px 34px;
    text-align: left;
    transition: 0.3s;
    border-radius: 8px;
    background-color: #f7f7f7;
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about .content {
    background-color: #f7f7f7;
    padding: 75px 70px 75px 54px;
    border-radius: 10px 0 0 10px;
}

.about .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.about img {
    border-radius: 10px;
}

.about .about-img:before {
    position: absolute;
    inset: -60px 0 0 -60px;
    content: "";
    background: url("../img/about-bg.png") top left;
    background-repeat: no-repeat;
    z-index: 1;
}

.about .about-img img {
    position: relative;
    z-index: 2;
}

@media (max-width: 575px) {
    .about .about-img {
        margin: 30px 0 0 30px;
    }

    .about .about-img:before {
        inset: -30px 0 0 -30px;
    }
}

.about h3 {
    font-weight: 300;
    font-size: 22px;
    margin-bottom: 20px;
}

.about h3 span {
    color: var(--accent-color);
    font-family: "Krona One", sans-serif;
    font-weight: 400;
    font-size: 24px;
    text-shadow: 2px 2px 4279px #b4b4b4;
}

.about .nav-pills {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .nav-pills li+li {
    margin-left: 40px;
}

.about .nav-link {
    background: none;
    font-size: 18px;
    font-weight: 400;
    color: var(--default-color);
    padding: 12px 0;
    margin-bottom: -2px;
    border-radius: 0;
}

.about .nav-link.active {
    color: var(--accent-color);
    background: none;
    border-bottom: 3px solid var(--accent-color);
}

@media (max-width: 575px) {
    .about .nav-link {
        font-size: 16px;
    }
}

.about .tab-content h4 {
    font-size: 18px;
    margin: 0;
    font-weight: 700;
    color: var(--default-color);
}

.about .tab-content i {
    font-size: 22px;
    line-height: 0;
    margin-right: 8px;
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    padding: 0;
}

.call-to-action .container {
    padding: 40px 20px;
    background: color-mix(in srgb, var(--default-color), transparent 96%);
    border-radius: 10px;
    margin-bottom: 80px;
}

.call-to-action .content {
    padding: 0px 30px;
}

.call-to-action .content h3 {
    font-size: 26px;
    font-weight: 500;
    color: #16517c;
    margin-bottom: 30px;
    text-align: center;
}

.call-to-action .content p {
    font-weight: 300;
    font-size: 19px;
    line-height: 1.2;
    text-align: center;
}

.call-to-action .content p span {
    font-size: 21px;
    font-weight: 400;
    color: #16517c;
}

.call-to-action .content img {
    width: 60%;
    margin: 25px 20% 0;
}

img.shadow {
    box-shadow: 1px 5px 9px rgba(0, 0, 0, 0.3);
}

.progress {
    height: 90px;
    display: block;
    background: none;
    border-radius: 0;
}

.progress .skill {
    color: var(--accent-color);
    padding: 0;
    margin: 0 0 12px 0;
    display: block;
    font-weight: 500;
    font-size: 20px;
}

.progress .skill .val {
    float: right;
    font-style: normal;
}

.progress-bar-wrap {
    background: #e5e5e5;
    height: 20px;
}

.progress-bar {
    width: 1px;
    height: 20px;
    transition: 0.9s;
    background-color: var(--accent-color);
}

strong {
    font-weight: 500;
}


/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
    background-color: var(--backgroun-color);
    padding: 60px 40px;
    box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 10px;
    overflow: hidden;
    border-color: #d7d7d7;
}

.pricing .pricing-header {
    background: #7c7c7c;
    background-size: cover;
    text-align: center;
    padding: 40px;
    margin: -60px -40px 0;
}

.pricing p.name {
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 32px;
    color: var(--contrast-color);
}

.pricing p.price {
    font-size: 48px;
    color: var(--contrast-color);
    font-weight: 400;
    margin-bottom: 0;
}

.pricing p.price sup {
    font-size: 28px;
}

.pricing p.price span {
    color: color-mix(in srgb, var(--contrast-color), transparent 20%);
    font-size: 39px;
}

.pricing p.price span.custom {
    font-size: 24px;
    color: white;
}

.pricing ul {
    padding: 30px 0;
    list-style: none;
    text-align: left;
    margin-bottom: 0;
    font-size: 18px;
}

.pricing ul li {
    padding: 5px 0;
    display: flex;
}

.pricing ul i {
    color: var(--accent-color);
    font-size: 30px;
    padding-right: 3px;
    line-height: 0;
}

.pricing ul .na {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    font-size: 24px;
    padding-left: 4px;
}

.pricing ul .na span {
    text-decoration: line-through;
}

.pricing .buy-btn {
    display: inline-block;
    padding: 12px 40px;
    border-radius: 6px;
    color: var(--default-color);
    transition: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
    border: 1px solid var(--default-color);
}

.pricing .buy-btn:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}

.pricing .featured {
    border-color: var(--accent-color);
}

.pricing .featured .pricing-header {
    background: #154f7a;
}

.pricing .featured .buy-btn {
    border-color: var(--accent-color);
    background: var(--accent-color);
    color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
    font-weight: 400;
    font-size: 34px;
    margin-bottom: 20px;
}

.faq .content p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container {
    margin-top: 15px;
}

.faq .faq-container .faq-item {
    background-color: #f7f7f7;
    position: relative;
    padding: 21px 20px;
    margin-bottom: 2px;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-bottom: 1px solid #cfcfcf;
    border-radius: 6px;
}

.faq .faq-container .faq-item:last-child {
    margin-bottom: 0;
}

.faq .faq-container .faq-item p {
    font-weight: 500;
    font-size: 19px;
    color: #154f7a;
    margin: 0 30px 0 32px;
    transition: 0.3s;
    cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
    color: var(--accent-color);
    padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
    color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.4;
    color: var(--default-color);
}

.faq .faq-container .faq-item .faq-icon {
    position: absolute;
    top: 22px;
    left: 20px;
    font-size: 22px;
    margin-top: 2px;
    line-height: 0;
    transition: 0.3s;
    color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
    margin-top: 8px;
}

.faq .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
    color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
}

.faq img {
    margin-top: 78px !important;
    border-radius:
        4px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact {
    background-color: #f7f7f7;
}

.contact .section-subtitle {
    text-align: left;

    margin-bottom: 40px;
    margin-top: 40px;
    margin-right: 105px;
}

.contact .section-subtitle h2 {
    font-size: 28px;
    line-height: 1.1;
}

.contact .section-subtitle span {
    text-transform: capitalize;
    font-size: 14px;
    display: inline-block;
    /* background: #3e54ff; */
    color: #fff;
    padding: 4px 18px;
    margin-bottom: 5px;
}

.contact .section-subtitle p {
    font-size: 21px;
    margin-top: 20px;
    line-height: 1.15;
    font-weight: 300;
}

.contact .right-form {
    background: #fff;
    padding: 40px;
    box-shadow: 0px 0px 35px #0000000d;
    border-radius: 8px;
}

.contact .right-form {
    background: #fff;
    padding: 40px;
    box-shadow: 0px 0px 35px #0000000d;
    border-radius: 8px;
}

.contact .section-heading {
    margin-bottom: 30px;
    display: block;
}

.contact h3 {
    padding-top: 20px;
    font-size: 26px;
    margin-bottom: 32px;
    color: #2e65a3;
}

.contact .section-heading h4 {
    font-size: 28px;
    font-weight: 500;
    line-height: 32px;
    color: #16517c;
}

.contact .contact-form-box input {
    height: 40px;
    width: 100%;
    border: 1px solid #e1e1e1;
    border-radius: 0;
    margin-bottom: 10px;
    color: #616161;
    font-size: 16px;
    font-weight: 400;
    padding: 0px 14px;
}

.contact .contact-form-box textarea {
    height: 150px;
    width: 100%;
    border: 1px solid #e1e1e1;
    border-radius: 0;
    margin-bottom: 10px;
    color: #616161;
    font-size: 16px;
    font-weight: 400;
    padding: 14px;
}

.contact .contact-form-box .button .btn {
    width: 100%;
}

/* .dropdown {
    margin-left: 40%;
} */

.flag-icon-background {
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat
}

.flag-icon {
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat;
    position: relative;
    display: inline-block;
    margin-right: 12px;
    width: 1.33333333em;
    line-height: 1em
}

.flag-icon:before {
    content: '\00a0'
}

.flag-icon.flag-icon-squared {
    width: 1em
}

.flag-icon-co {
    background-image: url(../img/co.svg)
}

.flag-icon-mx {
    background-image: url(../img/mx.svg)
}

.flag-icon-wo {
    background-image: url(../img/world.svg)
}

.flag-icon-la {
    background-image: url(../img/language.svg)
}

.row {
    justify-content: center !important;
}

/*--------------------------------------------------------------
# RESPONSIVE
--------------------------------------------------------------*/

@media (max-width: 575px) {

    .hidemov {
        display: none;
    }

    .showmov {
        display: block;
    }

    .header .logo img {
        max-height: 30px;
        margin-right: 15px;
        margin-left: 0;
    }

    .header .logo img+img {
        height: 21px;
        padding-bottom: 5px;
        margin-left: 4px;
        margin-right: 1px;
    }

    .hero {
        min-height: 30vh;
        position: relative;
        padding: 20px 0 32px 0;
        background: none;
        background-color: #06324c;
    }


    .hero h1 {
        font-size: 24px;
        line-height: 36px;
        text-align: center;
        margin: 10px 0 18px;
    }

    .hero p {
        font-size: 19px;
        margin: 5px 0 16px 0;
        text-align: center;
        line-height: 1.3;
    }

    .hero p img {
        width: 280px;
        margin-bottom: 15px;
        margin-left: 2px;
    }

    .imgheader {
        width: 86%;
        border-radius: 10px;
        display: block;
        margin: 25px 7% 0;
    }

    section.about {
        padding-top: 20px;
    }

    .about .content {
        background-color: #f7f7f7;
        padding: 26px 22px;
        border-radius: 10px 10px 0 0;
    }

    .about h3 {
        font-size: 20px;
        text-align: center;
    }

    .btnmov {
        margin: 25px 7% 0;
    }

    .btnmenu {
        border: 2px solid var(--accent-color);
        margin: 10px 20px 0 10px;
        border-radius: 7px;
        background: var(--accent-color);
    }

    .btnmenu a {
        color: var(--contrast-color);
    }

    .section-title h2 {
        font-size: 36px;
        margin-bottom: 8px;
        font-weight: 400;
    }

    section.featured-services {
        padding-top: 20px;
    }

    .featured-services h3 {
        font-size: 28px;
        text-align: center;
        font-weight: 400;
    }

    .featured-services .content p {
        font-size: 19px;
        margin: 22px 3% 0;
        text-align: center;
    }

    .icon-box {
        padding: 30px;
        text-align: center;
        transition: 0.3s;
        border-radius: 10px;
        margin: 0 3%;
    }

    .icon-box i {
        width: 70px;
        height: 70px;
        margin-bottom: 18px;
        font-size: 38px;
    }

    .icon-box h4 {
        font-size: 22px;
        font-weight: 500;
    }

    .icon-box p {
        margin-bottom: 0;
        font-size: 19px;
        margin-right: 0;
        line-height: 1.4;
    }

    .call-to-action .content h3 {
        font-size: 24px;
        margin-bottom: 22px;
        text-decoration: underline;
    }

    .call-to-action .content p {
        font-size: 18px;
        line-height: 1.2;
        text-align: center;
    }

    .call-to-action .container .my-3 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .call-to-action .content {
        padding: 0 24px 70px;
    }

    .call-to-action .content:last-of-type {
        padding-bottom: 10px;
    }

    .progress {
        height: 80px;
    }

    .progress .skill {
        font-size: 18px;
    }

    .call-to-action .content p span {
        font-size: 20px;
    }

    .call-to-action .content img {
        width: 66%;
        margin: 28px 17% 0;
    }

    section.pricing {
        padding-top: 15px;

    }

    .pricing .pricing-item {
        margin: 0 4%;
        padding: 60px 20px 40px;
    }

    .pricing p.name {
        font-weight: 400;
        margin-bottom: 3px;
        font-size: 30px;
        color: var(--contrast-color);
    }

    .pricing p.price {
        font-size: 36px;
        margin-bottom: 0;
    }

    .pricing .pricing-header {
        padding: 30px 20px 22px;
    }

    .pricing ul li {
        line-height: 1.2;
        font-size: 17px;
    }

    .faq img {
        border-radius: 8px;
        width: 70%;
        margin: 0 15% 10px !important;
    }

    .faq .content h3 {
        font-size: 30px;
        margin-bottom: 16px;
        text-align: center;
    }

    .faq .faq-container .faq-item {
        background-color: #eee;
        padding: 20px 14px;
        margin-bottom: 6px;
        border-bottom: 2px solid #cfcfcf;
        border-radius: 8px;
    }

    .faq .faq-container .faq-item .faq-icon {
        top: 22px;
        left: 12px;
        font-size: 21px;
        margin-top: 3px;
    }

    .faq .faq-container .faq-item p {
        font-weight: 400;
        font-size: 18px;
        margin: 0 32px 0 32px;
        line-height: 1.2;
    }

    .faq .faq-container .faq-item .faq-content p {
        margin-bottom: 4px;
        font-size: 17px;
        line-height: 1.3;
    }

    .contact {
        padding-top: 40px;
    }

    .contactsection-title {
        margin-bottom: 35px;
    }

    .contact h3 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .contact .section-subtitle {
        margin-top: 0;
        margin-right: 0;
        padding-right: 20px;
        text-align: center;
        padding: 0;
        margin-bottom: 30px;
    }

    .contact .section-button {
        text-align: center;
    }

    .contact .section-subtitle h2 {
        font-size: 22px;
        line-height: 1.2;
        margin-right: 6px;
        margin-left: 6px;
    }

    .contact .section-subtitle p {
        font-size: 19px;
        margin-top: 18px;
        line-height: 1.2;
    }

    .contact .right-form {
        padding: 30px;
        padding-bottom: 40px;
        margin-top: 20px;
    }

    .contact .button {
        text-align: center;
    }

    .contact .section-heading h4 {
        font-size: 22px;
        line-height: 30px;
    }

    .contact .contact-form-box .button .btn {
        margin-top: 10px;
    }

    .footer {
        font-size: 12px;
    }

    .footer img {
        width: 66%;
        height: auto;
        margin: 2px 17% 10px;
    }

    .dropdown {
        margin-left: 0%;
    }

}