:root {
    --color-primary: #21b9d9;
    --color-secondary: #c74f80;
    --color-purple: #0c6b8b;
    --color-beige: #f5f5f5;
    --color-white: #ffffff;
    --color-grey: #a7a1a1;
    --color-dark: #292929;
    --color-darkblue: #032d3b;
    --color-tiktok-button: #FF3B5C;
    --color-tiktok-button-hover: #ea284e;
}

body {
  background-color: var(--color-white);
  color: var(--color-dark) !important;
}

/*
  Useful
*/
.text-purple {
  color: var(--color-purple);
}

.w-80 {
  width: 80%;
}

.logo {
  width: 240px;
}

.tiktok-phone {
  width: 280px;
}

@media only screen and (max-width: 768px) {
  .tiktok-phone {
    display: none;
  }
}

/*
  Page sections
*/
section.page-section {
  margin-top: 100px;
  position: relative;
}

.page-section .section-title {
  text-align: center;
  margin-bottom: 70px;
}

.page-section .section-title h2 {
  font-family: serif;
  font-size: 38pt;
}

.page-section .section-title h2.font_yellowtail {
  font-family: "Roboto", sans-serif;
  font-size: 30pt;
}

.page-section .section-title.purple {
  color: var(--color-purple);
}

.page-section.beige {
  background-color: var(--color-beige);
  padding: 100px 0;
}

.section-decors {
  position: absolute;
  top: 2200px;
  height: 575px;
  width: 100%;
  overflow: hidden;
}

.section-decors .decor {
  background: var(--color-purple);
  width: 200px;
  height: 200px;
  position: absolute;
  border-radius: 1000px;
}

.section-decors .decor.first {
  right: -110px;
  top: 136px;
}

.section-decors .decor.second {
  bottom: 140px;
  right: -35px;
  -webkit-box-shadow: 0px 0px 100px 1px var(--color-purple);
  -moz-box-shadow: 0px 0px 100px 1px var(--color-purple);
  box-shadow: 0px 0px 100px 1px var(--color-purple);
}

.section-decors .decor.third {
  bottom: 44px;
  right: -150px;
}

@media only screen and (max-width: 1240px) {
  .section-decors {
    display: none;
  }
}

/*
  Header
*/
header {
  background-color: var(--color-darkblue);
}

.header-navigation {
  height: 220px;
}

.header-navigation .navbar-brand {
  width: 200px;
}

.header-navigation .navbar-brand img.logo {
  position: absolute;
  top: 0;
}

@media only screen and (max-width: 992px) {
  .header-navigation {
    height: auto;
  }

  .header-navigation .navbar-brand img.logo {
    position: relative;
  }
}

.navbar-social-icons {
  width: 250px;
  justify-content: end;
}

@media only screen and (max-width: 1200px) {
  .navbar-social-icons {
    width: auto;
  }

  .logo {
    width: 200px;
  }
}

.navbar-toggler {
  border: 0 !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 2em;
  height: 2em;
}

.header-navigation .navbar-brand, .nav-link {
  color: var(--color-white);
}

.header-navigation .nav-link {
  font-family: serif;
  font-size: 18pt;
  padding: 13px 20px !important;
}

.header-navigation .nav-link:hover {
  color: var(--color-purple);
}

.header-content {
  margin-top: 80px;
}

.header-content .header-left {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.header-content .header-left h1 {
  color: var(--color-white);
  font-size: 60pt;
  margin-bottom: 10px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.header-content .header-left p {
  color: var(--color-grey);
  font-size: 16pt;
  font-family: "Roboto", sans-serif;
}

.header-button {
  display: inline-block;
  padding: 15px;
  width: 275px;
  margin: 20px auto 0;
}

.header-bottom {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  padding-bottom: 15px;
}

.header-bottom h3 {
  font-size: 18pt;
  font-family: serif;
  color: var(--color-white);
}

.header_vector {
  width: 800px;
  position: relative;
  z-index: 997;
}

.header_vector_container {
  position: relative;
}

.header_vector_container::before {
  content: '';
  position: absolute;
  display: block;
  bottom: 60px;
  left: 250px;
  width: 350px;
  height: 350px;
  -webkit-box-shadow: 0px 0px 100px 60px var(--color-purple);
  -moz-box-shadow: 0px 0px 100px 60px var(--color-purple);
  box-shadow: 0px 0px 100px 60px var(--color-purple);
}

.header-decors {
  position: absolute;
  bottom: 0;
}

.header-decors .decor {
  background: var(--color-purple);
  width: 200px;
  height: 200px;
  position: absolute;
  border-radius: 1000px;
}

.header-decors .decor.first {
  bottom: 30px;
  left: -110px;
}

.header-decors .decor.second {
  bottom: -30px;
  left: -20px;
  -webkit-box-shadow: 0px 0px 100px 1px var(--color-purple);
  -moz-box-shadow: 0px 0px 100px 1px var(--color-purple);
  box-shadow: 0px 0px 100px 1px var(--color-purple);
}

.header-decors .decor.third {
  bottom: -176px;
  left: -68px;
}

@media only screen and (max-width: 1640px) {
 .header_vector {
    width: 700px;
  }

  .header_vector_container::before {
    left: 222px;
    width: 300px;
    height: 300px;
  }
}

@media only screen and (max-width: 1440px) {
 .header_vector {
    width: 600px;
  }

  .header_vector_container::before {
    left: 198px;
    width: 250px;
    height: 250px;
  }
}

@media only screen and (max-width: 1240px) {
 .header_vector {
    width: 500px;
  }

  .header-content .header-left h1 {
    font-size: 60pt;
  }

  .header-content .header-left p {
    font-size: 19pt;
  }

  .header-decors {
    display: none;
  }

  .header_vector_container::before {
    left: 168px;
    width: 200px;
    height: 200px;
  }
}

@media only screen and (max-width: 1040px) {
 .header_vector {
    width: 450px;
  }

  .header_vector_container::before {
    left: 165px;
    width: 150px;
    height: 150px;
  }
}

@media only screen and (max-width: 991px) {
 .header_vector {
    width: 600px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .header_vector_container::before {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
 .header_vector {
    width: 100%;
  }
}

/* Jobs cards */
.jobs-card {
  border-width: 2px !important;
  border-color: var(--color-purple);
  color: var(--color-dark);
  height: 100%;
  transition: all 0.2s;
}

.jobs-card:hover {
  transform: scale(1.05);
}

.jobs-card .card-body {
  position: relative;
}

.jobs-card .card-body .price {
  font-size: 20pt;
  font-family: serif;
  margin-bottom: 50px;
}

.jobs-card .card-body .card-bottom {
  position: absolute;
  bottom: 20px;
  left: calc(50% - 61.5px);
}

/*
  About me
*/
#omnie {
  color: var(--color-purple);
}

#omnie .left {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  z-index: 997;
}

#omnie h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--color-primary);
  font-size: 40pt;
  margin-bottom: 20px;
}

#omnie .about-me-button {
  width: 300px;
  margin: 15px auto 0;
}

/*
  TikTok section
*/
.tiktok-profile_header {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.tiktok-profile_header .profile-info {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: center;
}

.tiktok-profile_header .profile-info .avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.tiktok-profile_header .profile-info .user {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: flex-start;
}

.tiktok-profile_header .profile-info .user .display_name {
  display: flex;
  gap: 8px;
}

.tiktok-profile_header .profile-info .user .display_name .profile-name {
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: #141B38;
}

.tiktok-profile_header .profile-info .user .display_name .user-name {
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  color: #696D80;
}

.tiktok_video {
  position: relative;
  display: block;
  width: 100%;
  height: 269px;
  overflow: hidden;
  border-radius: 8px;
  background: black;
  margin: auto;
}

.tiktok_video img {
  height: inherit;
  object-fit: cover;
  vertical-align: middle;
  width: 100%;
  transition: transform .2s ease-in-out;
}

.tiktok_video:hover img {
  transform: scale(1.1);
  cursor: pointer;
}

.tiktok_video .play-button {
  position: absolute;
  font-size: 18pt;
  bottom: 20px;
  left: 20px;
  color: var(--color-white);
}

/*
  Contact
*/
.contact-left-area {
  padding-right: 0;
}

.contact-left-area .card {
  position: relative;
  background-color: var(--color-purple);
  color: var(--color-white);
  height: 110%;
  top: -31px;
}

.contact-right-area {
  padding-left: 0;
}

.contact-right-area .card {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.contact-box {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin: 35px;
  text-decoration: none;
  color: var(--color-white);
  transition: all 0.2s;
}

.contact-box:hover {
  color: var(--color-primary);
}

.contact-box .icon {
  font-size: 40pt;
  transition: all 0.2s;
}

.contact-box:hover .icon {
    transform: rotate(10deg) scale(1.2);
}

.contact-box .text {
  font-size: 16pt;
}

@media only screen and (max-width: 768px) {
  .contact-left-area {
    padding-right: calc(var(--bs-gutter-x) * .5);
  }

  .contact-right-area {
    padding-left: calc(var(--bs-gutter-x) * .5);
  }

  .contact-right-area .card {
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
  }

  .contact-left-area .card {
    height: 100%;
    top: 0;
  }
}

.contact-card {
  color: var(--color-dark);
  background-color: var(--color-beige);
}

.contact-message-input {
  height: 150px !important;
}

/*
  Footer
*/
footer {
  background-color: var(--color-darkblue);
  color: var(--color-white);
  padding-top: 50px;
  margin-top: 100px;
  font-family: arial;
  font-size: 14pt;
}

.footer-text {
  color: var(--color-white);
}

.footer-text:hover {
  color: var(--color-purple);
}

/*
  Buttons
*/
.btn-outline-primary {
  border-radius: 100px;
  border-width: 2px;
  text-transform: uppercase;
  border-color: var(--color-purple);
  color: var(--color-purple);
}

.btn-outline-primary:hover {
  border-color: var(--color-purple);
  background-color: var(--color-purple);
  color: var(--color-white);
}

.btn-tiktok {
  background-color: var(--color-tiktok-button);
  border: 0;
  font-size: 10pt;
  color: var(--color-white);
}

.btn-tiktok:hover {
  background-color: var(--color-tiktok-button-hover);
  color: var(--color-white);
}

/*
  Forms
*/
.form-control {
  background-color: var(--color-beige);
}

.form-check-input:checked {
  background-color: var(--color-purple);
  border-color: var(--color-purple);
}

.form-select, .form-control {
  border: none;
  border-bottom: 1px solid var(--color-dark);
  border-radius: 0;
}
.form-select:focus, .form-control:focus {
  box-shadow: none;
  border-bottom-color: var(--color-purple);
}
.form-select:focus + label, .form-control:focus + label{
    color: var(--color-purple);
}
input[type="submit"]{
  color: var(--color-purple);
  border-color: var(--color-purple);
}
input[type="submit"]:hover,
input[type="submit"]:focus {
  color: var(--color-white);
  background-color: var(--color-purple);
  outline: none;
  box-shadow: 0 4px 6px 0 var(--color-purple);
}

/*
 Cards
*/
.card.purple-card {
  background-color: rgba(9, 109, 141, 0.5);
  border-radius: 20px;
  border: solid 2px var(--color-purple);
  color: var(--color-dark);
}

/*
  Admin area
*/
.admin-signin {
  max-width: 330px;
  padding: 1rem;
}
