:root {
  /*TINTS VARIABLES*/
  --primary-color: #0C2340;
  --secondary-color: #EFF4FA;
  --accent-color: #FFEF00;


  /*FONTS VARIABLES*/
  --font-family: "Neue Montreal", arial, sans-serif;
  --alt-font-family: "Rajdhani";
  --headline-font-size: 60px;
  --title-font-size: 40px;
  --medium-font-size: 30px;
  --base-font-size: 20px;
  --small-font-size: 14px;


  /*GLOBAL VARIABLES*/
  --max-width: 940px;
  --max-width-alt: 1140px;
  --base-margin: 20px;

  --border-radius: 15px;
  --button-radius: 7px;

}

* {
  box-sizing: border-box;
  position: relative;
}

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


body {
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}


.language-dropdown-wrapper {
  display: flex;
  flex-direction: column;
  width: 50px;
  text-align: center;
  cursor: pointer;
  font-family: var(--alt-font-family);
  text-transform: uppercase;
}

.language-dropdown-container {
  position: absolute;
  display: none;
  top: 50px;
  flex-direction: column;
  width: 100%;
  gap: 20px;
  background: white;
  padding: 10px 0;
}

.current-language {
  padding: 20px 0;
}

.language-dropdown-wrapper:hover .language-dropdown-container {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 10px;
}

.language-selector {
  background: inherit;
  width: 100%;
}

.phone-language-selector {
  display: flex;
  direction: row;
  gap: 10px;
}

.phone-language-selector .language-selector:first-child {
  margin-left: 20px;
}

.phone-language-selector .language-selector {
  width: auto !important;
  cursor: pointer;
}

.phone-language-selector .selected-language {
  text-decoration: underline !important;
}

.header-toggled .language-dropdown-container {
  background: var(--primary-color) !important;
}

.background {
  background-color: var(--primary-color);
}


.alt-background {
  background-color: var(--secondary-color);
}

.white-background {
  background-color: white !important;
}

.mt-1 {
  margin-top: var(--base-margin) !important;
}

.mt-2 {
  margin-top: calc(var(--base-margin)*2) !important;
}

.mt-4 {
  margin-top: calc(var(--base-margin)*4) !important;
}

.no-margin {
  margin: 0 !important;
}

.no-padding {
  padding: 0 !important
}

.no-padding-x {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}

.no-overflow {
  overflow: hidden;
}

.vertical {
  display: flex;
  flex-direction: column;
}

.rounded-top-corners {
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}

.rounded-corners {
  border-radius: var(--border-radius);
}

.shadows {
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}


.absolute-center {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-animation {
  position: relative;
}

.text-animation>span {
  top: -20px;
  position: relative;
}

.text-animation>.animating {
  position: relative;
  animation-name: textAnimation;
  animation-duration: .2s;
  opacity: 0;
  animation-fill-mode: forwards;


}



@keyframes textAnimation {
  from {
    opacity: 0;
    top: -20px;
  }

  to {
    opacity: 1;
    top: 0px;
  }
}

@media only screen and (max-width: 600px) {
  :root {
    --headline-font-size: 40px;
    --title-font-size: 30px;
    --medium-font-size: 20px;
    --base-font-size: 15px;
    --small-font-size: 10px;

    --max-width: 100%
  }

  body {}

  .hide-sm {
    display: none;
  }

  .section-fluid {
    padding: 20px;
  }
}