@import url('https://fonts.googleapis.com/css?family=Trirong');
@import url('https://fonts.googleapis.com/css?family=Lugrasimo');
@import url('https://fonts.googleapis.com/css?family=Ysabeau Infant');
@import url('https://fonts.googleapis.com/css?family=Roboto Slab');

*{
    font-family: "Roboto Slab", serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
}

:root{
    --bg-color:#0f4220;
    --second-bg-color:#063116;
    --text-color:white;
    --main-color:red;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
}

body{
    background: linear-gradient(green,rgb(21, 88, 51));
    color:var(--text-color);
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    background: var(--bg-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;

}

.header .sticky{
    border-bottom: .1rem solid rgba(0,0,0,.2);
}

section{
    min-height: 100vh;
}


.logo{
    font-size: 3.5rem;
    color: var(--text-color);
    font-weight: 600;
    cursor: default;
}


.navbar a{
    font-size: 1.3rem;
    color: var(--text-color);
    margin-left: 4rem;
    transition: 1.5s;
}

.navbar a:hover{
    color:var(--main-color);
}

.navbar a.active{
    color: var(--text-color);
    background-color: var(--main-color);
    border-radius: 5px;
    padding: 10px;
}

#menu-icon{
    font-size: 3.6rem;
    color: var(--text-color);
    display: none;
}

.home{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(231, 228, 228);
}

.line {
    border-top: 3px outset white;
    width: 50px;
    margin-left: 35%;
    margin-top: 5px;
  }
.home-content h3{
    font-size: 2.2rem;
    font-weight: 700;
    color: black;
}

.home-content h3:nth-of-type(2){
    margin-bottom: 2rem;
}

.home-content h1{
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 1px 1px 1px black;
    color: green;
}

.home-img img{
    width: 25vw;  
}

.home-img{
    border: 3px outset black;
    border-radius: 5px;
}

@keyframes floatImage{
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-2.4rem);
    }
    100%{
        transform: translateY(0);
    }
}

.home-img{
    padding: 15px;
    margin-left: 35px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
    animation: floatImage 4s ease-in-out infinite;
}

.home-content p{
    font-size: 1.6rem;
}

.social-media a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background: var(--main-color);
    border: .2rem solid var(--main-color);
    border-radius: 50%;
    color: white;
    margin: 3rem 1.5rem 3rem 0;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
}

.social-media a:hover{
    background: var(--main-color);
    color: white;
}

.social-media a i{
    font-size: 2rem;
    color: white;
}

.social-media a i:hover{
    color:white;
}

.btn{
    display: inline-block;
    padding: 2rem 2.8rem;
    background: red;
    box-shadow: 0 0 1rem red;
    border-radius: 10px;
    color: var(--text-color);
    font-size: 1.6rem;
    letter-spacing: .1rem;
    font-weight: 600;
}

.btn:hover{
    box-shadow: none;
}

.about{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background-color: white;
}

.about-img{
    width:10vw;
    border-radius: 50%;
    border: 1px outset black;
    padding: 20px;
    box-shadow: 0 0 1rem black;
    margin-left: 44%;
}

.about-content h2{
    color: black;
    font-size: 4.6rem;
    font-family:'Lugrasimo' ;
}

.about-content .heading p{
    margin-left: 3%;
}

.about-content .about-text{
    display: grid;
    grid-template-columns: auto auto;
}

.about-content .about-text .right{
  padding-left: 55px;
  border-left: 1px outset black;
  border-top-left-radius: 15px;
}

.about-content .about-text .left{
  padding-right: 55px;
  border-right: 1px outset black;
  border-top-right-radius: 15px;
}

 .top-head{
    display: flex;
 text-align: justify;
 margin-top: 2.5rem;
}

.about-content .heading{
    margin-left: 35%;
}

.top-head i{
    color: black;
    font-size: 2.5rem;
    animation: floatImage 4s ease-in-out infinite;
    color: #063116;
}

.heading{
    text-align: center;
    font-size: 4.5rem;
    font-family: 'Lugrasimo';
    margin-bottom: 35px;
}

.about-content h2{
    text-align: left;
    color: black;
}

.about-content h3{
    font-size: 2.6rem;
    color: var(--main-color);
    font-weight: 7000px;
    margin-left: 0;
}

.about-content h1{
color: black;
margin-left: 0;
}


.about-content p{
    font-size: 1.6rem;
    margin: 1rem 0;
    color: black;
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.6;
}
.service{
    background: linear-gradient(rgb(21, 88, 51),green);
}
.service h2{
    margin-bottom: 5rem;
}

.service-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-container .service-box{
    flex: 1 1 30rem;
    background: white;
    color: black;
    padding: 3rem 2rem 4rem;
    border-radius: 2rem;
    text-align: center;
    box-shadow: 0 0 1rem black;
    border: .2rem solid var(--bg-color);
    margin-left: 7px;
    transition: .5s ease;
}

.service-container .service-box:hover{
    border-color: var(--main-color);
    transform:scale(1.02);
}
.service-box i{
    font-size: 7rem;
    color: var(--main-color);
}

.service-box h3{
    font-size: 1.6rem;
}

.service-box p{
    font-size: 1.2rem;
    margin: 1rem 0 1rem 1rem;
    line-height: 2.2;
    
}

.events{
    background-color: rgb(231, 228, 228);
    color: black;
}

.events h4{
    margin-left: 30%;
    font-size: 4.5rem;
    color: var(--main-color);
    font-weight: 900px;
    margin-top: 10%;

}

.product{
    background: linear-gradient(rgb(21, 88, 51),green);

}

.product .coordination-box{
    background-color: white;
    border-radius: none;
    box-shadow: 0 0 1rem black;
}

.product .coordination-container{
    display: grid;
    grid-template-columns: repeat(5,1fr);
}

.product .coordination-box img{
    height: 200px;
}

.heading p{
    font-size: 1.4rem;
}

.heading h3{
    font-family: 'Lugrasimo';
    margin-top: 10%;
}
#searchbar{
    padding:10px;
    border-radius: 5px;
    border-bottom: 1px solid green;
  }

  input[type=text] {
     width: 30%;
     -webkit-transition: width 0.15s ease-in-out;
     transition: width 0.15s ease-in-out;
  }

  /* When the input field gets focus,
       change its width to 100% */
  input[type=text]:focus {
    width: 70%;
  }

 #list{
   font-size:  1.5em;
   margin-left: 90px;
  }

  .news .heading h2{
        font-family: 'Lugrasimo';
  }



.evt-name{
  display: list-item;    
 }

 
 .container{
    max-width: 700px;
    width: 100%;
    background-color: #fff;
    padding: 25px 30px;
    color: black;
    margin-left: 25%;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
  }
  .container .title{
    font-size: 25px;
    font-weight: 500;
    position: relative;
  }
  .container .title::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 30px;
    border-radius: 5px;
    background: green;
  }
  .content form .user-details{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 0 12px 0;
  }
  form .user-details .input-box{
    margin-bottom: 15px;
    width: calc(100% / 2 - 20px);
  }
  form .input-box span.details{
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
  }
  .user-details .input-box input{
    height: 45px;
    width: 100%;
    outline: none;
    font-size: 16px;
    border-radius: 5px;
    padding-left: 15px;
    border: 1px solid #ccc;
    border-bottom-width: 2px;
    transition: all 0.3s ease;
  }
  .user-details .input-box input:focus,
  .user-details .input-box input:valid{
    border-color: var(--main-color);
  }
   form .gender-details .gender-title{
    font-size: 20px;
    font-weight: 500;
   }
   form .category{
     display: flex;
     width: 80%;
     margin: 14px 0 ;
     justify-content: space-between;
   }
   form .category label{
     display: flex;
     align-items: center;
     cursor: pointer;
   }
   form .category label .dot{
    height: 18px;
    width: 18px;
    border-radius: 50%;
    margin-right: 10px;
    background: #d9d9d9;
    border: 5px solid transparent;
    transition: all 0.3s ease;
  }
   #dot-1:checked ~ .category label .one,
   #dot-2:checked ~ .category label .two,
   #dot-3:checked ~ .category label .three{
     background: var(--main-color);
     border-color: #d9d9d9;
   }
   form input[type="radio"]{
     display: none;
   }
   form .button{
     height: 45px;
     margin: 35px 0
   }
   form .button input{
     height: 100%;
     width: 100%;
     border-radius: 5px;
     border: none;
     color: #fff;
     font-size: 18px;
     font-weight: 500;
     letter-spacing: 1px;
     cursor: pointer;
     transition: all 0.3s ease;
     background: var(--main-color);
   }
   form .button input:hover{
    /* transform: scale(0.99); */
    box-shadow: 0 0 1rem red;
    }
   @media(max-width: 584px){
   .container{
    max-width: 100%;
  }
  form .user-details .input-box{
      margin-bottom: 15px;
      width: 100%;
    }
    form .category{
      width: 100%;
    }
    .content form .user-details{
      max-height: 300px;
      overflow-y: scroll;
    }
    .user-details::-webkit-scrollbar{
      width: 5px;
    }
    }
    @media(max-width: 459px){
    .container .content .category{
      flex-direction: column;
    }
  }

/* The Modal (background) */

#myBtn{
    border: 1px solid black;
    padding: 10px;
    border-radius: 5px;
    float: right;
    background-color:var(--main-color);
    color: white;
    font-weight: 700;
    border: none;
}
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content/Box */
  .modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    border-radius: 5px; /* Could be more or less, depending on screen size */
  }
  
  /* The Close Button */
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

.scene {
    margin: 30px 0;
    position: relative;
    width: 550px;
    height: 630px;
    margin: 30px auto;
    perspective: 1000px;
  }
  
 
.contact{
    background-color: var(--bg-color);
}

.contact h2{
    margin-bottom: 3rem;
}

.contact form{
    max-width: 70rem;
    margin: 1rem auto;
    text-align: center;
    margin-bottom: 3rem;
}

.contact form .input-box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact form .input-box input,.contact form textarea{
    width: 100%;
    padding: 1.5rem;
    font-size: 1.6rem;
    color: var(--text-color);
    background: #063116;
    border-radius: .8rem;
    margin: .7rem 0;
}

.contact form .input-box input{
    width: 49%;
}

.contact form textarea{
    resize: none;
}

.contact form .btn{
    margin-top: 2rem;
    cursor: pointer;
}

.footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 9%;
    background: #063116;
}

.footer-text p{
    font-size: 1.6rem;
}

.footer-iconTop a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: .8rem;
    background: var(--main-color);
    border-radius: .8rem;
    transition: .5s ease;
}

.footer-iconTop a:hover{
    box-shadow: 0 0 1rem white;
}

.footer-iconTop a i{
    font-size: 2.4rem;
    color: var(--text-color);
}

.coordination{
    background: white;
    color: black;
}

.coordination h2{
    font-size: 4rem;
}

.coordination-container{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    align-items: center;
    gap: 2.5rem;
}

.Nord{
    padding-top: 15px;
}

.coordination-container .coordination-box{
    position: relative;
    border-radius: 2rem;
    box-shadow: 0 0 1rem var(--bg-color);
    overflow: hidden;
    display: flex;
    padding: 15px;

}

.coordination-box img{
    width: 100%;
    align-items: center;
}

.coordination-box .coordination-layer{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,.1),var(--second-bg-color));
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0 4rem;
    transform: translateY(100%);
    transition: .5s ease;

}

.coordination-box:hover .coordination-layer{
    transform: translateY(0);
}

.coordination-layer h4{
    font-size: 3rem;
    color: var(--text-color);
}

.coordination-layer p{
    font-size: 1.6rem;
    margin: .3rem 0 1rem;
    color: var(--text-color);
}

.coordination-layer a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    background-color: var(--text-color);
    border-radius: 50%;
}

.coordination-layer a i{
    font-size: 2rem;
    color: var(--bg-color);
}


  /* 100% Image Width on Smaller Screens */
  @media only screen and (max-width: 700px){
    .modal-content {
      width: 100%;
    }
  }
/*BREAKPOINTS*/

@media(max-width: 120px){
    html{
        font-size: 55%;
    }
}

@media(max-width:1430px) {
    #menu-icon{
        display: block;
       }
    
       .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: .5rem 3%;
        background: var(--bg-color);
        border-top: 1rem solid rgba(0, 0, 0, 0.2);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.2);
        display: none;
       }
    
       .navbar.active{
        display: block;
       }
    
       .navbar a{
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
       }
    
       .navbar a.active{
        color: var(--main-color);
        background: none; 
        font-weight: 900;
        }

        
}

@media(max-width: 991px){
    #menu-icon{
        display: block;
       }
    
       .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: .5rem 3%;
        background: var(--bg-color);
        border-top: 1rem solid rgba(0, 0, 0, 0.2);
        box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.2);
        display: none;
       }
    
       .navbar.active{
        display: block;
       }
    
       .navbar a{
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
       }
    
       .navbar a.active{
        color: var(--main-color);
        background: none; 
        font-weight: 900;
        }

          .carousel__cell {
            width: 230px;
            height: 300px;
            font-size: 1rem;
          }

          .carousel__cell img{
            width: 230px;
            height: 300px;
          }

          .scene {
            width: 250px;
            height: 300px;
            margin-left: 25px;
            margin: 30px auto;
            border: none;
          }

          .previous-button i,.next-button i{
            font-size: 2.5rem;
            padding: 5px;
          }
    html{
        padding: 1rem 3%;
    }

    .home-content h3{
        font-size: 1.2rem;
        font-weight: 700;
    }
    
    .home-content h3:nth-of-type(2){
        margin-bottom: 1rem;
    }
    
    .home-content h1{
        font-size: 2.6rem;
        font-weight: 700;
    
    }

      
        .product .coordination-container{
            display: grid;
            grid-template-columns: repeat(3,1fr);
   
        }

    .service-container .service-box{
        flex: 1 1 30rem;
        background: white;
        color: black;
        padding: 2rem 1rem 2rem;
    }

    .service-box h3{
        font-size: 1.2rem;
    }
    
    .service-box p{
        font-size: 1rem;
        margin: 1rem 0 1rem 1rem;
        line-height: 2;
        
    }

    .service{
        padding-bottom: 7rem;
    }
    
    .about-content .about-text .right{
      padding-left: 15px;
      padding: auto;
    }
    
    .about-content .about-text .left{
      padding-right: 15px;
      border-right: 1px outset black;
      border-top-right-radius: 15px;
    }
    
     .top-head{
     margin-top: 1.5rem;
    }
    
    .about-content .heading{
        margin-left: 20%;
    }

    .about-content h3{
        font-size: 1.5rem;
    }

    .about-content h3{
        padding-top: 0;
    }
    
    .about-content p{
        font-size: 1rem;
    }

    .about-content  img{
        width: 80px;
        margin-left: 46%;
    }
    .coordination{
        padding-bottom: 7rem;
    }

    section{
        padding: 10rem 3% 2rem;
    }

    .contact{
        min-height: auto;
    }

    .footer{
        padding:2rem 3%;
    }

    .container{
        margin:0;
       }

       form .button{
        padding: 10px;
       }

       form .button input,.trigger{
        font-size: 1.2rem;
        padding: 2px;
        margin-left: 60%;
       }

       .modal{
        width: 50%;
        background: transparent;
        margin-left: 15%;
        margin-top: 15px;
       }

      
}

@media(max-width: 768px){
   #menu-icon{
    display: block;
   }

   .navbar{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: .5rem 3%;
    background: var(--bg-color);
    border-top: 1rem solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.2);
    display: none;
   }

   .navbar.active{
    display: block;
   }

   .navbar a{
    display: block;
    font-size: 2rem;
    margin: 3rem 0;
   }

   .navbar a.active{
    color: var(--main-color);
    background: none; 
    font-weight: 900;
    }
 
    .home{
        flex-direction: column;
    }

    .home-content h3{
        font-size: 2.6rem;
    }

    .home-content h1{
        font-size: 5rem;
    }

    .home-img{
     padding: 5px;
     margin-top: 4rem;
    }

    .home-img img{
        width: 70vw;
        margin-top: 4rem;
    }

    .about-content .heading{
        margin-left: 25%;
    }

    .about-content .heading h2 {
        font-size: 3rem;
    }

    .about{
        flex-direction: column-reverse;
    }

    .about-img{
        width: 90vw;
        margin-top: 4rem;
    }

    .service h2{
        margin-bottom: 3rem;
    }

    .coordination h2{
        margin-bottom: 3rem;
    }

    .coordination-container{
        grid-template-columns: repeat(2,1fr);
    }
}
    @media(max-width:617px) {
        #menu-icon{
            position: absolute;
            left: 430px;
        }
   

        .home-content h3{
            font-size: 1.2rem;
        }
        
        .home-content h3:nth-of-type(2){
            margin-bottom: 2rem;
        }
        
        .home-content h1{
            font-size: 2.6rem;
            font-weight: 700;
        
        }

        .about-content .about-text .right{
            padding-left: 15px;
            padding: auto;
          }
          
          .about-content .about-text .left{
            padding-right: 15px;
            border-right: 1px outset black;
            border-top-right-radius: 15px;
          }
          
           .top-head{
           margin-top: 1rem;
          }

          .top-head i{
            font-size: 2rem;
            animation: floatIcon 4s ease-in-out infinite;
          }
          .about-content{
            margin-top: 15px;
          }
          
          .about-content .heading{
              font-size: 3.5rem;
          }
      
          .about-content h3{
              font-size: 1rem;
          }
      
          
          .about-content p{
              font-size: 1rem;
          }
      
          .about-content  img{
              width: 80px;
              margin-left: 42%;
          }

          @keyframes floatIcon{
            0%{
                transform: translateY(0);
            }
            50%{
                transform: translateY(-1rem);
            }
            100%{
                transform: translateY(0);
            }
        }
      
        .coordination-container,.news-container{
            grid-template-columns: 1fr;
        }

        .news-img{
            width: 50px;
        }

        .news h3{
            font-size: 0.2rem;
        }
       

         
    }

    @media(max-width:472px) {
        #menu-icon{
            position: absolute;
            left: 380px;
        }
        .product .coordination-container{
            display: grid;
            grid-template-columns: repeat(2,1fr);
       } 
    }
  
    @media(max-width:475px) {
      
        .product .coordination-container{
            display: grid;
            grid-template-columns: repeat(2,1fr);
       } 
    }
    @media(max-width:769px) {
      
        .product .coordination-container{
            display: grid;
            grid-template-columns: repeat(2,1fr);
       } 
    }
    @media(max-width: 470px){
        html{
            font-size: 50%;
        }

    #menu-icon{
        position: absolute;
        left: 430px;
    }

        .carousel{
            margin-left: 10%;
        }
        .carousel__cell {
            width: 220px;
            height: 330px;
            margin: 5px;
          }
    
          .carousel__cell img{
            width: 220px;
            height: 330px;
          }
    
          .scene {
            width: 250px;
            height: 300px;
            margin: 30px auto;
            perspective: 800px;
          }
    
          .carousel-options{
            margin-top: 105px;
          }
          .previous-button i,.next-button i{
            font-size: 2.5rem;
            padding: 5px;
          }

        .contact form .input-box input{
            width: 100%;
        }
        .product .coordination-container{
            display: grid;
            grid-template-columns: repeat(2,1fr);
       } 
    
    }

 
    
    @media(max-width: 377px){
        #menu-icon{
            position: absolute;
            left: 395px;
        }
        .product .coordination-container{
            display: grid;
            grid-template-columns: repeat(2,1fr);
       } 
    }
    @media(max-width: 450px){
        #menu-icon{
            position: absolute;
            left: 395px;
        }
        .product .coordination-container{
            display: grid;
            grid-template-columns: repeat(2,1fr);
       } 
    }
    @media(max-width: 420px){
        #menu-icon{
            position: absolute;
            left: 355px;
        }
        .product .coordination-container{
            display: grid;
            grid-template-columns: repeat(2,1fr);
       } 
    }
 



    @media(max-width: 375px){
#menu-icon{
    position: absolute;
    left: 325px;
}
        .home-content h3{
            font-size: 2.2rem;
            font-weight: 700;
        }
        
        .home-content h1{
            font-size: 2rem;
            font-weight: 700;
            line-height: 1.3;
        
        }
       .home-img img{
        width: 60vw;
 
       }

       .about-content .heading{
        margin-left: 35px;
        font-size: 4rem;
       }

       .about-content .heading h2{
        font-size: 3rem;
       }

       .about-content .heading p{
        font-size: 1.3rem;
        margin-left: 0;
       }

       .container{
        margin:0;
       }

       form .button{
        padding: 10px;
       }

       form .button input,.trigger{
        font-size: 1.2rem;
        padding: 2px;
        margin-left: 60%;
       }

       .modal{
        width: 50%;
        background: transparent;
        margin-left: 15%;
        margin-top: 15px;
       }
     
       

       .about-content img{
        margin-left: 33%;
        width: 105px;
       }

       .footer{
        flex-direction: column-reverse;
       }

       .footer p{
        text-align: center;
        margin-top: 2rem;
       }

       .product .coordination-container{
            display: grid;
            grid-template-columns: repeat(2,1fr);
       } 

       .events h4{
        font-size: 2.5rem;
        margin-left: 45px;
        margin-top: 50%;
       }

       #searchbar{
        width: 100%;
       }

       .carousel__cell{
        font-size: 3rem;
       }
    
    }

    @media(max-width: 350px){
        #menu-icon{
            position: absolute;
            left: 300px;
        }
     
    
           .about-content .heading p{
            font-size: 1.1rem;
            margin-left: 0;
           }
    }
    @media(max-width: 320px){
        #menu-icon{
            position: absolute;
            left: 250px;
        }

        .about-content .heading h2{
            font-size: 2.5rem;
           }
           .about-content .heading p{
            font-size: 1rem;
           }
    }
    @media(max-width: 275px){
        #menu-icon{
            position: absolute;
            left: 220px;
        }
        .product .coordination-container{
            grid-template-columns: 1fr;
       } 
    }

    @media(max-width: 225px){
        #menu-icon{
            position: absolute;
            left: 180px;
        }

    }
