﻿/* 
    Header CSS Section 
*/
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background-color: #fff;
    box-shadow: 0 2px 4px #0000001a
}

.logo {  
   width: 98.71px;  
   height: 131.61px;  
   padding: 12.49px;  
   gap: 12.49px;  
   display: flex;  
   justify-content: space-between;  
   transition: background 0.3s ease; /* Add transition for smooth effect */  
}  

.logo:hover {  
   background: #f0f0f0; /* Add hover effect */  
}

.learn-more {
    background: #fff;
    color: #006400;
    font-weight: 700;
    font-family: 'Montserrat',sans-serif;
    font-size: 20px;
    text-align: center;
    padding-right: 60px;
    padding-left: 60px;
    display: none;
}

    .learn-more:hover {
        background: #f0f0f0
    }

/* 
    Footer CSS Section
*/

.footer {
    width: 100%;
    /*height: 70vh; /* Use viewport height to make it responsive */
    background-color: #026F57;
    border-top-left-radius: 48px;
    border-top-right-radius: 48px;
    /*padding: 2% 3%;*/ /* Use percentage padding for responsiveness */
    /*gap: 2%;*/
    text-align: center;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 0;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

.footer-wrapper {
    /*max-width: 1200px;*/ /* Restrict content width */
    margin: 0; /* Center content */
    padding: 2% 3%; /* Responsive padding */
    display: flex;
    flex-direction: column;
    gap: 20px; /* Spacing between sections */
}

.tazion-footer {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%; /* Ensure it fills the footer width */
    height: auto;
    object-fit: contain; /* Ensure the SVG scales nicely within the footer */
}

.footer-svg-wrapper {
    width: 100%;
    height: auto;
    /*max-height: 40%; /* Limit the height for responsiveness */
    display: flex;
    justify-content: center; /* Center the SVG */
    margin-top: auto; /* Push the SVG to the bottom */
}

.footer-svg {
    height: auto;
    width: 100%; /* Scale the SVG to fit the width */
    object-fit: contain; /* Ensure the SVG scales nicely */
}

.footerback-wrapper {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-grow: 1;
    overflow: hidden; /* Add this line to ensure the footer shrinks with the SVG */
}

.footerback {
    width: 100%;
    height: auto;
    display: block;
    z-index: -1
}

.footer-buttons {
    display: flex;
    gap: 20px
}

.footer-logo {
    position: relative;
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    padding-top: 30px;
}

.footer-logo img {
    width: 50px;
    height: auto
}

.footer-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    margin-left: auto
}

.footer-buttons .button {
    font-family: 'Montserrat',sans-serif;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: .3s ease
}

.additional-block {
    /*width: 100%;
    padding: 20px;
    position: relative;
    top: 0;*/ /* Adjust this value as needed to move the text up */
    /*display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;*/ /* Ensure this is above the SVG */

    width: 100%;
    height: 83.97px;
    padding: 20px;
    position: relative;
    top: 20%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px; /* Spacing between blocks */
}

.footer-left {
    font-family: 'Montserrat',sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #026F57
}

.footer-center {
    font-family: 'Montserrat',sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #026F57;
}

.footer-text {
    font-family: 'Montserrat',sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 29.26px;
    text-align: center;
    color: #F6B31C
}

.footer-right {
    display: flex;
    justify-content: flex-end;
    gap: 40px;
    margin-top: 20px
}