* {
  margin: 0;
  padding: 0;
}
body {
  background-color: rgb(42, 0, 96);
}
.size100 {
  width: 100%;
  height: 100%;
}
.fixd {
  position: fixed;
}
a {
  text-decoration: none;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
}
.navdiv {
  position: absolute;
  width: 100%;
  height: 50px;
}
.navdiv table {
  width: 100%;
  height: 100%;
  margin: 5px 10px 0 10px;
}
.navdiv td {
  width: 100px;
}

.trancediv {
  position: absolute;
  width: 95%;
  height: 610px;
  background-color: rgba(255, 255, 255, 0.203);
  border-radius: 10px;
  margin-top: 20px;
  left: 50%;
  transform: translate(-50%);
}
.tab1 {
  display: block;
}
.tab2 {
  display: none;
}

.menudive {
  position: absolute;
  right: 20px;
  top: 60px;
  width: 200px;
  height: 250px;
  z-index: 5;
}
.menudive table {
  width: 100%;
  height: 100%;
}
.menudive td {
  text-align: right;
}
@media screen and (min-width: 640px) {
  .tab1 {
    display: none;
  }
  .tab2 {
    display: block;
  }
  .menudive {
    display: none;
  }
}
.hidden {
  display: none;
}

.footerdiv {
  width: 95%;
  height: 400px;
  background-color: rgba(255, 255, 255, 0.203);
  position: absolute;
  top: 660px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
}
.contactdiv {
  position: absolute;
  width: 33.333333%;
  height: 350px;
  left: 0;
}
.linkdiv {
  position: absolute;
  width: 33.333333%;
  height: 350px;
  left: 50%;
  transform: translateX(-50%);
}
.footlogo {
  position: absolute;
  width: 33.333333%;
  height: 350px;
  right: 0;
  text-align: center;
}
.footlogo img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.socialmeadiadiv {
  position: absolute;
  height: 50px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 15px;
}
.contactdiv th {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
}
.contactdiv table {
  width: 95%;
  height: 80%;
  margin: 20px;
}
.contactdiv td {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  padding-left: 10px;
}
.linkdiv table {
  position: absolute;
  height: 70%;
  margin-top: 35px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}
.copyrightsdiv {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 1070px;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}
@media screen and (max-width: 800px) {
  .copyrightsdiv {
    top: 1470px;
  }

  .footerdiv {
    height: 800px;
  }
  .contactdiv {
    width: 50%;
  }
  .linkdiv {
    width: 100%;
    top: 400px;
  }
  .footlogo {
    width: 50%;
  }
}
@media screen and (max-width: 500px) {
  .footerdiv {
    height: 1200px;
  }
  .contactdiv {
    width: 100%;
    top: 400px;
  }
  .linkdiv {
    width: 100%;
    top: 800px;
  }
  .footlogo {
    width: 100%;
  }
  .copyrightsdiv {
    top: 1870px;
  }
}
@media screen and (max-width: 450px) {
  .socialmeadiadiv {
    transform: translateX(-50%) scale(0.7);
  }
}
.contactphone {
  position: absolute;
  width: 60%;
  text-align: center;
  top: 150px;
}
.contact-section {
  position: absolute;
  right: 0;
  top: 80px;
  max-width: 500px;
  margin: 50px auto;
  padding: 30px;
  text-align: center;
  height: 100%;
}

.contact-section h2 {
  margin-bottom: 10px;
  color: rgb(0, 149, 255);
}
.contact-section p {
  color: white;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: vertical;
}

.contact-form button {
  padding: 12px;
  background-color: #007bff;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #0056b3;
}

/* Responsive */
@media (max-width: 600px) {
  .contact-section {
    margin: 20px;
    padding: 20px;
  }
}
@media (max-width: 530px) {
  .contactphone {
    display: none;
  }
}
@media (max-width: 320px) {
  .contact-section {
    margin: 10px;
    padding: 10px;
  }
}
.cliced {
  width: 75%;
  display: inline-block; /* or block */
  border-bottom: 4px solid red;
}
.nonclicked {
  width: 0%;
  display: inline-block; /* or block */
  border-bottom: 4px solid transparent;
  transition: width 0.5s, border-bottom 0.5s;
}

.nonclicked:hover {
  width: 75%;
  border-bottom: 4px solid red;
}
.underline {
  text-decoration: underline;
  text-decoration-color: red;
  text-decoration-thickness: 3px;
}
