@font-face {
    font-family:Herculanum;
    src: url(../fonts/Herculanum.ttf);
}
@font-face {
    font-family:Papyrus;
    src: url(../fonts/Papyrus.ttf);
}
:root { /*Variables de CSS*/
    /*Variables de la Paleta de colores*/
    --principal: #233806; 
    --principal_dark: #233806; 
    --principal_medium: #4b612c; 
    --principal_light: #86996b; 

    --secondary: #ff871c; 
    --secondary_dark: #ff871c; 
    --secondary_medium: #f79e4f;
    --secondary_light: #f7c79c;
    
    --accent: #05174e; 
    --accent_dark: #05174e;
    --accent_medium: #2a4e66;
    --accent_light: #95abed; 
    
    --black_dark: #0D0D0D; 
    --black_medium: #1A1A1A; 
    --black_light: #333333; 

    --neutral: #F2F2F2; 
    --neutral_dark: #D9D9D9;
    --neutral_medium: #E6E6E6;
    --neutral_light: #FAFAFA;
    /*Tiempos de animación*/
    --animation_time_mobile_menu: 0.375s; 
}
/*Mobile First*/
/*General styles*/
html {
    font-family: Montserrat;
    font-size: 100%; /* 16px */
}
body {
    background-color: var(--neutral);
    margin: 0; /*No deje bordes a los lados de los elementos*/
    height: 100%;
}
main {
    overflow: hidden;
}
h2 {

    margin: 2rem 10dvw 2rem 10dvw;
    text-align: center;

    font-family: Herculanum;
    color: var(--principal_dark);


}
h3 {
    font-family: Papyrus;
    color: var(--principal_medium);
}
p {
    font-size: 1rem;
    color: var(--principal_light);
}
.line_break {
    display: block;;
}
a {
    text-decoration: none;
    color: var(--principal);
}
a:hover h3, a:focus p, a:hover {
    text-decoration: underline;
    color: var(--secondary);
}
ul {
    list-style: none;
}

.Bussiness_Name{
    font-family: Herculanum;
}

.Button{
    font-size: 1rem;
    color: var(--principal);

    backdrop-filter: blur(10px);
    background-color: var(--secondary);
    border-radius: 10px;
    padding: 1rem 2rem;
}
.Mensaje{
    margin: 1rem 10dvw;
    text-align: center;
}

/*General Animations*/

.hidden.Mensaje:nth-child(3n+1) {
    opacity: 0;
    transform: translate(-50%,0);
    transition: all var(--animation_time_mobile_menu);
}
.hidden.Mensaje:nth-child(3n+2) {
    opacity: 0;
    transform: translate(50%,0);
    transition: all var(--animation_time_mobile_menu);
}
.hidden.Mensaje:nth-child(3n+3) {
    opacity: 0;
    transform: translate(0,50%);
    transition: all var(--animation_time_mobile_menu);
}

.hidden.show.Mensaje { /*Specifie the three to show*/
    opacity: 1;
    transform: translate(0,0);
}

/*Dark theme*/
svg.icon_white {
    fill: var(--accent);
    color: white;
    }

/*Header Container*/ 
header{
    display: contents; /*Makes the sticky work for some reason*/
    width: 100%;
    z-index: 100;
    background-color: var(--principal_medium);
}

header a {
    text-decoration: none;
    color: var(--neutral_light);
}

header p {
    color: var(--neutral_light);
}

/* Contact Info*/
.Header_Contact{ /*Select a class "." */
    box-sizing: border-box;
    height: 10dvh;
    width: 100%;

    background-color: var(--principal_medium);
    color: var(--neutral_light);
    
    font-size: 1rem;
    font-weight: 300;
}
.Header_Contact .Contact_Information {
    height: 100%;
    padding: 0 1rem; 
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content:space-around; 
}
.Header_Contact li {
    width:fit-content;
    list-style: none;
    color: var(--neutral_light);
}
.Header_Contact ul :last-child {
    align-self: flex-end;
}
.Social_Icons {
    display: flex;
}
.Header_Contact a {
    width: fit-content;
    box-sizing: border-box;
    color: var(--neutral_light);
    display: flex;
    align-items: center;
}
.Header_Contact p {
    line-height: 1em;
    font-size: 1em;
    margin: 0;
}
.Header_Contact .icon_white { /*Select and id with "#" */
    height: 1em;
    width: 1em;
    flex: 1 0 auto;
    margin-right: 1rem;
}
.Header_Contact .Line_color{
    stroke: var(--principal_medium); /*Mismo que el fondo*/
}
.Social_Icons a {
    box-sizing: border-box;
    width: 1em;
    height: 1em;
    margin-left: 1em;
}
.Social_Icons svg {
    font-size: 20px;
    color: var(--neutral_dark);
}

/* navigation bar*/
nav {
    height: 10dvh;
    width: 100%;
    
    position: sticky;
    position: -webkit-sticky; /* for Safari */
    top: 0; /*stays at the top when scrolled*/
    z-index: 90;
    
    background-color: var(--neutral_light);

    display: flex;
    align-items: center;

    color: var(--neutral);
    
}

.SideNavBar{ /*Mobile first, hiddes list*/
    height: 0; /*Hidden*/
    width: 100dvw;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 80;

    background-color: var(--neutral);

    overflow-x: hidden;

    transition: all var(--animation_time_mobile_menu);
    transition-timing-function: ease-out;

    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#MenuNav_Logo { /*Select and id with "#" */
    position: absolute;
    top: 0; /*animation starts here, from where it moves*/
    left: 2dvw;
    height: 5em;
    opacity: 0;
    transition-duration: 1s ;
}
#Menu_Flower { /*Select and id with "#" */
    position: absolute;
    bottom: 0;
    right: 0;
    height: 90dvw;
    z-index: 79;
}

.SideNavBar ul{
    display: inline-flex;
    flex-direction: column;
}
.SideNavBar li{
    display: block;
    margin: .5rem 0;
    text-align: left;
}
.SideNavBar a {
    color: var(--principal_light);
    font-size: 2rem;
    opacity: 0;
}

.SideNavBar li:nth-child(1) a {
    transition: all 275ms 175ms
}
.SideNavBar li:nth-child(2) a {
    transition: all 275ms 225ms
}
.SideNavBar li:nth-child(3) a {
    transition: all 275ms 275ms
}
.SideNavBar_Containter_Background { /*Bottom to up background glass*/
    height: 0;
    width: 100dvw;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 70;

    background: linear-gradient(90deg, transparent, var(--neutral_light));
    opacity: 0.4;
    backdrop-filter: blur(100px);

    transition-duration: 0.05s;
}

.NavBar_Logo_Container{
    display: flex;
    height: 100%;
    align-items: center;
    margin-right: auto;
}
#Header_Logo{ /*Select and id with "#" */
    height: 3.5em;
    flex: 1 0 auto;
}
.BurgerMenu{
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    margin: 1em;
    z-index: 100;
}
.Burger_TopBar, .Burger_MiddleBar, .Burger_BottomBar {
    height: 0.5vh;
    width: 1.5rem;
    background-color: var(--principal);
    margin: 0.2vh 0;

    transition: var(--animation_time_mobile_menu);;
    transition-timing-function: ease-out;
}

/*Mobile Opened Menu Animations*/
.Open_Menu_Mobile .Burger_TopBar, .Open_Menu_Mobile .Burger_BottomBar {
    opacity: 0;
}
.Open_Menu_Mobile .Burger_MiddleBar {
    width: 0.75rem;
    background-color: var(--principal);
}

.Open_Menu_Mobile .SideNavBar {
    height: 100dvh;
    overflow-x:visible;
}
.Open_Menu_Mobile .SideNavBar_Containter_Background {
    height: 80dvh;
    background: linear-gradient(180deg, transparent 40%, var(--white_highlight));
}
.Open_Menu_Mobile .SideNavBar a {
    opacity: 1;
}

.Open_Menu_Mobile #MenuNav_Logo { /*to here where it should end*/
    top: 10dvh;
    left: 2dvw;
    opacity: 1;
}

/*Main*/

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Detrás del contenido */
}

main {
    color: #555;
    margin: 0;
    position: static;
}

.Galería_Título {
    height: 75dvh;
    width: 100dvw;

    background-color: var(--neutral);
    overflow: hidden;
    
    position: relative;
    top: 0;
    left: 0;
    z-index: 10;

    margin: 0;

}
h1 {
    
    margin-top: 4rem;
    margin-left: 2rem;
    width: 45%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;

    color: var(--neutral_light);
    font-size: 7vw;
    font-weight: 700;
    font-stretch: semi-expanded;
    text-shadow: 1px 1px 0px var(--principal);
    text-align: justify;;
}

h1 .line_break {
    font-family: Herculanum;
    font-size: 1.4em;
}

.Button_Cita{
    position: absolute;
    bottom: 0;
    right: 0;
    margin-right: 2rem;
    margin-bottom: 4rem;
    z-index: 20;
}

.Main_Video_Background{
    height: 100%;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(0, 0, 0, 0.5);
    
}

.Main_Video_Background video{
    height: 110%;
    flex: 0 1 auto;
}

.Galería_Título .Filter{
    position: absolute;
    z-index: 11;
    background-color: rgba(0, 0, 0, 0.4);
    height: 100%;
    width: 100%;
}
/*Sección Servicios*/

.Servicios{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 0;
}

.Servicios::before { /*Background of Services*/
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.Servicios .Servicio {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.Servicio a {
    margin: 0 10dvw;
}

.Servicio_Descripcion {
    display: block;
    margin: 0 10dvw 1rem 10dvw;
    text-decoration: none;
    backdrop-filter: blur(2px);
}

.Servicios .Servicio_Título{
    align-self: flex-start;
}

.Servicios h3 {
    text-align: left;
    margin-top: 0.5em;
    margin-bottom: 0;
}

.Servicios_Icons_Container {
    margin-bottom: 1rem;
}

.Servicios_Icons_Container svg {
    height: 4em;
    width: 4em;
}

.Servicios_Icons_Container img {
    width: 80dvw;
}

.Servicio .Button_Container{
    margin-top: 0;
    margin-bottom: 1rem;
    align-self: flex-start;
}

/*Transitions of the services, show on the screen*/
.Servicios_Icons_Container .hidden {
    opacity: 0;
    transform: translate(0,50%);
    transition: all var(--animation_time_mobile_menu);
}

.Servicios_Icons_Container .show {
    opacity: 1;
    transform: translate(0,0);
}
/*Transitions of the services, show on the screen*/

.curve-divisor.top {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.curve-divisor svg {
    position: relative;
    display: block;
    width: calc(152% + 1.3px);
    height: 5rem;
}

.curve-divisor.top .shape-fill {
    fill: var(--principal_medium);
}

/*Sección Experiencia*/

.Experiencia {
    background-color: var(--principal_medium);
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 0;
    overflow: hidden;
}

.Experiencia .Decoration_Section {
    position: absolute;
    opacity: 0.8;
    z-index: 0;
}

.Experiencia .Top_Decoration {
    top:-1dvh;
    left: -5dvw;
    height: 15dvh;
    transform: rotate(200deg);
}

.Experiencia .Bottom_Decoration {
    bottom: 0dvh;
    right: 0dvw;
    height: 15dvh;
    transform: rotate(0deg);
}

.Experiencia h2 {
    padding-top: 2rem;
    color: var(--neutral_dark);
}

.Experiencia .Mensaje {
    color: var(--neutral_light);
}

.Experiencia .slider_container{
    box-sizing: border-box;
    width: 80vw;
    height: 80vw;;
    border-radius: 8px;
    margin: 1rem 10dvw;
    position: relative;
    overflow-x: scroll;
    overflow-y: hidden;
}

.Experiencia .slider_container ul{
    display: flex;
    padding: 0;
    margin: 0;
    width: 500%; /*Acorde al número de imágenes*/

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    animation: slide-cursos 25s infinite alternate ease-in-out;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.Experiencia .slider_container ul::-webkit-scrollbar {
    display: none;
}

@keyframes slide-cursos {
    0% {margin-left: 0%;}
    19% {margin-left: 0%;}

    20% {margin-left: -100%;}
    39% {margin-left: -100%;}

    40% {margin-left: -200%;}
    59% {margin-left: -200%;}

    60% {margin-left: -300%;}
    79% {margin-left: -300%;}

    80% {margin-left: -400%;}
    100% {margin-left: -400%;}
}

.Experiencia .slider_container li{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.Experiencia .slider_container img{
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    object-fit: cover;
    scroll-snap-align: start;
}

.Experiencia .Instagram_Container {
    margin-bottom: 2rem;
}

.Experiencia .Instagram_Container a {
    box-sizing: border-box;
    display: flex;
    height: fit-content;
    width: fit-content;
    margin: auto;

    background-color: var(--secondary);
    border-radius: 10px;
    text-decoration: none;
    align-items: center;
}

.Experiencia .Instagram_Container svg{
    width: 2em;
    height: 2em;
    margin-left: 1em;
    margin-right: 1em;
    color: var(--neutral_light);
}
.Experiencia .Instagram_Container p {
    margin-right: 1em;
    color: var(--principal);
}

.Video_Experience video{
    width: 100%;
    border-radius: 8px;
}

/*Sección Ubicación*/

.Ubicación {
    padding: 0;
    padding-bottom: 1rem;
    position: relative;
    margin-top: 0;
}

.curve-divisor.bottom {
    position: relative;
    top: -1px;
    left: 0;
    z-index: 10;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(0deg);
}

.curve-divisor.bottom .shape-fill  {
    fill: var(--principal_medium);
}

.Ubicación::before { 
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    /*background-image: url('../images/background.svg');*/
    background-size: cover;
    background-repeat: repeat;
    background-position: center;
    z-index: -1;
}

.Ubicación .Oficina_Container {
    height: fit-content;
    margin: 0 1rem;

    display: grid;
    grid-template-rows: auto auto auto auto auto auto auto;
    grid-template-columns: auto;
    grid-template-areas:
    "Mensaje"
    "Imagen"
    "Horario"
    "Dirección"
    "Teléfono"
    "Email"
    "Mapa";
    align-items: start;
    justify-items: center;
}

.Ubicación .Oficina_Container :nth-child(1) {
    grid-area: Mensaje;
}
.Ubicación .Oficina_Container :nth-child(2) {
    grid-area: Imagen;
}
.Ubicación .Oficina_Container :nth-child(3) {
    grid-area: Horario;
    margin-top: 1rem;
}
.Ubicación .Oficina_Container :nth-child(4) {
    grid-area: Dirección;
}
.Ubicación .Oficina_Container :nth-child(5) {
    grid-area: Teléfono;
}
.Ubicación .Oficina_Container :nth-child(6) {
    grid-area: Email;
}
.Ubicación .Oficina_Container :nth-child(7) {
    grid-area: Mapa;
    margin-top: 1rem;
}

.Ubicación .Oficina_Container img {
    box-sizing: border-box;
    height: 80vw;
    width: 80vw;
    border-radius: 8px;

    display: block;
    margin: auto;
}
.Ubicación .Oficina_Container :nth-child(1) {
    text-align: center;
}

.Ubicación .Oficina_Container p {
    text-align: center;
    margin: .5rem 0;
    color: var(--principal_light);
}

.Ubicación .Map_Container {
    margin: 0 5dvw;
}

.Ubicación .GoogleMaps {
    height: 50vw;
    width: 100%;
}

/*Footer*/
footer {
    position: relative;
    background-color: var(--principal_light);
    margin: 0;
    padding: 1rem;
    color: var(--principal);
}

.Footer_Nav{
    margin: 1rem;
    padding: 0;
}

.Footer_Nav li {
    margin-bottom: 0.2rem; /* Agrega espacio entre los elementos li */
    color: var(--principal);
}

.Footer_Nav a {
    color: var(--principal);
}

#Footer_Logo { /*Select and id with "#" */
    position: absolute;
    top: 2rem;
    right: 5dvw;
    height: 5em;
}
hr {
    margin: 0 5dvw;
    color: var(--principal_medium);
} 

.Footer_Rights {
    margin: 0 1rem;
    color: var(--principal);
}

.Footer_Rights p {
    color: var(--principal);
}

footer .Credist{
    margin: 1rem;
}

/*Breakpoints: Other Devices*/
/*Tablet*/
@media screen and (min-width: 768px) {
    html {
        font-size: 28px;
    }
    h1 {
        font-size: 6vw;
    }
    h2 {
        font-size: 1.5rem;
    }
    h3 {
        font-size: 1.2rem;
    }
    p {
        font-size: 1rem;
    }
    .Header_Contact p {
        font-size: 1rem;
    }
    .Header_Contact .icon_white { /*Select and id with "#" */
        height: 1.2rem;
        width: 1.2rem;
    }
    .Social_Icons {
        margin-right: 1rem;
    }

    .Social_Icons li {
        margin-right: 1rem;
    }

    .SideNavBar ul{
        margin-left: 2dvw;
    }

    .SideNavBar a {
        font-size: 2rem;
    }
    #Menu_Flower { /*Select and id with "#" */
    height: 80dvw;
}
    #Header_Name_Logo {
        font-size: 1.5em;
    }
    .Button {
        font-size: 1.2rem;
    }
    
    .Button_Cita {
        font-size: 1.5rem;
    }

    .Experiencia .Top_Decoration {
    height: 20dvh;
    }

    .Experiencia .Bottom_Decoration {
    height: 25dvh;
    }
    
    .Servicios_Icons_Container svg {
        height: 6em;
        width: 6em;
    }

    .Ubicación .Oficina_Container {
    margin: 1rem 10dvw;
    width: 80dvw ;
    }

    .Ubicación .Map_Container {
    width: 100%;
    }

    .Ubicación .GoogleMaps {
    height: 20dvh;
    }
s
    footer {
        font: 2rem;
    }
}
/*Laptop Antigua*/
@media screen and (min-width: 1024px) {
    /*General*/
    html {
        font-size: 1.8dvw;
    }

    h1 {
        font-size: 4.5dvw;
    }
    h2 {
        font-size: 1.8rem;
    }
    h3 {
        font-size: 1.4rem;
    }
    p {
        font-size: 1rem;
    }
    /*Header and Nav*/

    .Header_Contact{
        position: relative;
        height: fit-content;
        padding: .5rem 0;
    }

    .Header_Contact p {
        font-size: 1rem;
    }

    .Header_Contact ul :last-child {
        position: relative;
        bottom: 0;
        left: 0;
    }

    .Header_Contact .icon_white { /*Select and id with "#" */
        height: 1rem;
        width: 1rem;
        margin: 0;
    }

    .Social_Icons {
        margin-right: 1rem;
    }

    .Social_Icons li {
        margin-right: 1rem;
    }

    /*Hide Mobile Menu*/

    .BurgerMenu{
        display: none;
    }
    .SideNavBar{
        position: relative;
        overflow-x:visible;
        height: fit-content;
        width: fit-content;
        background-color: transparent;
    }

    .SideNavBar ul{
        display: inline-flex;
        flex-direction: row;
        margin-right: 2rem;
    }
    .SideNavBar li{
        margin: 0 1rem;
        text-align: center;
    }

    .SideNavBar a {
        color: var(--principal);
        opacity: 1;
        font-size: 1rem;
        text-align: center;
    }

    #Header_Logo {
        height: 3rem;
        margin-left: 1rem;
    }

    #MenuNav_Logo {
        display: none;
    }
    #Menu_Flower {
        display: none;
    }
    /*Title*/
    .Galería_Título {
        height: 82dvh;
    }

    .Main_Video_Background video{
        height: 200%;
        flex: 1 1 auto;
        transform: scale(0.59) translateX(-69px);
    }
    .Button_Cita {
        font-size: 1.2rem;
    }
    /*Services*/
    .Servicios {
        padding-bottom: 3rem;
    }

    .Button {
        font-size: 1.2rem;
    }

    .Servicios_Icons_Container {
        margin: 1rem 20dvw;
        width: 80dvw;

        display: grid;
        grid-template-rows: fit-content(50%) fit-content(50%);
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
        "Servicio1  Servicio2"
        "Servicio3  Servicio4"
        "Servicio5  Servicio5";
        align-items: start;
        justify-items: start;
        gap: 2rem;
    }

    .Servicios_Icons_Container :nth-child(1) {
        grid-area: Servicio1;
    }
    .Servicios_Icons_Container :nth-child(2) {
        grid-area: Servicio2;
    }
    .Servicios_Icons_Container :nth-child(3) {
        grid-area: Servicio3;
    }
    .Servicios_Icons_Container :nth-child(4) {
        grid-area: Servicio4;
    }
    .Servicios_Icons_Container :nth-child(5) {
        grid-area: Servicio5;
        justify-self: center;
        width: 65%;
    }

    .Servicio a {
    margin: 0 0;
    }

    .Servicio_Descripcion {
    align-self: start;
    margin: 1rem 0;
    }
    
    .Servicios_Icons_Container svg {
        height: 5em;
        width: 5em;
    }
    .Servicios_Icons_Container img {
        width: 100%;    
    }

    /*Experience*/
    .Experiencia .slider_container{
        margin: auto;
        width: 40vw;
        height: 40vw;
    }

    .Experiencia .Top_Decoration {
    height: 35dvh;
    }

    .Experiencia .Bottom_Decoration {
    height: 35dvh;
    }

    .Video_Experience video {
        margin-left: 20%;
        width: 60%;
        border-radius: 8px;
    }

    .Experiencia_2 video {
        margin-left: 40%;
        width: 20%;
    }

    /*Location*/
    .Ubicación .Oficina_Container img {
        width: 20vw;
        height: 20vw;
    }
    .Ubicación p {
        align-self: center;
    }
    .Ubicación .Oficina_Container {
        margin: 1rem 10dvw;
        width: 80dvw;
        grid-template-rows: auto auto auto auto auto;
        grid-template-columns: 50% 50%;
        grid-template-areas:
        "Mensaje  Mensaje"
        "Horario  Imagen"
        
        "Dirección Imagen"
        "Email Teléfono "
        "Mapa Mapa";
        align-items: start;
        justify-items: center;
    }

    .Ubicación .Oficina_Container :nth-child(1) {
        grid-area: Mensaje;
        justify-self: center;
    }
    .Ubicación .Oficina_Container :nth-child(2) {
        grid-area: Imagen;
    }
    .Ubicación .Oficina_Container :nth-child(3) {
        grid-area: Horario;
        margin-top: 1rem;
    }
    .Ubicación .Oficina_Container :nth-child(4) {
        grid-area: Dirección;
    }
    .Ubicación .Oficina_Container :nth-child(5) {
        grid-area: Teléfono;
    }
    .Ubicación .Oficina_Container :nth-child(6) {
        grid-area: Email;
    }
    .Ubicación .Oficina_Container :nth-child(7) {
        grid-area: Mapa;
        margin-top: 0.5rem;
    }

    .Ubicación .Map_Container {
        margin: 1rem 1rem;
        align-self: center;
        justify-self: center;
        width: 100%;
    }
    .Ubicación .GoogleMaps {
        height: 20vw;
        width: 100%;
    }
}
/*HD*/ /*Esta para las normales*/
@media screen and (min-width: 1280px) {

    html {
        font-size: 1.5dvw;
    }

    h1 {
        font-size: 2rem;
    }
    .Main_Video_Background video{
        height: 100dvw;
    }
}

/*Desktop*/
@media screen and (min-width: 1440px) {

    h1 {
        font-size: 2rem;
    }
}
/*FHD*/
@media screen and (min-width: 1920px) {

}
/*2K*/
@media screen and (min-width: 2560px) {

    

}
/*3K*/
@media screen and (min-width: 3440px) {
    html {
        font-size: 1.45dvw;
    }
}
/*4K*/
@media screen and (min-width: 3840px) {
    html {
        font-size: 1.45dvw;
    }
    h1 {
        font-size: 3rem;
    }
    
    .Main_Video_Background video{
        height: 200dvw;
        transform: scale(0.69) translateX(-300px) translateY(100px);
    }   
}

