/* RESET */
/***********************************************************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
}

/* BASE STYLES */
/*******************************************************************/
body {
  background-color: black;
  font-family: 'Inter', sans-serif;
  /*min-height:110vh;*/
  padding-top: 70px;

}

/* NORMAL STYLES */
.header {
  position: fixed;
  width: 100%;
  top: 0;
}

.bottom-bar {
  background-color: #4d4d4d;
}

.bottom-bar__content {
  min-height: 70px;
  max-width: 100%;
  padding-top: 0px;
  padding-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;
  margin: 0 auto;  
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  vertical-align: middle;
  display: flex;
  column-gap: 5px;
  align-items: center;
}

.logo__img {
  height: 60px;
}

.logo__text {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.5px;
}

.nav {
  transition: all 0.3s ease-in-out;
  z-index: 1000;
}

.nav__list {
  display: flex;
  column-gap: 10px;
}

.nav__item {
  
}

.nav__link {
  color: #ececec;
  font-weight: bolder;
  padding: 10px;
  transition: all 0.1s;
}

.nav__link:hover,
.nav__link:focus {
  background-color: gray;
  border-radius: 1000px;
}

.hamburger, .burger__link {
  cursor: pointer;
  display: none;
}


.bar {
  height: 2px;
  width: 27px;
  background-color: #ececec;
  margin: 5px 0;
  opacity: 0.8;
  transition: all 0.2s ease-in-out;
}

/* For JS */
.nav--open {
  left: 50% !important;
}

.hamburger--open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger--open .bar:nth-child(2) {
  opacity: 0;
}

.hamburger--open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MEDIA QUERIES */
@media (max-width: 650px) {
  .nav {
    position:fixed;
    top: 70px;
    left: -100%;
    transform: translateX(-50%);
    background-color:#4d4d4d;
    width: 100%;
    padding: 10px 0 25px;
    z-index: 1000;
  }

  .nav__list {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
  }

  .nav__link {
    font-size: 14px;
  }

  .btn {
    font-size: 11px;
    padding: 7px 17px;
  }

  .hamburger {
    display: block;
    padding-left: 2px;
    padding-right: 10px;
    padding-bottom: 2px;
    padding-top: 2px;
  }

  .burger__link{
    display: block;
  }
}

/********* MY STUFF ***************/
/**********************************/

.u-view{
  position:static;
  max-width: 100%;
  min-height: 75vh;
  min-height: var();
  display: flex;
  flex-direction: column;
  margin: 10px 10px 10px 10px; 
  z-index: -1;
  padding-top: 0px;
  border-width: 4px;
  border-color: cadetblue;
  border-style: solid;
  border-radius: 30px 30px 30px 30px;
  padding: 0px 0px 0px 0px;
  background-color: rgb(255, 255, 255, 0.85);
}

.u-view__header{
  min-width:100%;
  display: flex;
  flex-direction: column;
  background-color: transparent;
  justify-content: center; /* Centers horizontally */
  align-items: center;    /* Centers vertically */
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}

.u-view__header__caption {
  color: #1a1a1a;
  background-color:cadetblue;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 5px;
  font-family: 'Quicksand', 'Inter',  sans-serif;
  font-size: 32px;
  font-weight:bold;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
}

.u-view__header__image{
  margin-top: 10px;
}

.u-view__header__image__img{
  height: 150px;
}

.u-view__section{
  display: flex;
  flex-direction: column;
  margin-top: 5px;
}

.u-view__section__title{
  max-width: 100%;
  background-color: transparent;
  margin-left: 10px;
  margin-right: 10px;
  padding-bottom: 5px;
  padding-top: 5px;
  border-width: 6px;
  border-top-style:double;
  border-bottom-style:double;
  border-color: cadetblue;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight:600;
  color: #1a1a1a;
}

.u-view__section__content {
  color: #1a1a1a;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight:600;
  line-height: 1.4;
}

.u-view__section__content__coming_soon{
  min-width: 100%;
  font-family: 'Courgette', sans-serif;
  font-size: 36px;
  text-align: center;
  /*color: red;*/
  background-image: linear-gradient( red, blue);
  -webkit-background-clip: text; /* For WebKit browsers */
  background-clip: text;
  -webkit-text-fill-color: transparent; /* For WebKit browsers */
  color: transparent;
}

.u-specials_title{
  min-width: 100%;
  font-family: 'Courgette', sans-serif;
  font-size: 36px;
  /*text-align: center;*/
  /*color: red;*/
  background-image: linear-gradient( red, blue);
  -webkit-background-clip: text; /* For WebKit browsers */
  background-clip: text;
  -webkit-text-fill-color: transparent; /* For WebKit browsers */
  color: transparent;
}

.u-view__section__content__contact_methods{
  display:flex;
  justify-content: center;
  flex-wrap: wrap;
}

.u-view__section__content__contact_methods__form{
  margin: 5px 5px 5px 5px;
  padding: 10px 10px 10px 10px;
  background-color: aliceblue;
  border-radius: 30px;
  width:fit-content;
}

.u-view__section__content__contact_methods__list{
  display: flex;
  flex-direction: column;
  margin: 5px 5px 5px 5px;
  padding: 10px 10px 10px 10px;
  background-color: aliceblue;
  border-radius: 30px;
  width:fit-content;
}


.u-contact__whatsapp{
  /*min-height: 60px;*/
  width: max-content;
  /*color: #ececec;*/
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  padding: 5px 15px 5px 5px;
  margin: 5px 5px 5px 5px;
  align-items: center;
  justify-content: center;
  display:flex;
  flex-direction:row;
  /*border-style: solid;
  border-width: 1px;
  border-bottom: 0px;
  border-left: 0px;
  border-top: 0px;*/
}

.u-contact__whatsapp__number__link{
/*align-items: center;
width: 100%;*/
text-decoration: underline;
color: #1a1a1a;
padding-left: 10px;
font-size: 14px;
font-weight: normal;
/*align-items: center;
justify-content: center;
display: flex;*/

}
      
.u-contact__whatsapp__number__link:hover{
/*align-items: center;
width: 100%;*/
color: blue;
/*align-items: center;
justify-content: center;
display: flex;*/
}

.u-contact__whatsapp__img{
  height: 40px; 
}

.u-contact__email{
  width: max-content;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  padding: 5px 15px 5px 5px;
  margin: 5px 5px 5px 5px;
  align-items: center;
  justify-content: center;
  display:flex;
  flex-direction:row;
}

.u-contact__email__img{
  height: 40px;
}

.u-contact__email__link{
  text-decoration: underline;
  color: #1a1a1a;
  padding-left: 10px;
  font-size: 14px;
  font-weight: normal;
}

.u-contact__email__link:hover{
  color: blue;
}

.u-contact__phone{
  width: max-content;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  padding: 5px 15px 5px 5px;
  margin: 5px 5px 5px 5px;
  align-items: center;
  justify-content: center;
  display:flex;
  flex-direction:row;
}

.u-contact__phone__img{
  height: 40px;
}

.u-contact__phone__link{
  text-decoration: underline;
  color: #1a1a1a;
  padding-left: 10px;
  font-size: 14px;
  font-weight: normal;
}

.u-contact__phone__link:hover{
  color: blue;
}

.u-contact__linkedin{
  width: max-content;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  padding: 5px 15px 5px 5px;
  margin: 5px 5px 5px 5px;
  align-items: center;
  justify-content: center;
  display:flex;
  flex-direction:row;
}

.u-contact__linkedin__img{
  height: 40px;
}

.u-contact__linkedin__link{
  text-decoration: underline;
  color: #1a1a1a;
  padding-left: 10px;
  font-size: 14px;
  font-weight: normal;
}

.u-contact__linkedin__link:hover{
  color: blue;
}

.u-contact__location{
  width: max-content;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  padding: 5px 15px 5px 5px;
  margin: 5px 5px 5px 5px;
  align-items: center;
  justify-content: center;
  display:flex;
  flex-direction:row;
}

.u-contact__location__img{
  height: 40px;
}

.u-contact__location__details{
  color: #1a1a1a;
  padding-left: 10px;
  font-size: 14px;
  font-weight: normal;
}

.u-ul__default{
  padding-top: 5px;
}

.u-li__default{
  list-style-type:disc; 
  list-style: inside; 
  padding-left: 15px; 
  padding-bottom: 5px;
}

.u-ul__default_noinset{
  list-style-type:disc; 
  list-style: inside; 
  /*padding-left: 15px;*/
  padding-bottom: 5px;
}

.u-ul__info_blue_bullet_inset{
  list-style-type:disc; 
  list-style: inside; 
  padding-left: 15px;
  padding-bottom: 5px;
}

.u-ul__greenCheck{
  padding-top: 5px;
}

.u-li__greenCheck{
  list-style:none; 
  padding-left: 15px; 
  padding-bottom: 5px;
}

.u-li__greenCheck::before{
  padding-right: 5px;
  content: url('/img/green_white_check.svg');
}

.u-ul__blueCheck{
  padding-top: 5px;
}

.u-li__blueCheck{
  list-style:none; 
  padding-left: 15px; 
  padding-bottom: 5px;
}

.u-li__blueCheck::before{
  padding-right: 5px;
  content: url('/img/blue_white_check.svg');
}

.u-li__star_bullet{
  list-style:none; 
  /*padding-left: 15px; */
  padding-bottom: 5px;
}

.u-li__star_bullet::before{
  padding-right: 5px;
  content: '✰';
  color: darkred;
}

.u-li__info_blue_bullet{
  list-style-type:disc; 
  list-style: inside; 
  padding-left: 15px; 
  padding-bottom: 5px;
  list-style-image: url('/img/info-icon-blue.svg');
}

.u-li__info_blue_bullet_noinset{
  list-style-type:disc; 
  list-style: inside; 
  padding-bottom: 5px;
  list-style-image: url('/img/info-icon-blue.svg');
}

/*.u-li__info_blue_bullet::before{
  padding-right: 5px;
  content: url('/img/info-icon-blue.svg');
}*/

.u-footer{
  width: 100%;
  background-color: #4d4d4d; 
  min-height: 60px;
  /*margin-top: 10px;*/
  /*flex-direction: column;*/
  display: flex;
  flex-wrap: wrap;
  /*justify-content: center;*/ /*because we specified "flex-direction: column" ??*/
  align-items: center;
}

.u-footer__company{
  display: flex;
  flex-direction: column;
  align-items:start;
  /*min-height: 60px;*/
  width: max-content;
  color: #ececec;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  /*padding: 5px 15px 5px 5px;*/
  margin: 5px 5px 5px 5px;
  margin-right: 10px;
}

.u-footer__company__name{
  color: #ececec;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
}

.u-footer__company__reg{
  color: #ececec;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
}

.u-footer__policies{
  display: flex;
  flex-direction: row;
}

.u-footer__policies__privacy_policy{
  /*min-height: 60px;*/
  width: max-content;
  color: #ececec;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  /*padding: 5px 15px 5px 5px;*/
  margin: 5px 5px 5px 5px;
  margin-right: 10px;
  align-items: center;
  display:flex;
}

.u-footer__policies__privacy_policy__link{
  /*justify-content: center;*/
  text-decoration: underline;
}

.u-footer__policies__privacy_policy__link:hover{
  color:aquamarine;
}

.u-footer__policies__terms{
  /*min-height: 60px;*/
  width: max-content;
  color: #ececec;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  /*padding: 5px 15px 5px 5px;*/
  margin: 5px 5px 5px 5px;
  margin-right: 10px;
  align-items: center;
  display:flex;
}

.u-footer__policies__terms__link{
  text-decoration: underline;
}

.u-footer__policies__terms__link:hover{
  color:aquamarine;
}

.u-label{
  margin-left: 5px;
  font-weight: normal;
}

.u-text {
  padding: 5px 5px 5px 5px;
  margin-left: 5px;
  margin-top: 2px;
  margin-bottom: 8px;
  min-width: 220px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

.u-textarea{
    padding: 5px 5px 5px 5px;
    min-width: 220px;
    margin: 5px 5px 5px 5px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.u-submit {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 5px 5px 5px 5px;
  background-color: cadetblue;
  border-radius: 20px;
  border-style: solid;
  border-color: cadetblue;
}

.u-submit:hover{
  cursor: pointer;
  border-color: black;
}

.u-submit:disabled{
  cursor: default;
  opacity: 25%;
  border-color: cadetblue;
}

.submit:active {
  box-shadow:
    inset -2px -2px 3px rgb(255 255 255 / 0.6),
    inset 2px 2px 3px rgb(0 0 0 / 0.6);
}

.u-font-stepdown{
  font-weight: lighter;
  font-size: 95%;
}