*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth; 
}

:root{
    --bg-color:#001a33; /*#002233*/
    --main-color:#4e73df; /*#ffb2c0*/
    --secondary-color:#ffff; /*632c3a */
    --third-color:#001a33; /*#002233*/
    --main-color-rgb: 78, 115, 223;
    
    
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;

    scroll-behavior: smooth;
    scroll-padding-top: var(--scroll-padding, 100px); /* fallback de 100px */
}

body{
    display: flex;
    height: 100vh;
    background-color: var(--bg-color);
    color:var(--third-color);
    flex-direction: column; /* Changed from row to column */
    justify-content: flex-start; /* Align items at the top */
    align-items: center;
    margin: 0 auto;
    
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/*HEADER*/

header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Center alignment for larger screens */
}

.header{
    width: 100%;
    display: flex;
    justify-content: space-between; /* Center alignment for larger screens */
    align-items: center;
    padding: 1rem 12%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    background: var(--third-color);
    list-style: none;
    transition: background-color 0.5s ease-in-out;
}

.activeheader{
    background-color: var(--third-color);
    position: fixed !important;
}


.activeheaderli{
    background-color: none;
}

.activeheadertext{
    color: var(--main-color) !important;
}

.activeheader{
    background-color: var(--third-color);
    border-bottom: none;
}

.activeheader a{
    color:var(--secondary-color) !important;
}

.activeheader a:hover {
    color: var(--main-color) !important;
}

.activeheader .activeheadertext{
    color: var(--main-color) !important;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    color: var(--main-color);
    font-size: 28px;
    margin-right: 3px;
}

.logo_img{
    width: 133px;
    height: 50px;
}

.navbar {
   display: flex;
   white-space: nowrap;
}

.navbar li:nth-child(5) {
    display: none;
}


.navbar a {
    color: var(--main-color);
    list-style: none;
    font-size: 1.1rem;
    padding: 5px;
    margin: 0px 30px;
    transition: all .50s ease;
}

.navbar a:hover {
    color: var(--secondary-color);
}

#menu-icon {
    font-size: 35px;
    color: var(--main-color);
    cursor: pointer;
    z-index: 10001;
    display: none;
}

.navbarform{
    background: var(--main-color);
    border: none;
    padding: 10px;
    font-size: 1rem;
    transition: all .50s ease;
    border-radius: 50px;
    color: var(--secondary-color);
}

.navbarform:hover{
    cursor: pointer;
    box-shadow: 0px 0px 15px rgba(var(--main-color-rgb), 0.5); /* Bigger shadow */
    color: var(--secondary-color) !important;
}

.activeheader .navbarform{
    color:var(--secondary-color) !important;
}

.activeheader .navbarform:hover {
    color: var(--secondary-color) !important;
}


/* Disable scrolling when the menu is open */
.no-scroll {
    overflow: hidden;
}

.sliding-background {
    display:none;
}

@media(max-width:1350px) {
    .header {
        padding: 1rem 2%;
        transition: .2s;
    }

}

@media(max-width:1090px) {
    
    .header {
        justify-content: space-between; /* Distribute items to the edges */
        padding: 1rem 2%; /* Reduce padding for smaller screens */
    }
    
   /* Style the sliding background */
    .sliding-background {
        display: none; /* Default hidden for smaller screens */
        position: absolute;
        top: 0;
        right: 0; /* Start off-screen to the right */
        width: 100%;
        height: 100%;
        background-color: var(--third-color);
        z-index: -1; /* Place it behind the header content */
        transition: transform 0.7s ease; /* Slow transition */
    }

    .sliding-background.open {
        display: flex;
        opacity: 1;
        animation: slide-in-left-no-opacity 0.5s forwards;
    }

    .sliding-background.close {
        display: flex;
        opacity: 0;
        animation: slide-out-left-no-opacity 0.5s forwards;
    }
    
    .activeheader #menu-icon{
        color: var(--main-color);
    }

    .activeheaderli{
        background-color: var(--third-color);
    }
    
    .activeheader a {
        color: white !important;
    }
    

    #menu-icon {
        display: block;
    }

    .openheader #menu-icon{
        color: var(--main-color);
    }

    .navbar li:nth-child(6) {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--main-color);
        display: none; /* Default hidden for smaller screens */
        flex-direction: column;
        justify-content: flex-start;
        opacity: 0;
    }

    .navbar.open {
        display: flex;
        height: 100vh;
        opacity: 1;
        animation: slide-in-left-no-opacity 0.5s forwards;
    }

    .navbar.close {
        display: flex;
        opacity: 0;
        height: 100vh;
        animation: slide-out-left-no-opacity 0.5s forwards;
    }

    .navbar a {
        display: block;
        color: white;
        margin: 12px 0;
        padding: 0px 1.5rem;
        transition: all .50s ease;
    }

    .navbar a:hover {
        color: var(--third-color);
        transform: translateY(5px);
    }

    .navbarform{
        display: none;
    }
}

@media(max-width:900px) {
    .logo {
        align-items: left;
    }
    
    .logo_img{
        width: 133px;
        height: 50px;
    }
    
}



/* Keyframes for text reveal animation */
@keyframes reveal-navbar {
    0% {
        transform: translateY(-100%); /* Start with text out of view */
        opacity: 0;
    }
    100% {
        transform: translateY(0); /* End with text in view */
        opacity: 1;
    }
}

@keyframes slide-in-left-no-opacity {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-out-left-no-opacity {
    0% {
        opacity:1;
        transform: translateX(0);
    }
    100% {
        opacity:0;
        transform: translateX(100%);
        display: none;
    }
}


/*HEADER*/

/* Footer */

footer {
    width: 100%;
    color: var(--third-color);
    background-color: var(--third-color);
    margin-top: auto; /* Push the footer to the bottom of the viewport */

}

.footer-link{
    text-decoration: none;
}

#footer_content{
    background-color: var(--third-color);
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(3,1fr);
    padding: 3rem 3.5rem;
}

#footer_contacts{
    display: flex;
    flex-direction: column;
    align-items: center;
}

#footer_contacts h3{
    margin: button 0.75rem; 
    color: var(--secondary-color);
}

#footer_social_media{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

#footer_social_media .footer-link{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    color: var(--third-color);
    border-radius: 5px;
    transition: all 0.4s;
    background-color: var(--secondary-color);
}

#footer_social_media .footer-link i{
    font-size: 1.25rem;
}

#footer_social_media .footer-link:hover{
    opacity: 0.8;
    transition: all 0.4s;
}


.footer-list{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    list-style: none;
    color: var(--secondary-color);
}

.footer-list .footer-link{
    color: var(--secondary-color);
    transition: all 0.4s;
}

.footer-list .footer-link:hover{
    color: var(--main-color);
}

#footer_copyright{
    display: flex;
    justify-content: center;
    background-color: var(--third-color);
    font-size: 0.9rem;
    padding: 1rem;
    font-weight: 100;
}

#footer_copyright h3{
    color: var(--secondary-color);
}

@media (max-width:768px) {
#footer_content{
    grid-template-columns: repeat(1,1fr);
    gap:2rem;
}
.footer-list{
    align-items: center;
}
.logo-footer{
    display: flex;
}
#footer_social_media{
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    }
}

/* Footer */


/*INDEX*/

/*IMAGE*/

.index_image_container {
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/bc.svg);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    position: relative;
    background-position-y: center;
    height: max-content;
}

.index_image_container_text{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
    z-index: 1;
    align-items: center;
}

.index_image_container_text h3 {
    color: var(--secondary-color);
    overflow: hidden; 
    font-size: 2.5rem;
    user-select:none;
    text-align: center;
    width: 80%;
}
.index_image_container_text h4 {
    color: var(--secondary-color);
    overflow: hidden; 
    font-size: 1rem;
    /*text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); Add shadow */
    user-select:none;
    text-align: center;
    width: 80%;
    opacity: 0.8;
}

.image_button_container{
    display: flex;
    gap: 15px;
}

.image_button_solid{
    background: var(--main-color);
    border: 2px solid var(--main-color);
    padding: 10px;
    height: fit-content;
    border-radius: 50px;
    font-size: 16px;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    color: var(--secondary-color);
    transition: all .50s ease;
    user-select:none;
    width: max-content;
}

.image_button_solid:hover {
    box-shadow: 0px 0px 15px rgba(var(--main-color-rgb), 0.5); /* Bigger shadow */
}

.image_button {
    padding: 10px;
    border: 2px solid var(--main-color);
    height: fit-content;
    border-radius: 50px;
    font-size: 16px;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    color: var(--secondary-color);
    transition: all .50s ease;
    user-select:none;
    width: max-content;
}

.image_button:hover {
    box-shadow: 0px 0px 15px rgba(var(--main-color-rgb), 0.5); /* Bigger shadow */
}

.blur-filter{
    display: block;
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    backdrop-filter: blur(15px);
}

.image_images_container {
  position: relative;
  width: 60%; /* or a specific width */
}

.horizontal {
  width: 100%;
  display: block;
  box-shadow: rgba(var(--main-color-rgb), 0.5) 0px 0px 15px 0px;
  border: 5px solid var(--main-color);
  border-radius: 10px;
  user-select: none;
}

.vertical {
    position: absolute;
    top: 10%;
    left: 95%;
    transform: translateX(-50%);
    z-index: 10;
    height: auto;
    max-height: 100%;
    box-shadow: rgba(var(--main-color-rgb), 0.5) 0px 0px 15px 0px;
    border: 5px solid var(--main-color);
    border-radius: 10px;
    user-select: none;
}


.contactMethodWrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 2em;
}

.contactMethodWrapper h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    text-align: center;
}
 
.contactMethod {
    display: flex;
    flex-direction: row;
    margin-top: 2em;
    margin-bottom: 2em;
    text-align: left;
    width: 80%;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.method {
    display: flex;
    flex-direction: column;
    width: 33%;
    justify-content: flex-start;
    align-items: center;
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    padding: 10px;
    height: -webkit-fill-available; 
    height: -moz-available;         
    height: fill-available;
}

.contactIcon {
    font-size: 3rem;
    color: var(--secondary-color);
}

.methodText h2 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    padding: 0;
    text-align: center;
    font-family: "Poppins", serif;
    font-weight: 600;
}

.method-sub-text{
    font-size: 1rem;
    word-break: break-word;
    color: var(--secondary-color);
    text-align: center;
    opacity: 0.8;
}

@media (max-width: 1200px) {

    .contactMethod {
        width: 100%;
    }
   
    .image_images_container {
        width: 80%; /* or a specific width */
    }

    .index_image_container_text h3 {
        width: 100%;
    }
    .index_image_container_text h4 {
        width: 100%;
    }
}

@media (max-width: 900px) {

    .method {
        width: 100%;
        margin-bottom: 1.5rem;
        height: 100%;
    }

    .contactMethod {
        flex-direction: column;
        margin-bottom: 0;
    }

    .image_button_container{
        flex-direction: column;
        margin: 1.5rem 0;
        align-items: center;
    }

    .image_button_solid{
        margin-bottom: 0;
        margin-top: 0;
    }

    .image_button {
        margin-bottom: 0;
        margin-top: 0;
    }

    .index_image_container_text h3 {
        font-size: 2rem;
    }

}

@media (max-width: 600px) {

    .index_image_container_text{
        width: 100%;
    }

    .image_images_container {
        width: 90%; /* or a specific width */
    }

    .index_image_container_text h3 {
        width: 100%;
    }
    .index_image_container_text h4 {
        width: 100%;
    }

}

/*IMAGE*/



/*SERVICES CATEGORIES*/

.index_services_categories_wrapper{
    width: 100%;
    background-color: var(--secondary-color);
    display: flex;
    text-align: center;
    color: var(--third-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 1rem 1.5rem 1rem;
}

.index_services_categories_card{
    width: 100%;
}

.index_services_categories_title {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.index_services_categories_title h1{
    font-size: 2.5rem;
    color: var(--main-color);
}

.index_services_categories_title h3{
    font-size: 1rem;
    opacity: 0.8;
    width: 60%;
}

.index_services_categories_photo{
    width: 100%;
    height: 300px; /* Set a fixed height */
    object-fit: cover;
    border: 3px solid var(--main-color);
    border-radius: 10px;
}


.index_services_categories{
    width: 80%;
    display: grid;
    padding: 20px 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}


.index_services_categories_name{
    font-size: 1.2rem;
    color: var(--third-color);
}

@media (max-width: 1200px) {
    
    .index_services_categories{
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    .index_services_categories_title {
        width: 100%;
    }
    .index_services_categories_title h3{
        width: 80%;
    }

    .index_services_categories_card{
        width: 100%;
        padding: 0 0 1.5rem 0;    
    }

    .index_services_categories_photo{
        height: 250px; /* Set a fixed height */
    }

    .horizontal {
        border: 2px solid var(--main-color);

    }

    .vertical {
        border: 2px solid var(--main-color);
    }

   
}

@media (max-width: 900px) {

    .index_services_categories_title h1{
        font-size: 2rem;
    }

    .index_services_categories_title h3{
        width: 100%;
    }

}

@media (max-width: 500px) {
    .index_services_categories{
        grid-template-columns: repeat(1, 1fr);
    }

}


/*SERVICES CATEGORIES*/

/* INDEX PREVIEW */

.index_preview_container{
    display: flex;
    flex-direction: column;
    width: 80%;
    background-color: var(--third-color);
}

.index_preview_title{
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 1.5rem;
}

.index_preview_title h1{
    font-size: 2.5rem;
    color: var(--main-color);
    text-align: center;
}

.index_preview_title h3{
    font-size: 1rem;
    color: var(--main-color);
    opacity: 0.8;
    text-align: center;
}

.index_preview{
    display: flex;
    flex-direction: column;
}

.index_preview_card_right{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    margin-bottom: 1.5rem;
}

.index_preview_card_left{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 1.5rem;
}

.index_preview_card_photo{
    width: 100%;
    object-fit: contain;
    height: 100%;
}

.index_preview_card_image{
    width: 51%;
    display: flex;
}

.index_preview_card_text{
    display: flex;
    width: 49%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    padding: 1rem;    
}

.index_preview_card_left .index_preview_card_text{
    text-overflow: ellipsis;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.index_preview_card_right .index_preview_card_text{
    text-overflow: ellipsis;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.index_preview_card_title{
    font-size: 2rem;
    color: var(--main-color);
    text-align: center;
}

.index_preview_card_subtitle {
    display: flex;
    font-size: 1rem;
    flex-direction: column;
}

.index_preview_card_subtitle span {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    text-align: center;
}

.index_preview_card_subtitle ul {
    margin-left: 1rem;
}

.index_preview_card_subtitle li {
    color: rgba(255, 255, 255, 0.8);
    list-style: inside;
    padding-bottom: 1rem;
}

.index_preview_card_subtitle .highlight {
    color: rgba(255, 255, 255, 1);
    font-weight: bold;
}


.index_preview_title .image_button_container{
    flex-direction: row !important;
}

.index_pricing_card .image_button_container{
    align-items: flex-start !important;
}


.swiper-wrapper {
    width: 100%;
    position: relative;
    max-height: 600px;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.swiper-pagination-bullet-active{
    background-color: var(--secondary-color);
}


@media (max-width: 1200px) {

    .index_preview_container{
        width: 100%;
        padding: 1rem;
    }

   
}

@media (max-width: 900px) {
    .index_preview_card_right{
        flex-direction: column;
    }

    .index_preview_card_left{
        flex-direction: column;
    }

    .swiper {
        width: 100%;
    }

    .index_preview_card_image{
        width: 100%;
    }


    .index_preview_card_text{
        width: 100%;
        padding: 1rem 0;    
    }

    .index_preview_title h1{
        font-size: 2rem;
    }

   
}

@media (max-width: 500px) {


    .swiper {
        max-height: 400px;
    }

   
}

/* INDEX PREVIEW */

/* INDEX PRICING */

.index_pricing_container{
    color: var(--third-color);
    width: 100%;
    background-color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.index_pricing_title{
    margin-top: 1.5rem;
}

.index_pricing_title h1{
    text-align: center;
    font-size: 2.5rem;
    color: var(--main-color);
}

.index_pricing_title h3{
    text-align: center;
    color: var(--main-color);
    font-size: 1rem;
    opacity: 0.8;
}

.index_pricing{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 30px;
    margin: 1.5rem 0 1.5rem 0;
    width: 80%;
}

.index_pricing_card{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(211, 211, 211, 0.5);
    height: 100%;
    box-shadow: rgba(var(--main-color-rgb), 0.5) 0px 0px 15px 0px;
    padding: 2.5rem;
    border-radius: 10px;
    width: 50%;
}


.index_pricing_card.small {
  transform: scale(0.96);
}

.index_pricing_card_title{
    font-size: 1.5rem;
    margin-right: 1rem;
}

.index_pricing_card_price{
    font-size: 2.5rem;
}


.index_pricing_card_subtitle{
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.index_pricing_card_include{
    font-size: 1rem;
    margin-bottom: .5rem;
}

.index_pricing_card_description h5{
    opacity: 0.5;
    font-size: 1rem;
    margin-bottom: .5rem;
}

.index_pricing_card_title_container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.index_pricing_card_test{
    background: rgba(var(--main-color-rgb) , 0.2);
    border: 1px solid var(--main-color);
    padding: 8px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--main-color);
    user-select: none;
}

.price-old{
    font-size: 2.5rem;
    margin-right: 8px;
    opacity: 0.5;
    text-decoration: line-through;
    display: none;
}

.pricing_toggle{
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 1rem 0 2rem 0;
    color: var(--main-color);
    font-size: 1rem;
}

.price-fade{
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.price-fade.is-fading{
    opacity: 0;
    transform: translateY(4px);
}


.switch{
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input{
    opacity: 0;
    width: 0;
    height: 0;
}

.slider{
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 50px;
}

.slider:before{
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .slider{
    background-color: var(--main-color);
}

input:checked + .slider:before{
    transform: translateX(24px);
}


@media (max-width: 1200px) {
    
    .index_pricing{
        width: 100%;
        padding: 1rem;
    }

    .index_pricing_card{
        padding: 1rem;
        width: 100%;
    }

    .index_pricing_card_price{
        font-size: 2rem;
    }

    .price-old{
        font-size: 2rem;
    }
   
}

@media (max-width: 900px) {
    
    .index_pricing{
        flex-direction: column;
    }

    .index_pricing_card.small {
        transform: scale(1);
    }
   
}


/* INDEX PRICING */

/* FAQ */

.faq-container {
    width: 80%;
    color: var(--secondary-color);
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.index_faq_title{
    margin: 1.5rem 0 1.5rem 0;
}

.index_faq_title h1 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--main-color);
}

.index_faq_title h3 {
    text-align: center;
    color: var(--main-color);
    font-size: 1rem;
    opacity: 0.8;
}

.faq-item {
    border-radius: 10px;
    margin-bottom: 1.5rem;
    padding: 1rem;
    box-shadow: rgba(var(--main-color-rgb), 0.5) 0px 0px 15px 0px;
    width: 100%;
}

.faq-question {
    cursor: pointer;
    position: relative;
    padding-right: 1.5rem;
    user-select: none;
    display: flex;
    align-items: center;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-weight: normal;
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    display: none;
    margin-top: 10px;
    color: var(--secondary-color);
    opacity: 0.5;
}

@media (max-width: 1200px) {
    
    .faq-container {
        width: 100%;
        padding: 1rem;
    }

   
}

/* FAQ */

/*CONTACT*/

.contact-form-container{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: var(--secondary-color);
    align-items: center;
}

.contact-form-title{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1.5rem 0 1.5rem 0;
}

.contact-form-container h1{
    color: var(--main-color);
    text-align: center;
    font-size: 2.5rem;
}

.contact-form-wrapper{
    display: flex;
    border: 2px solid var(--bg-color);
    border-radius: 10px;
    width: 80%;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: rgba(var(--main-color-rgb), 0.5) 0px 0px 15px 0px;
}

.socials-contact{
    width: 50%;
    display: flex;
    flex-direction: column;
}

.socials-contact-text{
    margin-bottom:1.5rem;
}

.socials-contact-text h3{
    font-size:2.5rem;
    color: var(--third-color);
}

.socials-contact-contacts{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.socials-contact-method{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 1.5rem;
}

.socials-contact-method i{
    color: var(--main-color);
    font-size: 1rem;
    padding-top: 2px; /* adjust as needed */
}

.socials-contact-method h4 {
    color: var(--third-color);
    font-size: 1rem;
}


.form-contact {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    color: var(--third-color);
    background-color: var(--third-color);
    width: 50%;
    align-items: center;
    padding: 1.5rem;
}

#contactForm{
    width: 100%;
}

.form-contact input {
    width: 100%;
    height: 2.5em;
    background: white;
    border: none;
    outline: none;
    padding: 0 2rem 0 5px;
    color: var(--third-color);
    font-size: 1rem;
    border: 2px solid var(--main-color);
    border-radius: 10px;
    margin-bottom:20px;
}

.form-contact input::placeholder{
   color: var(--third-color);
   opacity: 0.8;
}
 
.form-contact textarea {
    width: 100%;
    height: 100%;
    background: white;
    border: none;
    outline: none;
    padding: 0 20px 0 5px;
    color: var(--third-color);
    font-size: 16px;
    border: 2px solid var(--main-color);
    resize: none;
    border-radius:10px;
    margin-bottom:20px;
}
 
textarea::placeholder{
   color: var(--third-color);
    opacity: 0.8;
}

.form-contact .contact-name {
    display: flex;
    align-items: center;
}

.form-contact .contact-name input {
    width: 48%;
    margin-right: 4%;
}

.form-contact .contact-input {
    position: relative;
}

.contact-input-phone .iti{
    width: 100%;
}

.contact-input-phone{
    margin-bottom:20px;
}

.contact-input-phone input{
    padding-right:2rem !important;
}
 
.form-contact .contact-input i {
   position: absolute;
   color: var(--third-color);
   transform: translateY(80%);
   right: 10px;
   font-size: 16px;
}
 
.form-contact button {
   color: white;
   background: var(--main-color);
   border-radius: 10px;
   width: 100%;
   padding: 10px;
   outline: none;
   border: none;
   font-size: 16px;
   cursor: pointer;
    transition: all .50s ease;
    user-select:none;
}

.form-contact button:hover {
    box-shadow: 0px 0px 15px rgba(var(--main-color-rgb), 0.5); /* Bigger shadow */
}

@media (max-width: 1200px) {
    
    .form-contact {
        padding: 1rem;
    }

    .contact-form-wrapper{
        width: 100%;
    }

    .contact-form-container{
        padding: 1rem;
    }

}

@media (max-width: 900px) {
    .contact-form-wrapper{
        flex-direction: column;
        padding: 1rem;
    }

    .socials-contact{
        width: 100%;
    }

    .form-contact{
        width: 100%;
    }

    .socials-contact-text h3{
        font-size:1.5rem;
    }

}

@media (max-width: 400px) {
    .contact-wrapper h1{
        font-size: 11vw;   
    }
}

/*CONTACT*/

/*TERMS*/
.terms_container{
    position: relative;
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--third-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}


.terms_wrapper{
    width: 80%;
    background-color: var(--secondary-color);
    color: var(--third-color);
    line-height: 2.5em;
    padding: 25px 16px;
    display: flex;
    flex-direction: column;
}
.terms_wrapper p{
    font-size: 16px;
}
.terms_wrapper h2{
    font-size: 20px;
    color: var(--main-color);
}

.terms_wrapper h1{
    font-size: 45px;
    text-align: center;
    padding: 25px 16px;
}

.terms_wrapper ul {
    font-size: 16px;
    list-style: circle;
    padding: 0 35px;
}

.terms_wrapper li {
    font-size: 16px;
    list-style: inside;}

@media (max-width: 900px) {
    .terms_wrapper{
        width: 100%;
    }

    .terms_wrapper h1{
        line-height: 1em;
    }

}
/*TERMS*/
