/* ============================================ GOOGLE FONTS ================================== */

@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');

@import url("https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;500;600;700&display=swap");




/* ====================================== UNIVERSAL FORMAT ============================= */

*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Onest", sans-serif;
    list-style: none;
    text-decoration: none;
    font-weight: 400;
    
}




/* ========================================== ROOT VARIABLES ======================================================== */

:root
{
    --red-clr:#C20116;
     --first-color: hsl(14, 98%, 50%);
    --white-clr:#ffffff;
    --grey-clr :#e0e0e0;
    --font--family: "Onest", sans-serif;
    --millitary--black :#232325;
    --black--clr: black;
    --body-font: "Bai Jamjuree", sans-serif;
    --pale--brown: #ff7f5040;

}






/* =================================================== BODY ===================================================== */

body
{
    width: 100%;
    min-height: 100vh;
    
}


html
{
    scroll-behavior: smooth;
}


/* ====================================== ENTIRE PAGE WRAPPER ================================================== */

.website__wrapper
{
    position: relative;
    width: 100%;
    max-width: 1400px;
    min-height: 100vh;
    margin: 0px auto;
}



/* ============================================= REUSBALE CODE START HERE =================================== */

.apply__here
{
  padding: 12px 25px;
  background-color: var(--grey-clr) ;
  border: 1px solid var(--white-clr);
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.4s;
  cursor: pointer;
  color: var(--red-clr);
}

.apply__here:hover 
{
    background-color: transparent;
    color: var(--white-clr) ;
    scale: 1.1;
}





















/* =========================================== PRE NAVBAR STYLING  ====================================== */

.prenavbar
{
    position: relative;
    height: auto;
    padding: 10px 8%;
   background-color: var(--red-clr);
   /* display: none; */
}

.navbar__two
{
    display: flex;
    justify-content: space-between;

}

.nemboyataifa img
{
    margin-top: 28px;
margin-right: 20px;
}

.logoyachuo img
{
 margin-left: 20px;
}


.introductions__paragraphs
{
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    
}


.introductions__paragraph__01
{
    font-size: 30px;
    font-weight: 500;
    color: var(--white-clr);
    
}



.introductions__paragraph__02
{
    font-size: 28px;
    font-weight: 500;
    color: var(--white-clr);
}


.introductions__paragraph__03
{
    color: var(--white-clr);
    font-weight: 500;
    font-size: 26px;
}




/* ===========================================  NAVBAR STYLING STARTS HERE   ====================================== */

.header
{
    position: sticky;
    width: 100%;
    left: 0;
    top: 0;
    background-color: var(--white-clr) ;
    z-index: 1000;
}


.navbar
{
    position:relative ;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__close,
.nav__toggle
{
    color: var(--red-clr);
    display: flex;
    font-size: 1.8rem;
    cursor: pointer;
}


.nav__toggle
{
    font-size: 2rem;
    margin-right: 20px;

}



/* =================================================== NAVIGATION FOR BIG SCREENS ========================================================= */
@media screen and (max-width: 1150px) {
    .nav__menu
    {
        position: fixed;
        left: -100%;
        top: 0;
        background-color: var(--red-clr);
        width: 100%;
        height: 100%;
        padding: 6rem 3.5rem 4.5rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: left 0.4s;
        z-index: 1000;

    }


   
}


.nav__list


{
    display: flex;
    gap: 10px;
}


.nav__list
{
    flex-direction: column;
    row-gap: 2rem;
}


.nav__link
{
    position: relative;
    color: var(--white-clr);
    font-size: 18px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: opacity .4s;


}


.nav__link i
{
    font-size: 2rem;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s , visibility .4s;
}

.nav__link span
{
    position: relative;
    transition: margin .4s ;
}


.nav__link span::after
{
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: var(--white-clr);
    transition: width .6s ease-out;
}


/* Animation link on hover */
.nav__link:hover span
{
    margin-left: 2.5rem;
}


.nav__link:hover i
{
    opacity: 1;
    visibility: visible;
}


.nav__link:hover span::after
{
   width: 100%;
}


/* Sibling fade Animation */
.nav__list:has(.nav__link:hover) .nav__link:not(:hover)
{
    opacity: .4s;
}

.nav__close
{
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: var(--white-clr);
}


.apply__buttton:hover
{
transform: translateY(-.25rem);
}

/* Show Menu */
.show-menu
{
   left: 0; 
}

/* Animation link when displaying menu */
.show-menu .nav__item
{
    visibility: visible;
    transform: translateX(0);

}












/* ==================================  NAVBAR BREAKPOINTS ========================== */

/* For large devices */
@media screen and (min-width: 1150px)
{
    .container
    {
        margin-inline: auto;
    }

    .nav
    {
        height: calc(80px + 2rem );
    }

    .nav__toggle,
    .nav__close
    {
        display: none;
    }
    
    .nav__logo
    {
        display: none;
    }
    
    .nav__link i
    {
        font-size: 1.5rem;
        color: var(--red-clr);
    }

    .nav__link
    {
        color: var(--red-clr);
        
    }

    .nav__link span
    {
        font-weight: 500;
    }

    .nav__link span::after
    {
        background-color: var(--red-clr);
        
    }


    .nav__list
    {
        flex-direction: row;
        gap: 4rem;
        margin-left: 200px;
    }


    .nav__menu
    {
        display: flex;
        align-items: center;
    }

    .apply__here
    {
        margin-left: 180px;
        border: 1px solid var(--red-clr);
        font-weight: 500;
    }

    .apply__here:hover
    {
        color: var(--red-clr);
        
    }
}






/* ======================================== Image Slider ======================================== */

.image__slider {
    position: relative;
    width: auto; /* Adjust as needed */
    height: 600px; /* Adjust as needed */
    overflow: hidden; /* Prevent overflow of slides */
}

.slide {
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 100%;
    clip-path: circle(0% at 0 50%);
    transition: clip-path 0.7s ease-in-out;
}

.slide.active {
    clip-path: circle(150% at 0 50%);
    z-index: 2; /* Ensure active slide is on top */
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure images fit nicely */
}

.info {
    position: absolute;
    bottom: 20px;
    padding: 10px 20px;
    margin-left: 100px;
}

.text__onimage {
    color: var(--grey-clr, #fff);
    background: rgba(0, 0, 0, 0.5);
    padding: 30px 20px;
    width: 90%;
    font-size: 19px;
    font-weight: 500;
    margin-right: 20px;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 12px;
    color: var(--red-clr, #ff0000);
    font-weight: 400;
    font-size: 24px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: var(--grey-clr, #ccc);
    z-index: 30;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--grey-clr, #fff);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.navigation {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 30;
}

.btn {
    width: 12px;
    height: 12px;
    background: var(--grey-clr, #ccc);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn.active {
    background: var(--red-clr, #ff0000);
}






/* ================================================ HERO SECTIO N =============================================== */

.hero__section
{
 background-color: var(--grey-clr);
position: relative;
    width: 100%;
    min-height: 100vh;
    padding-bottom: 100px;
}



.banner
{
    position: relative;
    width: 100%;
    min-height: calc(100vh - 80px);
    top: 40px;
    padding:  40px  8% 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0px 80px;

    z-index: 1;
}





.banner__img
{
    position: relative;
    flex-basis: 38%;
    display: flex;
    justify-content: flex-start;
     position: relative;
  z-index: 10;
}


.geometric-box {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: var(--millitary--black);
  rotate: -30deg;
    top: 250px;
  left: -0.7rem;
  z-index: 10;
}


.geometric-box::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border: 3px solid var(--red-clr);
  left: -5px;
  top: -5px;
}


.home__shadow
{
  width: 375px;
  height: 100%;
  background-color: var(--grey-clr);
  position: absolute;
  bottom: -.75rem;
  right: -.75rem;
  border: 4px solid var(--red-clr);
  z-index: -1;
  transition: background-color .4s;
}




.banner__text
{
    flex-basis: 55%;
    display: flex;
    flex-direction: column;
    gap: 15px;
  margin-top: -50px;

}

.animate
{
    font-family: "Onest", sans-serif;
    font-size: 24px;
    position: relative;
    display: inline-block;
    cursor: pointer;
    font-weight: 500;
    color: var(--millitary--black);
}




.learning
{
    font-family: var(--body-font);
    font-size: 54px;
    font-weight: 600;
    margin: 10px 0px 15px;
    line-height: 1.2;
    color: var(--red-clr);
}


.notes 
{
    font-size: 16px;
    font-family: "Onest", sans-serif ;
    margin-bottom: 15px;
    line-height: 1.4;
    max-width: 600px;
    color: black;
}

.buttons__wrapper
{
    display: flex;
    align-items: center;
    gap: 50px;
}


.enroll-btn,
.learn-more-btn
{
  background-color:var(--millitary--black) ;
  padding: 15px 25px;
  color: var(--grey-clr) ;
  transition: background-color .4s;
  font-family: var(--body-font) ;
  font-size: 18px;
  border: none;
  /* border-radius: 30px; */
}

.enroll-btn,
.learn-more-btn:hover
{
 background-color:var(--red-clr) ;
 color: var(--white-clr);
}


.enroll-btn:hover
{ 
    background-color: black;
    color: var(--white-clr);

}






/* ================================================ ADADEMIC PROGRAMMES STARTS HERE =========================================== */

.programmes
{
    width: 100%;
    padding: 50px 8% 70px;
    background-color: var(--grey-clr);
}

.programmes__header-1
{
    font-family: var(--body-font);
    font-size: 58px;
    font-weight: 600;
    color: var(--red-clr);
}

.programmes__header-2
{
    font-size: 18px;
    margin-top: 15px;
    max-width: 800px;
}

.shortcourses__header
{
    /* text-align: center; */
    margin-top: 70px;
    color: var(--red-clr);
}

.shortcourses__header-2
{
    /* text-align: center; */
    max-width: 1200px;
    margin-bottom: 50px;
}


.programmes__wrapper
{
    display: grid;
    /* border: 2px solid red; */
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    justify-content: center;
}

.img__holder img
{
    position: relative;
    width: 100%;
    height: auto;
}


.course
{
    position: relative;
    background-color: var(--white-clr);
    text-align: left;
    border: 1px solid var(--millitary--black);
}

.badge__seller
{
    position: absolute;
    background-color: var(--red-clr);
    color: var(--white-clr);
    top: 1.5rem;
    right: 0;
    padding: 10px 16px;
    font-size: 1.4rem;
    font-family: var(--body-font);
    z-index: 20;
    display: none;
}


.course__content
{
    padding: 1.6rem ;
}



.level
{
    background-color: var(--pale--brown);
    display: inline-block;
    color: var(--black--clr);
    font-weight: 600;
    padding: 0.2rem 1.2rem;
    border-radius: 5px ;
    /* margin-block: 1rem; */
}

.card__title
{
    font-family: var(--body-font);
    font-size: 28px;
    font-weight: 600;
    color: var(--red-clr);
    margin-block: 10px;
}


.course__stats
{
    display: flex;
    flex-wrap: wrap;
    margin-block: 1rem 2.5rem;
    gap: 1.2rem;
}

.rating i
{
    color: yellow;
}


.coursebutton__wrapper
{
    display: flex;
    font-size: 1.4rem;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
}


.coursebutton-1
{
    padding: 10px 20px;
    background-color: var(--millitary--black);
    color: var(--grey-clr);
    font-size: 16px;
    border: none;
    transition: all .6s;
    

}



.coursebutton-1:hover
{
 background-color: var(--red-clr);
 color: var(--white-clr);
}

.coursebutton-2
{
    background-color: transparent;
    border: 1px solid var(--millitary--black);
    padding: 10px 20px;
    font-size: 16px;
    font-family: var(--body-font);
    font-weight: 600;
      transition: all .6s;
}


.coursebutton-2:hover
{
  border: 1px solid var(--red-clr);
  color: var(--red-clr);
  background-color: transparent;
}


.programmes__wrapper--2
{
    display: grid;
    /* border: 2px solid red; */
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    justify-content: center;
}



.diploma--header
{
    margin-top: 150px;
}



/* ============================== MISSION & VISION =============== */
.mission__vision
{
    padding: 60px 8% 60px;
    background-color: var(--);
}



.missionvsion__header
{
    text-align: center;
    padding-block: 40px;
}




.missionvision__wrapper
{
    padding-block: 2.5rem;
    display: grid;
    gap: 40px;

    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.missionvision__card
{
    position: relative;
}


.missionvision__content
{
    height: 100%;
    background-color: var(--grey-clr);
    border: 5px solid var(--red-clr);
    padding: 4rem 1rem 3rem;
    z-index: 5;
    position: relative;
    transition: background-color .4s, border .4s;
    
}


.missionvision__border
{
    position: absolute;
    width: 100%;
    height: 100%;
    border: 5px solid var(--black--clr);
    top: 0;
    left: 0;
    transition: transform .4s;
    
    transform: translate(.75rem, .75rem);


}

.missionvision__card:hover .missionvision__border
{
    transform: translate(1.2rem, 1.2rem);
}


.missionvision__icon
{
    position: relative;
    display: inline-block;
}


.missionvision__icon img
{
    position: relative;
    z-index: 5;
}

.missionvision__content
{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: left;
}


.missionvision__title
{
    font-family: var(--body-font);
    font-size: 38px;
    font-weight: 600;
    color: var(--red-clr);
}


.misssonvision__description
{
    font-family: var(--body-font);
}








/* =============================================== OUR LEADERSHIP SECTION STATS HERE ========================================= */
.our__leadership
{
    width: 100%;
    padding: 50px 8% 0px;
}

.ourr__leadership
{
    margin-bottom: 20px;
}


.departments__intro
{
    max-width: 90%;
}

.profile__card--leadership
{
    position: relative;
    padding-block: 5rem;
}


.profile__card--container
{
    position: relative;
    display:grid ;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    justify-content: center;
}




.profile__card--article
{
    position: relative;
    /* border-radius: 1.5rem; */
    overflow: hidden;
}

.profile__card--img
{
    width: 100%;
    transition: transform .4s;
    height: auto;
}





.profile__card--shadow
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
                hsla(0, 0%, 0%, 0) 70%,
                hsl(0, 0%, 0%) 100%);
     
}





.profile__card--data
{
    color: var(--heading-clr);
    position: absolute;
    left: 1.5rem;
    bottom: 2rem;
}




.profile__card--name
{
    font-family: var(--body-font);
    font-weight: 400;
    margin-bottom: .25rem;
    color: var(--white-clr);
}

.profile__card--profession
{
    display: block;
    font-size: 18px;
    font-family: var(--body-font);
    color: var(--white-clr);
}

.profile__card--clip
{
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    /* width: 2.5rem; */
    /* height: 2.5rem; */
    border-radius: 50%;
    /* background-color: hsl(52, 90%, 50%); */
    /* box-shadow: 0 0 16px 4px hsl(52, 90%, 50%); */
    display: grid;
    place-items: center;
    
    color: var(--white-clr);
    z-index: 5;
    cursor: pointer;
    transition: transform .4s;
}

.profile__card--clip i
{
    font-size: 2rem;
}

.profile__card--article:hover .profile__card--img
{
 transform: scale(1.2);
}

.profile__card--info
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: hsla(0, 0%, 0%, .1); */
    backdrop-filter: blur(12px);
    padding: 3rem 1.5rem 1.5rem;
    color: white;
    clip-path: circle(0px at 88% 9%);
    transition: clip-path .5s ease-in-out;
}


.profile__card__info--name
{
    font-family: 'Onest' , sans-serif;
    font-size: 28px;
    font-weight: 400;
    margin-block: 1.5rem ;
    color: var(--heading-clr);
}



.profile__card__info--description
{
    font-size: 18px;
    margin-bottom: 1rem;
     color: var(--heading-clr);
}

.profile__card__info--button
{
    display: inline-flex;
    background-color: hsl(52, 90%, 50%);
    box-shadow: 0 0 12px hsl(52, 90%, 50%);
    padding: .5rem .75rem;
    border-radius: .5rem;
    color: var(--heading-clr);
    font-size: 16px;
    transition: box-shadow .4s;
    margin-block: 1rem;
}


.profile__card__info--button:hover
{
    box-shadow: 0 0 20px hsl(52, 90%, 50%);
}


.profile__card--socials
{
    position: absolute;
    left: 1.5rem;
    bottom: 1.5rem;
    display: flex;
    gap: 1rem;
}



.profile__card__info--link
{
    background-color: hsl(52, 90%, 50%);
    box-shadow: 0 0 12px hsl(52, 90%, 50%);
    width: 2rem;
    height: 2rem;
    border-radius: .75rem;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    color: var(--heading-clr) ;
    transition: transform .4s;
}


.profile__card__info--link:hover
{
  transform: translateY(-.25rem);
}


.profile__card--article:hover .profile__card--clip
{
   transform: rotate(-45deg);
}


.profile__card--info:hover,
.profile__card--clip:hover ~ .profile__card--info
{
    clip-path: circle(100%);
}











































/* ===================================================  FOOTER SECTION STARTS HERE ====================================================== */
.footer
{
    position: relative;
    width: 100%;
    padding: 70px 8% 100px;
    background-color: var(--red-clr);
    display: grid;
    grid-template-columns: 3fr 2fr 2fr 2fr;
    gap: 30px;
}

.footer__column
{
    position: relative;
    z-index: 2;
}

.column__header
{
    position: relative;
    margin-bottom: 20px;
    font-family: var(--body-font);

}

.column__header h2
{
    font-size: calc(16px + 0.6vw);
    color: var(--white-clr);
    font-weight: 500;
    font-family: var(--body-font);
}

.footer__column-1 .column__header img
{
    width: 140px;
}

.column__paragraph
{
    font-size: 15px;
    color: var(--white-clr);
    line-height: 1.3;
}



.column__paragraph--2
{
    font-size: 15px;
    color: var(--white-clr);
    line-height: 1.3;
    margin-top: 20px;
    margin-bottom: 40px;

}

.footer__social__media a i
{
    color: var(--white-clr);
    text-decoration: none;
    font-size: calc(22px + 0.4vw);
    margin-right: 15px;
    transition: color 0.3s;
}


.footer__social__media a i:hover
{
    color: var(--millitary--black);
}


.footer__column-2 .column__description
{
 display: flex;
 flex-direction: column;
 gap: 20px;
}

.contact__row
{
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}


.contact__row span
{
    color: var(--white-clr);
    font-size: 16px;
}





.contact__row span:nth-child(1)
{
  color: var(--white-clr);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 2px;
}




.footer__column-3 .column__description
{
   display: flex;
   flex-direction: column;
}


.footer__column-3 .column__description a
{
    position: relative;
    text-decoration: none;
    color: var(--white-clr);
    margin-bottom: 15px;
    align-self: flex-start;
    transition: all 0.3s;
    left: 15px;
}


.footer__column-3 .column__description a:before
{
    content: '';
    position: absolute;
    width: 7px ;
    height: 7px;
    background-color: var(--white-clr);
    border-radius:50% ;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
}

.footer__column-3 .column__description a:hover
{
    letter-spacing: 3px;
}


.footer__column--4 .column__description
{
    display: flex;
    flex-direction: column;
}


.footer__column--4 .column__description p
{
    font-size: 15px;
    color: var(--white-clr);
    line-height: 1.3;
}

.footer__column--4 .column__description form
{
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.footer__column--4 .column__description form input
{
    width: 100%;
    padding: 12px;
    border: 1px solid var(--red-clr);
    background-color: var(--grey-clr);
    outline: none;
    border-radius: 5px;
    margin-bottom: 20px;
}

.email-submit-btn
{
    border-radius: 5px;
    background-color: var(--white-clr);
    padding: 15px 20px;
    border: none;
    color: var(--red-clr);
    font-size: 14px;
    font-weight: 500;
}


/* ===================================================  FOOTER SECTION ENDS HERE ======================================================== */




























/* ==================================================== COPYRIGHT SECTION STARTS =======================================================  */

.copyright
{
    padding: 0px 8%;
    background-color: var(--red-clr);
}


.line
{
    width: 100%;
    height: 1px ;
    background-color: var(--white-clr);
}

.copyright__created
{
    padding: 25px 0px;
    display: flex;
    justify-content: space-between ;
}

.copyright__created span a
{
    color: var(--white-clr);
}
.copyright__created span 
{
    color: var(--white-clr);
}



/* ==================================================== COPYRIGHT SECTION ENDS =======================================================  */















/* ======================================== BREAKPOINTS ================================================ */

@media (max-width: 1292px)
{ 
    .nav__link
    {
        font-size: 14px;
    }

    .apply__here
    {
        display: none;
    }
}




@media(max-width :968px)
{

.banner
{
    flex-direction: column;
    align-items: flex-start;
    top: 70px;
    gap: 70px 0px;
}

.banner__text,
.banner__img,
.about__images
{
 flex-basis: 100%;
}


.banner__img
{
    margin-bottom: 80px;
}



 .footer
   {
    grid-template-columns: 1fr  ;
   }
   
   .copyright__created
   {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
   }


}






@media (max-width: 820px)
{

     .prenavbar
    {
        padding: 20px 2%;
    }



    .nemboyataifa img
    {
        
        width: 60px;
        height: auto;
    }

    .logoyachuo img
    {
        width: 90px;
        height: auto;
        margin-top: 10px;
    }


    .introductions__paragraph__03
    {
        font-size: 18px;
        font-weight: 600;

    }

    .introductions__paragraph__01
    {
        font-size: 18px;
        font-weight: 600;
    }
    
    .introductions__paragraph__02
    {
        font-size: 18px;
        font-weight: 600;
    }

    .image__slider
    {
        width: 100%;
        height: 375px;
    }
    
    .image__slider .slide img
    {
        object-fit: cover;
    }

    .info
    {
        bottom: 0;
        padding: 10px 0px;
        align-items: center;
    }



    .text__onimage
    {
        width: 100% ;
        font-size: 12px;
        align-items: center;
    }
}


@media (max-width: 620px)
{
   .prev,
   .next
   {
    font-size: 18px;
    top: 170px;
   }


    .info
    {
        padding: 10px 25px;
        margin-left: 10px;
        
    }
}


@media (max-width: 420px)
{
   .home__img
   {
    width: 350px;
   }

   .home__shadow
   {
    width: 360px;
    left: 10px;
   }

   .geometric-box
   {
    top: 195px;
   }
   

}

















