@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");

:root {
  --first_color: #035d67;
  --sec_color: #2398a7;
  --third-color: #77b0aa;
  --fourth-color: #e3fef7;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  overflow-x: hidden;
  background-color: whitesmoke;
}

/*------------------------------ nav bar ------------------------------*/
nav {
  width: 100%;
  padding: 5px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 110;
  position: sticky;
  top: 0;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
nav .logo {
  display: flex;
  align-items: center;
}
nav .logo a img {
  height: 70px;
  width: 70px;
  margin-right: 10px;
  cursor: pointer;
}

nav .logo a {
  text-decoration: none;
}

nav .logo a h1 {
  font-size: 1.3rem;
  background: rgb(4, 48, 83);
  background: linear-gradient(
    90deg,
    rgba(4, 48, 83, 1) 0%,
    rgba(18, 99, 135, 1) 35%,
    rgba(0, 212, 255, 1) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
}
nav ul li {
  margin-left: 0.8rem;
}
nav ul li a {
  text-decoration: none;
  color: var(--first_color);
  font-size: 95%;
  font-weight: 400;
  padding: 4px 10px;
  border-radius: 15px;
  transition: all 0.3s ease-out;
}

nav ul li a:hover,
nav ul li .dropdown .dropbtn:hover {
  background: rgb(14, 177, 210);
  color: #fff;
}

nav ul .insta {
  font-size: 17px;
  background: #f09433;
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 2px 8px;
}
nav ul .insta:hover{
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #eee;
}
nav ul .youtube {
  font-size: 17px;
  color: #ff0000;
  padding: 2px 8px;
}

nav ul .youtube:hover {
  background: #ff0000;
  color: #fff;
}

nav ul li .dropdown {
  float: left;
  overflow: hidden;
}

nav ul li .dropdown .dropbtn {
  font-size: 95%;
  border: none;
  outline: none;
  padding: 0px 10px;
  color: var(--first_color);
  background: none;
  border-radius: 15px;
}

nav ul li .dropdown .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

nav ul li .dropdown .dropdown-content a {
  border-radius: 0;
  float: none;
  color: var(--first_color);
  padding: 8px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

nav ul li .dropdown .dropdown-content a:hover {
  background: rgb(14, 177, 210);
  color: #fff;
}

nav ul li .dropdown:hover .dropdown-content {
  display: block;
}

.lines_icon {
  display: none;
  cursor: pointer;
}

.lines_icon .line {
  width: 25px;
  height: 1px;
  background-color: rgba(4, 48, 83, 1);
  display: block;
  margin: 7px auto;
  transition: all 0.3s ease-in-out;
}
.lines_icon-active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}

.lines_icon-active .line:nth-child(2) {
  width: 0px;
}

.lines_icon-active .line:nth-child(1),
.lines_icon-active .line:nth-child(3) {
  transition-delay: 0.3s;
}

.lines_icon-active .line:nth-child(1) {
  transform: translateY(12px);
}

.lines_icon-active .line:nth-child(3) {
  transform: translateY(-5px) rotate(90deg);
}

.menubar {
  display: block;
  position: fixed;
  top: 0;
  left: -60%;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  padding: 20% 5%;
  background: rgba(255, 255, 255);
  transition: all 0.5s ease-in;
  z-index: 115;
}
.active {
  left: 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.menubar ul {
  padding: 0;
  list-style: none;
}
.menubar ul li {
  margin-bottom: 32px;
}

.menubar ul li a {
  text-decoration: none;
  color: var(--first_color);
  font-size: 95%;
  font-weight: 400;
  padding: 4px 10px;
  border-radius: 15px;
  transition: all 0.5s ease-out;
}

.menubar ul li a:hover {
  background: #a2e0ff;
}

.menubar ul li .insta {
  font-size: 17px;
  background: #f09433;
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 2px 8px;
}

.menubar ul li .insta:hover {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #eee;
}

.menubar ul li .youtube {
  font-size: 17px;
  color: #ff0000;
  padding: 2px 8px;
}

.menubar ul li .youtube:hover {
  background: #ff0000;
  color: #fff;
}

.menubar ul li .dropdown {
  float: left;
  overflow: hidden;
}

.menubar ul li .dropdown .dropbtn {
  font-size: 95%;
  margin-bottom: 32px;
  border: none;
  outline: none;
  padding: 0px 10px;
  color: var(--first_color);
  background: none;
  border-radius: 15px;
}

.menubar ul li .dropdown .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.menubar ul li .dropdown .dropdown-content a {
  border-radius: 0;
  float: none;
  color: var(--first_color);
  padding: 8px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.menubar ul li .dropdown .dropdown-content a:hover {
  background: rgb(14, 177, 210);
  color: #fff;
}

.menubar ul li .dropdown:hover .dropdown-content {
  display: block;
}

/*------------------------------ Contact ------------------------------*/
.container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.topic-text{
  font-size: 30px;
  font-weight: 700;
  color: #035d67;
  width: fit-content;
  border-bottom: 2px solid #035d67;
  font-family: Arial, Helvetica, sans-serif;
  margin-top: 30px;
}
.container .content {
  width: 75%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  margin-top: 20px;
  border-radius: 6px;
  padding: 20px 30px;
  box-shadow: 0 5px 15px rgba(50, 73, 96, 0.612);
}

.container .content .main {
  width: 100%;
}


.content .main .error{
  color: red;
}
.main .input-box {
  height: 40px;
  width: 100%;
  margin: 12px 0;
}
.main .input-box input,
.main .input-box textarea {
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  background: #f0f1f8;
  border-radius: 6px;
  padding: 0 15px;
  resize: none;
  color: #1b8694;
}

.main .input-box input::placeholder,
.main .input-box textarea::placeholder {
  color: #63c5d2;
  font-size: 14px;
}
.main .message-box {
  min-height: 110px;
}
.main .input-box textarea {
  padding-top: 6px;
}
.main .button {
  display: inline-block;
  margin-top: 12px;
}
.main .button input[type="submit"] {
  color: #fff;
  font-size: 18px;
  outline: none;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  background: #035d67;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button input[type="submit"]:hover {
  background: #219dae;
}

/*------------------------------ Responsive ------------------------------*/

@media screen and (max-width: 1265px) {
  .menubar {
    display: block;
  }

  .lines_icon {
    display: block;
  }
  nav ul {
    display: none;
  }
}

@media screen and (max-width: 435px) {
  nav .logo h1 {
    display: none;
  }
}

@media (max-width: 950px) {
  .container {
    width: 100%;
    padding: 20px 10px;
  }
  .container .content .main {
    width: 100%;
  }
}
@media (max-width: 820px) {
  .container {
    margin: 40px 0;
    height: 100%;
  }

  .container .content .main {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 590px){
  .container .content{
    width: 90%;
  }
  .content .main .topic-text {
    font-size: 20px;
  }

  .main .input-box input,
.main .input-box textarea{
  font-size: 14px;
}


.main .input-box input,
.main .input-box textarea {
  height: 30px;
}

.main .input-box input::placeholder,
.main .input-box textarea::placeholder {
  font-size: 12px;
}
}

@media (max-width: 440px){
  .topic-text{
    font-size: 25px;
  }
}

@media (max-width: 380px){
  .container .content{
    width: 100%;
  }
  .content .main .topic-text{
    font-size: 18px;
  }
}

/*------------------------------ Button ------------------------------*/

.whatsapp {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: rgb(22, 192, 0);
  padding: 10px;
  border-radius: 30%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.whatsapp i {
  font-size: 25px;
}

.free {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.free button {
  --black: #2398a7;
  --ch-black: #2398a7;
  --eer-black: #2398a7;
  --night-rider: #002529;
  --white: #ffffff;
  --af-white: #f3f3f3;
  --ch-white: #e1e1e1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 15px;
  border: none;
  color: white;
  position: relative;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  transition-duration: 2s;
  background-color: var(--ch-black);
}

.free button::before,
.free button::after {
  content: "";
  position: absolute;
  left: -2px;
  top: -2px;
  border-radius: 10px;
  background: linear-gradient(
    45deg,
    var(--ch-black),
    var(--eer-black),
    var(--night-rider),
    var(--ch-white),
    var(--night-rider),
    var(--eer-black),
    var(--ch-black),
    var(--ch-black)
  );
  background-size: 400%;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  z-index: -1;
  animation: steam 20s linear infinite;
}

@keyframes steam {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}

.free button::after {
  filter: blur(50px);
}