@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Gotu&family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,100;1,200;1,300;1,400;1,500;1,600&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;1,100;1,300;1,400;1,500;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700;800&display=swap");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style-type: none;
}

html,
body {
  background: #eff0f1;
  font-family: "IBM Plex Sans", sans-serif;
  color: #666;
}

input,
textarea {
  outline: none;
  box-shadow: 2px 2px 5px rgb(108, 108, 108);
  font-size: 15px;
  font-family: "IBM Plex Sans", sans-serif;
}

.container-width {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  background-color: rgba(44, 69, 91, 0.8);
  padding: 0.2em 0;
  z-index: 2;
}
header .header-div {
  display: flex;
}
header .header-div img {
  width: 7em;
  height: 100%;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header nav .dropdown-div {
  display: none;
}
header nav .dropdown-div span {
  display: none;
  transition: all 700ms ease-in-out;
}
header nav .dropdown-div span .fa-bars {
  font-size: 2em;
  color: #cabb9a;
}
header nav .dropdown-div span:active + ul {
  transform: translateY(-50px);
  opacity: 0;
}
header nav .dropdown-div ul {
  position: absolute;
  top: 3.1em;
  right: 0;
  font-size: 1em;
  display: flex;
  flex-direction: column;
  padding: 1em;
  row-gap: 1em;
  text-transform: uppercase;
  transition: all 500ms ease-in-out;
  opacity: 1;
  background: rgba(0, 0, 0, 0.8);
  font-weight: 500;
}
header nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  width: 55%;
}
header nav a {
  color: white;
  font-size: 1.2em;
}
header nav li {
  padding-bottom: 0.2em;
  transition: all 500ms ease-in-out;
  border-bottom: 2px solid transparent;
}
header nav li:nth-child(1):hover,
header nav li:nth-child(2):hover,
header nav li:nth-child(3):hover,
header nav li:nth-child(4):hover,
header nav li:nth-child(5):hover {
  border-bottom: 2px solid white;
}
header nav li:nth-child(6) {
  font-size: 1.5em;
}
header nav li:nth-child(6):hover {
  transform: scale(1.2);
}

h2 {
  font-size: 2.5em;
  font-weight: 400;
}

.text-p {
  font-size: 2.3em;
  text-align: center;
}

main {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 8em 0;
}

body .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 40px 0;
}

body .container .card {
  position: relative;
  min-width: 320px;
  height: 440px;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2), inset -5px -5px 15px rgba(255, 255, 255, 0.1), 5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  margin: 30px;
  transition: 0.5s;
  cursor: pointer;
}

body .container .card:nth-child(1) .box .content a {
  background: #2196f3;
}

body .container .card:nth-child(2) .box .content a {
  background: #e91e63;
}

body .container .card:nth-child(3) .box .content a {
  background: #23c186;
}

body .container .card .box {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #2a2b2f;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 0.5s;
}

body .container .card .box:hover {
  transform: translateY(-50px);
}

body .container .card .box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
}

body .container .card .box .content {
  padding: 20px;
  text-align: center;
}

body .container .card .box .content h2 {
  position: absolute;
  top: -10px;
  right: 30px;
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.1);
}

body .container .card .box .content h3 {
  font-size: 1.8rem;
  color: #fff;
  z-index: 1;
  transition: 0.5s;
  margin-bottom: 15px;
}

body .container .card .box .content p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  z-index: 1;
  transition: 0.5s;
}

body .container .card .box .content a {
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  background: black;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  margin-top: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}

body .container .card .box .content a:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
  background: #fff;
  color: #000;
}

form {
  margin-top: 5em;
  position: relative;
  width: 50%;
  min-width: 320px;
  border-radius: 30px;
  background-color: #1d6474;
}

.form-left-decoration,
.form-right-decoration {
  content: "";
  position: absolute;
  width: 50px;
  height: 20px;
  border-radius: 20px;
  background: #a8d5d8;
}

.form-left-decoration {
  bottom: 60px;
  left: -30px;
}

.form-right-decoration {
  top: 60px;
  right: -30px;
}

.form-left-decoration:before,
.form-left-decoration:after,
.form-right-decoration:before,
.form-right-decoration:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 20px;
  border-radius: 30px;
  background: #1d6474;
}

.form-left-decoration:before {
  top: -20px;
}

.form-left-decoration:after {
  top: 20px;
  left: 10px;
}

.form-right-decoration:before {
  top: -20px;
  right: 0;
}

.form-right-decoration:after {
  top: 20px;
  right: 10px;
}

.circle {
  position: absolute;
  bottom: 80px;
  left: -55px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1d6474;
  box-shadow: 15px 15px 20px rgb(108, 108, 108);
}

.form-inner {
  padding: 40px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-inner input,
.form-inner textarea {
  display: block;
  width: 100%;
  padding: 15px;
  margin-bottom: 10px;
  border: none;
  border-radius: 20px;
  background: #eff0f1;
}

#message {
  height: 175px;
}

.form-inner textarea {
  resize: none;
}

button {
  width: 40%;
  padding: 10px;
  margin-top: 20px;
  border-radius: 20px;
  border: none;
  box-shadow: 2px 2px 5px rgb(54, 54, 54);
  background: #a8d5d8;
  font-size: 1.3em;
  font-weight: 500;
  color: #4e5a5b;
  font-family: "IBM Plex Sans", sans-serif;
}

button:hover {
  background: #a7e9a7;
}

@media screen and (max-width: 1024px) {
  body .container .card .box:hover {
    transform: none;
  }
  header nav {
    padding: 0 0.5em;
  }
  header nav ul {
    width: 70%;
  }
  form {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  body {
    padding: 0;
  }
  body main {
    padding: 8em 0 1em 0;
  }
  body .container {
    row-gap: 1.5em;
  }
  body .container .card {
    margin: 0;
    width: 95%;
    height: 20em;
  }
  body h2 {
    margin: 0 0 0.5em 0;
  }
  body .text-p {
    margin-top: 1em;
  }
  header nav {
    justify-content: space-evenly;
  }
  header nav .header-div img {
    max-width: 5em;
  }
  header nav .nav-item {
    display: none;
  }
  header nav .dropdown-div {
    display: block;
  }
  header nav .dropdown-div span {
    display: block;
  }
  form {
    margin-top: 2.5em;
    width: 98%;
    border-radius: 10px;
  }
  .form-left-decoration,
  .form-right-decoration,
  .circle {
    display: none;
  }
  .form-inner {
    padding: 10px;
    border-radius: 10px;
  }
  .form-inner input,
  .form-inner textarea {
    border-radius: 10px;
  }
  .form-inner textarea {
    height: 17em;
  }
}/*# sourceMappingURL=contact.css.map */