:root {
    --color-white: #FFF;
    --color-black: #000;
    --color-dark: #03202F;
    --color-green: #25D366;
    --color-blue-1: #004AE8;
    --color-blue-2: #0070A7;
    --color-blue-3: #3F9BB4;
    --color-blue-4: #6DC6DE;
    --font-neue-kabel: "neue-kabel", sans-serif;
}

body {
    position: relative;
    background-color: var(--color-dark);
    color: var(--color-white);
    font-family: var(--font-neue-kabel);
    font-size: 15px;
    font-style: normal;
}

* {
    box-sizing: border-box;
    touch-action: manipulation;
    scroll-behavior: smooth;
}


/* --------------------------------------General-------------------------------------- */

/* Sections */
section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

section.full {
    min-height: 100vh;
}

section.start {
    align-items: start;
}

section.end {
    align-items: end;
}

/* Header */
body > header {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 0;
    left: 0;
    padding: 2rem;
    width: 100%;
    background-color: #FFFFFF00;
    width: 100%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 100;
}

body > header.no-blur {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

body > header nav {
    display: flex;
    gap: 2.5rem;
    text-transform: uppercase;
    font-size: 0.95em;
    font-weight: 500;
}

body > header nav a {
    padding: 3px 0;
    cursor: default;
    border-bottom: 2px solid transparent;
}

body > header nav a:not(.current) {
    cursor: pointer;
    transition: color 0.25s, border-bottom 0.25s;
    border-bottom: 2px solid transparent;
}

body > header nav a.current,
body > header nav > a:not(.current):hover {
    color: var(--color-blue-4);
    border-bottom: 2px solid #6DC6DE;
}

body > header button {
    position: relative;
    display: none;
    background-color: transparent;
    outline: none;
    border: none;
    color: var(--color-white);
    font-size: 1.6em;
    z-index: 200;
}

.header__whats {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 180px;
    height: 50px;
    background-color: var(--color-green);
    outline: none;
    border: none;
    border-radius: 16px;
    color: var(--color-white);
    font-size: 1.3em;
    font-weight: 600;
    overflow: hidden;
}
.header__whats i {
    font-size: 1.2em;
}

nav.mobile {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    height: 100vh;
    background-color: #00000066;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 150;
}

nav.hidden {
    display: none;
}

nav.mobile > picture img {
    display: block;
    margin: 2rem 0;
    width: 95.96px;
    height: 35px;
    object-fit: contain;
    cursor: pointer;
}

nav.mobile .lang {
    display: block;
    margin-top: 2rem;
    height: 32px;
    border-bottom: none;
}

nav.mobile .lang img {
    display: block;
    width: 97.1851px;
    height: 32px;
    object-fit: contain;
}

nav.mobile .lang:hover {
    border-bottom: none;
}

.header__diver {
    position: relative;
    z-index: 200;
}

.header__diver img {
    display: block;
    width: max-content;
    height: 35px;
    object-fit: contain;
    cursor: pointer;
}

.header__lang {
    background-color: #FFFFFF00;
    border-radius: 13px;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}

.header__lang img {
    display: block;
    width: 78.9629px;
    height: 26px;
}

/* Loader */
.loader__modal {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    padding: 0 0 2rem 0;
    width: 100%;
    height: 100vh;
    background-color: #0016240C;
}

.loader__cont {
    position: relative;
    display: inline-block;
    width: 200px;
    height: 200px;
    overflow: hidden;
    background: transparent;
}

.loader__cont span {
    position: absolute;
    left: 54px;
    bottom: 2rem;
    color: #A8A9A8;
    text-align: center;
    font-size: 1.1em;
}

.loader {
    position: relative;
    width: 100%;
    height: 100%;
    transform: translateZ(0) scale(1);
    backface-visibility: hidden;
    transform-origin: 0 0;
}

.loader div {
    box-sizing: content-box;
    position: absolute;
    border-width: 4px;
    border-style: solid;
    opacity: 1;
    border-radius: 50%;
    animation: loader-animation 1.1363636363636365s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.loader div:nth-child(1) {
    border-color: #a8a9a8;
    animation-delay: 0s;
}

.loader div:nth-child(2) {
    border-color: #0d0d13;
    animation-delay: -0.5681818181818182s;
}

#loader-text {
    animation: loader-text 1.1363636363636365s ease-in-out infinite alternate;
}



/* ----------------------------------------Home---------------------------------------- */
.home h2 {
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
}

.section::-webkit-scrollbar {
    width: 6px;
    transition: height 0.25s;
}

.section::-webkit-scrollbar-track {
    background: #FFFFFF0C;
    border-radius: 3px;
}

.section::-webkit-scrollbar-thumb {
    background: var(--color-white);
    border-radius: 3px;
}

.home__main-swiper {
    width: 100%;
    height: 100%;
}

.home__paginator {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 50%;
    right: 2rem;
    gap: 1.2rem;
    width: 10px;
    translate: 0 -50%;
    z-index: 10;
}

.home__paginator div {
    display: block;
    width: 100%;
    height: 20px;
    text-align: end;
}

.home__paginator a {
    display: block;
    margin-left: auto;
    width: 3px;
    height: 100%;
    background-color: var(--color-white);
    border-radius: 1.5px;
    opacity: 0.15;
    transition: width 0.3s, opacity 0.3s;
    cursor: pointer;
}

.home__paginator a.current {
    opacity: 1;
}

.home__paginator div:hover a {
    width: 100%;
    opacity: 1;
}

.home__whatsapp {
    position: fixed;
    display: flex;
    align-items: center;
    right: 2rem;
    top: calc(1rem + 100px);
    gap: 1rem;
    padding: 0 1.5rem;
    width: 190px;
    height: 65px;
    background-color: var(--color-green);
    outline: none;
    border: none;
    border-radius: 16px;
    color: var(--color-white);
    font-size: 1.3em;
    font-weight: 600;
    overflow: hidden;
    z-index: 100;
}
.home__whatsapp span {
    position: relative;
    width: 100%;
    color: var(--color-white);
    text-align: center;
    transition: color 0.3s, translate 0.3s;
    z-index: 20;
}
.home__whatsapp div {
    position: absolute;
    display: block;
    top: 0;
    left: calc(-100% - 65px);
    width: calc(100% + 65px);
    height: 100%;
    background-color: var(--color-white);
    border-radius: 0 27.5px 27.5px 0;
    transition: left 0.3s;
    z-index: 5;
}
.home__whatsapp .fa-whatsapp {
    font-size: 1.3em;
}
.home__whatsapp .fa-arrow-right-long {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    translate: 0 -50%;
    color: var(--color-green);
    transition: opacity 0.3s;
    opacity: 0;
    z-index: 10;
}
.home__whatsapp:hover span {
    color: var(--color-green);
    translate: calc(-1rem - 1em);
}
.home__whatsapp:hover div {
    left: 0;
}
.home__whatsapp:hover .fa-arrow-right-long {
    opacity: 1;
}

.home__sub-cont {
    position: relative;
    padding: 3px 0;
}

.home__sub-cont:hover .home__submenu {
    opacity: 1;
    pointer-events: all;
}

.home__submenu {
    position: absolute;
    display: flex;
    left: 50%;
    bottom: 0;
    padding-top: 1rem;
    gap: 0.6rem;
    opacity: 0;
    translate: -50% 100%;
    pointer-events: none;
    transition: opacity 0.3s;
}

.home__submenu a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    height: 30px;
    background-color: #FFFFFFE5;
    border-radius: 15px;
    color: #015680;
    text-transform: uppercase;
    font-size: 0.9em;
    font-weight: 600;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    transition: background-color 0.25s;
}

.home__submenu a:hover {
    background-color: #FFFFFFBF;
}

.home__navigation {
    position: fixed;
    display: flex;
    gap: 0.6rem;
    right: 2rem;
    bottom: 2rem;
    z-index: 10;
}

.home__navigation button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0 1rem;
    height: 45px;
    background-color: #FFFFFF33;
    outline: none;
    border: none;
    border-radius: 10px;
    color: var(--color-white);
    font-size: 1.2em;
    font-weight: 500;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    transition: background-color 0.3s;
}

.home__navigation button:hover:not(:disabled) {
    background-color: #FFFFFF66;
}

.home__navigation button:disabled {
    opacity: 0.6;
    cursor: default;
}

/* Intro */
.home__intro {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-white);
    z-index: 500;
}

.home__intro-logo {
    display: grid;
    grid-template-columns: repeat(3, auto);
    column-gap: 8px;
}

/* Hero */
.home__hero {
    flex-direction: column;
    justify-content: space-between;
    gap: 4rem;
    padding: 200px 3rem 5rem 3rem;
}

.home__hero h1 {
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    font-size: 2.5em;
    font-weight: 800;
}

.home__hero h2 {
    font-size: 1.45em;
    font-weight: 400;
}

.home__hero-titles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: auto 5rem;
    max-width: 660px;
}

.home__hero #hero-mob {
    display: none;
}

picture.home__hero-video {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

picture.home__hero-video img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home__hero-comments {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    column-gap: 3rem;

}

.home__hero-comment {
    display: grid;
    grid-template-columns: 25px auto 25px;
    row-gap: 7px;
    padding: 1rem;
    width: 100%;
    max-width: 350px;
    background-color: #FFFFFF0C;
    border: 1px solid #FFFFFF99;
    border-radius: 25px;
    font-weight: 500;
    font-size: 1.1em;
    backdrop-filter: blur(120px);
    -webkit-backdrop-filter: blur(120px);
}
.home__hero-comment div {
    grid-column: 1 / 4;
    grid-row: 2 / 3;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 5px;
}
.home__hero-comment p {
    margin: 0;
}
.home__hero-comment span {
    font-size: 0.9em;
    font-weight: 600;
    opacity: 0.5;
}
.home__hero-comment .fa-quote-right {
    align-self: end;
    justify-self: end;
}

/* About us */
.home__about-cont {
    padding-top: 100px;
    background: #040608;
    background: radial-gradient(at right bottom, #040608 0%, #0071A7 100%);
}

.home__about {
    display: grid;
    grid-template-columns: 50fr 43fr;
    gap: 3rem;
    padding: 0 5rem;
    width: 100%;
}

.home__about h2 {
    align-self: end;
    font-size: 2.2em;
    text-align: start;
    text-transform: none;
}

.home__about div {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.home__about p {
    margin: 0;
    font-size: 1.3em;
}

.home__about img {
    display: block;
    margin-top: 2rem;
    width: 100%;
    max-width: 400px;
    max-height: 266.6666px;
    aspect-ratio: 3 / 2;
    border-radius: 20px;
    object-fit: cover;
}

.home__about a {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.6rem;
    height: min-content;
    border: 1px solid var(--color-white);
    border-radius: 15px;
    font-size: 1.15em;
    transition: background-color 0.3s, color 0.3s;
}

.home__about span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    width: 30px;
    height: 30px;
    background-color: var(--color-white);
    border-radius: 50%;
    color: var(--color-dark);
    transition: background-color 0.3s, color 0.3s;
}

.home__about a:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
}

.home__about a:hover span {
    background-color: var(--color-dark);
    color: var(--color-white);
}

/* Experiences */
#ocean-experiences {
    background: url('../assets/img/demo-1.webp') center center no-repeat;
    background-size: cover;
}

#cenote-experiences {
    background: radial-gradient(at top left, #040608 0%, #0070A7 100%);
}

#seasonal-experiences {
    background: url('../assets/img/diving-with-bull-shark.jpg') center center no-repeat;
    background-size: cover;
}

.home__exp-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: calc(100px + 3rem) 4rem 3rem 4rem;
    width: 100%;
    height: max-content;
    min-height: 100vh;
    background-color: #00000000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 80;
}

.home__exp-sub {
    display: none;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.home__exp-sub a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    height: 30px;
    background-color: #FFFFFFE5;
    outline: none;
    border: none;
    border-radius: 15px;
    color: #015680;
    text-transform: uppercase;
    font-size: 0.9em;
    font-weight: 600;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    transition: background-color 0.25s;
}

.home__exp-sub a:hover {
    background-color: #FFFFFFBF;
}

.home__exp-content h2 {
    margin: 0;
    font-size: 4em;
    font-weight: 800;
}

.home__exp-content p {
    margin: 0;
    max-width: 500px;
    text-align: center;
    font-size: 1.3em;
}

.home__exp-list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.2rem;
    margin-top: 2.5rem;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.home__exp-item-cont {
    position: relative;
    display: block;
    width: 275px;
    height: 340px;
    color: #000;
}

.home__exp-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 35px;
    grid-template-rows: 250px auto;
    align-items: center;
    column-gap: 1.5rem;
    row-gap: 0.8rem;
    padding: 12.5px;
    width: 100%;
    height: 100%;
    color: var(--color-white);
    cursor: pointer;
    z-index: 1;
}

.home__exp-item picture {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
}

.home__exp-item img {
    display: block;
    width: 100%;
    height: min-content;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    object-fit: cover;
    transition: scale 0.3s;
}

.home__exp-item h4 {
    margin: 0;
    font-size: 1.35em;
    font-weight: 700;
    transform-origin: 0 100%;
    transition: scale 0.3s, translate 0.3s;
}

.home__exp-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: min-content;
    aspect-ratio: 1 / 1;
    background-color: transparent;
    border: 1px solid var(--color-white);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.1em;
    transition: background-color 0.3s, color 0.3s, translate 0.3s;
}

.home__exp-item span {
    position: absolute;
    display: flex;
    align-items: center;
    top: calc(0.8rem + 12.5px);
    right: calc(0.8rem + 12.5px);
    padding: 0 0.8rem;
    height: 30px;
    background-color: #00000080;
    border-radius: 15px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    text-transform: uppercase;
    font-size: 0.95em;
    font-weight: 700;
    transition: translate 0.3s;
}

.home__exp-item:hover img {
    scale: 1.1;
}

.home__exp-item:hover span {
    translate: 12.5px -12.5px;
}

.home__exp-item:hover h4 {
    scale: 1.1;
    translate: -12.5px 12.5px;
}

.home__exp-item:hover .home__exp-arrow {
    background-color: var(--color-white);
    color: var(--color-dark);
    translate: 12.5px 12.5px;
}

/* Courses */
.home__courses {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: calc(100px + 3rem) 5rem 3rem 5rem;
    width: 100%;
    height: 100%;
    background: radial-gradient(at top left, #040608 0%, #0070A7 100%);
}

.home__courses h2 {
    margin: 0;
    font-size: 4em;
    font-weight: 800;
}

.home__courses p {
    margin: 0;
    max-width: 580px;
    text-align: center;
    font-size: 1.3em;
    font-weight: 500;
    line-height: 1.3em;
}

.home__courses-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    justify-items: center;
    gap: 3rem;
    margin-top: 2rem;
    width: 100%;
    max-width: calc(1000px + 9rem);
}

.home__course-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 250px;
    overflow: visible;
}

.home__course-item img {
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: min-content;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    object-fit: cover;
    transition: rotate 0.3s;
}

.home__course-item h4 {
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    font-size: 1.1em;
    font-weight: 700;
    line-height: 1.35em;
    transition: color 0.3s, translate 0.3s;
}

.home__course-item:hover h4 {
    color: var(--color-blue-4);
    translate: 0 5px;
}

.home__course-item:hover:nth-child(2n) img {
    rotate: -6deg;
}

.home__course-item:hover:nth-child(2n + 1) img {
    rotate: 6deg;
}

/* Blog */
.home__blog {
    background: url('../assets/img/dive-cenotes-mexico.jpg') center center no-repeat;
    background-size: cover;
}

.home__blog-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: calc(100px + 2rem) 6rem 4rem 6rem;
    width: 100%;
    min-height: 100vh;
    background-color: #00000066;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.home__blog-content h2 {
    margin: 0;
    font-size: 3.2em;
    font-weight: 800;
}

.home__blog-content > a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    font-size: 1.35em;
    font-weight: 500;
    transition: border-bottom 0.25s;
}
.home__blog-content > a i {
    transition: translate 0.3s;
}
.home__blog-content > a span {
    transition: opacity 0.3s, translate 0.3s;
}
.home__blog-content > a:hover span {
    translate: 0.8rem;
    opacity: 0.35;
}
.home__blog-content > a:hover i {
    translate: 0.5rem;
}

.home__blog-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    width: 100%;
}

.home__blog-list::-webkit-scrollbar {
    height: 3px;
    transition: height 0.25s;
}

.home__blog-list::-webkit-scrollbar-track {
    background: #FFFFFF0C;
    border-radius: 1.5px;
}

.home__blog-list::-webkit-scrollbar-thumb {
    background: var(--color-white);
    border-radius: 1.5px;
}

.home__blog-list:hover::-webkit-scrollbar {
    height: 8px;
}

.blog__card {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 45px;
    row-gap: 1.2rem;
    padding: 1.6rem;
    width: min-content;
    height: 275px;
    aspect-ratio: 5 / 4;
    border: 1px solid var(--color-white);
    border-radius: 20px;
    background-color: #FFFFFF00;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transition: background-color 0.3s, color 0.3s;
}

.blog__card header {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%;
}

.blog__card h2 {
    display: -webkit-box;
    margin: 0;
    color: var(--color-white);
    font-size: 1.35em;
    font-weight: 500;
    line-height: 1.4em;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog__card time {
    color: var(--color-white);
    text-transform: uppercase;
    font-size: 1.1em;
    font-weight: 500;
    opacity: 0.65;
    transition: color 0.3s;
}

.blog__card > a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: auto 0 0 auto;
    padding: 0 1.5rem;
    height: 45px;
    background-color: var(--color-white);
    outline: 0px solid var(--color-dark);
    border-radius: 15px;
    color: var(--color-dark);
    font-size: 1.3em;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}

.blog__card:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
}

.blog__card:hover h2 {
    color: var(--color-dark);
}

.blog__card:hover time {
    color: var(--color-dark);
}

.blog__card:hover > a {
    outline: 1.2px solid var(--color-dark);
}

.blog__card > a:hover {
    background-color: var(--color-dark);
    color: var(--color-white);
}

.home__blog-list div {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.6rem;
    width: min-content;
    height: 275px;
    aspect-ratio: 5 / 4;
    border: 1px solid var(--color-white);
    border-radius: 20px;
    background-color: #FFFFFF00;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transition: background-color 0.3s, color 0.3s;
}

.home__blog-list span {
    color: var(--color-white);
    text-transform: uppercase;
    font-size: 1.1em;
    font-weight: 500;
    opacity: 0.65;
    transition: color 0.3s;
}

.home__blog-list h4 {
    display: -webkit-box;
    margin: 0;
    font-size: 1.35em;
    font-weight: 500;
    line-height: 1.4em;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home__blog-list div a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: auto 0 0 auto;
    padding: 0 1.5rem;
    height: 45px;
    background-color: var(--color-white);
    outline: 0px solid var(--color-dark);
    border-radius: 15px;
    color: var(--color-dark);
    font-size: 1.3em;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}

.home__blog-list div:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
}

.home__blog-list div:hover span {
    color: var(--color-dark);
}

.home__blog-list div:hover a {
    outline: 1.2px solid var(--color-dark);
}

.home__blog-list div a:hover {
    background-color: var(--color-dark);
    color: var(--color-white);
}

.home__blog-error {
    display: none;
    margin: auto 0;
    text-align: center;
    font-size: 1.8em;
    font-weight: 600;
}

/* Contact */
.home__contact {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto min-content;
    justify-items: center;
    column-gap: 2.5rem;
    row-gap: 2rem;
    padding: 100px 6rem 0 6rem;
    width: 100%;
    height: 100%;
    background: radial-gradient(at right bottom, #040608 0%, #0071A7 100%);
}

/* Form */
.home__contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-width: 500px;
}

.home__contact h2 {
    text-transform: none;
    font-size: 6em;
    font-weight: 800;
    line-height: 1em;
}

.home__contact h3 {
    margin: 0 0 0 auto;
    font-size: 1.5em;
    font-weight: 500;
}

.home__contact input,
.home__contact textarea {
    display: block;
    margin-bottom: 1rem;
    padding: 0.5rem 1.2rem;
    width: 100%;
    height: 45px;
    background-color: transparent;
    border: 1px solid var(--color-white);
    outline: none;
    border-radius: 16px;
    color: var(--color-white);
    font-size: 1.3em;
    font-weight: 500;
    transition: background-color 0.25s;
}

.home__contact textarea {
    margin-bottom: 2.5rem;
    height: 90px;
    resize: none;
}

.home__contact input::placeholder,
.home__contact textarea::placeholder {
    color: var(--color-white);
}

.home__contact input:focus,
.home__contact textarea:focus {
    background-color: #FFFFFF19;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}

.home__contact button {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0 2rem;
    height: 45px;
    background-color: var(--color-white);
    outline: none;
    border: none;
    border-radius: 16px;
    color: var(--color-dark);
    font-size: 1.3em;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}

.home__contact button:hover {
    background-color: var(--color-dark);
    color: var(--color-white);
}

/* Social media */
.home__contact-sm {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.home__contact-sm a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 45px;
    height: 45px;
    background-color: var(--color-white);
    border-radius: 22.5px;
    color: var(--color-dark);
    font-size: 1.3em;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}

.home__contact-sm a.whats {
    padding: 0 2rem;
    width: unset;
    background-color: var(--color-green);
    color: var(--color-white);
}

.home__contact-sm a.whats i {
    font-size: 1.2em;
}

.home__contact-sm a:hover:not(.whats) {
    background-color: var(--color-dark);
    color: var(--color-white);
}

/* Footer */
.home__contact-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    column-gap: 2rem;
    row-gap: 1.2rem;
    padding: 1.5rem 3rem;
    width: 100%;
    min-height: 80px;
    max-width: 900px;
    font-size: 1.1em;
}

.home__contact-footer a,
.home__contact-footer div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.home__contact-footer img {
    display: block;
    margin-top: 2px;
    width: max-content;
    height: 17px;
    object-fit: contain;
}

.home__contact a.simple:hover {
    text-decoration: underline;
}



/* --------------------------------------About Us-------------------------------------- */
.about {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 80px auto;
    background: radial-gradient(at right bottom, #040608 0%, #0071A7 100%);
    overflow: hidden;
}

/* Header */
.about__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    width: 100%;
    height: 100%;
}

.about__header .back {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--color-white);
    font-size: 1.15em;
    font-weight: 600;
    cursor: pointer;
}
.about__header i,
.about__header .back span {
    transition: translate 0.3s, opacity 0.3s;
}
.about__header .back:hover i {
    translate: -0.5rem;
}
.about__header .back:hover span {
    opacity: 0.15;
    translate: -0.8rem;
}

/* Team */
.about__team {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 3rem 1.5rem;
    height: 100%;
}

.about__team h1 {
    margin: 0;
    text-transform: uppercase;
    font-size: 2.6em;
    font-weight: 800;
}

.about__team-list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    column-gap: 2rem;
    row-gap: 3rem;
}

.about__team-member {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    max-width: 350px;
    text-align: center;
    cursor: pointer;
}

.about__team-member img {
    display: block;
    width: 100%;
    height: min-content;
    aspect-ratio: 1 / 1;
    border-radius: 30px;
    object-fit: cover;
    transition: scale 0.3s;
}

.about__team-member div {
    transition: translate 0.3s;
}

.about__team-member h4 {
    margin: 0;
    font-size: 1.8em;
    font-weight: 800;
    line-height: 1.6em;
}

.about__team-member h5 {
    margin: 0;
    font-size: 1em;
    font-weight: 700;
}

.about__team-member:hover img {
    scale: 1.05;
}

.about__team-member:hover div {
    translate: 0 8.75px;
}

/* Info */
.about__info {
    position: fixed;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 30px 1fr 30px;
    top: 0;
    right: 0;
    gap: 2rem;
    padding: 2.5rem;
    width: 100%;
    height: 100vh;
    max-width: 575px;
    background-color: var(--color-white);
    translate: 100%;
    transition: translate 0.6s;
    z-index: 250;
}

.about__info button {
    align-self: center;
    justify-self: end;
    background-color: transparent;
    outline: none;
    border: none;
    color: var(--color-dark);
    font-size: 1.4em;
    cursor: pointer;
}

.about__info div {
    align-self: center;
    display: block;
    padding-right: 1rem;
    width: 100%;
    height: min-content;
    max-height: calc(100vh - 9rem - 60px);
    color: var(--color-dark);
    overflow: auto;
}

.about__info img {
    justify-self: end;
    display: block;
    width: 95px;
    height: 100%;
    object-fit: contain;
}

.about__info h2 {
    margin: 0;
    font-size: 2.1em;
    font-weight: 800;
}

.about__info h3 {
    margin: 5px 0 3rem 0;
    text-transform: uppercase;
    font-size: 1.1em;
    font-weight: 800;
}

.about__info p {
    margin: 0;
    padding-bottom: 5px;
    font-size: 1.2em;
    font-weight: 500;
    line-height: 1.35em;
}



/* --------------------------------------Template-------------------------------------- */

/* Buttons */
.temp__whats,
.temp__book-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 1.5rem;
    width: 190px;
    height: 55px;
    background-color: var(--color-blue-2);
    outline: none;
    border: none;
    border-radius: 16px;
    color: var(--color-white);
    font-size: 1.3em;
    font-weight: 600;
    overflow: hidden;
}

.temp__whats {
    background-color: var(--color-green);
}

.temp__whats span,
.temp__book-btn span {
    position: relative;
    width: 100%;
    color: var(--color-white);
    text-align: center;
    transition: color 0.3s, translate 0.3s;
    z-index: 20;
}

.temp__whats div,
.temp__book-btn div {
    position: absolute;
    display: block;
    top: 0;
    left: calc(-100% - 55px);
    width: calc(100% + 55px);
    height: 100%;
    background-color: var(--color-white);
    border-radius: 0 27.5px 27.5px 0;
    transition: left 0.3s;
    z-index: 5;
}

.temp__whats .fa-arrow-right-long,
.temp__book-btn .fa-arrow-right-long {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    translate: 0 -50%;
    color: var(--color-blue-2);
    transition: opacity 0.3s;
    opacity: 0;
    z-index: 10;
}

.temp__whats .fa-arrow-right-long {
    color: var(--color-green);
}

.temp__whats:hover span {
    color: var(--color-green);
    translate: calc(-1rem - 1em);
}

.temp__book-btn:hover span {
    color: var(--color-blue-2);
    translate: calc(-1rem - 1em);
}

.temp__whats:hover div,
.temp__book-btn:hover div {
    left: 0;
}

.temp__whats:hover .fa-arrow-right-long,
.temp__book-btn:hover .fa-arrow-right-long {
    opacity: 1;
}

/* Hero */
.temp__hero > div {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 80px auto;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background-color: #00000059;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 1;
}

.temp__hero > picture {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.temp__hero > picture img {
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    object-fit: cover;
}

.temp__hero-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    width: 100%;
    height: 100%;
}

.temp__hero-header .back {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--color-white);
    font-size: 1.15em;
    font-weight: 600;
    cursor: pointer;
}

.temp__hero-header .back i,
.temp__hero-header .back span {
    transition: translate 0.3s, opacity 0.3s;
}

.temp__hero-header .back:hover i {
    translate: -0.5rem;
}

.temp__hero-header .back:hover span {
    opacity: 0.15;
    translate: -0.8rem;
}

.temp__hero-cont {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 3rem 3rem 3rem;
}

.temp__hero-cont h1 {
    margin: 0 auto;
    max-width: 630px;
    text-align: center;
    font-size: 2.8em;
    font-weight: 700;
}

.temp__hero-cont h2 {
    margin: 3rem 0 2rem 0;
    text-align: center;
    text-transform: uppercase;
    font-size: 1.85em;
    font-weight: 600;
}

.temp__hero-cont img {
    display: block;
    margin: 3rem auto;
    height: 80px;
    object-fit: contain;
}

.temp__hero-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1.5rem;
    row-gap: 2rem;
    width: 100%;
}

.temp__hero-bullets {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    width: 100%;
    column-gap: 0.6rem;
    row-gap: 0.8rem;
    text-transform: uppercase;
    font-size: 1.2em;
    font-weight: 600;
}

.temp__hero-dive-in {
    align-self: end;
    justify-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.95em;
    font-weight: 600;
}

.temp__hero-info .temp__whats {
    align-self: end;
    justify-self: end;
    margin: 0 2rem 1rem 0;
}

/* Description */
.temp__info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}

.temp__desc-cont {
    display: grid;
    grid-template-columns: 16fr 17fr;
    gap: 1rem;
    min-height: 73vh;
}

.temp__desc-cont img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.temp__desc {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    padding: 3rem;
    width: 100%;
    height: 100%;
    background: radial-gradient(at top right, #040608 0%, #0071A7 100%);
    border-radius: 10px;
    text-align: center;
}

.temp__desc.in-grid {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.temp__desc h3 {
    margin: 0;
    max-width: 500px;
    font-size: 2.3em;
    font-weight: 800;
}

.temp__desc p {
    margin: 0;
    max-width: 500px;
    font-size: 1.3em;
}

.temp__desc ul {
    list-style-position: inside;
    margin: 0;
    padding-left: 0;
    max-width: 500px;
    font-size: 1.2em;
    line-height: 1.4em;
}

/* Comments */
.temp__bottom {
    display: grid;
    grid-template-columns: 5fr 4fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    width: 100%;
}

.temp__comment-cont {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    width: 100%;
    height: 100%;
    background: radial-gradient(at left bottom, #040608 0%, #0071A7 100%);
    border-radius: 10px;
}

.temp__comment {
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-template-rows: auto auto;
    column-gap: 2rem;
    row-gap: 1.5rem;
}

.temp__comment i {
    grid-row: 1 / 2;
    font-size: 1.6em;
}

.temp__comment i:first-child {
    grid-column: 1 / 2;
}

.temp__comment i:last-child {
    grid-column: 3 / 4;
    align-self: end;
}

.temp__comment p {
    margin: 0;
    max-width: 450px;
    font-size: 1.4em;
    font-weight: 500;
}

.temp__comment div {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    justify-self: end;
}

.temp__comment div p {
    font-weight: 700;
}

.temp__comment span {
    font-size: 1.3em;
    font-weight: 600;
    opacity: 0.5;
}

/* Book */
.temp__book {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    width: 100%;
    height: 100%;
    background-color: #FFFFFFF2;
    border-radius: 10px;
}

.temp__book h4 {
    margin: 0;
    color: var(--color-dark);
    text-align: center;
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1.35em;
}

.temp__book h4 span {
    font-size: 1.1em;
    font-weight: 800;
}

.temp__book div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 2rem;
    row-gap: 1rem;
}

.price__complement {
    font-weight: bold;
    color: rgb(121, 129, 151);
}

/* Footer */
.temp__footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr auto;
    padding: 2rem 3rem;
    width: 100%;
    height: 100%;
    background: radial-gradient(at right bottom, #040608 0%, #0071A7 100%);
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: 500;
}

.temp__footer-copy {
    display: grid;
    grid-template-columns: 1fr auto;
    row-gap: 3px;
    width: 90px;
    height: min-content;
}

.temp__footer-copy i {
    margin-top: 5px;
    font-size: 1em;
}

.temp__footer-copy span {
    font-size: 30px;
    font-weight: 600;
}

.temp__footer-copy span:last-child {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    font-size: 16px;
    font-weight: 500;
}

.temp__footer-sm {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0 0.8rem;
    height: 30px;
    background-color: transparent;
    border: 1px solid var(--color-white);
    border-radius: 15px;
    color: var(--color-white);
    font-size: 1.1em;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}

.temp__footer-sm.center {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    align-self: center;
    justify-self: center;
}

.temp__footer-sm:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
}

.temp__footer .simple {
    align-self: end;
}

.temp__footer .simple:hover {
    text-decoration: underline;
}

.temp__footer-atlantian {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 3px;
    margin: auto 0;
    font-size: 1.1em;
    font-weight: 500;
}

.temp__footer-atlantian * {
    transition: translate 0.3s;
}

.temp__footer-atlantian img {
    display: block;
    width: max-content;
    height: 17px;
    object-fit: contain;
}

.temp__footer-atlantian:hover img {
    translate: 1.2rem;
}

.temp__footer-atlantian:hover span {
    translate: -1.2rem;
}

/* Video */
.temp__info video {
    display: block;
    width: 100%;
    height: min-content;
    max-height: calc(100vh - 2rem);
    aspect-ratio: 25 / 14;
    border-radius: 10px;
    object-fit: cover;
}

/* Pop Up */
.temp__pop-up-cont {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    padding: 1rem;
    width: 100%;
    height: 100vh;
    background-color: #00000080;
    z-index: 50;
}

.temp__pop-up {
    display: flex;
    flex-direction: column;
    padding: 2rem 5rem 3rem 5rem;
    width: 100%;
    max-width: 750px;
    background-color: var(--color-white);
    border-radius: 20px;
    color: var(--color-dark);
    overflow: hidden;
}

.temp__pop-up > button {
    position: relative;
    right: -3rem;
    margin-left: auto;
    background-color: transparent;
    outline: none;
    border: none;
    color: var(--color-dark);
    font-size: 1.4em;
}

.temp__pop-up h3 {
    margin: 1rem 0 3rem 0;
    text-align: center;
    font-size: 1.7em;
    font-weight: 500;
}

.temp__pop-up p {
    margin: 2rem 0;
    font-size: 1.3em;
    font-weight: 500;
}

.temp__pop-up .small {
    font-size: 1.05em;
    font-weight: 500;
}

.temp__pop-up img {
    display: block;
    width: min-content;
    height: 30px;
    translate: -50%;
    object-fit: contain;
    /* Mirror imgage */
    -moz-transform: scale(-1, 1);
    -o-transform: scale(-1, 1);
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.temp__exp-inputs {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 120px 175px;
    grid-auto-rows: 45px;
    gap: 1rem;
}
.temp__exp-inputs :nth-child(1) {
    grid-column: 1 / 4;
    grid-row: 1 / 2;
}
.temp__exp-inputs :nth-child(2) {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
}

.temp__exp-inputs input,
.temp__exp-inputs select {
    display: block;
    padding: 0 1rem;
    width: 100%;
    height: 100%;
    background-color: transparent;
    outline: none;
    border: 1.2px solid var(--color-dark);
    border-radius: 12px;
    color: var(--color-dark);
    font-size: 1.2em;
    font-weight: 500;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    transition: background-color 0.3s;
}

.temp__exp-inputs input:focus,
.temp__exp-inputs select:focus {
    background-color: #03202F0C;
}

.temp__exp-inputs input::placeholder {
    color: #03202FCC;
}

.temp__exp-inputs input[type="date"] {
    color: #03202F80;
}

.temp__exp-inputs input#website {
    position: absolute;
    left: -9999px;
    width: 150px;
    height: 45px;
}

.temp__course-inputs {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.temp__course-inputs input,
.temp__course-inputs select {
    display: block;
    padding: 0 1rem;
    width: 100%;
    height: 45px;
    background-color: transparent;
    outline: none;
    border: 1.2px solid var(--color-dark);
    border-radius: 12px;
    color: var(--color-dark);
    font-size: 1.2em;
    font-weight: 500;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    transition: background-color 0.3s;

}

.temp__course-inputs input:focus,
.temp__course-inputs select:focus {
    background-color: #03202F0C;
}

.temp__course-inputs input::placeholder {
    color: #03202FCC;
}

.temp__course-inputs input#website {
    position: absolute;
    left: -9999px;
    width: 150px;
    height: 45px;
}

.temp__pop-up-btns {
    display: flex;
    justify-content: end;
    gap: 1rem;
    margin-top: 3rem;
    width: 100%;
}

.temp__pop-up-btns button {
    display: block;
    width: 200px;
    height: 50px;
    font-size: 1.17em;
    font-weight: 500;
    background-color: var(--color-dark);
    border: none;
    border-radius: 15px;
    color: var(--color-white);
}

.temp__pop-up-btns button:first-child {
    background-color: var(--color-white);
    border: 1px solid var(--color-dark);
    color: var(--color-dark);
}



/* ------------------------------------Stripe Form------------------------------------ */
.stripe {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 80px auto;
    background-color: var(--color-white);
}

.stripe>div {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.stripe>div:first-child {
    justify-content: start;
    padding: 0 2rem;
}

.stripe>div:last-child {
    padding: 2rem;
}

.stripe .back {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background-color: transparent;
    outline: none;
    border: none;
    color: var(--color-dark);
    font-size: 1.15em;
    font-weight: 600;
    cursor: pointer;
}

.stripe i,
.stripe .back span {
    transition: translate 0.3s, opacity 0.3s;
}

.stripe .back:hover i {
    translate: -0.5rem;
}

.stripe .back:hover span {
    opacity: 0.15;
    translate: -0.8rem;
}

.stripe h1 {
    margin: 0;
    color: var(--color-blue-2);
    font-size: 2.8em;
    font-weight: 800;
}

.stripe h2 {
    margin: 2rem 0 1rem 0;
    color: var(--color-dark);
    font-size: 1.8em;
    font-weight: 600;
}



/* --------------------------------------Success-------------------------------------- */

.success {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 80px auto;
    justify-items: center;
    background-color: var(--color-white);
}
.success > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.success > div:first-child {
    justify-content: end;
    padding: 0 2rem;
}
.success > div:last-child {
    display: flex;
    flex-direction: column;
    padding: 0 3rem;
    max-width: calc(1000px + 6rem);
}
.success h1 {
    margin: 0;
    color: var(--color-blue-2);
    font-size: 6.2em;
    font-weight: 800;
    line-height: 1em;
}
.success h2 {
    margin: 2rem 0 2rem 0;
    color: var(--color-dark);
    text-align: center;
    font-size: 2.3em;
    font-weight: 700;
}
.success p {
    margin: 0;
    color: var(--color-dark);
    text-align: center;
    font-size: 1.4em;
    font-weight: 600;
    opacity: 0.55;
}

.success__diver {
    display: block;
    margin: 1rem auto 1rem 0;
    width: 115.5px;
    height: 50px;
    object-fit: contain;
}

.success__sm {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.success__sm a {
    color: #369AC2;
    font-size: 2em;
    transition: color 0.25s;
}

.success__sm a:hover {
    color: var(--color-blue-2);
}

.success .back {
    display: flex;
    margin-left: auto;
    align-items: center;
    gap: 0.8rem;
    color: var(--color-dark);
    text-transform: uppercase;
    font-size: 1.1em;
    font-weight: 700;
    transition: color 0.3s;
}

.success .back i,
.success .back span {
    transition: translate 0.3s;
}

.success .back:hover {
    color: var(--color-blue-2);
}

.success .back:hover span {
    translate: 0.8rem;
}

.success .back:hover i {
    translate: 0.3rem;
}



/* ----------------------------------------Blog---------------------------------------- */
.blog__cont {
    display: block;
    width: 100%;
    height: 100vh;
    background: url('../assets/img/dive-cenotes-mexico.jpg') center center no-repeat;
    background-size: cover;
    overflow: auto;
}

.blog {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 80px auto;
    min-height: 100vh;
    background-color: #00000066;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.blog__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    width: 100%;
    height: 100%;
}

.blog__header .back {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--color-white);
    font-size: 1.15em;
    font-weight: 600;
    cursor: pointer;
}
.blog__header i,
.blog__header .back span {
    transition: translate 0.3s, opacity 0.3s;
}
.blog__header .back:hover i {
    translate: -0.5rem;
}
.blog__header .back:hover span {
    opacity: 0.15;
    translate: -0.8rem;
}

/* Content */
.blog__content {
    display: block;
    width: 100%;
    height: max-content;
    padding: 3rem 4rem;
}
.blog__content h1 {
    margin: 0 0 3rem 0;
    text-align: center;
    font-size: 3.1em;
    font-weight: 800;
}



/* -------------------------------------Blog Post------------------------------------- */
.blog-post {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 80px auto min-content;
    width: 100%;
    min-height: 100vh;
    background-color: var(--color-white);
    color: var(--color-dark);
}

/* Header */
.bp__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    width: 100%;
    height: 100%;
}

.bp__header .back {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background-color: transparent;
    outline: none;
    border: none;
    color: inherit;
    font-size: 1.15em;
    font-weight: 600;
    cursor: pointer;
}

.bp__header .back i,
.bp__header .back span {
    transition: translate 0.3s, opacity 0.3s;
}

.bp__header .back:hover i {
    translate: -0.5rem;
}

.bp__header .back:hover span {
    opacity: 0.15;
    translate: -0.8rem;
}

/* Content */
.bp__content {
    justify-self: center;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding: 0 6rem 4rem 6rem;
    width: 100%;
    max-width: calc(1100px + 8rem);
}

.bp__content h1 {
    margin: 3rem 0 2rem 0;
    font-size: 3.2em;
    font-weight: 800;
}

.bp__content h2 {
    margin: 0 0 3rem 0;
    font-size: 1.8em;
    font-weight: 600;
}

.bp__content h3 {
    margin: 0 0 3rem 0;
    font-size: 1.3em;
    font-weight: 500;
    opacity: 0.65;
}

.bp__content img {
    display: block;
    width: 100%;
    height: 350px;
    border-radius: 15px;
    object-fit: cover;
}

.bp__content p {
    margin: 5rem 0 2rem 0;
    font-size: 1.5em;
    font-weight: 500;
    line-height: 1.54em;
}

.bp__content span {
    margin-left: auto;
    font-style: italic;
    font-size: 1.5em;
    font-weight: 500;
}

.bp__video {
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
    background-color: var(--color-dark);
    border-radius: 15px;
    overflow: hidden;
}
.bp__video video {
    display: block;
    width: 100%;
    height: min-content;
    max-width: 706px;
    aspect-ratio: 30 / 17;
    object-fit: cover;
}

/* New Styles */
.post__content {
    justify-self: center;
    display: block;
    padding: 0 6rem 4rem 6rem;
    width: 100%;
    max-width: calc(1100px + 8rem);
}

.post__content h1 {
    margin: 3rem 0 2rem 0;
    font-size: 3.2em;
    font-weight: 800;
}

.post__content .date {
    margin: 0 0 3rem 0;
    font-size: 1.3em;
    font-weight: 500;
    opacity: 0.65;
}

.post__content .author {
    display: block;
    margin-top: 2rem;
    text-align: end;
    font-style: italic;
    font-size: 1.5em;
    font-weight: 500;
}

/* Content */
.post__content h2 {
    margin: 2.66rem 0 1.33rem 0;
    font-size: 2.5em;
}

.post__content h3 {
    margin: 2.66rem 0 1.33rem 0;
    font-size: 2em;
}

.post__content h4 {
    margin: 1.33rem 0;
    font-size: 1.7em;
}

.post__content h5 {
    margin: 1.33rem 0;
    font-size: 1.6em;
}

.post__content p,
.post__content ol,
.post__content ul {
    margin: 0.8rem 0;
    font-size: 1.5em;
}

.post__content ol {
    padding-left: 40px;
}

.post__content a {
    color: var(--color-blue);
    text-decoration: underline;
}

.post__content img {
    display: block;
    margin: 40px auto 60px auto;
    width: max-content;
    max-width: 100%;
    max-height: 350px;
    border-radius: 10px;
    object-fit: contain;
}

.ql-align-right {
    text-align: right;
}

.ql-align-center {
    text-align: center;
}

.ql-align-justify {
    text-align: justify;
}

.ql-indent-1 {
    padding-left: 2rem;
}

.ql-indent-2 {
    padding-left: 4rem;
}

.ql-indent-3 {
    padding-left: 6rem;
}

li[data-list=bullet] {
    list-style-type: disc;
}

li.ql-indent-1 {
    margin-left: 2rem;
    padding-left: 0;
    list-style-type: lower-alpha;
}

li.ql-indent-2 {
    margin-left: 4rem;
    padding-left: 0;
    list-style-type: lower-roman;
}

li.ql-indent-3 {
    margin-left: 6rem;
    padding-left: 0;
    list-style-type: decimal;
}

li[data-list=bullet].ql-indent-1 {
    margin-left: 2rem;
    padding-left: 0;
    list-style-type: circle;
}

li[data-list=bullet].ql-indent-2 {
    margin-left: 4rem;
    padding-left: 0;
    list-style-type: square;
}

li[data-list=bullet].ql-indent-3 {
    margin-left: 6rem;
    padding-left: 0;
    list-style-type: disc;
}

/* More Publications */
.bp__more-cont {
    display: block;
    width: 100%;
    background: center center no-repeat url('../assets/img/more-publications.png');
    background-size: cover;
    overflow: hidden;
}

.bp__more {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 100%;
    padding: 4rem 8rem 2rem 8rem;
    background-color: #00000059;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.bp__more h3 {
    margin: 0;
    color: var(--color-white);
    text-align: center;
    font-size: 2em;
    font-weight: 800;
}

.bp__more-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    width: 100%;
}

.bp__more-list::-webkit-scrollbar {
    height: 3px;
    transition: height 0.25s;
}

.bp__more-list::-webkit-scrollbar-track {
    background: #FFFFFF0C;
    border-radius: 1.5px;
}

.bp__more-list::-webkit-scrollbar-thumb {
    background: var(--color-white);
    border-radius: 1.5px;
}

.bp__more-list:hover::-webkit-scrollbar {
    height: 8px;
}



/* ----------------------------------------Card---------------------------------------- */
.card__cont {
    display: block;
    padding: 6rem 0;
    width: 100%;
    background-color: var(--color-dark);
}

.card {
    flex-direction: column;
    justify-content: start;
    margin: 0 auto;
    width: 100%;
    max-width: 480px;
    background-color: #FBFBF3F9;
    border-radius: 30px;
    overflow: hidden;
}

/* Intro */
.card__intro {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 59px 59px;
    width: 100%;
}

.card__intro > picture {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.card__intro > picture img {
    display: block;
    width: 100%;
    aspect-ratio: 13 / 8;
    max-width: 480px;
    max-height: 295.3846px;
    object-fit: cover;
}

.card__banner {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 1.5rem;
    width: 100%;
    aspect-ratio: 13 / 8;
    background: linear-gradient(180deg, #015680 0%, #6DC6DE00 100%);
    background-size: cover;
}

.card__banner img {
    display: block;
    width: max-content;
    height: 55px;
    object-fit: contain;
}

.card__banner h4 {
    margin: 0.65rem 0;
    text-align: end;
    font-size: 15px;
    font-weight: 700;
}

.card__photo {
    grid-column: 1 / 1;
    grid-row: 2 / 4;
    justify-self: center;
    position: relative;
    display: block;
    padding: 3px;
    height: 118px;
    aspect-ratio: 1 / 1;
    background-color: var(--color-light);
    border-radius: 50%;
}

.card__photo img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.card__photo button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 0;
    bottom: 0;
    width: 33px;
    height: 33px;
    background-color: #B9D0C7;
    outline: none;
    border: none;
    border-radius: 50%;
    color: var(--color-light);
    transition: background-color 0.3s ease;
}

.card__photo a:hover {
    background-color: var(--color-teal);
}

/* Contact */
.card__director {
    margin: 1.2rem 0;
    text-align: center;
    font-weight: 900;
    line-height: 1.5em;
}

.card__director h1 {
    margin: 0;
    color: var(--color-dark);
    font-size: 1.3em;
    font-weight: 700;
}

.card__director h2 {
    margin: 7px 0 1rem 0;
    color: var(--color-blue-2);
    font-size: 1.3em;
    font-weight: 600;
}

.card__links {
    display: flex;
    justify-content: center;
    gap: 1.6rem;
    align-items: center;
}

.card__links a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 70px;
    height: 70px;
    border-radius: 15px;
    transition: opacity 0.3s ease;
}

.card__links a:nth-child(1) {
    background-color: #4CA266;
}

.card__links a:nth-child(2) {
    background-color: #369AC2;
}

.card__links a:nth-child(3) {
    background-color: #015680;
}

.card__links i {
    font-size: 1.4em;
}

.card__links span {
    font-size: 0.7em;
}

.card__links a:hover {
    opacity: 0.75;
}

.card__sm {
    display: flex;
    justify-content: center;
    gap: 2.3rem;
    margin: 2.5rem 0;
}

.card__sm a {
    color: #98B5C3;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.card__sm a:hover {
    color: var(--color-blue-3);
}

.card__save {
    display: block;
    height: 55px;
    width: calc(100% - 4rem);
    background-color: var(--color-blue-2);
    outline: none;
    border: none;
    border-radius: 16px;
    color: var(--color-light);
    font-size: 1.3em;
    font-weight: 600;
}

.card__spacer {
    display: block;
    margin: 3rem 0;
    width: calc(100% - 2rem);
    height: 1.5px;
    background-color: #98B5C3;
    border-radius: 0.75px;
}

/* About */
.card__about {
    display: flex;
    flex-direction: column;
    padding: 0 2rem;
    font-weight: 900;
    line-height: 1.5em;
}

.card__about h2 {
    margin: 0;
    color: #82BED1;
    text-align: center;
    font-size: 1.2em;
    font-weight: 700;
}

.card__about h3 {
    margin: 1rem 0 0.6rem 0;
    color: #369AC2;
    font-size: 1em;
    font-weight: 700;
}

.card__about>div {
    display: block;
    padding: 1.5rem;
    width: 100%;
    background-color: var(--color-light);
    box-shadow: 2px 2px 5px #00000014;
    border-radius: 15px;
}

.card__about div.img {
    display: grid;
    grid-template-columns: 55px 1fr;
    align-items: center;
    gap: 1.5rem;
}

.card__about div.qr {
    padding: 0;
    overflow: hidden;
}

.card__about img {
    display: block;
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.card__about .large {
    min-height: 160px;
}

.card__about p {
    margin: 0;
    color: var(--color-dark);
    font-size: 1em;
    font-weight: 600;
    line-height: 1.3em;
}

.card__about span {
    color: var(--color-blue-2);
    font-size: 0.9em;
    font-weight: 600;
}

/* Atlantian */
.card__atlantian {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    margin: 2.5rem 0 2rem 0;
}

.card__atlantian span {
    color: #82BED1;
    font-size: 0.9em;
    font-weight: 600;
}

.card__atlantian img {
    display: block;
    height: 16.5px;
    object-fit: contain;
}


/* ----------------------------------------404---------------------------------------- */
.not-found {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 80px auto;
    justify-items: center;
    background-color: var(--color-white);
}

.not-found>div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.not-found>div:first-child {
    justify-content: end;
    padding: 0 2rem;
}

.not-found>div:last-child {
    flex-direction: column;
    padding: 0 3rem;
    max-width: calc(1000px + 6rem);
}

.not-found h2 {
    margin: 0;
    color: var(--color-dark);
    text-align: center;
    font-size: 2.3em;
    font-weight: 700;
}

.not-found h3 {
    margin: 1rem 0 5rem 0;
    color: var(--color-dark);
    text-align: center;
    font-size: 1.4em;
    font-weight: 600;
    opacity: 0.55;
}

.no-found__404 {
    display: block;
    height: 175px;
    object-fit: contain;
}

.no-found__diver {
    display: block;
    margin: 1rem auto 0 0;
    height: 50px;
    object-fit: contain;
}

.no-found__sm {
    display: flex;
    gap: 2rem;
}

.no-found__sm a {
    color: #369AC2;
    font-size: 2em;
    transition: color 0.25s;
}

.no-found__sm a:hover {
    color: var(--color-blue-2);
}

.not-found .back {
    display: flex;
    margin-left: auto;
    align-items: center;
    gap: 0.8rem;
    color: var(--color-dark);
    text-transform: uppercase;
    font-size: 1.1em;
    font-weight: 700;
    transition: color 0.3s;
}

.not-found .back i,
.not-found .back span {
    transition: translate 0.3s;
}

.not-found .back:hover {
    color: var(--color-blue-2);
}

.not-found .back:hover span {
    translate: 0.8rem;
}

.not-found .back:hover i {
    translate: 0.3rem;
}



/* --------------------------------------Thank You-------------------------------------- */
.thank-you {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    padding: 3rem;
    width: 100%;
    min-height: 100vh;
    background: radial-gradient(at right bottom, #040608 0%, #0071A7 100%);
}

.thank-you>a {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
    padding: 0 1.5rem;
    height: 60px;
    background-color: transparent;
    border: 1px solid var(--color-white);
    border-radius: 18px;
    color: var(--color-white);
    text-transform: uppercase;
    font-size: 1.2em;
    font-weight: 700;
}

.thank-you>a i {
    font-size: 1.2em;
}

.ty__sm {
    display: flex;
    gap: 1.5rem;
    margin-right: auto;
}

.ty__sm a {
    font-size: 2em;
    transition: color 0.2s;
}

.ty__sm a:hover {
    color: var(--color-blue-4);
}

.ty__message {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ty__message h1 {
    margin: 0;
    font-size: 7em;
    font-weight: 700;
    line-height: 1em;
    translate: 0 25%;
}

.ty__message img {
    display: block;
    width: 275px;
    height: 275px;
    object-fit: contain;
}

.ty__message p {
    margin: 1.8rem 0 0 0;
    text-align: center;
    font-size: 1.6em;
    font-weight: 500;
}

/* Diego */

/* Héroe con imagen en lugar de video */




/* --------------------------------------Specials-------------------------------------- */
.hidden {
    display: none;
}

.grecaptcha-badge {
    z-index: 100;
}



/* -------------------------------------Responsive------------------------------------- */


@media screen and (max-width: 1024px) {

    /* Header */
    body > header {
        padding: 2rem;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }

    /* Home */
    .home__about a {
        padding: 12px 1.2rem;
    }

    .home__exp-content {
        padding: 100px 4rem 2rem 4rem;
    }

    .home__exp-content h2 {
        font-size: 3.4em;
    }

    .home__exp-list {
        margin-top: 1rem;
    }

    .home__exp-item-cont {
        width: 220px;
        height: 290px;
    }

    .home__exp-item {
        grid-template-rows: 200px auto;
        padding: 10px;
    }

    .home__exp-item span {
        top: calc(0.8rem + 10px);
        right: calc(0.8rem + 10px);
        font-size: 0.92em;
    }

    .home__exp-item:hover span {
        translate: 10px -10px;
    }

    .home__exp-item:hover h4 {
        translate: -10px 10px;
    }

    .home__exp-item:hover .home__exp-arrow {
        translate: 10px 10px;
    }

    .home__courses {
        justify-content: start;
    }

    .home__courses h2 {
        font-size: 3.4em;
    }

    .home__course-item {
        width: 100%;
    }

    .home__blog-content {
        padding: 100px 6rem 2rem 6rem;
    }

    .home__blog-content h2 {
        font-size: 2.8em;
    }

    .home__blog-content > i {
        margin: 0.8rem 0;
        font-size: 1.8em;
    }

    .home__blog-list div {
        height: 250px;
    }

    .home__blog-list h4 {
        font-size: 1.25em;
    }

    .home__blog-list span {
        font-size: 1.05em;
    }

    .home__blog-list a {
        height: 42px;
        font-size: 1.25em;
    }

    .home__contact h2 {
        font-size: 5.2em;
    }

    .home__contact h3 {
        margin: 5px 0 2rem auto;
    }

    /* About Us */
    .about__team-list {
        flex-wrap: wrap;
    }

    .about__team-member {
        width: 280px;
    }

    .about__team {
        padding: 1.5rem;
    }

    /* Thank You */
    .thank-you {
        padding: 1.5rem 2.5rem;
    }

    .ty__sm a {
        font-size: 1.6em;
    }

    .ty__message h1 {
        font-size: 5.5em;
    }

    .ty__message img {
        width: 250px;
        height: 250px;
    }

    /* 404 */
    .no-found__404 {
        height: 140px;
    }

    .not-found h2 {
        margin-top: 3rem;
    }
}


@media screen and (max-width: 900px) {
    .home__contact-footer {
        justify-content: center;
    }

    /* Landing template */
    .temp__bottom {
        grid-template-rows: auto auto;
    }

    .temp__comment-cont,
    .temp__desc.in-grid {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .temp__book {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }
}

@media screen and (max-width: 768px) {
    /* General */
    .header__lang.index,
    nav:not(.mobile) {
        display: none;
    }
    body > header button {
        display: block;
    }
    .header__diver {
        display: none;
    }
    .header__whats {
        display: flex;
    }
    .home__whatsapp {
        display: none;
    }

    /* Home */
    .home__hero {
        padding: 200px 1.5rem 6rem 1.5rem;
    }
    .home__hero h1 {
        font-size: 2.2em;
    }
    .home__hero-comments {
        column-gap: 1.5rem;
    }
    .home__about-cont {
        align-items: start;
    }
    .home__about {
        grid-template-columns: 1fr;
        padding: 0 6rem 7rem 4rem;
    }
    .home__about img {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
        justify-self: center;
        margin: 0;
        max-width: 350px;
    }
    .home__about a {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
    }
    .home__exp-sub {
        display: flex;
    }
    .home__blog-content {
        padding: 100px 5rem 2rem 5rem;
    }
    /* Landing Template */
    .temp__hero-cont {
        padding: 2rem 3rem 1.5rem 3rem;
    }

    .temp__hero-info {
        grid-template-columns: 1fr 1fr;
    }

    .temp__hero-info .temp__whats {
        align-self: center;
        margin: 0;
    }

    .temp__hero-dive-in {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
    }

    .temp__desc-cont {
        grid-template-columns: 1fr;
    }

    .temp__desc-cont img {
        grid-row: 2 / 3;
        aspect-ratio: 16 / 9;
        height: min-content;
    }

    .temp__desc h3 {
        font-size: 2.1em;
    }

    .temp__bottom {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, auto);
    }

    .temp__comment-cont,
    .temp__desc.in-grid {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .temp__book {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .temp__footer {
        row-gap: 1.5rem;
    }

    .temp__pop-up {
        padding: 2rem 2rem 3rem 2rem;
    }

    .temp__pop-up>button {
        right: -0.5rem;
    }

    .temp__pop-up img {
        translate: -1rem;
    }

    .temp__exp-inputs {
        grid-template-columns: 4fr 3fr;
    }

    .temp__exp-inputs :nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .temp__exp-inputs :nth-child(4) {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .temp__pop-up-btns {
        margin: 3rem 0 1rem 0;
    }

    /* Blog Post */
    .bp__content {
        padding: 0 4rem 4rem 4rem;
    }
    .bp__content h1 {
        font-size: 2.6em;
    }
    .bp__more {
        padding: 4rem 2rem 2rem 2rem; 
    }

    /* 404 */
    .no-found__404 {
        height: 84px;
    }

    .no-found__diver {
        height: 45px;
    }

    .not-found h2 {
        font-size: 2em;
    }

    .not-found h3 {
        font-size: 1.3em;
    }

    .no-found__sm {
        margin-bottom: 2rem;
    }

    /* Success */
    .success h1 {
        font-size: 5.2em;
    }

    .success h2 {
        font-size: 1.9em;
    }

    .success p {
        font-size: 1.3em;
    }
}

@media screen and (max-width: 600px) {
    .home__hero-comments {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        row-gap: 2rem;
    }
    .home__hero-comment:last-child {
        display: none;
    }
}

@media screen and (max-width: 480px) {

    /* Home */
    .home__paginator {
        right: 1.2rem;
    }

    .home__hero h1 {
        font-size: 2em;
    }

    .home__hero-titles {
        margin: 0;
    }

    .home__hero #hero-desk {
        display: none;
    }

    .home__hero #hero-mob {
        display: block;
    }

    .home__about {
        padding: 4rem 4rem 7rem 3rem;
    }

    .home__about h2 {
        font-size: 2em;
    }

    .home__experiences {
        align-items: start;
    }

    .home__exp-content {
        padding: 140px 3rem 5rem 3rem;
        height: max-content;
    }

    .home__exp-content h2 {
        font-size: 2.6em;
    }

    .home__exp-list {
        margin: 1rem auto 0 auto;
    }

    .home__courses {
        padding: 165px 3rem 7rem 3rem;
    }

    .home__courses h2 {
        font-size: 2.6em;
    }

    .home__blog-content {
        padding: 100px 3rem 4rem 3rem;
    }

    .home__blog-list div {
        flex-shrink: 0;
        width: 230px;
        height: 210px;
        aspect-ratio: unset;
    }

    .home__blog-list h4 {
        -webkit-line-clamp: 2;
    }

    .home__contact {
        padding: 165px 2rem 2rem 2rem;
    }

    .home__contact h2 {
        font-size: 4.5em;
    }

    .home__contact-bottom :nth-child(4) {
        margin: 0 0 0 0.5rem;
    }

    /* About us */
    .about__team-member {
        width: 250px;
    }

    /* Landing Template */
    .temp__hero-cont {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
    }

    .temp__hero-cont img {
        height: 65px;
    }

    .temp__hero-cont h1 {
        font-size: 2.3em;
    }

    .temp__hero-cont h2 {
        font-size: 1.6em;
    }

    .temp__hero-bullets {
        font-size: 1.05em;
    }

    .temp__hero-info .temp__whats {
        margin: 1rem 0;
    }

    .temp__hero-info {
        grid-template-columns: 1fr;
    }

    .temp__hero-dive-in {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .temp__desc-cont img {
        aspect-ratio: 4 / 3;
    }

    .temp__desc {
        padding: 3rem 2rem;
    }

    .temp__comment-cont {
        padding: 4rem 2rem;
    }

    .temp__comment {
        column-gap: 1rem;
    }

    .temp__footer {
        padding: 2rem;
    }

    .temp__footer {
        row-gap: 2.5rem;
    }

    .temp__pop-up {
        padding: 2rem 1rem 3rem 1rem;
    }

    .temp__exp-inputs {
        gap: 0.8rem;
    }

    .temp__exp-inputs input {
        width: unset;
    }

    .temp__exp-inputs :nth-child(3) {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
    }

    .temp__pop-up img {
        translate: unset;
    }

    .temp__pop-up>button {
        right: 0;
    }

    /* Blog */
    .blog__content {
        padding: 3rem 2rem;
    }

    .blog__card {
        width: 100%;
        height: unset;
        aspect-ratio: unset;
    }

    /* Blog Post */
    .bp__content {
        padding: 0 2rem 4rem 2rem;
    }
    .bp__content h1 {
        font-size: 2.2em;
    }
    .bp__content h2 {
        font-size: 1.6em;
    }
    .bp__content p,
    .bp__content span {
        font-size: 1.35em;
    }

    /* Entry */
    .post__content {
        padding: 0 2rem 4rem 2rem;
    }

    .post__content h1 {
        font-size: 2.2em;
    }

    .post__content h2 {
        font-size: 1.6em;
    }

    .post__content h3 {
        margin: 2.66rem 0 1.33rem 0;
        font-size: 1.5em;
    }

    .post__content h4 {
        margin: 1.33rem 0;
        font-size: 1.45em;
    }

    .post__content h5 {
        margin: 1.33rem 0;
        font-size: 1.4em;
    }

    .post__content p,
    .post__content ol,
    .post__content ul {
        font-size: 1.35em;
    }

    /* Thank You */
    .thank-you {
        padding: 1.5rem;
    }

    .ty__sm {
        gap: 1.2rem;
    }

    .ty__sm a {
        font-size: 1.4em;
    }

    .ty__message h1 {
        font-size: 4.2em;
    }

    /* Presentation card */
    .card__cont {
        padding: 0;
    }

    .card {
        border-radius: 0;
    }

    /* 404 */
    .not-found>div:last-child {
        padding: 0 1.5rem;
    }

    .no-found__404 {
        width: 100%;
        height: 90px;
        object-fit: cover;
    }

    /* Success */
    .success>div:last-child {
        padding: 2rem;
    }

    .success__diver {
        margin: 2.5rem auto 2.5rem 0;
    }
}

/* IPhone SE */
@media screen and (max-width: 376px) and (max-height: 668px) {

    /* Home */
    .home__hero h1 {
        font-size: 1.9em;
        margin: 0 4rem 0 3rem;
    }

    .home__exp-list {
        width: 220px;
    }

    .home__whatsapp {
        width: 55px;
        right: 1.2rem;
        bottom: 1.2rem;
    }

    .home__exp-sub {
        margin-bottom: 0;
        translate: 0 10px;
    }

    .home__courses {
        padding: calc(100px + 3rem) 3rem 7rem 3rem;
    }

    .home__contact {
        padding: 155px 4rem 5rem 2rem;
    }

    .home__contact-footer {
        padding: 1.5rem 1.5rem;
    }

    /* Landing Template */
    .temp__pop-up-cont {
        padding: 0;
    }

    .temp__pop-up {
        height: 100%;
        border-radius: 0;
    }

    .temp__pop-up h3 {
        margin: 1rem 0 2rem 0;
    }

    .temp__pop-up-btns {
        margin: 2rem 0 1rem 0;
    }

    /* Success */
    .success h1 {
        font-size: 4.5em;
    }

    .success h2 {
        font-size: 1.6em;
    }

    .success p {
        font-size: 1.2em;
    }
}



/* -------------------------------------Animations------------------------------------- */

.mobile.appear,
.temp__pop-up-cont.appear {
    animation: fade-in 0.3s;
}

.mobile.disappear,
.home__intro.disappear,
.temp__pop-up-cont.disappear {
    animation: fade-out 0.3s forwards;
}

#intro-diver {
    grid-column: 1 / 4;
    grid-row: 1 / 2;
    justify-self: center;
    animation: intro-diver 3.8s;
}

#intro-deep {
    animation: intro-deep 1.3s;
}

#intro-mex {
    animation: intro-mexico 1.3s;
}

#intro-rect {
    opacity: 0;
    scale: 0.6;
    animation: intro-rectangle 0.75s 1.15s forwards;
}


/* Keyframes */
@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 100%;
    }
}

@keyframes fade-out {
    0% {
        opacity: 100%;
    }

    100% {
        opacity: 0;
    }
}

@keyframes loader-animation {
    0% {
        top: 96px;
        left: 96px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 78px;
        left: 78px;
        width: 36px;
        height: 36px;
        opacity: 0;
    }
}

@keyframes loader-text {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

@keyframes intro-deep {
    from {
        opacity: 0;
        translate: -50%;
    }

    to {
        opacity: 1;
        translate: 0;
    }
}

@keyframes intro-mexico {
    from {
        opacity: 0;
        translate: 50%;
    }

    to {
        opacity: 1;
        translate: 0;
    }
}

@keyframes intro-rectangle {
    to {
        opacity: 1;
        scale: 1;
    }
}

@keyframes intro-diver {
    0% {
        opacity: 0;
        rotate: 45deg;
        translate: 0 -100%;
    }

    25% {
        opacity: 1;
    }

    34% {
        rotate: -5deg;
        translate: 0 10%;
    }

    56% {
        rotate: 3deg;
    }

    60% {
        translate: 0 -7%;
    }

    82% {
        rotate: -3deg;
        translate: 0 7%;
    }

    100% {
        rotate: 0;
        translate: 0;
    }
}