/*!
Theme Name: TheAthleteVIP Theme
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: theathletevip-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

TheAthleteVIP Theme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*---------------------------------------------------------------*/
/* TABLE OF CONTENTS:                                            */
/*---------------------------------------------------------------*/
/*===========*/
/*   FONTS   */
/*===========*/
/*===============*/
/*   VARIABLES   */
/*===============*/
:root {
  --primary-font-family: "Montserrat", sans-serif;
  --secondary-font-family: "Times New Roman";
  --tertiary-font-family: ;
  --black-color: #000000;
  --white-color: #FFFFFF;
  --primary-color: #DC3239;
  --secondary-color: "";
  --tertiary-color: "";
  --container: 1200px;
  --hover-transition-duration: 200ms;
  --click-transition-duration: 400ms;
  --hover-transition-timing: ease-in-out;
  --click-transition-timing: ease-in-out;
  --scroll-transition-timing: cubic-bezier(.86,0,.07,1);
}

/*===========*/
/*   RESET   */
/*===========*/
* {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*::before, *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--primary-font-family);
  font-style: normal;
  font-size: 14px;
  line-height: 1em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: var(--white-color);
  min-width: 380px;
  width: 100%;
}

html, body, main, nav, header, footer, aside, section, div {
  display: block;
}

h1, h2, h3, h4, h5, h6, p, span, blockquote, b, i, em {
  line-height: 1em;
}

ul, ol {
  list-style: none inside;
}

a {
  text-decoration: none;
  cursor: pointer;
}

button {
  display: block;
  background-color: transparent;
  outline: transparent;
  border: none;
  cursor: pointer;
}

input[type=submit],
input[type=button] {
  cursor: pointer;
}

/*=============*/
/*   CLASSES   */
/*=============*/
.tav-section {
  position: relative;
  width: 100%;
  padding: 25px;
}

.tav-container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}

.tav-row {
  display: flex;
  width: 100%;
}

.tav-col {
  width: 100%;
}

.tav-inner-row {
  display: inline-flex;
}

.tav-inner-col {
  width: 100%;
}

.tav-grid {
  display: grid;
}

.tav-img {
  display: block;
}
.tav-img .w-100 {
  width: 100%;
}
.tav-img .h-100 {
  height: 100%;
}
.tav-img .w-auto {
  width: auto;
}
.tav-img .h-auto {
  height: auto;
}

.tav-svg {
  display: block;
}

.tav-scroll-bar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.tav-scroll-bar::-webkit-scrollbar-track {
  background-color: transparent;
}
.tav-scroll-bar::-webkit-scrollbar-thumb {
  background-color: #D6D6D6;
  border-radius: 4px;
}
.tav-scroll-bar::-webkit-scrollbar-thumb:hover {
  background-color: #888888;
}

.tav-header {
  position: sticky;
  z-index: 99999;
  top: 0;
  display: block;
  background-color: var(--white-color);
  box-shadow: unset;
  min-width: 380px;
  width: 100%;
  min-height: 100px;
  height: auto;
  padding: 20px 30px;
  transition: box-shadow 500ms var(--scroll-transition-timing) 0ms;
}
.tav-header .tav-container .tav-row {
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}
.tav-header .tav-container .tav-row .tav-site-link {
  display: block;
  width: auto;
  height: 60px;
  margin: 0 auto 0 0;
}
.tav-header .tav-container .tav-row .tav-site-link .tav-site-logo {
  display: block;
  width: auto;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .tav-header .tav-container .tav-row .tav-nav-wrap {
    position: absolute;
    z-index: 9;
    top: 100px;
    right: 0;
    left: 0;
    display: block;
    background-color: var(--white-color);
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.0784313725);
    width: 100%;
    height: 0px;
    overflow: hidden;
    padding: 0px 30px;
    transition: height var(--click-transition-duration) var(--click-transition-timing) 0ms;
  }
}
.tav-header .tav-container .tav-row .tav-nav-wrap .tav-search-wrap {
  display: none;
}
@media only screen and (max-width: 768px) {
  .tav-header .tav-container .tav-row .tav-nav-wrap .tav-search-wrap {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    margin: 40px auto;
  }
}
.tav-header .tav-container .tav-row .tav-nav-wrap .tav-search-wrap .tav-search-input {
  color: var(--black-color);
  font-family: var(--primary-font-family);
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  display: block;
  background-color: #f6f6f6;
  width: 100%;
  height: 100%;
  padding: 12px 70px 12px 20px;
  border: 2px solid #EBEBEB;
}
.tav-header .tav-container .tav-row .tav-nav-wrap .tav-search-wrap .svg-icon-search {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: block;
  cursor: pointer;
}
.tav-header .tav-container .tav-row .tav-nav-wrap .tav-nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media only screen and (max-width: 768px) {
  .tav-header .tav-container .tav-row .tav-nav-wrap .tav-nav-list {
    flex-direction: column;
    margin: 0 auto 40px;
  }
}
.tav-header .tav-container .tav-row .tav-nav-wrap .tav-nav-list .tav-nav-item .tav-nav-link {
  color: var(--primary-color);
  font-family: var(--secondary-font-family);
  font-size: 23px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25em;
  white-space: nowrap;
  padding: 0 0 5px;
  border-bottom: 3px solid transparent;
  transition: border var(--hover-transition-duration) var(--hover-transition-timing) 0ms;
}
.tav-header .tav-container .tav-row .tav-nav-wrap .tav-nav-list .tav-nav-item .tav-nav-link:hover {
  border-color: var(--primary-color);
}
@media only screen and (max-width: 768px) {
  .tav-header .tav-container .tav-row .tav-btn--search {
    display: none;
  }
}
.tav-header .tav-container .tav-row .tav-mobile-menu-btn {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  min-width: 60px;
  width: 60px;
  height: 100%;
  padding: 10px;
}
@media only screen and (max-width: 768px) {
  .tav-header .tav-container .tav-row .tav-mobile-menu-btn {
    display: flex;
  }
}
.tav-header .tav-container .tav-row .tav-mobile-menu-btn .tav-mobile-menu-wrap {
  position: relative;
  max-width: 33px;
  min-width: 33px;
  width: 33px;
  height: 22px;
}
.tav-header .tav-container .tav-row .tav-mobile-menu-btn .tav-mobile-menu-wrap span {
  position: absolute;
  left: 0;
  display: block;
  background-color: var(--primary-color);
  width: 33px;
  height: 4px;
  border-radius: 3px;
  transition: top 500ms var(--click-transition-timing), right 500ms var(--click-transition-timing), bottom 500ms var(--click-transition-timing), left 500ms var(--click-transition-timing), background 500ms var(--click-transition-timing), translate 500ms var(--click-transition-timing), rotate 500ms var(--click-transition-timing), opacity 550ms ease;
}
.tav-header .tav-container .tav-row .tav-mobile-menu-btn .tav-mobile-menu-wrap span:nth-child(1) {
  top: 0;
}
.tav-header .tav-container .tav-row .tav-mobile-menu-btn .tav-mobile-menu-wrap span:nth-child(2) {
  top: 50%;
  translate: 0 -50%;
  opacity: 1;
}
.tav-header .tav-container .tav-row .tav-mobile-menu-btn .tav-mobile-menu-wrap span:nth-child(3) {
  bottom: 0;
}
.tav-header .tav-container .tav-row .tav-mobile-menu-btn.--active .tav-mobile-menu-wrap span:nth-child(1) {
  top: 8px;
  rotate: 45deg;
}
.tav-header .tav-container .tav-row .tav-mobile-menu-btn.--active .tav-mobile-menu-wrap span:nth-child(2) {
  opacity: 0;
}
.tav-header .tav-container .tav-row .tav-mobile-menu-btn.--active .tav-mobile-menu-wrap span:nth-child(3) {
  bottom: 10px;
  rotate: -45deg;
}
.tav-header.--scrolled {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.0784313725);
}

.tav-footer .tav-primary-footer {
  background-color: var(--primary-color);
  padding: 50px 30px;
}
.tav-footer .tav-primary-footer .tav-container .tav-row {
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
@media only screen and (max-width: 768px) {
  .tav-footer .tav-primary-footer .tav-container .tav-row {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 480px) {
  .tav-footer .tav-primary-footer .tav-container .tav-row {
    justify-content: center;
    align-items: center;
  }
}
.tav-footer .tav-primary-footer .tav-container .tav-row .tav-col:nth-of-type(1) {
  width: max-content;
}
.tav-footer .tav-primary-footer .tav-container .tav-row .tav-col:nth-of-type(2) {
  width: max-content;
}
.tav-footer .tav-primary-footer .tav-container .tav-row .tav-col:nth-of-type(2) h4 {
  color: var(--white-color);
  font-family: var(--secondary-font-family);
  font-size: 35px;
  font-style: normal;
  font-weight: 600px;
  line-height: 1.25em;
  margin-bottom: 12px;
}
.tav-footer .tav-primary-footer .tav-container .tav-row .tav-col:nth-of-type(2) .contact-name,
.tav-footer .tav-primary-footer .tav-container .tav-row .tav-col:nth-of-type(2) .contact-number,
.tav-footer .tav-primary-footer .tav-container .tav-row .tav-col:nth-of-type(2) .contact-email,
.tav-footer .tav-primary-footer .tav-container .tav-row .tav-col:nth-of-type(2) .contact-social {
  color: var(--white-color);
  font-family: var(--primary-font-family);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5em;
  white-space: nowrap;
  display: block;
}
@media only screen and (max-width: 480px) {
  .tav-footer .tav-primary-footer .tav-container .tav-row .tav-col:nth-of-type(2) .contact-name,
  .tav-footer .tav-primary-footer .tav-container .tav-row .tav-col:nth-of-type(2) .contact-number,
  .tav-footer .tav-primary-footer .tav-container .tav-row .tav-col:nth-of-type(2) .contact-email,
  .tav-footer .tav-primary-footer .tav-container .tav-row .tav-col:nth-of-type(2) .contact-social {
    text-align: center;
  }
}
.tav-footer .tav-primary-footer .tav-container .tav-row .tav-col:nth-of-type(2) .contact-number {
  margin-bottom: 12px;
}
.tav-footer .tav-primary-footer .tav-container .tav-row .tav-col:nth-of-type(3) {
  width: max-content;
}
.tav-footer .tav-primary-footer .tav-container .tav-row .tav-col:nth-of-type(3) .tav-social-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 0 auto 24px;
}
.tav-footer .tav-primary-footer .tav-container .tav-row .tav-col:nth-of-type(3) .tav-social-list .tav-social-item .tav-social-link {
  display: block;
  opacity: 1;
}
.tav-footer .tav-primary-footer .tav-container .tav-row .tav-col:nth-of-type(3) .tav-social-list .tav-social-item .tav-social-link .svg-icon-social-twitter-v1 {
  display: none;
}
.tav-footer .tav-primary-footer .tav-container .tav-row .tav-col:nth-of-type(3) .tav-social-list .tav-social-item .tav-social-link .svg-icon-social-instagram #path_01,
.tav-footer .tav-primary-footer .tav-container .tav-row .tav-col:nth-of-type(3) .tav-social-list .tav-social-item .tav-social-link .svg-icon-social-twitter-v1 #path_01,
.tav-footer .tav-primary-footer .tav-container .tav-row .tav-col:nth-of-type(3) .tav-social-list .tav-social-item .tav-social-link .svg-icon-social-twitter-v2 #path_01,
.tav-footer .tav-primary-footer .tav-container .tav-row .tav-col:nth-of-type(3) .tav-social-list .tav-social-item .tav-social-link .svg-icon-social-tiktok #path_01,
.tav-footer .tav-primary-footer .tav-container .tav-row .tav-col:nth-of-type(3) .tav-social-list .tav-social-item .tav-social-link .svg-icon-social-pinterest #path_01,
.tav-footer .tav-primary-footer .tav-container .tav-row .tav-col:nth-of-type(3) .tav-social-list .tav-social-item .tav-social-link .svg-icon-social-facebook #path_01 {
  fill: var(--white-color);
}
.tav-footer .tav-primary-footer .tav-container .tav-row .tav-col:nth-of-type(3) .tav-social-list .tav-social-item .tav-social-link:hover {
  opacity: 0.5;
}
.tav-footer .tav-primary-footer .tav-container .tav-row .tav-col:nth-of-type(3) .tav-btn--get-a-free-proposal {
  display: block;
  background-color: transparent;
  width: max-content;
  padding: 12px 24px;
  border: 2px solid var(--white-color);
  transition: background-color var(--hover-transition-duration) var(--hover-transition-timing) 0ms;
}
.tav-footer .tav-primary-footer .tav-container .tav-row .tav-col:nth-of-type(3) .tav-btn--get-a-free-proposal .label {
  color: var(--white-color);
  font-family: var(--primary-font-family);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  text-align: center;
  display: block;
  white-space: nowrap;
  transition: color var(--hover-transition-duration) var(--hover-transition-timing) 0ms;
}
.tav-footer .tav-primary-footer .tav-container .tav-row .tav-col:nth-of-type(3) .tav-btn--get-a-free-proposal:hover {
  background-color: var(--white-color);
}
.tav-footer .tav-primary-footer .tav-container .tav-row .tav-col:nth-of-type(3) .tav-btn--get-a-free-proposal:hover .label {
  color: var(--primary-color);
}
.tav-footer .tav-copyright-footer {
  background-color: #FCF5EB;
  padding: 6px 30px;
}
.tav-footer .tav-copyright-footer .tav-container p {
  color: var(--primary-color);
  font-family: var(--secondary-font-family);
  font-size: 21px;
  font-style: normal;
  text-align: center;
  line-height: 1.25em;
}

.tav-section--login {
  background-image: url("assets/images/LoginPage_bg-v01-2049x1152.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--white-color);
  padding: 100px 30px;
}
.tav-section--login .tav-container {
  /* From https://css.glass */
  background-color: rgba(0, 0, 0, 0.35);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(9.9px);
  -webkit-backdrop-filter: blur(9.9px);
  border: 1px solid rgba(0, 0, 0, 0.53);
}
.tav-section--login .tav-container .tav-row {
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  height: 100%;
  padding: 50px;
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(1) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(1) .tav-site-logo {
  max-width: 281px;
  min-width: 281px;
  width: 100%;
  height: auto;
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(1) .social-wrap .label {
  color: var(--white-color);
  font-family: var(--primary-font-family);
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25em;
  margin-bottom: 12px;
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(1) .social-wrap .social-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(1) .social-wrap .social-list .social-item .social-link {
  display: block;
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--login .tav-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--login .tav-form-wrap .tav-form-title {
  color: var(--white-color);
  font-family: var(--primary-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  white-space: nowrap;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--white-color);
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--login .tav-form-wrap .tav-form-group .tav-form-label {
  color: var(--white-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  white-space: nowrap;
  display: block;
  margin-bottom: 6px;
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--login .tav-form-wrap .tav-form-group .tav-form-input {
  color: var(--white-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  display: block;
  background-color: transparent;
  width: 100%;
  padding-bottom: 10px;
  outline: transparent;
  border-bottom: 2px solid var(--white-color);
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--login .tav-form-wrap .tav-form-group.--remember {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--login .tav-form-wrap .tav-form-group.--remember .tav-form-label {
  line-height: 1em;
  order: 2;
  margin-bottom: 0;
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--login .tav-form-wrap .tav-form-group.--remember .tav-form-input {
  order: 1;
  display: block;
  width: 16px;
  height: 16px;
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--login .tav-form-wrap .tav-form-group.--actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 0;
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--login .tav-form-wrap .tav-form-group.--actions .tav-btn--sign-up {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background-color: var(--white-color);
  padding: 12px 24px;
  border-radius: 50px;
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--login .tav-form-wrap .tav-form-group.--actions .tav-btn--sign-up .label {
  color: var(--black-color);
  font-family: var(--primary-font-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  white-space: nowrap;
  display: block;
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--login .tav-form-wrap .tav-form-group.--actions .tav-btn--sign-up:hover {
  background-color: var(--primary-color);
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--login .tav-form-wrap .tav-form-group.--actions .tav-btn--sign-up:hover .label {
  color: var(--white-color);
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--login .tav-form-wrap .tav-form-group.--actions .tav-btn--login {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background-color: var(--white-color);
  width: 100%;
  padding: 12px 24px;
  border-radius: 50px;
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--login .tav-form-wrap .tav-form-group.--actions .tav-btn--login .label {
  color: var(--black-color);
  font-family: var(--primary-font-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  white-space: nowrap;
  display: block;
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--login .tav-form-wrap .tav-form-group.--actions .tav-btn--login:hover {
  background-color: var(--primary-color);
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--login .tav-form-wrap .tav-form-group.--actions .tav-btn--login:hover .label {
  color: var(--white-color);
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--login .tav-form-wrap .tav-form-group.--actions .no-account {
  color: var(--white-color);
  font-family: var(--primary-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  white-space: nowrap;
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--login .tav-form-wrap .tav-form-group.--actions .no-account a {
  color: inherit;
  text-decoration: underline;
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--login .tav-form-wrap .tav-form-group.--actions .no-account a:hover {
  color: var(--primary-color);
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--signup .tav-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--signup .tav-form-wrap .tav-form-title {
  color: var(--white-color);
  font-family: var(--primary-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  white-space: nowrap;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--white-color);
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--signup .tav-form-wrap .tav-form-group .tav-form-label {
  color: var(--white-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  white-space: nowrap;
  display: block;
  margin-bottom: 6px;
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--signup .tav-form-wrap .tav-form-group .tav-form-input {
  color: var(--white-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  display: block;
  background-color: transparent;
  width: 100%;
  padding-bottom: 10px;
  outline: transparent;
  border-bottom: 2px solid var(--white-color);
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--signup .tav-form-wrap .tav-form-group.--actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  padding: 6px 0 12px;
  border-bottom: 2px solid var(--white-color);
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--signup .tav-form-wrap .tav-form-group.--actions .tav-btn--sign-up {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background-color: var(--white-color);
  padding: 12px 24px;
  border-radius: 50px;
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--signup .tav-form-wrap .tav-form-group.--actions .tav-btn--sign-up .label {
  color: var(--black-color);
  font-family: var(--primary-font-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  white-space: nowrap;
  display: block;
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--signup .tav-form-wrap .tav-form-group.--actions .tav-btn--sign-up:hover {
  background-color: var(--primary-color);
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--signup .tav-form-wrap .tav-form-group.--actions .tav-btn--sign-up:hover .label {
  color: var(--white-color);
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--signup .tav-form-wrap .tav-form-group.--actions .tav-btn--login {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background-color: var(--white-color);
  padding: 12px 24px;
  border-radius: 50px;
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--signup .tav-form-wrap .tav-form-group.--actions .tav-btn--login .label {
  color: var(--black-color);
  font-family: var(--primary-font-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  white-space: nowrap;
  display: block;
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--signup .tav-form-wrap .tav-form-group.--actions .tav-btn--login:hover {
  background-color: var(--primary-color);
}
.tav-section--login .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--signup .tav-form-wrap .tav-form-group.--actions .tav-btn--login:hover .label {
  color: var(--white-color);
}

.tav-section--sign-up {
  background-image: url("assets/images/SignupPage_bg-v01-2049x1152.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--white-color);
  padding: 100px 30px;
}
.tav-section--sign-up .tav-container {
  /* From https://css.glass */
  background-color: rgba(0, 0, 0, 0.35);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(9.9px);
  -webkit-backdrop-filter: blur(9.9px);
  border: 1px solid rgba(0, 0, 0, 0.53);
  height: 100%;
}
.tav-section--sign-up .tav-container .tav-row {
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  height: 100%;
  padding: 50px;
}
.tav-section--sign-up .tav-container .tav-row .tav-col:nth-of-type(1) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tav-section--sign-up .tav-container .tav-row .tav-col:nth-of-type(1) .tav-site-logo {
  max-width: 281px;
  min-width: 281px;
  width: 100%;
  height: auto;
}
.tav-section--sign-up .tav-container .tav-row .tav-col:nth-of-type(1) .social-wrap .label {
  color: var(--white-color);
  font-family: var(--primary-font-family);
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25em;
  margin-bottom: 12px;
}
.tav-section--sign-up .tav-container .tav-row .tav-col:nth-of-type(1) .social-wrap .social-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.tav-section--sign-up .tav-container .tav-row .tav-col:nth-of-type(1) .social-wrap .social-list .social-item .social-link {
  display: block;
}
.tav-section--sign-up .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--signup .tav-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tav-section--sign-up .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--signup .tav-form-wrap .tav-form-title {
  color: var(--white-color);
  font-family: var(--primary-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  white-space: nowrap;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--white-color);
}
.tav-section--sign-up .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--signup .tav-form-wrap .tav-form-group .tav-form-label {
  color: var(--white-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  white-space: nowrap;
  display: block;
  margin-bottom: 6px;
}
.tav-section--sign-up .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--signup .tav-form-wrap .tav-form-group .tav-form-input {
  color: var(--white-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  display: block;
  background-color: transparent;
  width: 100%;
  padding-bottom: 10px;
  outline: transparent;
  border-bottom: 2px solid var(--white-color);
}
.tav-section--sign-up .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--signup .tav-form-wrap .tav-form-group.--actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  padding: 6px 0 12px;
  border-bottom: 2px solid var(--white-color);
}
.tav-section--sign-up .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--signup .tav-form-wrap .tav-form-group.--actions .tav-btn--sign-up {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background-color: var(--white-color);
  padding: 12px 24px;
  border-radius: 50px;
}
.tav-section--sign-up .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--signup .tav-form-wrap .tav-form-group.--actions .tav-btn--sign-up .label {
  color: var(--black-color);
  font-family: var(--primary-font-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  white-space: nowrap;
  display: block;
}
.tav-section--sign-up .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--signup .tav-form-wrap .tav-form-group.--actions .tav-btn--sign-up:hover {
  background-color: var(--primary-color);
}
.tav-section--sign-up .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--signup .tav-form-wrap .tav-form-group.--actions .tav-btn--sign-up:hover .label {
  color: var(--white-color);
}
.tav-section--sign-up .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--signup .tav-form-wrap .tav-form-group.--actions .tav-btn--login {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background-color: var(--white-color);
  padding: 12px 24px;
  border-radius: 50px;
}
.tav-section--sign-up .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--signup .tav-form-wrap .tav-form-group.--actions .tav-btn--login .label {
  color: var(--black-color);
  font-family: var(--primary-font-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  white-space: nowrap;
  display: block;
}
.tav-section--sign-up .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--signup .tav-form-wrap .tav-form-group.--actions .tav-btn--login:hover {
  background-color: var(--primary-color);
}
.tav-section--sign-up .tav-container .tav-row .tav-col:nth-of-type(2) .tav-form--signup .tav-form-wrap .tav-form-group.--actions .tav-btn--login:hover .label {
  color: var(--white-color);
}

.tav-section--my-account {
  background-color: #FCF5EB;
}
.tav-section--my-account .tav-container .account-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--primary-color);
}
.tav-section--my-account .tav-container .account-head .title {
  color: var(--primary-color);
  font-family: var(--primary-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25em;
  white-space: nowrap;
}
.tav-section--my-account .tav-container .account-head .tav-btn--sign-out {
  background-color: #F66E35;
  padding: 12px 24px;
  border-radius: 50px;
}
.tav-section--my-account .tav-container .account-head .tav-btn--sign-out .label {
  color: var(--white-color);
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25em;
}
.tav-section--my-account .tav-container .account-body {
  padding: 25px 0;
}
.tav-section--my-account .tav-container .account-body .tav-row {
  justify-content: space-between;
  align-items: stretch;
  gap: 24px;
}
.tav-section--my-account .tav-container .account-body .tav-row .tav-col:nth-of-type(1) {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  min-width: 400px;
  width: 100%;
}
.tav-section--my-account .tav-container .account-body .tav-row .tav-col:nth-of-type(1) .account-profile {
  display: block;
  width: 150px;
  height: 150px;
  margin-bottom: 24px;
  border-radius: 50%;
}
.tav-section--my-account .tav-container .account-body .tav-row .tav-col:nth-of-type(1) .account-name {
  color: var(--black-color);
  font-family: var(--primary-font-family);
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25em;
  white-space: nowrap;
  margin-bottom: 12px;
}
.tav-section--my-account .tav-container .account-body .tav-row .tav-col:nth-of-type(1) .account-email {
  color: var(--black-color);
  font-family: var(--primary-font-family);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  white-space: nowrap;
  margin-bottom: 12px;
}
.tav-section--my-account .tav-container .account-body .tav-row .tav-col:nth-of-type(1) hr {
  background-color: var(--primary-color);
  width: 100%;
  height: 1px;
  margin: 12px 0;
  border: none;
}
.tav-section--my-account .tav-container .account-body .tav-row .tav-col:nth-of-type(1) .tav-btn--change-password,
.tav-section--my-account .tav-container .account-body .tav-row .tav-col:nth-of-type(1) .tav-btn--contact-us {
  color: var(--black-color);
  font-family: var(--tertiary-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25em;
  white-space: nowrap;
  display: block;
  margin-bottom: 10px;
}
.tav-section--my-account .tav-container .account-body .tav-row .tav-col:nth-of-type(1) .tav-btn--change-password:hover,
.tav-section--my-account .tav-container .account-body .tav-row .tav-col:nth-of-type(1) .tav-btn--contact-us:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
.tav-section--my-account .tav-container .account-body .tav-row .tav-col:nth-of-type(1) .tav-btn--update-profile {
  color: var(--white-color);
  font-family: var(--primary-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  text-align: center;
  line-height: 1.25em;
  white-space: nowrap;
  background-color: #02BF5C;
  width: max-content;
  margin: auto 0 0;
  padding: 12px 36px;
  border-radius: 50px;
}
.tav-section--my-account .tav-container .account-body .tav-row .tav-col:nth-of-type(2) .account-personal-info-wrap > .label {
  color: var(--primary-color);
  font-family: var(--primary-font-family);
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25em;
  white-space: nowrap;
  margin-bottom: 10px;
}
.tav-section--my-account .tav-container .account-body .tav-row .tav-col:nth-of-type(2) .account-personal-info-wrap > p {
  color: var(--black-color);
  font-family: var(--primary-font-family);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5em;
  white-space: nowrap;
  margin-bottom: 30px;
}
.tav-section--my-account .tav-container .account-body .tav-row .tav-col:nth-of-type(2) .account-personal-info-wrap .account-personal-info-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 24px 36px;
}
.tav-section--my-account .tav-container .account-body .tav-row .tav-col:nth-of-type(2) .account-personal-info-wrap .account-personal-info-list .account-personal-info-item {
  background-color: var(--white-color);
  width: calc(50% - 18px);
  padding: 20px 24px;
  border: 1px solid #A4A3A2;
  border-radius: 30px;
}
.tav-section--my-account .tav-container .account-body .tav-row .tav-col:nth-of-type(2) .account-personal-info-wrap .account-personal-info-list .account-personal-info-item .tav-inner-row {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.tav-section--my-account .tav-container .account-body .tav-row .tav-col:nth-of-type(2) .account-personal-info-wrap .account-personal-info-list .account-personal-info-item .tav-inner-row .label {
  color: var(--black-color);
  font-family: var(--primary-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.25em;
  white-space: nowrap;
}
.tav-section--my-account .tav-container .account-body .tav-row .tav-col:nth-of-type(2) .account-personal-info-wrap .account-personal-info-list .account-personal-info-item .value {
  color: var(--black-color);
  font-family: var(--primary-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  white-space: nowrap;
}

/*================*/
/*  MEDIA QUERY   */
/*================*/
/*==========*/
/*   TEST   */
/*==========*/
/*---------------------------------------------------------------*//*# sourceMappingURL=style.css.map */