/* General settings */

*{
    text-decoration: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Verdana, sans-serif;
}

html, body{
    overflow-x: hidden;
}

h1{
    font-size: 2.25rem;
    text-align: center;
}

a{
    cursor: pointer;
}

button{
    color: white;
    background: hsl(201, 100%, 35%);
    cursor: pointer;
    border: none;
}

button:hover{
    color: black;
    background: hsl(201, 100%, 65%);
    transition: 0.2s ease-in-out;
}

button:active{
    color: black;
    background: hsl(201, 100%, 85%);
}

/* Whatsapp Logo Styling */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 900;
  text-decoration: none;
}

.whatsapp-circle {
  background-color: #25D366;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  width: 60px;
  height: 60px;
}

.whatsapp-float:hover .whatsapp-circle {
  transform: scale(1.1);
}

.whatsapp-icon {
  width: 45px;
  height: 45px;
}


@media (max-width: 850px){
	.whatsapp-circle {
	  width: 50px;
  	  height: 50px;
	}

	.whatsapp-icon {
	  width: 35px;
	  height: 35px;
	}
}

@media (max-width: 550px){
	.whatsapp-circle {
	  width: 45px;
  	  height: 45px;
	}

	.whatsapp-icon {
	  width: 30px;
	  height: 30px;
	}
}

/* Header - Company logo and navigation menu items */

.header_navigation{
    position:fixed;
    top: 0;
    left: 0;
    z-index: 1100;
    background:white;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow for depth */
}

.menu-btn{
    display: none;
}

.header_navigation .logo img{
    display: inline-block;
    width: 206px;
    height: 66px;
}

.header-menu{
    display: flex;
    position: relative;
    margin-bottom: 5px;
    margin-top: 5px;
    align-items: center;
}

.main-menu img{
    width: 24px;
    height: 24px;
}

.main-menu > a{
    pointer-events: all;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    color: black;
    margin: 0px 40px 25px 20px;
    padding: 25px 0;
}

.main-menu > a:hover{
    color: hsl(219, 66%, 56%);
    cursor: pointer;
    transition: 0.3s;
}

.main-menu .sub-menu{
    position: absolute;
    background-color: rgb(245,245,245);
    top: 60px;
    line-height: 40px;
    white-space: nowrap;
    box-shadow: 0 5px 25px rgb(0,0,0/20%);
    pointer-events: none;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.3s;
    transition-property: transform, opacity;
}

.main-menu:hover .sub-menu{
    pointer-events: all;
    transform: translateY(0);
    opacity: 1;
}

.main-menu .sub-menu a .sub-item{
    position: relative;
    padding: 7px 0;
    box-shadow:  inset 0px -30px 5px -30px rgba(255, 255, 255, 0.2);
    padding: 10px 30px;
}

.main-menu .sub-menu a{
    color: black;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
}

.main-menu .sub-menu .sub-item:hover{
    background-color: hsl(219, 66%, 56%);
}

.main-menu .sub-menu a:hover .sub-item{
    color: white;
}

.main-menu:hover .sub-menu:last-child{
    border-radius: 0 0 8px 8px;
}

.main-menu:hover #last-item:hover{
    border-radius: 0 0 8px 8px;
}

.main-menu .language{
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-menu .language::before{
    content: '';
    width: 24px;
    height: 16px;
    display: block;
    margin: 0 7.5px;
}

.main-menu #english::before{
    background: url("../assets/language/en.png");
    background-size: 24px 16px; background-repeat: no-repeat;
}

.main-menu #turkish::before{
    background: url("../assets/language/tr.png");
    background-size: 24px 16px; background-repeat: no-repeat;
}

@media (max-width: 1350px){
    
    .header_navigation .header-menu{
        position: fixed;
        display: flex;
        flex-direction: column;
        background: white;
        align-items: start;
        text-align: center;
        width: 100%;
        height: auto;
        overflow-y: auto;
        right: -500%;
        top: 0;
        z-index: 100;
        margin-top: 80px;
        padding: 2%;
        visibility: hidden;
    }

    .header_navigation .logo{
        margin-right: 60%;
        margin-bottom: 5px;
        margin-top: 5px;
    }

    .header_navigation .header-menu.active{
        border-top: 0.05px solid lightgray;
        right: 0;
        visibility: visible;
        scrollbar-width: none;
    }

    .header-menu.active .main-menu{
        width: 100%;
        align-items: start;
        display: flex;
        justify-content: start;
    }

    .header-menu.active .main-menu > a{
        padding: 15px;
        margin: 0;
    }

    .header-menu.active li:not(:last-child){
        border-bottom: 1px solid black;
    }

    .hamburger-container{
        height: 40px;
        width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor:pointer;
        position: relative;
        margin: auto 5% auto 0;
    }

    .header-menu-btn{
        width:40px;
        height:5px;
        background:hsl(201, 100%, 35%);
        position: relative;
        transition: all .4s;    
    }

    .header-menu-btn::after{
        content:"";
        position: absolute;
        background:hsl(201, 100%, 35%);
        width:40px;
        height:5px;
        top: 12px;
        transition: all .4s;
    }

    .header-menu-btn::before {
        content:"";
        position: absolute;
        background:hsl(201, 100%, 35%);
        width:40px;
        height:5px;
        bottom: 12px;
        transition: all .4s;
    }

    .hamburger-container.active .header-menu-btn::after {
        transform: rotateZ(45deg) translate(-8.5px, -8.5px);
    }
    
    .hamburger-container.active .header-menu-btn::before {
        transform: rotateZ(-45deg) translate(-8.5px, 8.5px);
    }
    
    .hamburger-container.active .header-menu-btn {
        background: transparent;
        cursor: pointer;
    }

    .main-menu .sub-menu{
        position: relative;
        top: 0;
        overflow: hidden;
        margin-left: -120px;
        background-color: white;
        line-height: 40px;
        white-space: nowrap;
        pointer-events: none;
        transform: translateY(0);
        opacity: 1;
        z-index: 10;
        display: none;
    }
    
    .header-menu.active .sub-menu{
        margin-bottom: 10px;
        margin-top: 50px;
    }
}

@media (max-width: 850px){
    .header_navigation .logo{
        margin-right: 40%;
    }
}

@media (max-width: 550px){
    .header_navigation .logo{
        margin-right: 15%;
    }
}

/* -------------------------------------- Slides - 4 Slides in Main Page with auto and manuel navigation buttons -------------------------------------- */

/* Container for the entire slider section */
.background {
    width: 100%; /* Sets the width to fill the available space */
    height: auto; /* Sets the height automatically */
    max-height: 750px; /* Sets maxiumum height value */
    position: relative; /* Allows for absolute positioning of child elements */
    display: flex; /* Enables flexbox layout */
    flex-direction: column; /* Aligns items in a column (vertical stack) */
    justify-content: center; /* Centers content vertically */
    align-items: center; /* Centers content horizontally */
    margin-top: 90px; /* Add margin to header */
}

/* Main container for the slider - this holds the images and navigation buttons */
.slider-container {
    position: relative; /* Allows for absolute positioning of navigation buttons */
    width: 95%; /* Sets the slider width to 95% of the parent container */
    height: 100%; /* Gets all available height */
    max-height: 750px; /* Sets maxiumum height value */
    max-width: 100%; /* Maximum width for larger screens */
    overflow: hidden; /* Hides the overflow content (only one image is visible at a time) */
    border-radius: 10px; /* Rounds the corners of the slider */
}

/* Flexbox container that holds all the slides */
.slider {
    display: flex; /* Enables flexbox layout to line up slides horizontally */
    transition: transform 0.4s ease-in-out; /* Smooth transition when sliding between images */
}

/* Each individual slide - takes up full width of the container */
.slide {
    min-width: 100%; /* Each slide takes up 100% of the slider container's width */
    height: auto; /* Sets the height automatically */
    max-height: 750px; /* Sets maxiumum height value */
    transition: transform 0.5s ease-in-out; /* Smooth transition when slides are changed */
}

.slide-texts{
    position: absolute;
    z-index: 100;
    display: flex;
    justify-content: center;
    flex-direction: column;
    top: 50%;
    transform: translateY(-50%);
    margin: auto;
    margin-left: 5%;
    max-width: 1000px;
    width: 30%;
    align-items: start;
}

.slide-header{
    color: rgb(245,245,245);
    text-align: start;
    font-weight: bold;
    font-size: 2.5rem;
    margin-bottom: 5%;
    text-wrap: wrap;
}

.slide-subtext{
    color: rgb(192,192,192);;
    text-align: start;
    font-weight: bold;
    font-size: 1.25rem;
}

@media (max-width: 1200px){
    .slide-texts{
        width: 40%;
        margin-left: 10%;
    }
    .slide-header{
        font-size: 1.70rem;
    }
    .slide-subtext{
        font-size: 1.15rem;
    }
}

@media (max-width: 700px){
    .slide-texts{
        margin-left: 15%;
        margin-bottom: 10%;
    }
    .slide-header{
        font-size: 0.8rem;
    }
    .slide-subtext{
        font-size: 0.5rem;
    }
}

/* Ensures that images fill the slide area while maintaining aspect ratio */
.slide img {
    width: 100%; /* Image width matches the slide width */
    height: 100%; /* Image height matches the slide height */
    object-fit: cover; /* Images are scaled to cover the entire slide, cropping if necessary */
    border-radius: 10px; /* Rounds the corners of the images to match the slider */
}

/* Common styling for both previous and next navigation buttons */
.prev, .next {
    position: absolute; /* Absolute positioning within the slider container */
    top: 50%; /* Centers the button vertically */
    transform: translateY(-50%); /* Offsets the button position by half its height */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    color: white; /* White color for the arrow icons */
    border: none; /* Removes default button borders */
    width: 40px; /* Fixed width for the buttons */
    height: 40px; /* Fixed height for the buttons */
    cursor: pointer; /* Changes the cursor to pointer on hover */
    z-index: 10; /* Ensures buttons appear above the slider content */
    border-radius: 50%; /* Makes the buttons round */
    transition: background-color 0.3s ease; /* Smooth transition for background color on hover */
    display: flex; /* Enables flexbox for centering the arrow inside the button */
    justify-content: center; /* Centers arrow horizontally */
    align-items: center; /* Centers arrow vertically */
    padding: 0; /* Removes any default padding */
}

/* Positioning the previous button to the left */
.prev {
    left: 10px; /* Positions the button 10px from the left edge */
}

/* Positioning the next button to the right */
.next {
    right: 10px; /* Positions the button 10px from the right edge */
}

/* Hover effect for navigation buttons */
.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.9); /* Darkens the button background on hover */
    color: white;
}

/* Container for the dot indicators below the slider */
.dots-container {
    margin: 20px 0px; /* Space above and bottom the dots */
    display: flex; /* Enables flexbox layout for horizontal alignment */
    justify-content: center; /* Centers the dots horizontally */
    align-items: center; /* Centers the dots vertically */
}

/* Common styling for each individual dot */
.dot {
    height: 15px; /* Fixed height for the dots */
    width: 15px; /* Fixed width for the dots */
    margin: 0 5px; /* Spacing between the dots */
    background-color: hsl(201, 100%, 65%); /* Semi-transparent white background */
    border-radius: 50%; /* Makes the dots round */
    display: inline-block; /* Ensures dots are inline */
    cursor: pointer; /* Changes cursor to pointer on hover */
    transition: background-color 0.3s ease; /* Smooth transition for background color on hover */
}

/* Styling for the active dot - indicates the current slide */
.dot.active {
    background-color: hsl(201, 100%, 35%); /* Solid white background for the active dot */
}

/* Home general information under slide section */

.about-header{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 2%;
}

.about-container{
    width: 100%;
    height: 600px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 3%;
}

.about-area{
    position: relative;
    width: 90%;
    height: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image{
    position: relative;
    width: 50%;
    height: 100%;
    display: inline-block;
    justify-content: center;
    align-items: center;
}

.about-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.about-text{
    position: relative;
    width: 50%;
    height: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    margin-top: 2%;
}

.about-text p{
    line-height: 1.75rem;
}

.about-text h2{
    position: relative;
    bottom: 10%;
    font-size: 2rem;
}

.about-button{
    position: relative;
    cursor: pointer;
    margin-top: 5%;
}

.about-button button{
    height: auto;
    padding: 1rem 1.5rem;
    font-weight: bold;
    font-size: 1.25rem;
    border-radius: 20px;
}

.about-icons-container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-icons{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 2%;
}

.about-icons img{
    padding: auto;
}

.about-icons p{
    font-size: 1rem;
    font-weight: bold;
    padding: 1%;
    text-wrap: wrap;
    text-align: center;
}

@media (max-width: 1200px) {
    .about-container{
        height: auto;
    }

    .about-area{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .about-text{
        padding: 0 0;
        margin-top: 2%;
        width: 95%;
    }
    .about-text h2, .about-text p{
        margin-bottom: 5%;
    }

    .about-button{
        margin-top: 0;
    }

    .about-image{
        width: 95%;
    }

    .about-icons{
        padding-top: 5%;
    }

    .about-icons p{
        padding: 1%;
    }
}

@media (max-width: 500px) {
    h1{
        font-size: 1.75rem;
    }
    .about-text h2{
        font-size: 1.5rem;
    }
    .about-text p{
        font-size: 1rem;
    }
    .about-text h2, .about-text p{
        margin-bottom: 10%;
    }
    .about-icons-container{
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* -------------------------------------- Card Area for 3 main Productions -------------------------------------- */

.product-cards{
    background-color: rgb(245,245,245);
    margin-top: 5%;
}

.card-texts{
    padding-top: 50px;
}

.card-texts p{
    text-align: center;
    margin-top: 10px;
    margin-bottom: 50px;
    color: grey;
}

.card-area{
    display: flex;
    justify-content: center;
    position: relative;
    width: 95%;
    max-width: 1600px;
    margin: auto;
}

.card-group{
    display: flex;
    width: fit-content;
    margin-bottom: 5%;
    margin-top: 10px;
    justify-content: center;
    gap: 30px;
}

.card{
    height: 550px;
    width: 350px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: 0.5s;
}

.card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transition: 0.5s;
}

.card .layer{
    background: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 75%;
    opacity: 0;
    transition: 0.3s;
}

.card .info{
    color: whitesmoke;
    position: absolute;
    bottom: -65%;
    padding: 15px;
    opacity: 0;
    transition: 0.5s bottom, 1.75s opacity;
}

.card .info p{
    font-size: 14px;
    margin-top: 3px;
    margin-bottom: 2%;
}

.card .info h2{
    font-size: 2rem;
    margin-bottom: 5%;
    text-align: center;
}

.card .info button{
    padding: 8px 12px;
    font-weight: bold;
    border-radius: 8px;
    margin-top: 8px;
}

.card:hover,
.card:hover img {
    transform: scale(1.2);
    z-index: 10;
}

.card:hover > .layer{
    opacity: 1;
}

.card:hover > .info{
    bottom: 0;
    opacity: 1;
}

.card-group:hover > .card:not(:hover){
    filter: blur(5px);
}

@media(max-width:1700px){

    .card-group{
        display: grid;
        width: fit-content;
        grid-template-columns: 350px 350px;
        grid-template-rows: 550px 550px;
        grid-column-gap: 75px;
        grid-row-gap: 75px;
        align-items: center;
        margin: 0;
        margin-top: 20px;
        margin-bottom: 5%;
        float: left;
    }

    .card{
        height: 550px;
        width: 350px;
    }

}

@media(max-width:1000px){

    .product-cards{
        padding-bottom: 8%;
    }

    .card-group{
        display: flex;
        width: fit-content;
        align-items: center;
        height: auto;
        margin: 0;
        flex-direction: column;
        gap: 75px;
        margin-top: 20px;
        margin-bottom: 5%;
        float: left;
    }

    .card{
        height: 550px;
        width: 350px;
    }

}

@media(max-width:550px){
    
    .card-group{
        display: flex;
        width: fit-content;
        align-items: center;
        height: auto;
        margin: 0;
        flex-direction: column;
        gap: 75px;
        margin-top: 20px;
        margin-bottom: 5%;
        float: left;
    }

    .card{
        height: 400px;
        width: 266.67px;
    }
}

/* -------------------------------------- Index - News Section -------------------------------------- */

.news-container{
    position: relative;
    width: 95%;
    height: 500px;
    max-width: 100%;
    margin: 2% auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.news-section{
    position: relative;
    display: flex;
    justify-content: center;
    margin: auto;
    width: 65%;
    align-items: end;
}

.news-section img{
    position: relative;
    width: 250px;
    height: 150px;
    display: flex;
    flex: auto;
}

.news-column{
    display: flex;
    flex-direction: column;
    box-shadow: hsl(201, 100%, 35%);
    flex: auto;
    text-align: center;
    align-items: center;
    position: relative;
    padding: 20px;
    cursor: pointer;
}

.news-texts{
    position: relative;
    margin-top: 5%;
    padding: 0 2%;
    display: flex;
    flex-direction: column;
    text-align: start;
}

.news-texts p{
    margin: 2% 0;
    position: relative;
    text-align: start;
    font-weight: bold;
    color: #999;
}

.news-texts h3{
    margin-top: 2%;
    position: relative;
    text-wrap: wrap;
    text-align: start;
    font-weight: bold;
    color: black;
}

.news-column:hover h3{
    color: hsl(201, 100%, 55%);
}

.news-column:hover{
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.news-container button{
    position: relative;
    padding: 1rem 1.5rem;
    font-weight: bold;
    font-size: 1.25rem;
    border-radius: 20px;
}

@media (max-width: 1250px){
    .news-container{
        height: auto;
        margin: 5% auto;
    }

    .news-section{
        flex-direction: column;
        align-items: center;
        margin: 5% auto;
    }
    .news-texts{
        text-align: center;
    }
}

/* -------------------------------------- Hero Section -------------------------------------- */

.hero-section{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 350px;
    width: 100%;
    z-index: 0;
    margin-top: 45px;
    overflow: hidden;
}

.hero-section img{
    overflow: hidden;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.hero-navigation{
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
}


.hero-section h1{
    font-size: 3rem;
    color: white;
}

.hero-section h2{
    font-size: 1.5rem;
    color: rgb(176,176,176);
    padding-top: 10px;
}

/* -------------------------------------- Info Section -------------------------------------- */

.inner-page-container{
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 2% 2% 0 2%;
}

#main-header{
    position: relative;
    text-align: center;
    font-size: 1.75rem;
    font-weight: bold;
    color: black;
}

#contact-sub-info-header{
    padding-top: 10px;
    text-align: center;
    color: #999;
}

#contact-sub-info-responsive{
    display: none;
}

#responsive-header{
    display: none;
}

.info-section{
    display: flex;
    flex-direction: row;
    margin: 2%;
    justify-content: center;
    align-items: start;
}

.info-left{
    width: 25%;
    margin-left: 15%;
}

.info-left ul{
    align-items: start;
    line-height: 40px;
    pointer-events: all;
    cursor: pointer;
}

.info-left ul li{
    border-bottom: 1px solid grey;
    color: grey;
    padding-right: 20px;
}

.info-left #selected{
    color: black;
    font-weight: bold;
}

.info-left ul li b{
    font-size: 0.75rem; 
    color:black;
}

.info-left ul li:hover{
    background-color: rgb(190, 190, 190);
    color: black;
    cursor: pointer;
    transition: 0.2s ease all;
}

.info-right{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 100px 0 30px;
}

.info-right h5{
    font-size: 1.15rem;
}

.info-right #main-header{
    font-weight: bold;
    margin-top: 1%;
    margin-bottom: 5%;
    font-size: 2rem;
    text-align: center;
    line-height: 2.5rem;
}

.info-image{
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.info-image img{
    max-width: 1000px;
    height: auto;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 1010px) {
    .info-section{
        display: flex;
        flex-direction: column;
    }

    #main-header{
        display: none;
    }

    #responsive-header{
        display: inline-block;
        padding-bottom: 2%;
        position: relative;
        text-align: center;
        font-size: 1.75rem;
        font-weight: bold;
        color: black;
    }

    #contact-sub-info-header{
        display: none;
    }
    
    #contact-sub-info-responsive{
        display: inline-block;
        position: relative;
        padding-bottom: 5%;
        text-align: center;
        color: #999;
    }
    
    .info-left{
        width: 100%;
        max-width: 1000px;
        margin-left: 0%;
        padding: 0 30px;
        margin-bottom: 5%;
    }

    .info-right{
        padding: 0 30px;
    }
    
}

/* Products Section */

.products-page-grid{
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 400px);
    grid-template-rows: repeat(2, 350px);
    gap: 50px;
    justify-content: center;
    align-items: center;
    margin: auto 0 auto 0;
    width: 95%;
    height: 100%;
    max-width: 100%;
    overflow: hidden;
}

.products-page-area{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    flex-direction: column;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 95%; /* Sets the slider width to 95% of the parent container */
    height: auto; /* Gets all available height */
    max-width: 95%; 
    overflow: hidden;
}

.products-page-area a{
    width: 100%;
    height: 100%;
}

.products-page-area img{
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: inline-block;
}

.products-page-text{
    position: absolute;
    width: 250px;
    top: 250px;
    height: 50px;
    left: 0;
    margin: auto;
    z-index: 10;
    background-color: hsl(201, 100%, 35%);
    align-items: center;
    display: flex;
    justify-content: center;
    border-radius: 10px;
}

.products-page-text h2{
    font-weight: bold;
    font-size: 1.15rem;
    color: white;
}

.products-page-area:hover{
    opacity: .7;
}

.products-page-area:hover .products-page-text{
    background-color: hsl(201, 100%, 65%);
    width: 400px;
    border-radius: 0px;
    transition: 0.3s ease-in-out;
}

.products-page-area:hover .products-page-text h2{
    color: black;
}

@media (max-width: 1400px){
    .products-page-grid{
        grid-template-columns: repeat(1, 400px);
        grid-template-rows: repeat(4, 350px);
        gap: 50px;
    }
}

@media (max-width: 500px){
    .products-page-grid{
        grid-template-columns: repeat(1, 250px);
        grid-template-rows: repeat(4, 350px);
        gap: 50px;
    }
    .products-page-text h2{
        font-size: 1rem;
    }    
}

#product-slider{
    margin-top: 45px;
}


#main-header-product{
    position: relative;
    text-align: center;
    font-size: 1.75rem;
    font-weight: bold;
    color: black;
}

.product-section{
    display: flex;
    flex-direction: column;
    text-align: start;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    margin: auto;
}

.product-section p{
    line-height: 1.5rem;
    padding: 20px 0;
}

table{
    border-collapse: collapse;
}

th,td{
    border: 1px solid black;
    padding: 10px;
}

.double-table-container{
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
}

.table-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin: 0 auto;
}

.product-table{
    width: 70%;
    margin: 5% 0;
    height: 200px;
}

.table-feature{
    font-weight: bold;
    width: 50%;
}

.table-value{
    text-align: center;
}

#diameter::before{
    content: "\002300";
    color: black;
    font-size: 1.5rem;
}

.product-catalog{
    display: flex;
    justify-content: center;
    margin: auto;
}

.product-catalog button{
    position: relative;
    padding: 1rem 1.5rem;
    font-weight: bold;
    font-size: 1.25rem;
    border-radius: 20px;
}

@media (max-width: 1000px) {

    .product-section{
        max-width: 95%;
        margin: auto;
    }

    .double-table-container{
        display: flex;
        flex-direction: column;
    }

    .table-container{
        width: 100%;
    }
}

@media (max-width: 500px) {
    .table-container{
        margin-bottom: 5%;
    }
}

/* Granul Section */

.granul-container{
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 250px);
    grid-template-rows: repeat(3, 250px);
    gap: 50px;
    justify-content: center;
    margin: 2% auto;
    width: 100%;
    padding: 20px;
}

.granul-column{
    position: relative;
    display: flex;
    padding: 5% auto;
    overflow: hidden;
}

.granul-column img{
    width: 250px;
    height: 250px;
    object-fit: cover;
}

.granul-text{
    position: absolute;
    width: 250px;
    top: 200px;
    height: 50px;
    z-index: 10;
    background-color: hsl(201, 100%, 35%);
    align-items: center;
    display: flex;
    justify-content: center;
}

.granul-text p{
    font-weight: bold;
    font-size: 1.25rem;
    color: white;
}

@media (max-width: 1200px){
    .granul-container{
        grid-template-columns: repeat(3, 250px);
        grid-template-rows: repeat(4, 250px);
    }
}

@media (max-width: 900px){
    .granul-container{
        grid-template-columns: repeat(2, 250px);
        grid-template-rows: repeat(6, 250px);
    }
}

@media (max-width: 600px){
    .granul-container{
        grid-template-columns: repeat(1, 250px);
        grid-template-rows: repeat(12, 250px);
    }
}

/* Quality Section */

.quality-container{
    position: relative;
    width: 95%;
    margin: 2% auto;
    flex-wrap: wrap;
    display: flex;
    justify-content: start;
}

.quality-section{
    position: relative;
    display: grid;
    gap: 50px;
    grid-template-columns: auto auto auto;
}

.quality-section img{
    position: relative;
    width: 150px;
    height: 200px;
    display: inline-block;
}

.quality-column{
    display: flex;
    flex-direction: column;
    box-shadow: hsl(201, 100%, 35%);
    flex: auto;
    text-align: center;
    align-items: center;
    position: relative;
    padding: 20px;
    cursor: pointer;
}

.quality-texts{
    position: relative;
    margin-top: 5%;
    display: flex;
    flex-direction: column;
    text-align: start;
}

.quality-texts h3{
    margin-top: 2%;
    position: relative;
    text-wrap: wrap;
    text-align: center;
    font-weight: bold;
    color: black;
}

.quality-column:hover h3{
    color: hsl(201, 100%, 55%);
}

.quality-column:hover{
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

@media (max-width: 700px) {
    .quality-section{
        display: flex;
        flex-direction: column;
    }
}

/* Contacts Page */

/* Contacts From */

.form-container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 800px;
    width: 100%;
    align-items: start;
    margin: 0 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label{
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input, textarea, select{
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.form-container select {
    cursor: pointer;
}

.form-container select:required:invalid {
    color: gray;
}
.form-container option[value=""][disabled] {
    display: none;
}
.form-container option {
    color: black;
}

.form-container button{
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
}

@media (max-width: 900px) {
    .form-container{
        margin-left: 0%;
        padding: 0px;
    }
}

/* Branches Styling */

.branch-container{
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: start;
    width: 100%;
    max-width: 100%;
    margin: 20px auto 0 auto;
    padding: 20px;
}

.branch-buttons{
    position: relative;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.branch-buttons button{
    background-color: hsl(201, 100%, 55%);
    color: white;
    font-weight: bold;
    border: solid 0.01rem grey;
    padding: 2.5rem;
    cursor: pointer;
	font-size: 16px;
}

.branch-buttons button:hover{
    color: black;
    background: hsl(201, 100%, 65%);
    transition: 0.2s ease-in-out;
}

#products-erw-buttons button{
	height: 160px;
}

.branch-info{
    position: relative;
    text-align: center;
    align-items: center;
    width: 100%;
    display: none;
    margin-top: 20px;
}

.branch-texts{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2% 0;
}

.branch-info h2{
    padding-bottom: 1%;
}

.branch-info p, .branch-info p a{
    font-size: 1.5rem;
    color: #555;
    padding: 5px;
	font-weight: bold;
}

.branch-map{
    position: relative;
    max-width: 100%;
    width: 100%;
}

@media (max-width: 850px) {
    .branch-buttons button{
        background-color: hsl(201, 100%, 55%);
        color: white;
        font-weight: bold;
        border: solid 0.01rem grey;
        cursor: pointer;
        font-size: 12px;
		padding: 1.25rem;
    }

    .branch-buttons{
        position: relative;
        width: 95%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }

    .branch-info h2{
        font-size: 1.25rem;
    }

    .branch-info p, .branch-info p a{
        font-size: 1rem;
    }
		
    #granul-buttons{
        position: relative;
        display: grid;
        grid-template-columns: repeat(2, 120px);
        grid-template-rows: repeat(6, 65px);
    }

    #granul-buttons button{
        padding: 1.5rem 2.5rem;
    }
}

@media (max-width: 550px) {
    #products-erw-buttons button{
        font-size: 0.75rem;
		padding: 0.8rem;
        height: 100px;
    }
	
    #contact-buttons button{
        font-size: 12px;
		padding: 1.25rem;
        height: 100px;
    }
	
}

@media (max-width: 450px) {
    #products-erw-buttons button{
        font-size: 0.65rem;
		padding: 0.65rem;
        height: 100px;
    }	
}

/* Media Section */

.media-container{
    position: relative;
    width: 95%;
    max-width: 100%;
    margin: 2% auto;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
}

.media-section{
    position: relative;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 300px);
}

.media-section img{
    position: relative;
    width: 250px;
    height: 150px;
    display: inline-block;
    object-fit: cover;
}

.media-column{
    display: flex;
    justify-content: center;
    box-shadow: hsl(201, 100%, 35%);
    flex: auto;
    flex-wrap: wrap;
    text-align: center;
    align-items: center;
    position: relative;
    padding: 20px;
    cursor: pointer;
}

.media-texts{
    position: relative;
    margin-top: 5%;
    padding: 0 2%;
    display: flex;
    flex-direction: column;
    text-align: start;
}

.media-texts h3{
    margin-top: 2%;
    position: relative;
    text-wrap: wrap;
    text-align: start;
    font-weight: bold;
    color: black;
}

.media-texts p{
    margin: 2% 0;
    position: relative;
    text-wrap: wrap;
    text-align: start;
    font-weight: bold;
    color: #999;
}

.media-column:hover h3{
    color: hsl(201, 100%, 55%);
}

.media-column:hover{
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

@media (max-width: 1560px) {
    .media-section{
        grid-template-columns: repeat(2, 300px);
    }
}

@media (max-width: 1151px) {
    .media-section{
        grid-template-columns: repeat(1, 300px);
    }
}

@media (max-width: 1010px) {
    .media-section{
        grid-template-columns: repeat(3, 300px);
    }
}

@media (max-width: 900px) {
    .media-section{
        grid-template-columns: repeat(2, 300px);
    }
}

@media (max-width: 650px) {
    .media-section{
        grid-template-columns: repeat(1, 300px);
    }
}

.news-text{
    position: relative;
    margin: auto 15%;
}

#news-link{
    color: hsl(201, 100%, 35%);
}

#news-link:hover{
    border-bottom: 2px solid hsl(201, 100%, 35%);
}

.logo-media{
    position: relative;
    align-items: center;
    text-align: center;
    margin-top: 2%;
}

.logo-media img{
    width: 15%;
    height: 15%;
}

/* Cookie Consent Section */

.cookies-eu-banner {
    background: #444;
    color: #fff;
    padding: 6px;
    font-size: 13px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 10000;
}

  .cookies-eu-banner button {
    text-decoration: none;
    background: #222;
    color: #fff;
    border: 1px solid #000;
    cursor: pointer;
    padding: 4px 7px;
    margin: 2px 0;
    font-size: 13px;
    font-weight: 700;
    transition: background 0.07s, color 0.07s, border-color 0.07s;
}

  .cookies-eu-banner button:hover {
    background: #fff;
    color: #222;
}

/* Success Styling */

.successful-body {
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	box-sizing: border-box;
	font-family: 'Segoe UI', Verdana, sans-serif;	 
	background-color: #f0fdf4; /* Light green background */
	color: #2d6a4f; /* Dark green for text */
}

.result-container {
	text-align: center;
}

.checkmark {
	font-size: 125px; /* Larger font size for a bigger checkmark */
	color: #38b000; /* Bright green */
	animation: pop 0.5s ease-in-out forwards; /* Animation for a pop effect */
}

.result-message {
	margin-top: 20px;
	font-size: 24px;
	font-weight: bold;
}

.redirect-message {
	margin-top: 10px;
	font-size: 16px;
	color: black;
	font-weight: bold;
}

.redirect_link {
	font-size: 16px;
	color: #555;
	border-bottom: 1px solid #555;
	cursor: pointer;
}

.redirect_link:hover {
	color: hsl(219, 66%, 56%);
	border-bottom: 1px solid hsl(219, 66%, 56%);
}

/* Animation for the icon */
@keyframes pop {
	0% {
		transform: scale(0.5);
		opacity: 0;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

/* Payment Methods Page */

.bank-container{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: auto;
}

.bank-container h3{
    text-align: center;
    margin-bottom: 2%;
    font-size: 1.25rem;
  }

.bank{
  display: flex;
  justify-content: center;
  gap: 100px;
  align-items: center;
  border-bottom: 0.5px solid #ccc;
}

.bank img{
  width: 250px;
  height: 150px;
}

.bank li{
  font-weight: bold;
  font-size: 1.25rem;
  color: #555;
}

#first-bank{
  border-top: 0.5px solid #ccc;
}

.payment-headers{
  text-align: center;
  margin: 2% auto;
}

#pos {
  margin-top: 10px;
  font-size: 1.25rem;
  color: #555;
  font-weight: bold;
  text-align: center;
}

#pos_link {
  font-size: 1.25rem;
  color: #555;
  border-bottom: 1px solid #555;
  cursor: pointer;
}

#pos_link:hover {
  color: hsl(219, 66%, 56%);
  border-bottom: 1px solid hsl(219, 66%, 56%);
}

#payment_contact{
  font-size: 1.25rem;
  font-weight: bold;
  color: #555;
  line-height: 2.25rem;
  text-align: center;
}

#payment_contact a{
  color: #555;
}

#payment_contact a:hover {
    color: hsl(219, 66%, 56%);
    border-bottom: 1px solid hsl(219, 66%, 56%);
  }

@media (max-width: 1500px){

  .bank{
    gap: 50px;
  }

  .bank li{
    font-size: 1.15rem;
  }

  .bank img{
    width: 225px;
    height: 125px;
  }

  .bank-container h3{
    font-size: 1.15rem;
  }

  .tab button {
    font-size: 1.15rem;
  }

  #pos {
    font-size: 1.15rem;
  }

  #pos_link{
    font-size: 1.15rem;
  }

  #payment_contact{
    font-size: 1.15rem;
  }

}

@media (max-width: 1000px){
  .bank-container{
    align-items: center;
  }
}

@media (max-width: 800px){

  .bank{
    gap: 25px;
  }
  
  .bank img{
    width: 200px;
    height: 100px;
  }
}

@media (max-width: 700px){

  .bank{
    flex-direction: column;
  }

  .bank ul{
    margin-bottom: 10%;
  }

  .payment-headers{
    margin: 10% auto 5% auto;
  }

  .bank img{
    width: 150px;
    height: 75px;
  }

}

@media (max-width: 450px){

  .bank li{
    font-size: 1rem;
  }

  .bank-container h3{
    font-size: 1rem;
  }
  
  .tab button {
    font-size: 1rem;
  }

  #pos {
    font-size: 1rem;
  }

  #payment_contact{
    font-size: 1rem;
  }

  #pos_link{
    font-size: 1rem;
  }

}

@media (max-width: 400px){

  .bank li{
    font-size: 0.9rem;
  }

  .bank-container h3{
    font-size: 0.9rem;
  }

  .tab button {
    font-size: 0.9rem;
  }

  #pos {
    font-size: 0.9rem;
  }

  #payment_contact{
    font-size: 0.9rem;
  }

  #pos_link{
    font-size: 0.9rem;
  }

}

@media (max-width: 350px){

  .bank li{
    font-size: 0.7rem;
  }

  .bank-container h3{
    font-size: 0.7rem;
  }

  .tab button {
    font-size: 0.7rem;
  }

  #pos {
    font-size: 0.7rem;
  }

  #payment_contact{
    font-size: 0.7rem;
  }

  #pos_link{
    font-size: 0.7rem;
  }

}

/* Payment Tabs Styling */

.tab{
    margin-bottom: 2%;
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
  }
  
.tab button {
    background-color: hsl(201, 100%, 55%);
    color: white;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 1.25rem;
    font-weight: bold;
  }
  
.tab button:hover {
    background: hsl(201, 100%, 45%);
    transition: 0.2s ease-in-out;
  }
  
.tab button.active {
    background: hsl(201, 100%, 35%);
  }
  
.tabcontent {
    display: none;
    padding: 6px 12px;
    border-top: none;
  }

/* Footer Styling */

footer {
    background-color: hsl(0, 0%, 20%);
    color: white;
    padding: 20px 0;
	position: relative;
	z-index: 1000;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin: 0 25%;
    padding: 0 20px;
}

.footer-section {
    flex: auto;
    margin: 20px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #f0f0f0;
}

.footer-section p, .footer-section ul, .footer-section.company-info a{
    font-size: 14px;
    line-height: 2;
    color: #ccc;
}

.footer-section ul {
    list-style: none;
    padding: 0px;
}

.quick-links ul{
    line-height: 1.75rem;
    text-align: start;
}

.footer-section ul li a{
    color: #ccc;
    text-decoration: none;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-section.social-media ul{
    display: flex;
    justify-content: start;
    margin-top: -20px;
}

.footer-section.social-media ul li{
    padding-right: 20px;
}

.footer-section.social-media ul li a{
    font-size: 40px;
}

.fa.fa-instagram:hover{
    transition: all .55s ease;
    color: transparent;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background-clip: text;
    -webkit-background-clip: text;
}

.footer-section.social-media .footer-linkedin:hover{
    transition: all .55s ease;
    color: hsl(201, 100%, 35%);
}

.footer-section.social-media .footer-x:hover{
    transition: all .55s ease;
    color: #777;
}

.footer-logo{
    display: flex;
    width: 145.1px;
    height: 46.1px;
    position: relative;
}

.footer-text {
    text-align: center;
    font-size: 12px;
    color: #999;
    border-top: #999 solid 0.25px;
    padding-top: 20px;
}

.footer-text .designer a {
  color: #999;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-text .designer a:hover {
  color: #777;
  text-decoration: underline;
}

@media (max-width: 1700px){
    .footer-container {
        margin: 0 10%;
    }
}

@media (max-width: 1100px){
    .footer-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: auto;
    }
    .footer-section.social-media ul li{
        display: flex;
        justify-content: center;
        align-items: center;
        padding-right: 10px;
        padding-left: 10px;
	}
	.quick-links ul{
		text-align: center;
	}
    .footer-logo{
        margin-left: 5%;
    }
}