@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500;1,900&display=swap");

/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
    --primary: #22a39f;
    --secondary: #088395;
    --sun: #f2f7a1;
    --gray: #333333;
    --softwhite: #f5f5f5;
}

/* Prevent font size inflation */
html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    scroll-behavior: smooth !important;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin-block-end: 0;
}

body {
    font-family: "Poppins", sans-serif;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
    list-style: none;
}

/* Set core body defaults */
body {
    min-height: 100vh;
    line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
    line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
    text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
    color: currentColor;
}

/* Make images easier to work with */
img,
picture {
    max-width: 100%;
    display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
    min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
    scroll-margin-block: 5ex;
}

/* Main Style Started */
.preload{
  
    overflow:hidden !important;
}

.loader-lay{
    position:fixed;
    height: 100%;
    width: 100%;
    overflow:hidden;
    background-color: var(--primary);
    display: flex;
    
    justify-content: center;
    align-items: center;

    z-index: 99999;
}

.loader {
  display: inline-block;
  width: 70px;
  height: 70px;
  border-radius: 10px;
  position: relative;
  border: 4px solid #Fff;
  animation: loader 2s infinite ease;
}

.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  
  25% {
    transform: rotate(180deg);
  }
  
  50% {
    transform: rotate(180deg);
  }
  
  75% {
    transform: rotate(360deg);
  }
  
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-inner {
  0% {
    height: 0%;
  }
  
  25% {
    height: 0%;
  }
  
  50% {
    height: 100%;
  }
  
  75% {
    height: 100%;
  }
  
  100% {
    height: 0%;
  }
}

/* Navbar Start */

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

nav .main-navbar {
    background-color: var(--softwhite);
    border-radius: 10px;
    padding: 1em 2em;
    width: 90%;

    position: absolute;
    top: 2em;

    display: flex;
    justify-content: space-between;

    -webkit-box-shadow: 0px 8px 10px -3px rgb(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 8px 10px -3px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 8px 10px -3px rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease 0s;

    z-index: 9;
}

.main-navbar .univ-logo {
    max-width: 20em;
}

.main-nav-menu {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    align-items: center;
}

.main-nav-menu .main-nav-link {
    text-decoration: none;
    color: var(--gray);
    font-size: 1.1rem;
    font-weight: 200;
    transition: all 0.3s ease 0s;
    scroll-behavior: smooth;
}

.main-nav-link:hover {
    color: var(--secondary);

    transition: all 0.3s ease 0s;
}
.nav-active {
    color: var(--primary) !important;
    font-weight: 600 !important;
}

.nav-sticky {
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
    border-radius: 0 !important;
}

   .play-audio-lay #toggleAudio{
        padding: 5px;
        border:none;
        border-radius: 1em;
        padding: 10px;
        background-color: var(--primary);
        color: var(--softwhite);
        outline:none;
        
    }
    
    .play-audio-lay #toggleAudio:focus{
        outline:none;
    }
/* Navbar End */

/* M Navbar */
.m-navbar {
    position: fixed;
    bottom: 10svh;
    z-index: 3;
    /* 
  display: flex;
  gap: 10px; */

    display: none;
}

.m-navbar a {
    background-color: var(--softwhite);

    border-radius: 20px;
    width: 5em;
    height: 5em;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    -webkit-box-shadow: 0px 8px 10px -3px rgb(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 8px 10px -3px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 8px 10px -3px rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease 0s;
}

.m-navbar a i {
    font-size: 1.8rem;
}

.m-navbar a:hover {
    background-color: var(--sun);
    text-decoration: none;
}
/* M Navbar End */

/* Welcomer Start */
.welcomer {
    height: 100vh;
    display: block;

    background: linear-gradient(
            to bottom,
            rgba(0, 96, 110, 0.75),
            rgba(0, 50, 59, 0.5)
        ),
        url("../images/bg-welcomer.jpeg");
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center;
    background-size: cover;
}

.welcomer-text {
    width: 60%;

    color: #fff;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;

    position: relative;
    top: 30vh;
    left: 18vh;
}

.welcomer-text h3 {
    font-weight: 600;
    margin: 0 0 1em 0;
    text-shadow: -1px 4px 4px rgba(0, 0, 0, 0.26);
}

.welcomer-text h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: -1px 4px 4px rgba(0, 0, 0, 0.26);
}

.welcomer-text p {
    margin: 1.5em 0;
    font-size: 1rem;
    width: 50%;
    text-shadow: -1px 4px 4px rgba(0, 0, 0, 0.26);
}

.welcomer-text .btn-welcomer {
    padding: 0.5em 2em;
    background-color: var(--primary);

    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;

    border-radius: 10px;

    -webkit-box-shadow: 0px 8px 10px -3px rgb(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 8px 10px -3px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 8px 10px -3px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease 0s;
}

.btn-welcomer:hover {
    text-decoration: none;
    background-color: #f2f7a1;
    color: #333;
}

/* Welcomer End */

/* First Greeting Section */
.greeting-section {
    display: block;
    height: 100vh;

    background-color: var(--softwhite);
}

.greet-lay {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;

    justify-content: center;
    align-items: center;

    width: 100%;
    height: 100%;
}

.person-lay {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.greeting-section img {
    max-width: 350px;
}

.greeting-text {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.greeting-text h1 {
    margin: 0.5em 0;
    font-weight: 800;
    font-size: 3.5em;
    color: var(--primary);
}

.greeting-text p {
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    word-spacing: -0.05em;
    color: #333;
    font-weight: 400;
}

.greeting-section .simbol-prim {
    width: 100%;
    display: flex;
    justify-content: right;

    position: relative;
    right: 100px;
    bottom: 20vh;
}

.greeting-section .simbol-prim img {
    max-width: 100px;
}
/* End First Greeting Section */

/* Senat Section */

.senat-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--softwhite);
}

.senat-section .senat-lay-bg {
    width: 85%;
    padding: 3em;
    border-radius: 20px 100px 20px 100px;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    border: 10px solid #e1deb2;
    background-color: var(--secondary);
    -webkit-box-shadow: 0px 8px 10px -3px rgb(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 8px 10px -3px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 8px 10px -3px rgba(0, 0, 0, 0.4);
}

.senat-lay-bg .senat-title {
    width: 50%;
}

.senat-title h1 {
    color: var(--softwhite);
    font-weight: 900;
    line-height: 0.8;
    font-size: 3.2rem;
    margin-bottom: 0.25em;

    text-shadow: -1px 4px 4px rgba(0, 0, 0, 0.26);
}

.senat-title span {
    font-size: 1.5rem;
    color: #e1deb2;

    text-shadow: -1px 4px 4px rgba(0, 0, 0, 0.26);
}

.senat-title .btn-selengkapnya {
    margin: 1em 0em;
    padding: 0.8em;
    width: 50%;
    display: block;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    background-color: #e1deb2;
    color: var(--gray);
    border-radius: 10px 30px 10px 30px;
    transition: all 0.5s ease 0s;

    -webkit-box-shadow: 0px 8px 10px -3px rgb(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 8px 10px -3px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 8px 10px -3px rgba(0, 0, 0, 0.4);
}

.senat-title .btn-selengkapnya:hover {
    background-color: #d3d0a5;
    width: 90%;
}

.senat-lay-bg .senat-picture {
    width: 60%;
    display: flex;
    gap: 1em;
    justify-content: space-evenly;
}

.senat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.senat-picture .senat img {
    width: 250px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #e1deb2;

    -webkit-box-shadow: 0px 8px 10px -3px rgb(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 8px 10px -3px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 8px 10px -3px rgba(0, 0, 0, 0.4);
}

.senat .senat-nametag {
    padding: 0.75em 0 0 0;

    text-shadow: -1px 4px 4px rgba(0, 0, 0, 0.26);
}

.senat-nametag span {
    font-weight: 900;
    color: #e1deb2;
}
.senat-nametag p {
    color: var(--softwhite);
    line-height: 1;
}

/* End Senat Section */

/* Second Greeting Section */

.no-overflow{
    overflow:hidden;
}

.greeting-section-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 450px;

    background: linear-gradient(
            to bottom,
            rgba(0, 96, 110, 0.8),
            rgba(0, 50, 59, 0.8)
        ),
        url("../images/bg-greeting.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    padding: 3em 0;

}

.greeting-section-2 .slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90vw;
}

.greeting-section-2 .greet-lay {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;

    justify-content: center;
    align-items: center;

    width: 100%;
    height: 100%;
}

.greeting-section-2 .person-lay {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.greeting-section-2 img {
    width: 250px;
    height: 300px;
    object-fit: cover;
}

.greeting-section-2 .greeting-text {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.greeting-section-2 .greeting-text h1 {
    margin: 0.5em 0;
    font-weight: 800;
    font-size: 3.5em;
    color: var(--primary);
    text-align: center;
}

.greeting-section-2 .greeting-text ul li {
    list-style: none;
    color: var(--softwhite);
}

.greeting-section-2 .greeting-text p {
    text-align: justify;
    color: #333;
    font-weight: 400;
}

.greeting-section-2 .best-wisudawan {
    border-radius: 10px 10px 0px 0px;
    max-width: 230px;
}

.greeting-section-2 .simbol-sec {
    background-image: url("../images/simbol-secondary.png");
    background-repeat: no-repeat;
    background-size: contain;
    margin: 3em 0;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: right;

    position: absolute;
    right: 100px;
}

.simbol-sec img {
    max-width: 100px;
}

.person-lay-2 {
    width: 30%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.person-lay-2 .name-tag {
    background-color: var(--secondary);
    padding: 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    position: absolute;
    bottom: 0;

    border-radius: 0px 0px 10px 10px;
    width: 350px;

    -webkit-box-shadow: 0px 8px 10px -3px rgb(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 8px 10px -3px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 8px 10px -3px rgba(0, 0, 0, 0.4);
}

.person-lay-2 .name-tag p {
    font-weight: 800;
    font-size: 1rem;
    line-height: 1;
    color: var(--softwhite);
    text-align: center;
}

.person-lay-2 .name-tag span {
    margin-top: 0.5em;
    text-align: center;
    line-height: 1;
    color: var(--softwhite);
}

/* Greetings 2 End */

/* Video Profile Start */

.video-slider-container{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90%;
  
}

.video-section{
    display:flex !important;
    justify-content:center;
    align-items:center;
    width: 100%;
    gap: 5px;
    
}

.video-profile {
    display:flex;
    justify-content:center;
    align-items:center;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #088395 25%, transparent 25%),
        linear-gradient(45deg, #088395 25%, transparent 25%),
        linear-gradient(
            135deg,
            transparent 24%,
            #057384 25%,
            #057384 30%,
            transparent 31%,
            transparent 39%,
            #057384 40%,
            #057384 45%,
            transparent 45%
        ),
        linear-gradient(
            45deg,
            transparent 24%,
            #057384 25%,
            #057384 30%,
            transparent 31%,
            transparent 39%,
            #057384 40%,
            #057384 45%,
            transparent 45%
        );
    background-size: 6em 6em;
    background-color: #088395;
    opacity: 1;
}

.video-section .vp-video-player {
    width: 45%;
    padding: 3em 0;
    display: flex;
    align-items: center;
    justify-content: center;
 
}

.video-section .vp-video-player .player iframe {
    width: 480px;
    height: 320px;
    border: none;
    border-radius: 10px;
    /* width: 100%; */

    -webkit-box-shadow: 0px 8px 10px -3px rgb(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 8px 10px -3px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 8px 10px -3px rgba(0, 0, 0, 0.4);
}

.video-section .profile-title {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;

}

.video-section .profile-title h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--softwhite);
}

.video-section .profile-title .hr {
    display: block;
    margin: 1em 0;
    width: 30vw;
    height: 1px;
    background-color: var(--softwhite);
}

.video-section .profile-title p {
    font-size: 2rem;
    color: var(--softwhite);
}

footer {
    width: 100%;
    padding: 0.5em;
    background-color: #141414;
    position: absolute;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

footer .copyright {
    color: #ddd;
}

footer .copyright a {
    font-weight: 800;
}
/* Video Profile End */

/* Main Style End */

@media only screen and (min-width: 280px) and (max-width: 767px) {
    nav .main-navbar {
        top: 0;
        left: 0;
        width: 100%;
        border-radius: 0;
        position: fixed;
        padding: 1em;

        justify-content: space-between;
        align-items: center;
    }

    .main-navbar .univ-logo {
        max-width: 15em;
    }

    .main-nav-menu {
        display: none;
    }
    
    .play-audio-lay{
        display:block;
        
    }
    
    .play-audio-lay #toggleAudio{
        padding: 5px;
        border:none;
        border-radius: 1em;
        padding: 10px;
        background-color: var(--primary);
        color: var(--softwhite);
        outline:none;
        
    }
    
    .play-audio-lay #toggleAudio:focus{
        outline:none;
    }

    /* M Navbar */
    .m-navbar {
        display: flex;

        gap: 6px;
        position: fixed;
        bottom: 10vh;
    }

    .m-navbar a {
        color: var(--gray);
        width: 4em;
        height: 4em;
    }

    .m-navbar a i {
        font-size: 1.5rem;
    }

    .m-navbar a:hover {
        background-color: var(--sun);
        text-decoration: none;
    }
    /* M Navbar End */

    .welcomer {
        height: 100vh;
        display: block;

        background-attachment: scroll;
    }

    .welcomer-text {
        width: auto;
        height: auto;

        position: relative;
        top: 20%;
        left: 0;
        padding: 0 3em;
    }

    .welcomer-text h3 {
        font-size: 1.2em;
    }

    .welcomer-text h1 {
        font-size: 1.8rem;
    }

    .welcomer-text p {
        width: 90%;
    }

    .welcomer-text .btn-welcomer {
        padding: 0.5em 1em;
        font-size: 1rem;
        font-weight: 400;
    }

    /* Mobile Greeting Section */

    .greeting-section {
        height: fit-content;
        padding: 3.5em 0;
    }

    .greeting-section img {
        max-width: 300px;
    }

    .greeting-text {
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .greeting-text h1 {
        font-size: 1.8rem;
    }
    .greeting-section .simbol-prim {
        display: none;
    }

    .senat-section .senat-lay-bg {
        width: 100%;
        padding: 1.5em 1em 1em 1em;
        border-radius: 0;
        border: 2px solid #e1deb2;
        flex-wrap: wrap-reverse;
    }

    .senat-lay-bg .senat-picture {
        width: 100%;
    }

    .senat-picture .sekretaris {
        display: none;
    }

    .senat-picture .senat img {
        width: 80%;
    }

    .senat-lay-bg .senat-title {
        width: 100%;
        display: flex;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        align-items: center;
        margin: 1em 0 0 0;
    }

    .senat-title h1 {
        font-size: 1.75rem;
    }

    .senat-title span {
        font-size: 1.2rem;
    }
    .senat-title .btn-selengkapnya {
        width: 90%;
    }

    .slider-container {
        width: 80vw;
    }

    .greeting-section-2 .greet-lay {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;

        justify-content: center;
        align-items: center;

        width: 90%;
        height: 100%;
    }

    .greeting-section-2 {
        height: fit-content;
    }

    .greeting-section-2 .person-lay-2 {
        width: 50%;
    }

    .greeting-section-2 .simbol-sec {
        display: none;
    }

    .greeting-section-2 .greeting-text {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .greeting-text .profile h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .greeting-text .profile p {
        text-align: center;
    }

    .greeting-section-2 .best-wisudawan {
        border-radius: 10px 10px 10px 10px;
    }
    .greeting-section-2 .greeting-text h1 {
        font-size: 1.8rem;
    }

    .greeting-section-2 .name-tag {
        display: none;
    }

    .greeting-section-2 .name-tag p {
        font-size: 1rem;
    }
    
    .video-profile
    {
        padding: 10px;
    }
    
    .video-slider-container{
        max-width: 100vw;
        gap: 10px;
         
    }

    .video-section {
        flex-wrap: wrap-reverse;
        align-content: center;
        width: 100%;
        /*height: 100vh;*/
        margin: 10px;
    }

    .video-section .vp-video-player {
        width: 100%;
        padding: 0;
        justify-content: center;
    }

    .video-section .vp-video-player .player iframe {
        width: 340px;
        height: 220px;
    }

    .video-section .profile-title {
        display: flex;

        width: 90%;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .video-section .profile-title h1 {
        font-size: 2rem;
        max-width: 100%;
    }

    .video-section .profile-title p {
        font-size: 1.2rem;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1022.98px) {
    .main-nav-menu {
        display: none;
    }

    .m-navbar {
        display: flex;
        gap: 10px;
        position: fixed;
        bottom: 10svh;
    }

    .welcomer-text {
        width: auto;
        height: auto;

        position: absolute;
        top: 30%;
        left: 5vh;
        padding: 0 3em;
    }

    .welcomer-text h1 {
        font-size: 3rem;
    }

    .welcomer-text p {
        width: 70%;
    }

    .greet-lay {
        align-content: center;
    }

    .person-lay {
        width: 50%;
        gap: 0;
    }

    .greeting-section .simbol-prim {
        display: none;
    }

    .greeting-text {
        width: 80%;
        height: auto !important;
    }

    .greeting-text h1 {
        font-size: 2.8rem;
    }

    .senat-section .senat-lay-bg {
        width: 90%;
        padding: 2em;
        border-radius: 20px;
    }
    .senat-lay-bg .senat-picture {
        width: 40%;
    }

    .senat-picture .sekretaris {
        display: none;
    }

    .senat-picture .senat img {
        width: 70%;
        height: 80%;
    }
    .senat-title h1 {
        font-size: 2rem;
    }
    .senat-title span {
        font-size: 1.2rem;
    }

    .senat-title .btn-selengkapnya {
        width: 90%;
        padding: 0.5em;
    }

    .greeting-section-2 {
        height: auto;
    }

    .greeting-section-2 .greeting-text {
        width: 40%;
    }

    .greeting-section-2 .greeting-text h1 {
        font-size: 2.8rem;
        text-align: start !important;
    }

    .greeting-section-2 .greeting-text h2 {
        font-size: 1.8rem;
    }

    .greeting-section-2 .person-lay-2 {
        width: 40%;
    }

    .person-lay-2 img {
        width: 220px;
    }

    .person-lay-2 .name-tag {
        width: 280px;
    }

    .greeting-section-2 .simbol-sec {
        display: none;
    }
    
    .video-slider-container{
        width: 90%;
        padding: 10px;
    }

    .video-section {
        flex-wrap: wrap-reverse;
        align-content: center;
    }

    .video-section .profile-title h1 {
        text-align: center;
    }

    .video-section .profile-title p {
        text-align: center;
    }
    .video-section .profile-title {
        justify-content: center;
        align-items: center;
        width: 70%;
    }

    .video-section .vp-video-player {
        width: auto;
        padding: 0;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1279.98px) {
    .welcomer-text {
        padding: 0 3em;
        width: 90%;
        left: 10vw;
    }

    .greeting-section {
        height: 100vh;
        padding: 3em;
    }

    .greeting-section .greet-lay {
        justify-content: space-evenly;
        height: 90%;
        align-content: center;
    }

    .greet-lay .person-lay {
        width: 60%;
    }
    .greeting-section img {
        max-width: 400px;
    }

    .greeting-section .simbol-prim img {
        display: none;
    }

    .greeting-section .greeting-text {
        width: 80%;
    }

    .greeting-section .greeting-text h1 {
        font-size: 3.5rem;
    }

    .senat-section .senat-lay-bg {
        width: 90%;
        flex-direction: column-reverse;
        border-radius: 20px;
    }

    .senat-lay-bg .senat-title {
        width: 90%;
        margin: 2em 0 0 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .senat-picture .senat img {
        width: 250px;
    }
    .senat-title h1 {
        font-size: 3rem;
    }
    .senat-lay-bg .senat-picture {
        width: 100%;
        gap: 0;
    }

    .greeting-section-2 .simbol-sec {
        display: none;
    }

    .greeting-section-2 .greet-lay {
        justify-content: space-evenly;
    }

    .greeting-section-2 .greeting-text {
        width: 50%;
    }
    .greeting-section-2 .greeting-text h1 {
        text-align: start;
    }

    .video-profile {
        flex-wrap: wrap-reverse;
        align-content: center;
    }
    .video-profile .profile-title {
        width: 70%;
        justify-content: center;
        align-items: center;
    }

    .video-profile .profile-title h1 {
        text-align: center;
    }

    .video-profile .vp-video-player {
        width: auto;
    }

    .video-profile .vp-video-player .player iframe {
        width: 720px;
        height: 405px;
    }
}
