@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
   font-family: "Poppins", sans-serif;
}

.logo {

    width: 7%;
    height: 7%;
}


body {
    
    min-height: 100vh;
   
  }
  
  /* Dropdown Button */
.dropbtn {
  /*background-color: #3498DB;
  color: white;
  padding: 16px;*/
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* Dropdown button on hover & focus 
.dropbtn:hover, .dropbtn:focus {
  background-color: #2980B9;
}*/

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}
  
  
  
    .chatbot-toggler{
    position:fixed;
    right: 40px;
    bottom: 35px;
    height: 50px;
    width: 50px;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    cursor: pointer;
    background: #5bc0de;/*#724ae8;*/
    border-radius: 50%;
    transition: all 0.2s ease;


      } 
      
      

      .show-chatbot .chatbot-toggler{

        transform: rotate(90deg);
        
        

      }
      .chatbot-toggler span{
        position: absolute;
      }

     .show-chatbot .chatbot-toggler span:first-child,
      .chatbot-toggler span:last-child {
        opacity: 0;
      }


      .show-chatbot .chatbot-toggler span:last-child {
        opacity: 1;
      } 
      
      
      
      /*
      .show-chatbot #blur.active {
          
          filter: blur(20px);  
      }
     */
     
    
 
   .chatbot{
    position:fixed;
    left: 40px;
    bottom: 100px;
    width: 420px;
    transform: scale(0.5);
     /*opacity: 0;*/
    /* pointer-events: none; */
    overflow: hidden;

    background: #fff;
    border-radius: 15px;
    transform-origin: bottom right;
    box-shadow: 0 0 128px 0 rgba(0, 0, 0, 0.1),
        0 32px 64px -48px rgba(0, 0, 0, 0.5);
      transition: all 0.1s ease;

  }  

   .show-chatbot .chatbot {
    transform: scale(1);
    /*opacity: 0;*/
    pointer-events: auto;
    
    /*filter: blur(20px); */

  } 
  

  
  .chatbot header {

    background: #5bc0de;/*#724ae8;*/
    padding: 16px 0;
    text-align: center;
    font-size: 1.4rem;
    position:relative
  }

  .chatbot header h2 {

    color: #fff;
    font-size: 1.4rem;
  }

  .chatbot header span{

    position: absolute;
    right: 20px;
    top: 50%;
    color:#fff;
    cursor: pointer;
    display: none;
    transform: translateY(-50%);

  }

  .chatbot .chatbox {
    height: 510px;
    overflow-y: auto;
    padding: 15px 20px 150px;


  }

  .chatbot .chat {
    display: flex;
  }

  
  .chatbox .incoming span {
   height: 32px;
   width: 32px;
   color : #fff;
   align-self: flex-end;
   background: #5bc0de;/*#724ae8;*/
   text-align: center;
   line-height: 32px;
   border-radius: 4px;
   margin: 0 10px 7px 0;
  }
  

  .chatbox .outgoing {

    margin: 20px 0;
    justify-content: flex-end;

  }

  .chatbox .chat p {
    /* overflow: auto; */
    color: #fff;
    max-width: 75%;
    white-space: pre-wrap;
    font-size: 0.95rem;
    padding: 12px 16px;
    border-radius: 10px 10px 0 10px;
    background: #5bc0de;/*#724ae8;*/
  }

  .chatbox .chat p.error {
color: #721c24;

background: #f8d7da;


  }

  .chatbox .incoming p {
    color: #000;
    background: #f2f2f2;
    border-radius: 10px 10px 10px 0;

  }

    .chatbot .chat-input {
    position: absolute;
    bottom: 0; 
    width: 100%;
    display: flex; 
     gap: 5px;
    background: #fff; 
    padding: 5px 20px; 
    border-top: 1px solid #ccc; 
  } 

  
  .chat-input textarea {
    height: 55px;
    width: 80%;
    border: none;
    outline: none;
    font-size: 0.95rem;
    max-height: 180px;
    /* font: inherit;   */
    resize: none;
    padding: 16px 15px 16px 0;

  } 

  .chat-input select {
    height: 55px;
    width: 80%;
    border: none;
    outline: none;
    font-size: 0.95rem;
    max-height: 180px;
    /* font: inherit;   */
    resize: none;
    padding: 16px 15px 16px 0;

  } 

  .chat-input span {
    align-self: flex-end; 
     height: 55px; 
    line-height: 55px;
    color: #5bc0de;/*#724ae8;*/
    font-size: 1.35rem;
    cursor: pointer;
    /*visibility: hidden;*/
  }
  
   .chat-input textarea:valid ~ span {
visibility: visible;

  } 

  .chat-input select:valid ~ span {
    visibility: visible;
    
      } 
      
  
  
  
  

  .popup-screen{
    z-index: 999999;
    position: fixed;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    transition: 0.5s ease;
    transition-property: visibility;
  }

  .popup-screen.active{
visibility: visible;
  }

  .popup-box{
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    max-width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 50px 25px rgb(0 0 0 / 20%);
    transform: scale(0); 
    transition: 0.5s ease;
    transition-property: transform;
  }

  .popup-screen.active .popup-box{
    transform: scale(1); 
  }

  .popup-box h2{
    font-size: 2.1em;
    font-weight: 800;
    margin-bottom: 20px;
  }
  
  
  .popup-box p{
    font-size: 1em;
    margin-bottom: 20px;
  }

  .popup-box .btn{
    color: #fff;
    background: red;
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    padding: 7px 27px;
    border-radius: 3px;
  }
  
  
    .popup-screen_two{
    z-index: 999999;
    position: fixed;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    transition: 0.5s ease;
    transition-property: visibility;
  }

  .popup-screen_two.active{
visibility: visible;
  }

  .popup-box_two{
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    max-width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 50px 25px rgb(0 0 0 / 20%);
    transform: scale(0); 
    transition: 0.5s ease;
    transition-property: transform;
  }

  .popup-screen_two.active .popup-box_two{
    transform: scale(1); 
  }

  .popup-box_two h2{
    font-size: 1.4em;
    font-weight: 400;
    margin-bottom: 10px;
  }

  .popup-box_two p{
    font-size: 1em;
    margin-bottom: 20px;
  }

  .popup-box_two .btn{
    color: #fff;
    background: red;
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    padding: 7px 27px;
    border-radius: 3px;
  }
  
  .close-btn{
    position: absolute;
    font-size: 1em;
    top: 0;
    right: 0;
    margin: 15px;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.3s ease;
    transition-property: opacity;
  }

  .close-btn:hover{
    opacity:1;
  }

  .close-btn_two{
    position: absolute;
    font-size: 1em;
    top: 0;
    right: 0;
    margin: 15px;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.3s ease;
    transition-property: opacity;
  }

  .close-btn_two:hover{
    opacity:1;
  }
  
  
    
    .popup-screen_three{
    z-index: 999999;
    position: fixed;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    transition: 0.5s ease;
    transition-property: visibility;
  }

  .popup-screen_three.active{
visibility: visible;
  }

  .popup-box_three{
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    max-width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 50px 25px rgb(0 0 0 / 20%);
    transform: scale(0); 
    transition: 0.5s ease;
    transition-property: transform;
  }

  .popup-screen_three.active .popup-box_three{
    transform: scale(1); 
  }

  .popup-box_three h2{
    font-size: 2.1em;
    font-weight: 800;
    margin-bottom: 20px;
  }

  .popup-box_three p{
    font-size: 1em;
    margin-bottom: 20px;
  }

  .popup-box_three .btn{
    color: #fff;
    background: red;
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    padding: 7px 27px;
    border-radius: 3px;
  }
  
  .close-btn_three{
    position: absolute;
    font-size: 1em;
    top: 0;
    right: 0;
    margin: 15px;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.3s ease;
    transition-property: opacity;
  }

  .close-btn_three:hover{
    opacity:1;
  }
  
  
  
  
    .popup-screen_four{
    z-index: 999999;
    position: fixed;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    transition: 0.5s ease;
    transition-property: visibility;
  }

  .popup-screen_four.active{
visibility: visible;
  }

  .popup-box_four{
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    max-width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 50px 25px rgb(0 0 0 / 20%);
    transform: scale(0); 
    transition: 0.5s ease;
    transition-property: transform;
  }

  .popup-screen_four.active .popup-box_four{
    transform: scale(1); 
  }

  .popup-box_four h2{
    font-size: 2.1em;
    font-weight: 800;
    margin-bottom: 20px;
  }

  .popup-box_four p{
    font-size: 1em;
    margin-bottom: 20px;
  }

  .popup-box_four .btn{
    color: #fff;
    background: red;
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    padding: 7px 27px;
    border-radius: 3px;
  }
  
  .close-btn_four{
    position: absolute;
    font-size: 1em;
    top: 0;
    right: 0;
    margin: 15px;
    cursor: pointer;
    opacity: 0.5;
    transition: 0.3s ease;
    transition-property: opacity;
  }

  .close-btn_four:hover{
    opacity:1;
  }
  
  
  
  

  section {
    padding: 50px 100px;

  }

  .home{
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .image{
    position: relative;
    width: 45%;
    min-height: 450px;
  }

  .image img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  .info{
    position: relative;
    width: 52%;
  }

  .info h2{
    font-size: 2em;
    font-weight: 800;
  }

  .info p{
    font-size: 1em;
    text-align: justify;
    margin-top: 10px;
  }
  
  /*
  @media screen and (max-width: 600px) {
  body {
    font-size: 16px;
    padding: 10px;
  }
  
  h1 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  p {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .container {
    width: 100%;
  }
  
  .box {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
  }
  
  .image {
    width: 100%;
    height: auto;
  }
}
*/


  @media (max-width: 900px) {
      
      body {
    font-size: 16px;
    padding: 10px;
  }
  
   nav {

width: 100%;

}
  
  h1 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  p {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .container {
    width: 100%;
  }


section {
    padding: 150px 10px;

  }


    .home{
        /*
         display: inline-grid;
        grid-template-rows: 1fr 1fr;
        grid-gap: 10px;
        */
        display: grid;
        grid-template-rows: 4fr 1fr;
        gap: 0px;
      }
      

      .image{
        width: 100%;
      }

      .info{
        width: 70%;
        /*margin-top: 15px;*/
      }


.chatbot{
    position:relative;
    
    }
    
    .info{
    position:relative;
    
    }
    
    .dropdown_style{
       width: 90%; 
    }
    

  }
  
  