@font-face {
    font-family: 'Montserrat';
    src: local('Montserrat Light'), local('Montserrat-Light'),
         url('./assets/fontawesome/webfonts/static/Montserrat-Light.v1.0.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  
@font-face {
    font-family: 'Montserrat';
    src: local('Montserrat Regular'), local('Montserrat-Regular'),
         url('./assets/fontawesome/webfonts/static/Montserrat-Regular.v1.0.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
@font-face {
    font-family: 'Montserrat';
    src: local('Montserrat Medium'), local('Montserrat-Medium'),
         url('./assets/fontawesome/webfonts/static/Montserrat-Medium.v1.0.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Montserrat';
    src: local('Montserrat SemiBold'), local('Montserrat-SemiBold'),
         url('./assets/fontawesome/webfonts/static/Montserrat-SemiBold.v1.0.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }
  
@font-face {
    font-family: 'Montserrat';
    src: local('Montserrat SemiBold'), local('Montserrat-SemiBold'),
         url('./assets/fontawesome/webfonts/static/Montserrat-Bold.v1.0.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;   
  }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to right, #4c4e4e, #373739);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    -webkit-backdrop-filter: brightness(0.4);
    backdrop-filter: brightness(0.4); 
}
@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
    .body {
        -webkit-backdrop-filter: brightness(0.4);
        backdrop-filter: brightness(0.4);
        background-color: transparent;
        
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5% 8.5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
}

.company-logo {
    width: 25%;
    height: auto;
}

.mobile-menu-icon {
    display: none;
}

.navigation {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.navigation a {
    position: relative;
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 1.5rem;
    transition: border-bottom 0.5s ease-in-out;
}

.navigation a.active {
    color: #f2651c;
}

.navigation a:hover {
    color: #f2651c;
}

.navigation a.active:hover {
    color: #fff;
}

.navigation a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5px;
    width: 100%;
    height: 2px;
    background: #f2651c;
    border-radius: 5px;
    transform-origin: center right;
    transform: scaleX(0);
    transition: transform 0.5s;
}

.navigation a:hover::after,
.navigation a:active::after {
    transform-origin: center left;
    transform: scaleX(1);
}

.language-select {
    display: flex;
    align-items: center;
    color: white;
    margin-left: 10px;
}

.language-select i {
    margin-right: 2px;
    right: 10px;
}

#language-dropdown {
    background: transparent;
    border: 1px solid #333;
    border-radius: 5px;
    color: white;
    padding: 5px;
    outline: none;
    
}

#language-dropdown:focus,
#language-dropdown:active {
    background-color: #333;
    color: white;
}

#language-dropdown option{
    color: white;

}


.section {
    width: 85%;
    height: 75%;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #000;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
}



.text-box {
    color: #fff;
    text-align: center;
}


.text-box h1,
.text-box h2 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    background: url(./images/back.v1.0.png);
    -webkit-background-clip: text;
    background-position: 0 0;
    animation: back 20s linear infinite;
}

.text-box h1 {
    font-size: 5rem;
}

.text-box h2 {
    font-size: 3.5rem;
}

@keyframes back {
    100% {
        background-position: 2000px 0;
    }
}

.row {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 10px;
}

.row a {
    color: #fff;
    text-decoration: none;
    padding: 2% 2.4%;
    border: 2px solid #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    height: 2.5rem;
    width: 15rem;
    transition: background 0.3s, color 0.3s;
}

.row a:hover {
    background: #f2651c;
}

.social-icons {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.social-icons a {
    color: white;
    border: 2px solid #ccc;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    transition: background 0.3s, color 0.3s;
}

.social-icons a:hover {
    background: #f2651c;
}

#cookieModal {
    display: none;
    position: fixed;
    bottom: 1%;
    right: 1%;
    background-color: #fff;
    padding: 1%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 2%;
    text-align: center;
    z-index: 1000;
}

#cookieModal h2 {
    margin-bottom: 1%;
}

#cookieModal a {
    color: #000000;
}

#cookieModal a:hover {
    color: #f2651c;
}

#cookieModal button {
    margin: 0.3%;
    padding: 2% 4%;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#cookieModal #allow {
    background-color: #f2651c;
    color: #fff;
}

#cookieModal #allow:hover {
    background-color: green;
}

#cookieModal #deny {
    background-color: #ddd;
    color: #333;
}

#cookieModal #deny:hover {
    background-color: red;
}


.container p {
    font-size: 0.875rem;
    line-height: 20px;
    letter-spacing: 0.3px;
    margin: 20px 0;
}

.container form {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    padding: 0 40px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.container form::-webkit-scrollbar {
    width: 0;
}

.container form::-webkit-scrollbar-track {
    background: transparent;
}

.container form::-webkit-scrollbar-thumb {
    background-color: transparent;
}

.form-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.our-data {
    left: 0;
    width: 100%;
    z-index: 2;
}

.company-info {
    border: transparent;
    padding: 15px;
    margin: 10px;
    border-radius: 8px;
    text-align: justify;
}


.company-info p {
    color: black;
}

h1 {
    margin: 0.3em;
    font-size: 3rem;
}

h2 {
    margin-bottom: 0.5rem;
}

.title {
    text-align: center;
}

.title p {
    color: #888;
    font-size: 1rem;
    letter-spacing: 2px;
}
.container-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; 
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 1%;
}


.card {
    height: 100%;    width: auto;
    background-color: #000; /* Black color */
    padding: 2% 3%;
    border: 0.2px solid rgba(179, 99, 1, 0.329); /* Orange color */
    border-radius: 8px;
    transition: .6s;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.card::after {
    content: '';
    position: absolute;
    top: 150%;
    left: -200px;
    width: 120%;
    transform: rotate(50deg);
    background-color: #fff;
    height: 18px;
    filter: blur(30px);
    opacity: 0.5;
    transition: 1s;
}

.card:hover:after {
    width: 225%;
    top: -100%;
}

.card i {
    color: #f2651c; 
    margin-top: 4px;
    margin-bottom: 2px;
    font-size: 3rem;
}


.card h2 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

.card p {
    text-align: justify;
    font-size: 14px;
    width: 100%;
    margin: 12px 0;
    color: rgba(255, 255, 255, 0.63);
}

.card:hover {
    background-color: transparent;
    transform: translateY(-8px);
    border-color: #f2651c;
}

.card:hover i {
    color: #ffffff;
}

.card:hover h2 {
    color: #f2651c;
}

.files{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
}

.file-wrapper-bs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: color 0.3s;
}

.file-wrapper-ss {
    display: none;
    text-align: center;
    flex-direction: column;
    padding: 20px;
    background-color: transparent;
    border-radius: 10px;
    margin: 10px;
}
.file-wrapper-ss h2 {
    color: white; 
    font-size: 1rem;
}

.file {
    position: relative;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 5px;
    border-radius: 10px;
    transition: transform 0.3s, color 0.3s;
    aspect-ratio: 9 / 16; 
}

.file img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; 
    border-radius: 8px;
    transition: transform 0.3s;
}

.file:hover img {
    transform: scale(1.05);
}

.file:hover + .title h2 {
    color: #f2651c; 
}

.title {
    margin-top: 10px;
    text-align: center;
    transition: color 0.3s; 
}

.title h2 {
    color: #fff;
    font-size: 0.9rem;
    transition: color 0.3s;
    text-align: center;
}

.container p{
    font-size: 0.875rem;
    margin: 20px 0;
}

.container-c span{
    font-size: 0.75rem;
}

.contact-container a{
    color: #333;
    font-size: 0.8125rem;
    text-decoration: none;
}


.contact-container form{
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.contact-container{
    position: absolute;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

.container-our-data{
    right: 0;
    width: 50%;
}


.container-contact{
    left: 0;
    width: 50%;
    }

.responsive-image {
    width: 100%;
    height: 99%;
    object-fit: contain; /* Change this to cover if you want the image to cover the area */
}

.contact-social-icons{
    margin: 20px 0;
}

.contact-social-icons a{
    border: 1px solid #ccc;
    border-radius: 20%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 3px;
    width: 40px;
    height: 40px;
}

.contact-social-icons a:hover {
    background: #f2651c;
    color: #ffffff;
}  

.contact-company-info {
    border: transparent;
    padding: 15px;
    margin: 10px;
    border-radius: 8px;
}
.contact-container h1 {
    font-size: 2rem;
    color: black;
}

.contact-company-info h2 {
    color: black;
}

.contact-company-info p {
    color: black;
}

footer {
    color: #ffffff;

}

footer a {
    color: #ffffff;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

footer a:hover {
    color: #f2651c;
}

@media screen and (max-width:1200px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
        overflow-y: auto;
        max-height: 70vh;
    }

    .cards::-webkit-scrollbar {
        width: 0; 
    }
    
    .cards::-webkit-scrollbar-track {
        background: transparent; 
    }
    
    .cards::-webkit-scrollbar-thumb {
        background-color: transparent; 
    }
    
}

@media screen and (max-width: 1000px) {
    .mobile-menu-icon {
        display: block;
        color: white;
        font-size: 2rem;
        padding: 10px; 
        line-height: 1; 
        cursor: pointer; 
    }

    .company-logo {
        width: 40%;
    }

    .navigation {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background: linear-gradient(to right, #4c4e4e, #373739);
    }

    .navigation.show {
        display: flex;
    }

    .navigation a {
        padding: 10px;
        text-align: center;
    }
    .navigation a:hover::after,
    .navigation a:active::after {
        transform: scaleX(0);
    }
    .text-box h1 {
        font-size: 3rem;
        -webkit-text-stroke: 0.5px #fff;
    }

    .text-box h2 {
        font-size: 2.3rem;
    }
    .row a{
        width: 10rem;
        text-align: center;
    }

    #cookieModal {
        width: 100%;
    }

    .company-info p {
        font-size: 0.7rem;
    }

    h1 {
        margin: 0.1em;
        font-size: 2rem;
        margin-top: 20px;
        margin-bottom: -10px;
    }

    .text-box p {
        font-size: 1.5rem;
    }

    .text-box {
        bottom: 12%;
    }
    .cards {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        padding: 20px;
        overflow-y: auto;
        justify-content: center;
        align-items: stretch;
        max-height: 70vh;
    }
    
    .card {
        display: flex;
        flex-direction: column;
        height: auto;
        margin: auto;
        max-width: 100%;
        padding: 20px;
        position: relative;
    }

    .files {
        display: grid;
        grid-template-columns: repeat(3, 2fr);
        gap: 5px;
    }
    .file-wrapper-bs {
        display: none; /* Hide card-wrapper-bs on screens smaller than 900px */
    }
    
    .file-wrapper-ss {
        display: flex;
        padding: 10px;
        margin: 5px;
    }
    .file {
        aspect-ratio: 1 / 1;
    }
    
    .files{
        overflow-y: auto;
    }
    .files::-webkit-scrollbar {
        width: 0;
    }
        
    .files::-webkit-scrollbar-track {
        background: transparent;
    }
        
    .files::-webkit-scrollbar-thumb {
        background-color: transparent;
    }

    .container-contact{
        width: 0%;
    }
    .container-our-data{
        width: 100%;
    }
        
}
@media screen and (max-width: 600px) {
    .files {
        grid-template-columns: repeat(1, 1fr);
    }

    .language-select {
        margin-left: 0;
    }
}

@media screen and (max-width: 532px) {
    .navigation a {
        font-size: 0.8rem;
    }

    .company-logo {
        width: 50%;
    }
    body {
        max-height: 90vh;
    }

    .text-box h1 {
        font-size: 2.5rem;
    }

    .text-box h2 {
        font-size: 2rem;
    }
    .container form {
        padding: 0 15px
    }

    h1 {
        font-size: 1.8rem;
    }

    .text-box {
        left: 2%;
        bottom: 12%;
        text-align: center;
    }

    .text-box p {
        font-size: 1.25rem;
        text-align: left;
    }

    .text-box p {
        font-size: 1.25rem;
        text-align: left;
    }


}

@media screen and (max-width: 400px) {
    .company-logo {
        width: 55%;
    }
    .text-box h1 {
        font-size: 2rem;
    }

    .text-box h2 {
        font-size: 1.5rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1rem;
    }

    .text-box h1 {
        font-size: 2rem;
    }

    .text-box h2 {
        font-size: 1.5rem;
    }
    .contact-container h1 {
        font-size: 1.5rem;
    }
}

@media screen and (min-width: 2400px) {
    header {
        padding: 0.5% 8.5%;
    }

    
}

.section {
    display: none;
}

.section.active {
    display: block;
}