/* Fonts */
:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff;
    /* Background color for the entire website, including individual sections */
    --default-color: #555555;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #222222;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #d62132;
    /* 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: #ffffff;
    /* 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 - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #555555;
    /* The default color of the main navbar links */
    --nav-hover-color: #d44d59;
    /* Applied to main navbar 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: #555555;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #d44d59;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f9f9f9;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --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);
}

#bright,
.bright {
    color: var(--accent-color);
    font-weight: 900
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 85px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 8px 20px;
    margin: 0;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    display: inline-block;
    text-transform: uppercase;
    font-family: var(--default-font);
}

.section-title p {
    color: var(--heading-color);
    margin: 10px 0 0 0;
    font-size: 32px;
    font-weight: 700;
    font-family: var(--heading-font);
}

.section-title p .description-title {
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--accent-color);
    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: color-mix(in srgb, var(--accent-color), transparent 25%);
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}



/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    height: 44px;
    padding: 0;
    font-size: 14px;
    transition: all 0.5s;
    overflow: visible;
    z-index: 996;
}

#topbar:hover {
    z-index: 998;
}

#topbar.topbar-scrolled {
    top: -44px;
}

#topbar .contact-info a {
    line-height: 0;
    color: #fff;
    transition: 0.3s;
}

#topbar .contact-info a:hover {
    color: var(--accent-color);
}

#topbar .contact-info i {
    color: var(--accent-color);
    line-height: 0;
    margin-right: 5px;
}

#topbar .contact-info .phone-icon {
    margin-left: 15px;
}


#topbar .call-us .phone-icon {
    margin-right: 5px;
}

#topbar .call-us {
    background: transparent;
}

#topbar .call-us .header-link {
    color: #fff;
    background: var(--accent-color);
    padding: 6px 25.01px 8px 15px;
    display: inline-block;
    transition: 0.3s;
    border-radius: 1px;
}

#topbar .call-us a:hover {
    background: #fff;
    color: var(--accent-color)
}

#topbar .topbar-span2 {
    display: none;
}

@media (max-width: 331px) {
    #topbar .topbar-span1 {
        display: none
    }

    #topbar .topbar-span2 {
        display: block;
    }

}

/***************************************------------------------**/

#topbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

#topbar li {
    position: relative;
}

#topbar > ul > li {
    position: relative;
    white-space: nowrap;
    /*padding: 10px 0 10px 24px;*/
    margin: 0 12px;
}

#topbar a,
#topbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*padding: 0 3px;*/
    padding: 25px 3px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
}

#topbar a i,
#topbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

#topbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

#topbar a:hover:before,
#topbar li:hover > a:before,
#topbar .active:before {
    visibility: visible;
    width: 100%;
}

#topbar a:hover,
#topbar .active,
#topbar .active:focus,
#topbar li:hover > a {
    color: #fff;
}

#topbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(168, 168, 168, 0.25);
    transition: 0.3s;
    border-top: 2px solid var(--accent-color);
    list-style: none;
}

#topbar .dropdown ul li {
    width: 125px;
}

#topbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #000;
}


#topbar .dropdown ul a i {
    font-size: 12px;
}

#topbar .dropdown ul a:hover,
#topbar .dropdown ul .active:hover,
#topbar .dropdown ul li:hover > a {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

#topbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

#topbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

#topbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    #topbar .dropdown .dropdown ul {
        left: -90%;
    }

    #topbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}



/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
    z-index: 990;
    height: 70px;
    top: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 997;
}

#header.header-scrolled {
    background: rgba(0, 0, 0, 0.9);
    top: 0;
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#header .logo a {
    color: #fff;
}

#header .logo img {
    max-height: 40px;
    padding: 10px
}

.header-inner-pages {
    background: rgba(204, 47, 63, 0.9) !important;
}

.topbar-inner-pages {
    background: rgba(204, 47, 63, 0.9) !important;
}



/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/
.header-social-links {
    margin-left: 20px;
    border-left: 1px solid #fff;
}

.header-social-links a {
    color: #fff;
    display: inline-block;
    line-height: 0px;
    transition: 0.3s;
    padding-left: 20px;
}

.header-social-links a i {
    line-height: 0;
}

.header-social-links a:hover {
    color: #f74856;
}

#header .logo img {
    max-height: 70px;
}


@media (max-width: 768px) {
    .header-social-links {
        padding: 0 1px 0 0;
        border-left: 0;
    }

    .header-social-links a {

        padding-left: 10px;
    }
}

@media (max-width: 500px) {

    #header .logo img {
        max-height: 40px;
    }

}

@media (max-width: 340px) {
    .header-social-links {
        padding: 0;
        border-left: 0;
        margin: 0
    }

    .header-social-links a {

        padding-left: 5px;
    }


}


@media (max-width: 992px) {
    .header-social-links {
        padding: 0 15px 0 0;
        border-left: 0;
    }

    #header {
        border: 0;
        padding: 15px 0;
    }
}


/*--------------------------------------------------------------
# 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 {
    position: relative;
    white-space: nowrap;
    /*padding: 10px 0 10px 24px;*/
    margin: 0 12px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*padding: 0 3px;*/
    padding: 25px 3px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
    font-weight: 600;
    position: relative;
}

.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: -2px;
    left: 0;
    background-color: #de4b50;
    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: 0;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(168, 168, 168, 0.25);
    transition: 0.3s;
    border-top: 2px solid #de4b50;
}

.navbar .dropdown ul li {
    min-width: 200px;


}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #282828;
}

.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: #f74856;
}

.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: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #de4b50;
}

@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(15, 15, 15, 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: 15px;
    color: #000;
}

.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: #de4b50;
}

.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(168, 168, 168, 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: #f74856;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}



.hero .info {
    position: relative;
    inset: 0;
    z-index: 3;
    padding: 140px 0 0px 0;
    width: 100%
}

@media (max-width: 768px),
(max-height: 480px) {
    .hero .info {
        padding: 100px 0px 60px 0px;
    }
}




.hero .info h2 {
    margin-bottom: 30px;
    padding-bottom: 30px;
    font-size: 56px;
    font-weight: 700;
    position: relative;
}

.hero .info h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
}

@media (max-width: 768px) {
    .hero .info h2 {
        font-size: 36px;
    }

    .hero .info h2:after {
        margin: auto;
    }
}

.hero .info p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 18px;
}

.hero .info .btn-get-started {
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid var(--accent-color);
}

.hero .info .btn-get-started:hover {
    background: var(--accent-color);
}

.hero .carousel {
    inset: 0;
    position: absolute;
    overflow: hidden;

}

.hero .carousel-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    transition-duration: 0.4s;

}

.hero .carousel-item img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}


/************************/
.hero .carousel-item video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    transition: 0.3s
}

/************************/

.hero .carousel-item::before {
    content: "";
    background-color: color-mix(in srgb, var(--background-color), transparent 40%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero .carousel-control-prev {
    justify-content: start;
    width: 75px
}

@media (min-width: 640px) {
    .hero .carousel-control-prev {
        padding-left: 15px;
    }
}

.hero .carousel-control-next {
    justify-content: end;
}

@media (min-width: 640px) {
    .hero .carousel-control-next {
        padding-right: 15px;
    }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    background: none;
    font-size: 26px;
    line-height: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    border-radius: 50px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    z-index: 3;
    transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
    opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
    opacity: 0.9;
}


/********************************************************************/

.hero .icon-box {
    padding: 20px 20px;
    transition: ease-in-out 0.3s;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}


.hero .icon-box img {
    max-height: 70px
}

.hero .icon-box i {
    font-size: 32px;
    line-height: 1;
    color: var(--accent-color);
}

.hero .icon-box h3 {
    font-weight: 700;
    margin: 10px 0 0 0;
    padding: 0;
    line-height: 1;
    font-size: 20px;
    line-height: 26px;
}

.hero .icon-box h3 a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: ease-in-out 0.3s;
}

.hero .icon-box:hover {
    border-color: var(--accent-color);
}

.hero .icon-box:hover h3 a {
    color: var(--accent-color);
}

/**************************************************************************/

/*--------------------------------------------------------------
# hero-text Section
--------------------------------------------------------------*/
#hero-text {
    width: 100%;
    d-size: cover;
    position: relative;
    background: transparent;
    align-items: flex-start
}


#hero-text h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
}

#hero-text h2 {
    color: #fff;
    margin: 10px 0 0 0;
    font-size: 24px;
}

/*********************/
#hero-text .btn-get-started {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 8px 24px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    transition: 0.5s;
    animation: fadeInUp 1s both 0.4s;
    margin: 0;
}

#hero-text .abt {
    background: #000;
    margin-bottom: 50px;
}

#hero-text .btn-get-started i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

#hero-text .btn-get-started:hover {
    background: transparent;
    padding-right: 19px;
    border-color: white
}

#hero-text .btn-get-started:hover i {
    margin-left: 10px;
}

#hero-text .btn-link {
    transition-property: color, background-color;
    box-shadow: none;
    border-radius: 0;
    text-decoration: none !important;
}




@media (max-width: 768px) {
    #hero-text {
        text-align: center;
        padding-top: 58px;
    }

    #hero-text h1 {
        font-size: 28px;
    }

    #hero-text h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (max-height: 500px) {
    #hero-text {
        height: 120vh;
    }
}






/**************************************************************/



/*--------------------------------------------------------------
# brands Section
--------------------------------------------------------------*/

.brands {
    background: url("../img/about-bg.jpg") center top no-repeat fixed;
    background-size: cover;
    padding: 60px 0 40px 0;
    position: relative;
}

.brands::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 9;
}

#brands .container {
    position: relative;
    z-index: 10;
}

.brands .member {
    background-color: var(--surface-color);
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 15px;
    padding: 15px;
    overflow: hidden;
    transition: all 0.3s ease-in-out 0s;
    position: relative;
    padding-bottom: 60px
}

.img-container {

    background: black;
    padding: 10px;
    border-radius: 15px 15px 0 0
}

.brands .member img {
    overflow: hidden;
    max-width: 100%;
    max-height: 100px;
}

.brands .member .member-content {
    padding: 0 20px 30px 20px;
}

.brands .member h4 {
    font-weight: 700;
    margin-top: 16px;
    margin-bottom: 2px;
    font-size: 20px;
}

.brands .member span {
    font-style: italic;
    display: block;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.brands .member .social {
    margin-top: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.brands .member .social a {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    transition: 0.3s;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
}

.brands .member .social a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.brands .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

#visit-btn {
    border-radius: 0 0 15px 15px;
    padding: 0;
    margin-top: 5px;
    color: white;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 15px 24px;
    transition: 0.5s;
    animation: fadeInUp 1s both 0.4s;
    background: var(--accent-color);
    position: absolute;
    bottom: 0;
    left: 0;
}

#visit-btn i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

#visit-btn:hover {
    background: #000;
    color: white;
    background: #000;
}

.visit-btn:hover i {
    margin-left: 10px;
}



/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
    background-color: var(--surface-color);
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.stats .stats-item i {
    color: var(--accent-color);
    font-size: 42px;
    line-height: 0;
    margin-right: 20px;
}

.stats .stats-item span {
    color: var(--heading-color);
    font-size: 36px;
    display: block;
    font-weight: 600;
}



.stats .stats-item .span1::after,
.span4::after {
    content: "+"
}


.stats .stats-item p {
    padding: 0;
    margin: 0;
    font-family: var(--heading-font);
    font-size: 16px;
}

/*-------------------------------------
#Global get started button
---------------------------------------*/

.btn-get-started {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 8px 24px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;

    transition: 0.5s;
    animation: fadeInUp 1s both 0.4s;
}

.abt {
    background: #000;
    margin-bottom: 50px
}

.btn-get-started i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

.btn-get-started:hover {
    background: #d44d59;
    padding-right: 19px;
    color: white
}

.btn-get-started:hover i {
    margin-left: 10px;
}

.btn-link {
    transition-property: color, background-color;
    box-shadow: none;
    border-radius: 0;
    text-decoration: none !important;
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/cta1.jpg") fixed center center;
    background-size: cover;
    padding: 120px 0;
    background-attachment: fixed;
}

.cta h3 {
    color: #fff;
    font-size: 65px;
    font-weight: 700;
    padding: 0;
    margin: 0;
}

.cta h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.cta p {
    color: #fff;
}

.cta .cta-btn {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 2px;
    transition: 0.5s;
    margin: 10px;
    background: #009961;
    color: #fff;
    border-radius: 50px;
}



@media (max-width: 1024px) {
    .cta {
        background-attachment: scroll;
    }
}

@media (min-width: 769px) {
    .cta .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
}

.footer .footer-top {
    background-color: color-mix(in srgb, var(--background-color), white 5%);
    padding-top: 50px;
}

.footer .footer-about {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0px 20px;
}

.footer .footer-about .logo {
    margin-bottom: 5px;
    letter-spacing: 1px;
    font-family: var(--heading-font);
    color: var(--heading-color);
    font-size: 36px;
    padding: 0;
    font-weight: 700;
}



/************************/
.footer .footer-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--accent-color);
    padding: 0px 20px;
}

.footer .footer-group .logo {
    margin: 7px 0;
    letter-spacing: 1px;
    font-family: var(--heading-font);
    color: var(--heading-color);
    font-size: 20px;
    background: #000;
    padding: 0;
    font-weight: 700;
    width: 100%;
    text-align: center;
    padding: 10px
}

@media (max-width: 768px) {
    .footer .footer-group .logo {
        margin-top: 10px
    }
}

.footer .footer-group img:first-child {
    margin-bottom: 15px
}



/*********************/

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer h4 {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 15px;
}

.footer h4::after {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    background: var(--accent-color);
    bottom: 0;
    left: 0;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: var(--accent-color);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding: 30px 0;
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 5px;
    font-size: 13px;
}

.footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: color-mix(in srgb, var(--default-color), transparent 90%);
    color: var(--contrast-color);
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    background: var(--accent-color);
    text-decoration: none;
}



/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-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;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    position: relative;
}

.page-title .heading {
    padding: 80px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
    font-size: 38px;
    font-weight: 700;
}

.page-title nav {
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 20px 0;
}

.page-title nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.page-title nav ol li + li {
    padding-left: 10px;
}

.page-title nav ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}






/*-------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 150px 0 60px 0;
    min-height: 70vh;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.breadcrumbs:before {
    content: "";
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.1));
    position: absolute;
    inset: 0;
}

.breadcrumbs h2 {
    font-size: 56px;
    font-weight: 500;
    color: #fff;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff
}

.breadcrumbs ol a {
    color: rgba(255, 255, 255, 0.8);
    transition: 0.3s;
}

.breadcrumbs ol a:hover {
    text-decoration: underline;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
    color: var(--accent-color)
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #fff;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs h2 {
        font-size: 40px;
        font-weight: 600;
        color: #fff;
    }

}

/*--------------------------------------------------------------
# about Section
--------------------------------------------------------------*/

.about .about-img {
    position: relative;
    margin: 60px 0 0 60px;
    z-index: 1
}

.about .about-img:before {
    position: absolute;
    inset: -60px 0 0 -60px;
    z-index: -1;
    content: "";
    background: url("../img/about-bd.png") top left;
    background-repeat: no-repeat;
}

@media (max-width: 575px) {
    .about .about-img {
        margin: 30px 0 0 30px;
    }

    .about .about-img:before {
        inset: -30px 0 0 -30px;
    }
}

/*******************************************************/






.about .about-item + .about-item {
    margin-top: 60px;
}

.about .about-item .content {
    background-color: #000;
    color: #fff;
    padding: 30px;
}

.about .about-item .content h4 {
    color: #fff;
    font-weight: 900;
    position: relative
}

.about .about-item .content h4::after {
    content: "";
    position: absolute;
    width: 10%;
    height: 3px;
    z-index: 996;
    background: white;
    left: 3px;
    bottom: -5px
}


.about .about-item h3 {
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 15px;
}

.about .about-item .more-btn {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 6px 30px;
    border-radius: 6px;
}

.about .about-item .more-btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about .about-item ul {
    list-style: none;
    padding: 0;
}

.about .about-item ul li {
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}

.about .about-item ul li:last-child {
    padding-bottom: 0;
}

.about .about-item ul i {
    font-size: 20px;
    margin-right: 10px;
    color: var(--accent-color);
}

/*.about .about-item img {
    border-radius: 15px;
}*/

.about .about-slider img {
    width: 100%;
}

.about .about-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
    border-radius: 15px;
}

.about .about-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
}

.about .about-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}




/*--------------------------------------------------------------
  # aboutshow Section
  --------------------------------------------------------------*/
.aboutshow .service-item {
    background-color: var(--surface-color);
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    transition: all 0.3s ease-in-out;
    height: 100%;
    position: relative;
    z-index: 1;
}

.aboutshow .service-item:before {
    content: "";
    position: absolute;
    background: var(--accent-color);
    inset: 100% 0 0 0;
    transition: all 0.3s;
    z-index: -1;
}

.aboutshow .service-item .icon {
    margin-bottom: 10px;
}

.aboutshow .service-item .icon i {
    color: var(--accent-color);
    font-size: 36px;
    transition: ease-in-out 0.3s;
}

.aboutshow .service-item h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
}

.aboutshow .service-item h4 a {
    color: var(--heading-color);
    transition: ease-in-out 0.3s;
}

.aboutshow .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
    transition: ease-in-out 0.3s;
}

.aboutshow .service-item:hover h4,
.aboutshow .service-item:hover .icon i,
.aboutshow .service-item:hover p {
    color: var(--contrast-color);
    cursor: default;
}

.aboutshow .service-item:hover:before {
    background: var(--accent-color);
    inset: 0;
    border-radius: 0px;
}

/*****************/
.aboutshow .swiper-pagination {

    position: relative;
}

.aboutshow .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
    border: none;
}

.aboutshow .swiper-pagination .swiper-pagination-bullet-active {
    background-color: red;
}

.aboutshow .values:hover .swiper-pagination .swiper-pagination-bullet-active {
    background-color: white;
}

/*--------------------------------------------------------------
# Blog Section
--------------------------------------------------------------*/
.blog .card {
    background-color: var(--background-color);
    color: var(--default-color);
    border: none;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    min-height: 500px;
}

.blog .card:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 25%, rgba(0, 0, 0, 0.9) 75%);
    z-index: 2;
}

.blog .card img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.blog .card .card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 30px;
}

.blog .card .card-body h3 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 0px;
    padding-left: 10px;
    border-left: 3px solid var(--accent-color);
}

.blog .card .card-body h3 a {
    color: var(--contrast-color);
}

.blog .card .card-body .card-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.5s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.blog .card .card-body .card-content p {
    font-size: 15px;
    padding-top: 10px;
    margin-bottom: 0;
    overflow: hidden;
    color: var(--contrast-color);
}

.blog .card:hover .card-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
}


/************* from team  slider***********************/


/*--------------------------------------------------------------
# blog Section
--------------------------------------------------------------*/

.blog .blog .pic {
    margin-bottom: 30px;
}

.blog .blog .pic img {
    border-radius: 4px;
}

.blog .blog .position {
    display: block;
    margin-bottom: 20px;
    font-size: 14px;
    color: color-mix(in srgb, var(--heading-color), transparent 30%);
}





.blog .swiper-wrapper {
    height: auto;
}

.blog .slider-nav a {
    width: 40px;
    height: 40px;
    position: relative;
    background: var(--accent-color);
    border-radius: 4px;
    transition: 0.2s all ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog .slider-nav a i {
    color: var(--contrast-color);
}

.blog .slider-nav a:hover {
    background-color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

.blog .slider-nav a:first-child {
    margin-right: 5px;
}



/******************************/


/*--------------------------------------------------------------
 # showcase Section
/*--------------------------------------------------------------*/
.showcase .showcase-item {
    background: var(--accent-color);
    padding: 50px;
    border-radius: 2px;
}



.showcase .about-slider img {
    width: 100%;
}


/* showcase-info slide Section*/
#showcase-info {
    margin: 0;
    padding: 0
}




/*#showcase-info .swiper {
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
    color: white;

}*/

#showcase-info #showcase-info-carousel,
#showcase-info #showcase-info-slider {
    overflow: hidden;
}

#showcase-info .showcase-item {
    box-sizing: content-box;
    position: relative;
    padding: 20px;

}

#showcase-info .showcase-item h3 {
    font-size: 30px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: white;
    text-align: center;



}


#showcase-info .showcase-item .quote-icon-left,
#showcase-info .showcase-item .quote-icon-right {
    color: white;
    font-size: 26px;
    line-height: 0;
}

#showcase-info .showcase-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

#showcase-info .showcase-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 0px;
    transform: scale(-1, -1);
}

#showcase-info .showcase-item p {
    font-style: italic;
}

#showcase-info .swiper-wrapper {
    height: auto;
}

#showcase-info .swiper-pagination {

    position: relative;
}

#showcase-info .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
    border: none;
}

#showcase-info .swiper-pagination .swiper-pagination-bullet-active {
    background-color: white;
}

@media (max-width: 767px) {

    #showcase-info #showcase-info-carousel,
    #showcase-info #showcase-info-slider {
        overflow: hidden;
    }

    #showcase-info .showcase-item {
        margin: 15px;
    }
}



--------------------------------------------------------------*/ .getintouch {
    color: var(--default-color);
    background-color: rgba(10, 10, 10, 0.05);
    font-size: 14px;
    padding: 40px 0;
    position: relative;
}

.getintouch .icon {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 24px;
    line-height: 0;
}

.getintouch h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.getintouch .address p {
    margin-bottom: 0px;

}

.getintouch .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: var(--accent-color);
    margin-right: 10px;
    transition: 0.3s;
}

.getintouch .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}




/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/



.form-right {
    color: var(--default-color);
    background: url("../img/msg.png") top center no-repeat;
    background-size: cover;
    font-size: 14px;
    position: relative;
}

.form-right {
    position: relative;
}

.form-right:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 100%);
    position: absolute;
    inset: 0;
}


/***********************/

.contact .info-wrap {
    box-shadow: 0px 0px 20px color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 30px;
    border-top: 3px solid var(--accent-color);
    border-bottom: 3px solid var(--accent-color);
    height: 100%;
}

@media (max-width: 575px) {
    .contact .info-wrap {
        padding: 20px;
    }
}

.contact .info-item {
    margin-bottom: 40px;
}

.contact .info-item i {
    font-size: 20px;
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact .info-item h3,
.contact h4 {
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}


.contact .info-item:hover i {
    background: #ff5967;
    color: var(--contrast-color);
}

.contact .contact-form {
    height: 100%;
    padding: 30px;
    padding-bottom: 0;
    box-shadow: 0px 0px 20px color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 575px) {
    .contact .contact-form {
        padding: 20px;
    }
}


.contact .contact-form input[type=text],
.contact .contact-form input[type=email],
.contact .contact-form input[type=tel],
.contact .contact-form textarea,
.contact .contact-form select {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: color-mix(in srgb, var(--background-color), transparent 50%);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .contact-form input[type=text]:focus,
.contact .contact-form input[type=email]:focus,
.contact .contact-form input[type=tel]:focus,
.contact .contact-form textarea:focus,
.contact .contact-form select:focus {
    border-color: #000;
}

.contact .contact-form input[type=text]::placeholder,
.contact .contact-form input[type=email]::placeholder,
.contact .contact-form input[type=tel]::placeholder,
.contact .contact-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .contact-form button[type=submit] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    width: 100%;
}

.contact .contact-form button[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 25%);
}


@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.error {
    padding: 0;
    margin: 0;
    color: rgba(255, 0, 0, 0.6);
    font-weight: bold;
}

.success {
    padding: 0;
    margin: 0;
    text-align: center;
    color: seagreen;
    font-weight: bold;
    color: rgba(63, 145, 69, 0.6);
}

.borderErr {
    box-shadow: 0 0 3px #fc3848 !important;
    border-color: 1px solid #fc3848;
}

.errormsg {
    color: #fc3848;
    text-transform: lowercase;
}





/*********buttons********************/

.contact1 .info-wrap {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

@media (max-width: 575px) {
    .contact1 .info-wrap {
        padding: 20px;
    }
}

.contact1 .info-item {
    margin-bottom: 40px;
}

.contact1 .info-item i {
    font-size: 20px;
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact1 .info-item h3 {
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact1 .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact1 .info-item:hover i {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.contact .php-email-form {
    background-color: var(--surface-color);
    height: 100%;
    padding: 30px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}



/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/


.faq .content h3 {
    font-weight: 400;
    font-size: 34px;
    color: dimgray
}

.faq .content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
}

.faq .content p {
    font-size: 15px;
    color: dimgray;
}


.faq .accordion-item {
    border: 0;
    margin-bottom: 20px;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.06);
    border-radius: 10px;
}

.faq .accordion-item:last-child {
    margin-bottom: 0;
}

.faq .accordion-collapse {
    border: 0;
}

.faq .accordion-button {
    padding: 20px 50px 20px 20px;
    font-weight: 600;
    border: 0;
    font-size: 18px;
    line-height: 24px;
    text-align: left;
    background: #fff;
    box-shadow: none;
    border-radius: 10px;
}

.faq .accordion-button:hover {
    color: #fc3848;
}

.faq .accordion-button .num {
    padding-right: 10px;
    font-size: 20px;
    line-height: 0;
    color: #fc3848;
}

.faq .accordion-button:not(.collapsed) {
    color: var(--color-primary);
    border-bottom: 0;
    box-shadow: none;
}

.faq .accordion-button:after {
    position: absolute;
    right: 20px;
    top: 20px;
}

.faq .accordion-body {
    padding: 0 40px 30px 45px;
    border: 0;
    border-radius: 10px;
    background: #fff;
    box-shadow: none;
}
