@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/pxiEyp8kv8JHgFVrJJfecg.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

button {
  cursor: pointer;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 12px;
}

nav {
  padding: 5px 0 0 0;
  top: 0;
  position: fixed;
  z-index: 9;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
nav .container .logo {
  max-width: 150px;
}
nav .container .logo img {
  width: 100%;
}
nav .container .navigation ul {
  display: flex;
  list-style: none;
  gap: 20px;
}
nav .container .navigation ul li {
  position: relative;
}
nav .container .navigation ul li::after {
  content: "";
  width: 0%;
  left: 0;
  position: absolute;
  height: 3px;
  background-color: #fa4eab;
  display: block;
  transition: 0.3s ease;
  bottom: -5px;
}
nav .container .navigation ul li:hover::after {
  width: 100%;
}
nav .container .navigation ul li:last-child::after {
  display: none;
}
nav .container .navigation ul li button,
nav .container .navigation ul li a {
  text-decoration: none;
  background-color: transparent;
  padding: 0;
  border: none;
  outline: none;
  font-size: 17px;
  color: #fa4eab;
  font-weight: 600;
}
nav .container .navigation ul li a {
  background-color: #fa4eab;
  color: #fff;
  padding: 8px 13px;
  border-radius: 5px;
}

#navButton {
  background: transparent;
  border: none;
  outline: none;
  max-width: 35px;
  width: 100%;
  position: relative;
  z-index: 9;
  display: none;
}

header {
  margin-top: 70px;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.65);
  background-blend-mode: overlay;
  background-image: url("../img/titsTitle2.png");
}
header .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: calc(100vh - 70px);
}
header .container h1 {
  font-size: 55px;
  -webkit-text-stroke: 2px #fff;
  -webkit-text-fill-color: #fa4eab;
  text-align: center;
  color: #fa4eab;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
header .container p {
  margin-bottom: 50px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(-45deg, #ff5ccc, #fa4eab, #ff017f, #e0218b);
  background-size: 400% 400%;
  animation: gradient 10s ease infinite;
  padding: 4px 15px;
}
header .container a {
  text-decoration: none;
  color: #fff;
  border-radius: 5px;
  padding: 8px 25px;
  font-weight: 600;
  position: relative;
  background-color: #fa4eab;
  overflow: hidden;
  transition: 0.2s ease;
}
header .container a::before {
  padding: 6px 23px;
  top: 2px;
  left: 2px;
  background-color: #fa4eab;
  content: attr(content);
  position: absolute;
  z-index: 1;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .container a::after {
  top: 0;
  left: 0;
  content: "";
  width: 200px;
  height: 200px;
  left: calc(50% - 100px);
  top: calc(50% - 100px);
  position: absolute;
  border-radius: 50px;
  background: conic-gradient(#fa4eab 0% 12.5%, #fff 12.5% 25%, #fa4eab 25% 37.5%, #fff 37.5% 50%, #fa4eab 50% 62.5%, #fff 62.5% 75%, #fa4eab 75% 87.5%, #fff 87.5% 100%);
  animation: border-animation 5s linear infinite;
  -webkit-animation: border-animation 5s linear infinite;
}

section.about {
  padding: 50px 0;
}
section.about .container .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
section.about .container .row h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #fa4eab;
}
section.about .container .row .column {
  max-width: 50%;
  width: 100%;
}
section.about .container .row .column img {
  width: 100%;
}
section.about .container .row .ss {
  position: relative;
}
section.about .container .row .ss::before {
  position: absolute;
  z-index: 2;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  height: 5px;
  background-color: #fa4eab;
}
section.about .container .row .ss.active::before {
  animation: loading 10s linear infinite;
}

.video {
  padding: 50px 0;
}
.video h2 {
  font-size: 30px;
  margin-bottom: 30px;
  color: #fa4eab;
  text-align: center;
}
.video .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #fff;
  border-radius: 5px;
}

#openLightBox {
  max-width: 768px;
  width: 100%;
  position: relative;
  border: 5px solid #fff;
  border-radius: 5px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
  padding: 0;
  outline: none;
  font-size: 0px;
}
#openLightBox img {
  width: 100%;
}
#openLightBox .icon {
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 63px);
}
#openLightBox .icon svg {
  max-width: 125px;
  width: 100%;
}

#lightBox {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 11;
}
#lightBox .container {
  width: 100%;
}
#lightBox .container .wrapper {
  transition: 0.3s ease;
  transform: translateY(100px);
}
#lightBox .container .wrapper iframe {
  width: 100%;
}

#lightBox.show {
  display: flex;
}

#lightBox .container .wrapper.animate {
  transform: translateY(0);
}

#closeLightBox {
  position: absolute;
  top: 10px;
  right: 20px;
  border: none;
  outline: none;
  background: transparent;
  font-size: 40px;
  color: #fff;
}

.contact {
  padding: 20px 0 50px 0;
}
.contact h2 {
  font-size: 30px;
  margin-bottom: 30px;
  color: #fa4eab;
  text-align: center;
}
.contact .container {
  position: relative;
}
.contact .content {
  background-image: url("../img/contactBG.svg");
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 10px;
  padding: 20px;
  min-height: 140px;
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  height: 100%;
}
.contact .content .column {
  max-width: 50%;
  width: 100%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact .content .column span {
  font-weight: 500;
  position: relative;
  padding-left: 17px;
}
.contact .content .column span::after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 40px;
  background-color: #fff;
}
.contact .content .column .link {
  color: #fff;
  text-decoration: none;
  margin-top: 10px;
  font-weight: 600;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact .content .column .link .icon {
  max-width: 35px;
  width: 100%;
  display: flex;
  align-items: center;
}
.contact .content .column .link .icon svg {
  width: 100%;
}

footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .container .logo {
  max-width: 200px;
  width: 100%;
}
footer .container .logo img {
  width: 100%;
}
footer .container .link {
  display: flex;
  gap: 20px;
  justify-content: right;
}
footer .container .link a {
  text-decoration: none;
  color: #fa4eab;
}
footer .container .link a:hover {
  text-decoration: underline;
}

.fBar {
  padding: 12px;
  border-top: 1px solid #fa4eab;
  margin-top: 20px;
}
.fBar p {
  text-align: center;
}

@media only screen and (min-width: 1200px) {
  .contact .background svg {
    width: 100%;
  }
}
@media only screen and (max-width: 1200px) {
  header {
    background-position: 25% 50%;
  }
}
@media only screen and (max-width: 768px) {
  #navButton {
    display: block;
  }
  nav .navigation {
    transition: 0.3s ease;
    position: absolute;
    right: -281px;
    background-color: #fff;
    top: 0;
    min-height: 100vh;
    border-left: 1px solid #dddddd;
  }
  nav .navigation ul {
    flex-direction: column;
    padding: 60px 30px 12px 30px;
    width: 280px;
    gap: 30px !important;
  }
  nav .navigation ul li a,
nav .navigation ul li button {
    display: block;
    width: 100%;
    text-align: left;
  }
  nav .navigation ul li a {
    text-align: center;
  }
  nav .navigation.active {
    right: 0;
  }
  header {
    background-position: 15% 50%;
  }
  header .container h1 {
    font-size: 40px;
    -webkit-text-stroke: 1px #fff;
    letter-spacing: initial;
  }
  header .container p {
    font-size: 18px;
  }
  section.about .container .row {
    flex-direction: column;
  }
  section.about .container .row .column {
    max-width: 100%;
  }
  section.about .container .row h2 {
    font-size: 25px;
  }
  #openLightBox .icon {
    left: calc(50% - 50px);
  }
  #openLightBox .icon svg {
    max-width: 100px;
    width: 100%;
  }
  #closeLightBox {
    top: auto;
    right: calc(50% - 30px);
    bottom: 50px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    padding: 10px;
    border-radius: 100px;
  }
  .contact .content {
    flex-direction: column;
    display: flex;
    padding: 12px;
  }
  .contact .content .column {
    max-width: 100%;
  }
  .contact .content .column div {
    width: 100%;
  }
  .contact .content .column .link {
    gap: 10px;
  }
  .contact .content .column .link .icon {
    min-width: 30px;
  }
  footer .container {
    flex-direction: column;
    gap: 20px;
  }
}
@media only screen and (max-width: 340px) {
  .contact .content .column .link {
    font-size: 17px;
  }
}
@media only screen and (max-width: 300px) {
  .contact .content .column .link {
    flex-direction: column;
  }
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes border-animation {
  to {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}
@keyframes loading {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}