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

body {
    font-family: "Helvetica", sans-serif;
    color: #444444;
}

a {
    color: #FF5301;
    text-decoration: none;
    font-size: 16px;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Helvetica", sans-serif;
}


/*--------------------------------------------------------------
# Guasap
--------------------------------------------------------------*/

.whatsapp_float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #FF5301;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
}

.whatsapp_icon {
    margin-top: 16px;
}


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

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #f77f00;
    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: #FF5301;
    color: #fff;
}

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


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

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

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

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


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

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


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

#header {
    transition: all 0.7s;
    z-index: 997;
    padding: 20px 0;
    text-align: center;
}

#header.header-scrolled,
#header.header-inner-pages {
    background: linear-gradient(45deg, #FF5301, #FF5301);
    border-radius: 20px;
    animation: fadedown 0.4s ease forwards;
    float: inline-start;
    left: 15%;
    /* Center horizontally */
    transform: translateX(-50%);
    /* Center horizontally */
    text-align: center;
    padding: 20px 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    position: fixed;
}

@keyframes fadedown {
    0% {
        top: -100px;
        width: 100%;
        /* Initial full width */
        transform: translateY(-100%);
    }
    100% {
        top: 0;
        width: 70%;
        margin-top: 30px;
        /* Scrolled width */
        transform: translateY(0);
    }
}

#header.header-scrolled {
    padding: 10px 0;
}

#header .logo {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

#header .logo a {
    color: #ffffff;
}


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


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

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

.navbar li {
    position: relative;
}

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

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: "Helvetica", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    transition: 0.3s;
    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: -5px;
    left: 0;
    background-color: #ffffff;
    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: #ffffff;
}

.navbar .getstarted,
.navbar .getstarted:focus {
    padding: 8px 25px;
    margin-left: 30px;
    border-radius: 5px;
    color: #ffffff;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #ffffff;
    border-color: #ffffff;
}

.navbar .getstarted:before,
.navbar li:hover>.getstarted:before {
    visibility: hidden;
}

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

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

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

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

.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: #ffffff;
    /* Updated color to match the color palette */
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.6s;
}

@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: none;
    transition: 0.3s;
    z-index: 1001;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    height: 300px;
}

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

.navbar-mobile ul {
    display: inline-block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #F5F5F5;
    /* Updated background color to match the color palette */
    border-radius: 5px;
    /* Added border-radius for a softer look */
    overflow-y: auto;
    transition: 0.3s;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    /* Added box shadow for a subtle effect */
}

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

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #2C4964;
    /* Updated link color to match the color palette */
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #FFFFFF;
    /* Updated link hover color to match the color palette */
    background-color: #FF5301;
    /* Updated background color on hover to match the color palette */
}

.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: #F5F5F5;
    height: fit-content;
    /* Updated background color to match the color palette */
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    /* Added box shadow for a subtle effect */
}

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

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
    color: #2C4964;
    /* Updated dropdown link color to match the color palette */
}

.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: #FFFFFF;
    /* Updated dropdown link hover color to match the color palette */
    background-color: #FF5301;
    /* Updated dropdown background color on hover to match the color palette */
}

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


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

#hero {
    width: 100%;
    min-height: 100vh;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(3, 3, 3, 0.73)), url("../img/LOGO\ BIC\ 2023.gif");
    background-color: #FF5301;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    /* Align content at the bottom */
    text-align: center;
    padding: 20px 0;
    /* Added padding for space */
    background-position-y: 50%;
}

#hero h1 {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

#hero h2 {
    margin: 10px 0 20px;
    font-size: 24px;
    color: #ffffffcc;
}

#hero .btn-get-started {
    font-family: "Helvetica", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 5px;
    transition: 0.5s;
    margin-top: 30px;
    color: #fff;
    border: 2px solid #fff;
    margin-top: 40px;
    /* Increased margin for more spacing */
    margin-left: 0;
    /* Remove the left margin to center the button */
    padding: 12px 32px;
    /* Increased padding for larger button size */
    font-size: 16px;
}

#hero .btn-get-started,
#hero .btn-get-started:focus {
    padding: 8px 25px;
    margin-left: 30px;
    border-radius: 5px;
    color: #ffffff;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
}

#hero .btn-get-started:hover,
#hero .btn-get-started:focus:hover {
    color: #ffffff;
    border-color: #ffffff;
}

#hero .btn-get-started:before,
#hero li:hover>.btn-get-started:before {
    visibility: hidden;
}

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

@media (max-width: 991px) {
    #hero {
        padding-top: 68px;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 32px;
    }
    #hero h2 {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    #hero h1 {
        font-size: 24px;
    }
    #hero h2 {
        font-size: 18px;
    }
}

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

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

@media (min-width: 992px) {
    #hero {
        background-position: center top;
    }
}

@media (max-width: 767px) {
    #hero {
        background-position: center center;
        background-size: contain;
        background-repeat: no-repeat;
    }
}

@media screen and (max-width: 768px) {
    .hero-media {
        /* Adjust the size for smaller screens */
        max-width: 100%;
        /* Limit the width */
        height: auto;
        /* Maintain aspect ratio */
    }
}

.hero-media {
    /* Set your default styles for the media here */
    width: 100%;
    /* Full width */
    height: auto;
    /* Maintain aspect ratio */
}

.hero {
    position: relative;
}

@media screen and (max-width: 768px) {
    .hero-media {
        max-width: 80%;
        /* Adjust the width as needed */
        height: auto;
    }
}


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

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

.section-bg {
    background-color: #f9f8ff;
    padding: 10px 0;
    padding-bottom: 20px;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h5 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(3, 3, 3, 0.73)), url("../img/FONDO.png");
    height: 300px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-position: right center;
    background-position-y: 30%;
    background-position-x: 40%;
    background-size: cover;
    /* Change 'cover' to 'contain' for the desired effect */
    overflow: hidden;
    /* Add this to prevent overflow */
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    height: 100px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-position: right center;
    background-position-y: 30%;
    background-position-x: 40%;
    background-size: cover;
    /* Change 'cover' to 'contain' for the desired effect */
    overflow: hidden;
    /* Add this to prevent overflow */
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    /* Adjust the value as needed */
    height: 3px;
    background: #FF5301;
    bottom: 0;
    left: -20px;
    /* Adjust the value to center the line */
}

.section-title h5::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    /* Adjust the value as needed */
    height: 3px;
    background: #FF5301;
    bottom: 0;
    left: -20px;
    /* Adjust the value to center the line */
}

.section-title p {
    margin-bottom: 0;
}


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

.about {
    padding: 120px 0;
    border-radius: 20px;
    background: url("../img/A1.jpg") center center no-repeat;
    background-position: center right;
    /* Added rounded borders here */
    background-position-y: 10%;
}

.about .content h3 {
    font-weight: 600;
    font-size: 50px;
    color: #000000;
}

.about .content p {
    font-weight: 600;
    font-size: 20px;
    color: #000000;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-bottom: 10px;
}

.about .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #FF5301;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content .read-more {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 50px 10px 28px;
    border-radius: 50px;
    /* Adjusted rounded borders here */
    transition: 0.5s;
    color: #fff;
    background: linear-gradient(45deg, #FF5301 0%, #FF5301 100%);
    position: relative;
}

.about .content .read-more:hover {
    background: linear-gradient(180deg, #FF5301 0%, #FF5301 100%);
}

.about .content .read-more i {
    font-size: 22px;
    position: absolute;
    right: 20px;
    top: 12px;
}

.about .col-lg-6.order-1.order-lg-2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about .img-fluid.image {
    border-radius: 10px;
    /* adjust as needed */
}


/* Larger screens */

.about .content h3 {
    font-size: 50px;
}

.about .content p {
    font-size: 20px;
}


/* Medium screens */

@media (max-width: 768px) {
    .about .content h3 {
        font-size: 40px;
    }
    .about .content p {
        font-size: 18px;
    }
}


/* Small screens */

@media (max-width: 576px) {
    .about .content h3 {
        font-size: 30px;
    }
    .about .content p {
        font-size: 16px;
    }
    .about .content .read-more {
        font-size: 14px;
        padding: 8px 40px 8px 20px;
    }
}


/* Extra small screens */

@media (max-width: 360px) {
    .about .content h3 {
        font-size: 24px;
    }
    .about .content p {
        font-size: 14px;
    }
    .about .content .read-more {
        font-size: 12px;
        padding: 6px 30px 6px 14px;
    }
}

@media (max-width: 767px) {
    .about {
        background-position: center center;
        background-repeat: no-repeat;
        background-position-x: 30%;
    }
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/

.counts .counters {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    /* Allow buttons to wrap on smaller screens */
}

.button {
    background-color: #FF5301;
    border: none;
    color: white;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    border-radius: 60%;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    max-width: 200px;
    /* Add this line to limit maximum width */
}

.button-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.purecounter {
    font-size: 80px;
    color: #fff;
    font-weight: 600;
    font-family: "Helvetica", sans-serif;
}

.button p {
    padding: 5px 0;
    margin: 0;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
}


/* Small screens */

@media (max-width: 768px) {
    .button {
        flex: 0 0 0%;
        /* Make each counter take half the width on smaller screens */
    }
    .purecounter {
        font-size: 60px;
    }
}


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

.services .icon-box {
    text-align: center;
    padding: 70px 20px 80px 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
}

.services .icon-box .icon {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
    position: relative;
}

.services h10 {
    font-weight: 600;
    font-size: 60px;
    color: #ffffff;
    background: #f8f8f8;
    text-align: center;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(3, 3, 3, 0.73)), url("../img/SERVICIOS-WEB-BIC.png");
    background-size: cover;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-position-y: 20%;
    background-position-x: center;
    height: 450px;
    padding-bottom: 40px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.services .icon-box .icon i {
    font-size: 36px;
    transition: 0.5s;
    position: relative;
}

.services .icon-box .icon svg {
    position: absolute;
    top: 0;
    left: 0;
}

.services .icon-box .icon svg path {
    transition: 0.5s;
    fill: #f5f5f5;
}

.services .icon-box h4 {
    font-weight: 600;
    margin: 10px 0 15px 0;
    font-size: 22px;
}

.services .icon-box h4 a {
    color: #FF5301;
    transition: ease-in-out 0.3s;
}

.services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .icon-box:hover {
    border-color: #fff;
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
}

.services .iconbox-blue i {
    color: #FF5301;
}

.services .iconbox-blue:hover .icon i {
    color: #fff;
}

.services .iconbox-blue:hover .icon path {
    fill: #FF5301;
}

.services .iconbox-orange i {
    color: #FF5301;
}

.services .iconbox-orange:hover .icon i {
    color: #fff;
}

.services .iconbox-orange:hover .icon path {
    fill: #FF5301;
}

.services .iconbox-pink i {
    color: #FF5301;
}

.services .iconbox-pink:hover .icon i {
    color: #fff;
}

.services .iconbox-pink:hover .icon path {
    fill: #FF5301;
}

.services .iconbox-yellow i {
    color: #FF5301;
}

.services .iconbox-yellow:hover .icon i {
    color: #fff;
}

.services .iconbox-yellow:hover .icon path {
    fill: #FF5301;
}

.services .iconbox-red i {
    color: #FF5301;
}

.services .iconbox-red:hover .icon i {
    color: #fff;
}

.services .iconbox-red:hover .icon path {
    fill: #FF5301;
}

.services .iconbox-teal i {
    color: #FF5301;
}

.services .iconbox-teal:hover .icon i {
    color: #fff;
}

.services .iconbox-teal:hover .icon path {
    fill: #FF5301;
}

.services .service-content.collapsed {
    display: none;
}

#services .service-box h8.collapsible {
    background-color: #FF5301;
    color: #ffffff;
    cursor: pointer;
    padding: 10px 20px;
    border: none;
    text-align: center;
    outline: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
    width: 100%;
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;
    height: 50px;
}


/* #services .service-box h8.collapsible:not(.collapsed) {
        background-color: #FF5301;
        color: #ffffff;
        cursor: pointer;
        padding: 10px 20px;
        border: none;
        text-align: center;
        outline: none;
        font-size: 16px;
        transition: background-color 0.3s ease;
        border-top-right-radius: 25px;
        border-top-left-radius: 25px;
        border-bottom-right-radius: 0;
        /* Remove border radius from the bottom */


/* border-bottom-left-radius: 0;
    width: 100%;
    height: 50px;
} */

#services .service-box h8.collapsible.active {
    background-color: #FF5301;
    color: #ffffff;
    border-bottom-right-radius: 0;
    /* Remove bottom border radius when active */
    border-bottom-left-radius: 0;
    /* Remove bottom border radius when active */
}

.collapsible.active i {
    transform: rotate(180deg);
}

#services .service-box {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
}

#services .service-box h4 a:hover {
    color: white;
}

#services .service-box a {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    border-radius: 20%;
    border-color: black;
}

#services .service-box h8 {
    display: block;
    position: relative;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 30px;
    outline: none;
    cursor: pointer;
    margin-bottom: 0;
    background-color: #F4F4F4;
    /* Add background color to match content background */
    transition: background-color 0.3s ease;
}

#services .service-box .content {
    background-color: #F4F4F4;
    padding: 15px 20px;
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: none;
    /* Remove the bottom border */
}

#services .service-box .content.show {
    max-height: 1000px;
    /* Adjust this value based on your content's maximum height */
    padding: 15px 20px;
    display: block;
    border-bottom: 1px solid #F4F4F4;
    /* Add the bottom border back when content is expanded */
}

@media (max-width: 767px) {
    .services h10 {
        font-size: 40px;
        background-repeat: no-repeat;
        height: 300px;
        /* Adjust the font size for smaller screens */
    }
}


/* Style for the service boxes */


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

.features .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0 10px 60px;
}

.features .icon-box i {
    font-size: 48px;
    float: left;
    color: #FF5301;
}

.features .icon-box p {
    font-size: 15px;
    color: #848484;
    margin-left: 60px;
}

.features .image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
}

.img-fluid {
    border-radius: 20px;
    /* adjust as needed */
}

.icon-box .serviceBox {
    color: #FF5301;
    background: linear-gradient(to right, #f67d4a 50%, transparent 50%);
    font-family: 'Helvetica', sans-serif;
    text-align: center;
    padding: 30px 30px 50px;
    border-radius: 15px 15px 100px 100px;
    position: relative;
    z-index: 1;
    min-height: 400;
    min-width: 600;
}

.icon-box .serviceBox:before {
    content: "";
    background: rgba(255, 255, 255, 0.95);
    width: calc(100% - 25px);
    height: calc(100% - 25px);
    border-radius: 15px 15px 100px 100px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
}

.icon-box .serviceBox .service-icon {
    font-size: 45px;
    margin: 0 0 10px;
}

.icon-box .serviceBox .title {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 10px;
}

.icon-box .serviceBox .description {
    color: #777;
    font-size: 14px;
    line-height: 25px;
    margin: 0;
}

.fixed-size-box {
    width: 100%;
    max-width: 300px;
    height: 400px;
    border: 1px solid #ccc;
    border-radius: 10px;
    text-align: center;
    /* Add this to center the content horizontally */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the content vertically */
    align-items: center;
    /* Center the content horizontally */
}

.center-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}


/* Apply different background colors based on class */

@media only screen and (max-width: 990px) {
    .icon-box .serviceBox {
        margin: 0 0 30px;
    }
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center align content vertically */
    align-items: center;
    /* Center align content horizontally */
    text-align: center;
    /* Center align text */
}

.testimonials .testimonial-item .testimonial-img {
    width: 100px;
    border-radius: 50%;
    position: flex;
    z-index: 2;
    border: 6px solid #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    /* Center align header text */
    color: #FF5301;
    background: #fff;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    background: #fff;
    margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #FF5301;
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    position: relative;
    left: 0;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    position: relative;
    right: 0;
    top: 10px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 10px 15px 0 15px;
    /* Adjust the top margin */
    padding: 20px;
    background: #fff;
    border-radius: 6px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.1);
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #FF5301;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #FF5301;
}

@media (max-width: 767px) {
    .testimonials {
        margin: 30px 10px;
    }
}

.testimonial-box {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    color: #9e9e9e;
    display: inline-block;
    font-family: 'Helvetica', Arial, sans-serif;
    font-size: 16px;
    margin: 35px 10px 10px;
    max-width: 350px;
    min-width: 250px;
    position: relative;
    text-align: center;
    width: 100%;
    background-color: #ffffff;
    border-radius: 5px;
    border-top: 5px solid #FF5301;
}

.testimonial-box figcaption {
    padding: 13% 10% 12%;
}

.testimonial-box figcaption:before {
    content: "\f10e";
    font-family: 'FontAwesome';
    font-size: 32px;
    font-style: normal;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    color: #FF5301;
    line-height: 60px;
}

.testimonial-box h3 {
    font-size: 20px;
    font-weight: 300;
    line-height: 24px;
    margin: 10px 0 5px;
    color: #3c3c3c;
}

.testimonial-box h4 {
    font-weight: 400;
    margin: 0;
    opacity: 0.5;
}

.testimonial-box p {
    font-style: italic;
    font-weight: 300;
    margin: 0 0 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 0.1);
}

.testimonial-img {
    width: 80px;
    /* Adjust the width as needed */
    border-radius: 50%;
    position: flex;
    z-index: 2;
    border: 6px solid #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 25px auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
    padding: 2px 15px;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
    font-family: "Helvetica", sans-serif;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    color: #fff;
    background: #5846f9;
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(88, 70, 249, 0.8);
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 10%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
}

.portfolio .portfolio-wrap .portfolio-links {
    opacity: 0;
    left: 0;
    right: 0;
    bottom: 10%;
    text-align: center;
    z-index: 3;
    position: absolute;
    transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 2px;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
    color: #fff;
}

.portfolio .portfolio-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
    top: calc(50% - 48px);
}

.portfolio .portfolio-wrap:hover .portfolio-links {
    opacity: 1;
    bottom: calc(50% - 50px);
}


/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/

.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #5846f9;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #5846f9;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(44, 73, 100, 0.08);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.row {
    display: flex;
    flex-wrap: wrap;
}

.pricing .box {
    padding: 20px;
    background: #fff;
    text-align: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 2px 15px #DCDCDC;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.hvr-grow-shadow {
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    transition-duration: 0.3s;
    transition-property: box-shadow, transform;
}

.hvr-grow-shadow:hover,
.hvr-grow-shadow:focus,
.hvr-grow-shadow:active {
    transform: scale(1.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pricing h9 {
    font-weight: 600;
    font-size: 60px;
    color: #ffffff;
    background: #f8f8f8;
    text-align: center;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(3, 3, 3, 0.73)), url("../img/PLANES-WEB-BIC.png");
    background-size: cover;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-position-y: 20%;
    background-position-x: center;
    height: 450px;
    padding-bottom: 40px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

.pricing h3 {
    font-weight: 400;
    margin: -20px -20px 20px -20px;
    padding: 20px 15px;
    font-size: 16px;
    font-weight: 600;
    color: #444444;
    background: #f8f8f8;
    text-align: center;
}

.pricing h4 {
    font-size: 40px;
    color: #FF5301;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    margin-bottom: 20px;
    text-align: center;
}

.pricing h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}

.pricing h4 span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
}

.pricing ul {
    padding: 0;
    list-style: none;
    color: #444444;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

.pricing ul li {
    padding-bottom: 16px;
}

.pricing ul i {
    color: #f77f00;
    font-size: 18px;
    padding-right: 4px;
}

.pricing ul .na {
    color: #ccc;
    text-decoration: line-through;
}

.pricing .btn-wrap {
    margin: 20px -20px -20px -20px;
    padding: 20px 15px;
    background: #f8f8f8;
    text-align: center;
}

.pricing .btn-buy {
    background: linear-gradient(42deg, #FF5301 0%, #FF5301 100%);
    display: inline-block;
    padding: 10px 35px;
    border-radius: 20px;
    color: #fff;
    transition: none;
    font-size: 15px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    transition: 0.3s;
    padding: 12px 35px;
}

.pricing .btn-buy:hover {
    background: linear-gradient(180deg, #eae2b7 0%, #FF5301 100%);
}

.pricing .featured h3 {
    color: #444444;
    background: #f8f8f8;
}

.pricing .advanced {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
    background: #FF5301;
    color: #fff;
}

@media (max-width: 767px) {
    .pricing h9 {
        font-size: 40px;
        height: 300px
        /* Adjust the font size for smaller screens */
    }
}


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

.clients-slider .swiper-slide .img-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.clients-slider .swiper-slide .client-logo {
    width: 20%;
    /* adjust this value to make the images smaller or larger */
    height: auto;
    /* maintain the original aspect ratio */
    opacity: 0.5;
    transition: 0.3s;
}

.clients-slider .swiper-slide .client-logo:hover {
    opacity: 1;
}

.clients .clients-slider .swiper-pagination {
    margin-top: 10px;
    position: relative;
}

.clients-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.clients .clients-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #FF5301;
}

.clients .clients-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #FF5301;
}

.client-logo-container {
    display: flex;
    align-items: center;
    /* vertically center the logo */
    justify-content: center;
    /* horizontally center the logo */
    height: 100px;
    width: 100px;
    /* adjust the height of the box as needed */
}

.client-logo {
    max-width: 100%;
    /* ensure the logo doesn't exceed the width of the container */
    max-height: 100%;
    /* ensure the logo doesn't exceed the height of the container */
}


/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/

.faq {
    background: url("../img/FONDO.png") center center no-repeat;
}

.faq .section-title h2,
.faq .section-title p {
    color: #fff;
}

.faq .section-title h2::after {
    background: rgba(255, 255, 255, 0.6);
}

.faq .faq-list {
    padding: 0 100px;
}

.faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.faq .faq-list li+li {
    margin-top: 15px;
}

.faq .faq-list li {
    padding: 30px;
    background: #fff;
    border-radius: 5px;
    position: relative;
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 30px;
    outline: none;
    cursor: pointer;
}

.faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: #fcbf49;
}

.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 {
    color: #fcbf49;
}

.faq .faq-list a.collapsed:hover {
    color: #FF5301;
}

.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
    display: none;
}

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px 0 30px 0;
    background: #fff;
}

.contact .info-box i {
    font-size: 32px;
    color: #FF5301;
    border-radius: 50%;
    padding: 8px;
}

.contact .info-box h3 {
    font-size: 20px;
    color: #FF5301;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.contact .php-email-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px;
    background: #fff;
}

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

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

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

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

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

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

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #f77f00;
}

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

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

.contact .php-email-form button[type=submit] {
    background: #FF5301;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 5px;
}

.contact .php-email-form button[type=submit]:hover {
    background: #FF5301;
}

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


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
    padding: 15px 0;
    background: #f2f6f9;
    min-height: 40px;
    margin-top: 85px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 56px;
    }
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 300;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    font-size: 14px;
    margin: 0;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #FF5301;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }
    .breadcrumbs ol {
        display: block;
    }
    .breadcrumbs ol li {
        display: inline-block;
    }
}


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

#footer {
    color: #fff;
    font-size: 14px;
    background: linear-gradient(45deg, #FF5301, #FF5301), url("../img/rainbow-vortex\ \(1\).svg") center center no-repeat;
    background-size: cover;
}

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

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
    font-size: 28px;
    margin: 0 0 30px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Helvetica", sans-serif;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

#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: #fff;
    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: rgba(255, 255, 255, 0.8);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: underline;
    color: #fff;
}

#footer .footer-newsletter {
    font-size: 15px;
}

#footer .footer-newsletter h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 5px;
    text-align: left;
    border: 1px solid white;
}

#footer .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
    position: absolute;
    top: -1px;
    right: -2px;
    bottom: -1px;
    border: 0;
    background: none;
    font-size: 20px;
    padding: 0 20px;
    background: #FF5301;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 5px 5px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
    background: #FF5301;
}

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

#footer .credits {
    padding-top: 5px;
    font-size: 13px;
    color: #fff;
}

#footer .credits a {
    color: #fff;
}

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    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 .social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
}

.hero-img-container {
    display: flex;
    justify-content: flex-end;
}

.custom-img-margin {
    margin-left: 20px;
    /* Adjust the value to move the image to the desired position */
}