@font-face {
  font-family: RobotoRegular;
  src: url(../fonts/Roboto-Regular.ttf);
}
@font-face {
  font-family: RobotoMedium;
  src: url(../fonts/Roboto-Medium.ttf);
}
@font-face {
  font-family: RobotoBold;
  src: url(../fonts/Roboto-Bold.ttf);
}
@font-face {
  font-family: RobotoRegular;
  src: url(../fonts/Roboto-Regular.ttf);
}
@font-face {
  font-family: RobotoMedium;
  src: url(../fonts/Roboto-Medium.ttf);
}
@font-face {
  font-family: RobotoBold;
  src: url(../fonts/Roboto-Bold.ttf);
}
/* General Styles */
html, body, input, textarea, button {
  font-family: RobotoRegular, sans-serif;
  scroll-behavior: smooth;
}

h1 {
  font-family: Lilita One, sans-serif;
}

h3, h4, li {
  font-family: RobotoMedium, sans-serif;
}

html, body {
  min-height: 100vh;
  width: 100%;
}

body {
  background-color: #267da1;
  color: #fff;
  padding: 0;
  margin: 0;
  background-image: radial-gradient(#56cfe1 0.5px, transparent 0.5px), radial-gradient(#56cfe1 0.5px, transparent 0.5px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
}

section {
  padding: 0 1.5em;
  margin-top: 1.5em;
  position: relative;
}

ul {
  margin: 0;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: #fff;
}

header {
  font-size: 1.7rem;
  line-height: 1;
  font-family: RobotoBold, sans-serif;
  margin-top: 2em;
}

footer {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 1em;
  margin-top: 2em;
  height: 57%;
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  margin-top: 1em;
  font-family: RobotoMedium, sans-serif;
  width: 100%;
}
label input, label textarea {
  font-size: 1rem;
  padding: 0.5em;
  outline: 0;
  border-radius: 8px;
}
label input:focus, label textarea:focus {
  box-shadow: 0 0 10px #fff;
}

.baseButton, .btn-secondary, .btn-primary {
  padding: 1em;
  border-radius: 8px;
  border: none;
  font-family: RobotoMedium, sans-serif;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.btn-primary {
  background-color: #4e908e;
  color: #fff;
}

.btn-secondary {
  background-color: transparent;
  box-shadow: none;
  color: #4e908e;
}

/* Header Styles */
#nav-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1em 0;
  visibility: hidden;
  height: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.header-item {
  list-style-type: none;
  margin-left: 1em;
  margin-top: 0.5em;
}

.menu-icon-container {
  visibility: visible;
  position: absolute;
  right: 1.5em;
  top: 1.5em;
  z-index: 2;
}

.bar1, .bar2, .bar3 {
  width: 2rem;
  height: 2px;
  background-color: #fff;
  position: relative;
  margin-top: 0.5em;
}

.change .bar1 {
  transform: translate(0, 11px) rotate(-45deg);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  transform: translate(0, -11px) rotate(45deg);
}

#nav-header.change {
  visibility: visible;
  height: auto;
}

/* Footer styles */
.footer-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-content-wrapper address {
  margin-top: 1.5em;
  margin-left: 1.5em;
}

.fa {
  padding: 1em;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
}

.fa-instagram {
  background: #f09433;
  background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  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);
  color: white;
}

.fa-twitter {
  background: #55ACEE;
  color: white;
}

.fa-youtube {
  background: #f00;
  color: white;
}

.google-map {
  position: relative;
  padding: 1em;
  background: linear-gradient(to top left, blue 30%, green 30%, yellow 70%, red);
  width: 16px;
  height: 16px;
  border-radius: 8px;
}
.google-map a {
  visibility: visible;
  height: auto;
  width: auto;
}
.google-map i {
  visibility: visible;
  font-size: 1rem;
  color: #000;
  width: 1rem;
  object-fit: contain;
}
.google-map iframe {
  visibility: hidden;
  height: 0;
}

#modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  background-color: rgba(255, 255, 255, 0.6);
  justify-content: center;
  align-items: center;
  z-index: -1000;
}
#modal #cross-icon {
  font-size: 2rem;
  color: #000;
  position: absolute;
  top: 2em;
  right: 2em;
}
#modal.show {
  display: flex;
  z-index: 1000;
}

@media only screen and (min-width: 768px) {
  #nav-header {
    visibility: visible;
    height: auto;
    flex-direction: row;
  }
  .header-item {
    font-size: 1.2rem;
    margin-left: 2em;
  }
  .menu-icon-container {
    visibility: hidden;
  }
  /* Footer Styles */
  footer {
    display: flex;
    flex-direction: row;
    height: auto;
  }
  .footer-content-wrapper {
    flex-direction: column;
    justify-content: center;
  }
  .footer-content-wrapper address {
    font-size: 1.1rem;
  }
  .google-map {
    background: none;
    width: 150px;
    height: 150px;
    border-radius: 0;
  }
  .google-map iframe {
    visibility: visible;
    width: 150px;
    height: 150px;
    position: absolute;
    top: 0;
    border-radius: 20px;
    margin-left: 2.5em;
  }
  .google-map a i {
    visibility: hidden;
    height: 0;
    width: 0;
  }
}
aside .aside-content-container {
  padding: 0 2em;
  display: flex;
  margin: 3em 1em 0 1em;
  justify-content: space-evenly;
  background-color: #f9c750;
  border-radius: 8px;
  color: #202020;
  font-family: RobotoBold, sans-serif;
  font-size: 1.2rem;
}
aside .aside-content-container div {
  cursor: pointer;
}
aside .aside-content-container div:not(:first-of-type) {
  text-align: center;
}

main {
  padding: 0 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 600px;
  margin: 1em;
}
main .content-container {
  width: 100%;
}
main .content-container .code-box-container .code-box-header {
  display: flex;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: #fff;
  padding: 0.5em 1em;
  gap: 1em;
  justify-content: space-between;
  align-items: center;
}
main .content-container .code-box-container .code-box-header .box-btn {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #f00;
}
main .content-container .code-box-container .code-box-header .box-btn.yellow {
  background-color: #ffd600;
}
main .content-container .code-box-container .code-box-header .box-btn.green {
  background-color: #0f0;
}
main .content-container .code-box-container .code-box-header i {
  flex: 4;
  text-align: right;
  font-size: 1.1rem;
  color: #000;
}
main .content-container .code-box-container #code-snippet-box {
  background-color: #000;
  color: #fff;
  padding: 1em;
}
main .content-container .code-box-container #code-snippet-box pre code {
  text-wrap: initial;
  font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
}

@media screen and (min-width: 768px) {
  aside {
    float: left;
  }
  aside .aside-content-container {
    flex-direction: column;
    justify-content: flex-start;
  }
  aside .aside-content-container div:not(:first-of-type) {
    border-top: 3px solid #202020;
  }
  main .content-container .code-box-container {
    max-width: 60%;
  }
}

/*# sourceMappingURL=language.css.map */
