@font-face {
  font-family: Foco-Italic;
  src: url(../font/Foco_Italic.ttf);
}

@font-face {
  font-family: Foco-Light;
  src: url(../font/Foco_Light.ttf);
}

@font-face {
  font-family: Foco-Light-Light;
  src: url(../font/Foco_Light-Italic.ttf);
}

@font-face {
  font-family: Foco-Regular;
  src: url(../font/Foco_Regular.ttf);
}

@font-face {
  font-family: Foco-Bold;
  src: url(../font/Foco_Bold.ttf);
}

@font-face {
  font-family: Foco-Bold-Italic;
  src: url(../font/Foco_Bold-Italic.ttf);
}

@font-face {
  font-family: Foco-Black;
  src: url(../font/Foco_Black.ttf);
}

@font-face {
  font-family: Foco-Black-Italic;
  src: url(../font/Foco_Black-Italic.ttf);
}

.foco-italic {
  font-family: Foco-Italic;
}

.foco-light {
  font-family: Foco-Light;
}

.foco-light-Italic {
  font-family: Foco-Light-Italic;
}

.foco-regular {
  font-family: Foco-Regular;
}

.foco-bold {
  font-family: Foco-Bold;
}

.foco-bold-italic {
  font-family: Foco-Bold-Italic;
}

.foco-black {
  font-family: Foco-Black;
}

.foco-black-italic {
  font-family: Foco-Black-Italic;
}

:root {
  --black: #000000;
  --white: #FFFFFF;
  --gray: #f0f8ff;
  --primary: #007ED9;
  --secondary: #0266AF;
}

body {
  color: var(--black);
  background-color: var(--gray);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Foco-Regular;
  }

p,
span {
  font-family: Foco-Regular;
  font-style: normal;
}

.underline {
  text-decoration: underline;
}

/* TEXT COLORS*/

.text-black {
  color: var(--black);
}

.text-white {
  color: var(--white);
}

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

.text-secondary {
  color: var(--secondary);
}

/* BACKGROUND COLORS*/

.bg-white {
  background-color: var(--white);
}

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

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

/* BORDER COLORS */

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

/* HTML GLOBAL */

html {
  scroll-behavior: smooth;
}

.cursor-pointer {
  cursor: pointer;
}

.btn-before {
  width: 60px;
  margin-right: 32px;
}

.btn-after {
  width: 60px;
  margin-left: 32px;
}

.checkbtn {
  font-size: 30px;
  float: right;
  cursor: pointer;
  display: none;
}

#check {
  display: none;
}

nav ul li a {
  color: var(--gray-dark);
}

/* MAX WIDTH */
.max-w-265 {
  width: 100%;
  max-width: 265px;
}

.max-w-280 {
  width: 100%;
  max-width: 280px;
}

.max-w-320 {
  width: 100%;
  max-width: 320px;
}

.max-w-350 {
  width: 100%;
  max-width: 320px;
}

.max-w-376 {
  width: 100%;
  max-width: 376px;
}

.max-w-466 {
  width: 100%;
  max-width: 466px;
}

.max-w-700 {
  width: 100%;
  max-width: 700px;
}

.max-w-715 {
  width: 100%;
  max-width: 715px;
}

.max-w-620 {
  width: 100%;
  max-width: 620px;
}

.max-w-836 {
  width: 100%;
  max-width: 836px;
}

.max-w-1070 {
  width: 100%;
  max-width: 1070px;
}

.max-w-1080 {
  width: 100%;
  max-width: 1080px;
}

.max-w-1110 {
  width: 100%;
  max-width: 1110px;
}

.max-w-1180 {
  width: 100%;
  max-width: 1180px;
}

.max-w-1536 {
  width: 100%;
  max-width: 1536px;
}

.shadow-custom {
  box-shadow: 0 0px 10px 4px rgb(0 0 0 / 0.1);
}

.rounded-10-custom {
  border-radius: 10px;
}

/* SLIDER */
.carousel {
  position: relative;
  width: 100%;
  max-width: 1180px;
  overflow: hidden;
  border-radius: 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  display: block;
  border-radius: 12px 12px 0 0;
}

.caption {
  background: #0066cc;
  padding: 20px 20px 20px 48px;
  border-radius: 0 0 12px 12px;
}

.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  border: none;
  font-size: 60px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

/* MEDIA QUERYS */

/* XL HD */
@media (min-width: 1536px) {
  .h-custom {
    height: 250px;
  }

  .text-28-custom {
    font-size: 28px;
  }

  .max-w-466-lg {
    width: 100%;
    max-width: 466px;
  }

  .max-w-620-2xl {
    width: 100%;
    max-width: 836px;
  }
  
  .max-w-700-2xl {
    width: 100%;
    max-width: 700px;
  }

  .max-w-836-2xl {
    width: 100%;
    max-width: 836px;
  }

  .max-w-1110-2xl {
    width: 100%;
    max-width: 1110px;
  }
}

/* LG Widescreen */
@media (min-width: 1280px) and (max-width: 1535px) {
  .h-custom {
    height: 250px;
  }

  .text-28-custom {
    font-size: 28px;
  }

  .max-w-466-lg {
    width: 100%;
    max-width: 466px;
  }

  .bg-secondary-mobile {
    background-color: var(--secondary);
    border-left: 1px solid var(--white);
  }

  .max-w-1110-2xl {
    width: 100%;
    max-width: 1110px;
  }
}

/* MD Desktop */
@media (min-width: 1024px) and (max-width: 1279px) {
  .checkbtn {
    display: block;
    margin-left: auto;
    margin-right: 20px;
  }

  ul {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: var(--primary);
    top: 100px;
    left: -100%;
    text-align: center;
    transition: all .5s;
  }

  nav ul li {
    display: block;
    margin: 20px 0;
    line-height: 30px;
  }

  nav ul li a {
    font-family: Foco-Medium;
    color: var(--blue);
  }

  #check:checked~ul {
    left: 0;
  }

  .h-custom {
    height: 250px;
  }

  .text-28-custom {
    font-size: 28px;
  }

  .max-w-466-lg {
    width: 100%;
    max-width: 466px;
  }

  .bg-secondary-mobile {
    background-color: var(--secondary);
    border-left: 1px solid var(--white);
  }
}

/* SM Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .checkbtn {
    display: block;
    margin-left: auto;
    margin-right: 16px;
  }

  ul {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: var(--primary);
    top: 100px;
    left: -100%;
    text-align: center;
    transition: all .5s;
  }

  nav ul li {
    display: block;
    margin: 20px 0;
    line-height: 30px;
  }

  nav ul li a {
    font-family: Foco-Regular;
    color: var(--blue-dark);
  }

  #check:checked~ul {
    left: 0;
  }

  .h-custom {
    height: 250px;
  }

  .text-28-custom {
    font-size: 28px;
  }

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

  .bg-secondary-mobile {
    background-color: var(--secondary);
    border-left: 1px solid var(--white);
  }

  .carousel {
    border-radius: 20px;
  }
}

/* XS Mobile */
@media (min-width: 640px) and (max-width: 767px) {
  .btn-before {
    width: 30px;
    margin-right: 16px;
  }
  
  .btn-after {
    width: 30px;
    margin-left: 16px;
  }

  .checkbtn {
    display: block;
    margin-left: auto;
    margin-right: 16px;
  }

  ul {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: var(--primary);
    top: 100px;
    left: -100%;
    text-align: center;
    transition: all .5s;
  }

  nav ul li {
    display: block;
    margin: 20px 0;
    line-height: 30px;
  }

  nav ul li a {
    font-family: Foco-Regular;
    color: var(--blue-dark);
  }

  #check:checked~ul {
    left: 0;
  }

  .h-custom {
    height: 250px;
  }

  .text-28-custom {
    font-size: 28px;
  }

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

  .bg-secondary-mobile {
    background-color: var(--secondary);
    border-left: 1px solid var(--white);
  }

  .carousel {
    border-radius: 20px;
  }

  .caption {
    padding: 15px;
  }
}

/* XS Mobile */
@media (min-width: 0) and (max-width: 639px) {
  .checkbtn {
    display: block;
    margin-left: auto;
    margin-right: 16px;
  }

  ul {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: var(--primary);
    top: 100px;
    left: -100%;
    text-align: center;
    transition: all .5s;
  }

  nav ul li {
    display: block;
    margin: 20px 0;
    line-height: 30px;
  }

  nav ul li a {
    font-family: Foco-Regular;
    color: var(--blue-black);
  }

  #check:checked~ul {
    left: 0;
  }

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

  .h-custom {
    height: 150px;
  }

  .w-180 {
    width: 180px;
  }

  .text-28-custom {
    font-size: 28px;
  }

  .carousel {
    border-radius: 20px;
  }

  .caption {
    padding: 15px;
  }
}