@import url("https://fonts.googleapis.com/css2?family=Kanit: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&family=Mukta:wght@200;300;400;500;600;700;800&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap"); /* Mukta, Kanit, Outfit, Noto Sans */

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

/* CUSTOMIZING THE NAVBAR */

@media (min-width: 768px) {
  .navbar_for_mobiles {
    display: none;
  }

  #page1 {
    height: auto;
    width: 100vw;
    box-sizing: border-box;
  }

  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 0 20px;
    font-family: "outfit";
  }

  .navbar-logo {
    height: 70px;
  }

  .navbar-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
  }

  .dropdown {
    position: relative;
  }

  .dropbtn {
    font-size: 20px;
    border: none;
    outline: none;
    color: white;
    padding: 20px 50px;
    background-color: inherit;
    font-family: inherit;
    cursor: pointer;
    display: flex;
  }

  .navbar a:hover,
  .dropdown:hover .dropbtn {
    background-color: rgb(0, 0, 0, 0.3);
  }

  .dropdown-content {
    width: 100%;
    display: none;
    position: absolute;
    background-color: #8f0707 ;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    max-height: 50vh;
    overflow-y: auto;
  }

  .dropdown-content a {
    color: white;
    padding: 20px 20px;
    text-decoration: none;
    display: block;
    text-align: left;
  }

  .dropdown-content a:hover {
    background-color: #690404;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }
}

/*------------------------------------------------------------------------------------------------*/

@media (max-width: 768px) {
  .navbar {
    display: none;
  }
  .navbar_for_mobiles {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    position: relative;
    font-family: "outfit";
  }

  .navbar_for_mobiles-logo {
    height: 60px;
  }

  .menu-icon {
    cursor: pointer;
  }

  .menu-icon-svg {
    width: 40px;
    height: 40px;
  }

  .navbar_for_mobiles-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 80px;
    left: 0;
    z-index: 1;
  }

  .navbar_for_mobiles-links > a {
    padding: 15px;
    color: white;
    text-decoration: none;
    text-align: center;
  }

  .show {
    display: flex;
  }

  .navbar_for_mobiles .navbar_for_mobiles-links ul {
    list-style: none;
    background: rgb(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    padding-left: 10%;
    box-sizing: border-box;
    display: none;
  }

  .navbar_for_mobiles .navbar_for_mobiles-links ul li {
    margin-top: 5px;
    padding: 5px;
  }

  .navbar_for_mobiles .navbar_for_mobiles-links ul li a {
    text-decoration: none;
    color: white;
  }
}

/*-------------------------------------------------------------------------------------------*/
/* Designing other contents of page one */

@media (max-width: 768px) {
  #page1_content img {
    width: 90%;
  }

  #page1_content #text_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 30px;
  }

  #page1_content #text_content .heading {
    font-size: 35px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-family: "Noto Sans";
    color: white;
    font-weight: 900;
  }

  #page1_content #text_content .heading div span {
    color: #E82929;
  }

  #page1_content #text_content p {
    margin: 20px 0;
    font-size: 20px;
    color: white;
    font-family: "outfit";
  }

  #page1_content #text_content button {
    cursor: pointer;
    color: black;
    text-transform: uppercase;
    margin-top: 10px;
    font-family: "outfit";
    font-size: 20px;
    font-weight: 700;
    box-sizing: border-box;
    padding: 20px 10px;
    width: 100%;
    border: none;
    border-radius: 30px;
  }
  #page1_content #text_content .button_wrapper button:focus {
    border: none;
    outline: none;
  }


  
  #page1_content #text_content .button_wrapper .button2{
    color:  #E82929;
    background-color: #6c0303;
    border: 5px solid  #E82929;
  }
}

/*----------------------------------------------------------------------------------------------*/

@media (min-width: 768px) {
  #page1_content {
    display: flex;
    flex-direction: row-reverse;
  }

  #page1_content img {
    width: 50%;
  }

  #page1_content #text_content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 50px;
    padding-left: 80px;
    width: 60%;
  }

  #page1_content #text_content .heading {
    text-shadow: 0px 5px 10px rgba(0, 0, 0, 0.707);
    font-size: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    font-family: "Noto Sans";
    color: white;
    font-weight: 900;
  }

  #page1_content #text_content .heading div span {
    color: #E82929;
  }

  #page1_content #text_content p {
    margin: 20px 0;
    font-size: 25px;
    color: white;
    font-family: "outfit";
  }

  #page1_content #text_content .button_wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    width: 80%;
  }

  #page1_content #text_content .button_wrapper button {
    cursor: pointer;
    color: #000000dd;
    text-transform: uppercase;
    width: 45%;
    font-family: "outfit";
    font-size: 28px;
    font-weight: 700;
    box-sizing: border-box;
    padding: 20px 10px;
    border: none;
    border-radius: 30px;
    background: white;
  }

  #page1_content #text_content .button_wrapper .button2{
    color:  #E82929;
    background-color: #6c0303;
    border: 5px solid  #E82929;
  }

  #page1_content #text_content .button_wrapper button:focus {
  
    outline: none;
  }



}
