:root{
    --themePurple: #680075;
    --themeGray: #ffffffaa;
    --themeDarkWhite: #f8f8f8;
} 
*{
    box-sizing: border-box;
    font-family: sans-serif;
    color: var(--themeGray);
    font-size: 16px;
    padding: 0px;
    margin: 0px;
}
body{
    background: var(--themePurple);
    background-position: right; 
    background-size: 200%;
    margin: 0px;
    position: relative;
    transition: 0.5s;
    overflow-x: hidden;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--themePurple); 
}
::-webkit-scrollbar-thumb {
    background: var(--themeGray);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--themeDarkWhite);
}
h1{
    font-size: 46px;
}
h2{
    font-size: 36px;
    color: white;
}
h3{
    font-size: 24px;
    color: white;
}
h4{
    font-size: 14px;
}
p{
    font-family: Arial;
    line-height: 150%;
}
a{
    text-decoration: none;
    color: unset;
}
svg{
    width: 16px;
    fill: var(--themeGray);
}
input, textarea{
    width: 100%;
    padding: 15px 20px;
    background-color: transparent;
    outline: 2px solid var(--themeGray);
    border: none;
    transition: 0.3s;
}
input:hover, textarea:hover{
    outline: 2px solid var(--themeDarkWhite);
}
input[type="radio"], input[type="checkbox"]{
    accent-color: var(--themePurple);
}
.primaryBtn{
    width: fit-content;
    padding: 15px 30px;
    background-color: transparent;
    outline: 2px solid var(--themeGray);
    border: none;
    color: white;
    font-weight: bold;
}
.primaryBtn:hover{
    outline: 2px solid var(--themeDarkWhite);
}
::placeholder{
    color: var(--themeGray);
}
button{
    cursor: pointer;
    transition: 0.3s;
}
iframe{
    border: 0px;
}

/* margin */
.margin100{
    margin-top: 100px;
}
.headerFooterMargin{
    max-width: calc(100vw - 100px);
    width: 100vw;
    margin: 0px auto;
}
.pageContentMargin{
    z-index: 7;
    display: block;
    position: relative;
    top: 180px;
    max-width: 1280px;
    width: calc(100% - 20px);
    margin: 0px auto;
    min-height: calc(100vh - 325px);
}
.uniqueParagraph{
    max-width: 920px;
    text-align: center;
    margin: auto;
    padding: 20px 0px 100px;
}
/* contactDetails */
.contactDetails td{
    padding: 10px 0px;
}
.contactDetails td div{
    border-radius: 100%;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    border: 2px solid var(--themeGray);
    margin-right: 15px;
}
.contactDetails td svg{
    width: 20px;
}
.contactDetails tr:nth-last-of-type(1) td:nth-last-of-type(1) a{
    margin-right: 10px;
}
.contactDetails a{
    transition: 0.3s;
    padding: 2px 0px;
}
.contactDetails a:hover{
    color: white;
}
/* galleryWithTextAnd4Images */
.top{
    text-align: center;
    max-width: 800px;
    margin: 0px auto;
}
.top h1{
    margin-bottom: 10px;
}
.galleryWithTextAnd4Images .bottom{
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0px;
    align-items: flex-start;
}
.galleryWithTextAnd4Images .bottom img, .galleryWithTextAnd4Images .bottom span{
    flex-grow: 1;
    flex-basis: 0;
    width: 280px;
    max-width: 400px;
    min-width: 250px;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
    position: relative;
}
.galleryWithTextAnd4Images .bottom span img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.galleryWithTextAnd4Images img{
    transition: 0.5s;
}
.galleryWithTextAnd4Images img:hover{
    transform: scale(110%);
    box-shadow: 0 0 20px #ffffff60;
}
.galleryWithTextAnd4Images h3{
    color: var(--themeGray);
    margin-bottom: 10px;
}
.galleryWithTextAnd4Images .bottom ul{
    margin-left: 18px;
    margin-top: 10px;
}
.galleryWithTextAnd4Images .bottom li{
    padding: 5px 0px;
    border-bottom: 1px solid var(--themeGray);
}
.galleryWithTextAnd4Images .bottom span h3{
    background-color: #670075ab;
    padding: 5px 0px;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50px;
    transition: 0.5s;
    color: white;
}
.galleryWithTextAnd4Images .bottom:hover span h3{
    top: 0px;
}
.galleryWithTextAnd4Images .specialNotes ul, .galleryWithTextAnd4Images .specialNotes ol{
    margin-left: 18px;
}
.galleryWithTextAnd4Images .specialNotes ul ul, .galleryWithTextAnd4Images .specialNotes ul ol{
    margin: 5px 0px 7px 36px;
}
.galleryWithTextAnd4Images .specialNotes ul ul ul, .galleryWithTextAnd4Images .specialNotes ul ol ul{
    margin: 5px 0px 7px 36px;
}
.galleryWithTextAnd4Images .specialNotes h3{
    text-align: center;
}
.galleryWithTextAnd4Images .specialNotes ul li, .galleryWithTextAnd4Images .specialNotes ol li{
    padding: 5px 0px;
}

#darkBackground{
    background: radial-gradient(circle, rgba(104,0,117,0.5) 0%, rgba(104,0,117,0.9) 100%);
    background-size: 200%;
    background-position: right center;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    opacity: 1;
    transition: 0.3s;
    z-index: 1;
    display: block;
}

/* header */
header nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    z-index: 8;
    position: fixed;
    text-align: right;
}
header nav:hover img{
    transform: scale(80%);
}
header>nav img{
    width: 100px;
    opacity: 0.9;
    cursor: pointer;
    transition: 0.5s;
}
header>nav ul{
    list-style: none;
}
header>nav>ul>li{
    display: inline-block;
    position: relative;
    margin-left: 30px;
    padding: 2px 2px;
    transition: 0.3s;
    text-align: left;
}
header>nav>ul>li span{
    transition: 0.3s;
}
header>nav>ul svg{
    width: 20px;
    transform: translateY(5px);
    transition: 0.3s;
}
header>nav>ul>li>ul{
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    padding-top: 10px;
    width: 260px;
}
header>nav>ul>li:hover svg{
    fill: white;
}
header>nav>ul>li:hover>ul{
    visibility: visible;
    opacity: 1;
}
header>nav>ul>li>ul>li{
    padding: 5px 0px;
    margin: 10px 0px 5px;
    transition: 0.3s;
}
header>nav ul li:hover, header>nav ul li:hover span{
    color: white;
    cursor: pointer;
    text-shadow: 0px 0px 5px var(--themePurple);
}

/* home */
/* homeSlider */
#homeSlider{
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
    overflow: hidden;
    /* background: radial-gradient(circle, rgba(104,0,117,0.1) 0%, rgba(104,0,117,0.2) 100%);
    mix-blend-mode: screen; */
}
#homeSlider img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0;
}
#homeSlider img:nth-of-type(1){
    animation: homeSliderOne 30s infinite;
    opacity: 1;
    transform: scale(100%) translate(0px, 0px);
}
@keyframes homeSliderOne {
    0%{
        opacity: 1;
        transform: scale(100%) translate(0px, 0px);
    }
    23%{
        opacity: 1;
    }
    33%{
        opacity: 0;
        transform: scale(130%) translate(10%, 10%);
    }
}
#homeSlider img:nth-of-type(2){
    animation: homeSliderTwo 30s infinite;
}
@keyframes homeSliderTwo {
    23%{
        opacity: 0;
        transform: scale(130%) translate(-10%, -10%);
    }
    33%{
        opacity: 1;
    }
    56%{
        opacity: 1;
    }
    66%{
        opacity: 0;
        transform: scale(100%) translate(0px, 0px);
    }
}
#homeSlider img:nth-of-type(3){
    animation: homeSliderThree 30s infinite;
}
@keyframes homeSliderThree {
    56%{
        opacity: 0;
        transform: scale(100%) translate(0px, 0px);
    }
    66%{
        opacity: 1;
    }
    96%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        transform: scale(130%) translate(0px, 0px);
    }
}

/* sidePanel */
#sidePanel{
    background-color: var(--themePurple);
    position: fixed;
    right: 0px;
    top: 0px;
    height: 100vh;
    padding: 40px;
    max-width: 400px;
    z-index: 10;
    transition: 0.5s ease-out;
    transform: translateX(400px);
}
#sidePanel>h4{
    transform: rotate(-90deg);
    position: absolute;
    top: 0px;
    left: -45px;
    width: fit-content;
    aspect-ratio: 1/1;
    padding: 20px;
    z-index: 1;
    cursor: pointer;
    visibility: hidden;
    transition: 0.3s;
}
#sidePanel>h4:hover{
    color: white;
}
#sidePanel>h4:hover>svg path{
    stroke: white;
}
#sidePanel>h4>svg path{
    stroke: var(--themeGray);
    stroke-width: 2;
    transition: 0.3s;
}
#sidePanel>h4>svg{
    width: 12px;
    transform: translateY(1px);
    margin-right: 7px;
}
#sidePanel>div{
    z-index: 2;
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    max-height: 800px;
    gap: 30px;
}
#sidePanel form{
    position: relative;
}
#sidePanel form input{
    padding-right: 45px;
}
#sidePanel form button{
    background-color: transparent;
    border: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-40%);
}
#sidePanel form button:hover svg{
    fill: var(--themeDarkWhite);
}
#sidePanel>div>div>div{
    margin-bottom: 20px;
    position: relative;
}
#sidePanel>div>div>div>img{
    width: 150px;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: top center;
    border-radius: 100%;
}
#sidePanel>div>div>div>span{
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
}


/* sideLinks */
#sideLinks{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
}
#sideLinks>*{
    width: 100vh;
    height: 100vh;
    transform: rotate(-90deg);
    display: flex;
    position: relative;
    justify-content: space-between;
    flex-direction: column;
    padding: 120px 0px;
    /* increase padding when size get small */
    text-align: center;
}
#pagesSideLinks{
    height: 100vw;
    padding: 150px 0px;
    position: fixed;
    /* decrease padding when size get small */
}
#sideLinks div>*{
    transition: 0.5s;
    opacity: 0;
}
#sideLinks hr{
    border: none;
    border-top: 1px solid var(--themeGray);
    width: 100vh;
    opacity: 1;
}
#sideLinks .leftSideLink hr{
    transform: translateX(100px);
}
#sideLinks .rightSideLink hr{
    transform: translateX(-100px);
}
#sideLinks .leftSideLink h4{
    padding-right: 20%;
    transform: translateX(-100px);
}
#sideLinks .leftSideLink h1{
    padding-left: 5%;
    transform: translateX(100px);
}
#sideLinks .rightSideLink h4{
    padding-right: 20%;
    transform: translateX(-100px);
}
#sideLinks .rightSideLink h1{
    padding-right: 25%;
    transform: translateX(100px);
}
#sideLinks .leftSideLink:hover h4{
    padding-right: 10%;
}
#sideLinks .leftSideLink:hover h1{
    padding-left: 0%;
}
#sideLinks .rightSideLink:hover h4{
    padding-right: 25%;
}
#sideLinks .rightSideLink:hover h1{
    padding-right: 20%;
}
#pagesSideLinks .rightSideLink>h1, #pagesSideLinks .rightSideLink>h4{
    margin-right: 40%;
}
#sideLinks div:hover>*{
    color: white;
    cursor: pointer;
    text-shadow: 0px 0px 5px var(--themePurple);
}

/* footer */
/* footerContainer */
#footerContainer{
    position: relative;
    top: 280px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    z-index: 6;
    gap: 10px;
    column-gap: 30px;
    padding-bottom: 30px;
}
#footerSocialLinks{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 200px;
    width: 100%;
    min-width: 150px;
    flex-grow: 1;
    flex-basis: 0;
}
@media screen and (max-width: 605px) {
    h1{
        font-size: 36px;
    }
    #footerSocialLinks{
        margin: auto;
    }
}
#footerSocialLinks a h4{
    cursor: pointer;
    transition: 0.3s;
}
#footerSocialLinks a:hover h4{
    color: white;
    text-shadow: 0px 0px 5px var(--themePurple);
}
#footerCopyright{
    flex-grow: 1;
    flex-basis: 0;
    display: block;
    text-align: center;
    max-width: fit-content;
    min-width: 280px;
}
@media screen and (max-width: 540px) {
    #footerCopyright{
        min-width: 200px;
    }
}
#footerCopyright a, #footerCopyright span{
    font-size: 14px;
    transition: 0.3s;
    color: var(--themeDarkWhite);
    cursor: pointer;
}
#footerCopyright a:hover, #footerCopyright span:hover{
    color: white;
}

/* cursorCircle */
#cursorCircle{
    width: 30px;
    height: 30px;
    fill: white;
    position: fixed;
    top: -50px;
    left: -50px;
    z-index: 100;
    pointer-events: none;
}


/* contact */
#contactFormAndDetails{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
}
#contactFormAndDetails>*{
    flex-grow: 1;
    flex-basis: 0;
}
#contactFormAndDetails table{
    max-width: 380px;
    margin-top: -10px;
}
#contactFormAndDetails form{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
#contactFormAndDetails form>input{
    flex-grow: 1;
    flex-basis: 0;
    min-width: 200px;
}
#contactFormAndDetails form>input:nth-of-type(4){
    max-width: 100%;
    flex-basis: unset;
}
#contactFormAndDetails form button{
    margin-left: 100%;
    transform: translateX(-100%);
    white-space: nowrap;
}
#locationMap{
    width: 100%;
    height: 400px;
    margin-top: 50px;
}

/* about */
/* aboutInstructor */
#aboutInstructor{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
}
#aboutInstructor .left{
    max-width: 600px;
    flex-grow: 1;
    flex-basis: 0;
}
#aboutInstructor p{
    margin: 20px 0px;
}
#aboutInstructor img{
    float: right;
}
#aboutInstructor table td:nth-of-type(1){
    padding: 2px 20px 2px 0px;
    white-space: nowrap;
}
#aboutInstructor .right{
    object-fit: contain;
    max-width: 650px;
    width: 100%;
    flex-grow: 1;
    flex-basis: 0;
    min-width: 300px;
}
/* aboutCounter */
#aboutCounter{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
    margin: 150px 0px;
}
#aboutCounter div{
    text-align: center;
    flex-grow: 1;
    flex-basis: 0;
}
#aboutCounter h1{
    font-size: 100px;
    display: inline;
}
#aboutCounter h4{
    font-size: 20px;
}

/* coursesList */
#coursesList{
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
#coursesList div{
    /* border: 1px solid white; */
    flex-grow: 1;
    flex-basis: 0;
    max-width: 500px;
    min-width: 300px;
    padding: 20px;
    border-radius: 20px;
    transition: 0.5s;
    height: 110px;
    box-shadow: 0 0 10px #ffffff60;
}
#coursesList div:hover{
    border-radius: 0px;
    transform: scale(105%);
    box-shadow: none;
}
#coursesList div:hover p{
    opacity: 1;
}
#coursesList div:hover h4{
    opacity: 0;
    font-size: 1px;
    margin-top: 0px;
}
#coursesList div h4{
    font-size: 18px;
    text-align: center;
    transition: 0.5s;
    margin-top: 22px;
    white-space: nowrap;
}
#coursesList div p{
    opacity: 0;
    text-align: center;
    transition: 0.5s;
}
@media screen and (max-width: 320px) {
    #coursesList div{
        min-width: 200px;
    }
}
#servicesRendered{
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 50px;
    margin: 30px 0px;
    flex-wrap: wrap;
}
#servicesRendered div{
    flex-grow: 1;
    flex-basis: 0;
    aspect-ratio: 1/1;
    max-width: 250px;
    min-width: 200px;
    border-radius: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 0 10px #ffffff60;
}
#servicesRendered div img{
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    filter: brightness(80%);
    position: absolute;
    z-index: 1;
    transition: 0.5s;
}
#servicesRendered div::before{
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #67007533;
    content: '';
    z-index: 10;
}
#servicesRendered div h4{
    z-index: 2;
    transition: 0.5s;
    text-shadow: 0px 0px 10px black;
    color: white;
    font-size: 18px;
}
#servicesRendered div:hover img{
    transform: scale(120%);
    filter: brightness(50%);
}
#servicesRendered div:hover h4{
    font-size: 14px;
}
/* map */
#map iframe{
    margin-top: 10px;
}
#map table{
    width: fit-content;
    margin: 10px auto 0px;
}
#map table tr>td:nth-of-type(1){
    border-radius: 100%;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    border: 2px solid var(--themeGray);
    margin-right: 15px;
}
#map p{
    display: inline-block;
}


/* events */
#eventCategoriesList{
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: left;
    gap: 50px;
    padding: 170px 0px 100vh;
}
#eventCategoriesList article{
    height: calc(100vh - 300px);
    position: relative;
    overflow: hidden;
    transition: 0.5s;
}
#eventCategoriesList article:nth-of-type(1){
    margin-left: 50px;
}
#eventCategoriesList article:nth-last-of-type(1){
    margin-right: 50px;
}
#eventCategoriesList article img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(75%);
}
#eventCategoriesList div{
    position: absolute;
    top: 0px;
    left: 0px;
    transform: rotate(-90deg) translate(-100%, 30px);
    transform-origin: top left;
    width: calc(100vh - 300px);
}
#eventCategoriesList div hr{
    width: calc(100vh - 300px);
    transition: 0.5s;
    border-color: var(--themeGray);
}
#eventCategoriesList div h4{
    margin-left: 15%;
    transition: 0.5s;
}
#eventCategoriesList div h1{
    margin-left: 25%;
    overflow-wrap: break-word;
    transition: 0.5s;
}
#eventCategoriesList article span{
    position: absolute;
    bottom: 0px;
    right: 0px;
    padding: 30px;
}
#eventCategoriesList article button{
    position: relative;
}

/* event */
.eventImagesList{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
}
.eventImagesList img{
    width: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 3/2;
}
.eventImagesList img:nth-of-type(3n){
    grid-column: span 2;
    max-height: 90vh;
}

/* visa */
/* about japan */
#aboutJapan{
    text-align: center;
}
#aboutJapan p{
    max-width: 920px;
    text-align: center;
    margin: auto;
}
#aboutJapan h1{
    margin-bottom: 20px;
}
#aboutJapan h3{
    color: var(--themeGray);
    margin-bottom: 10px;
}
#citiesAndSchools{
    text-align: center;
    margin: 100px auto;
}
#citiesAndSchools h1{
    margin-bottom: 20px;
}
#citiesAndSchools div{
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
}
#citiesAndSchools div article:nth-of-type(1) { grid-area: 10 / 1 / 13 / 5; }
#citiesAndSchools div article:nth-of-type(2) { grid-area: 10 / 5 / 13 / 9; }
#citiesAndSchools div article:nth-of-type(3) { grid-area: 10 / 9 / 13 / 13; }
#citiesAndSchools div article:nth-of-type(4) { grid-area: 7 / 1 / 10 / 5; }
#citiesAndSchools div article:nth-of-type(5) { grid-area: 7 / 5 / 10 / 9; }
#citiesAndSchools div article:nth-of-type(6) { grid-area: 7 / 9 / 10 / 13; }
#citiesAndSchools div article:nth-of-type(7) { grid-area: 1 / 1 / 7 / 7; }
#citiesAndSchools div article:nth-of-type(8) { grid-area: 1 / 7 / 4 / 10; }
#citiesAndSchools div article:nth-of-type(9) { grid-area: 1 / 10 / 4 / 13; }
#citiesAndSchools div article:nth-of-type(10) { grid-area: 4 / 7 / 7 / 10; }
#citiesAndSchools div article:nth-of-type(11) { grid-area: 4 / 10 / 7 / 13; }
#citiesAndSchools div article{
    flex-grow: 1;
    flex-basis: 0;
    position: relative;
    overflow: hidden;
}
#citiesAndSchools div article img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
#citiesAndSchools div article h3{
    background-color: #670075ab;
    padding: 5px 0px;
    width: 100%;
    position: absolute;
    bottom: 0px;
    transition: 0.5s;
}
#citiesAndSchools div article ul{
    position: absolute;
    background-color: #670075ab;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    top: 100%;
}
#citiesAndSchools div article ul li{
    width: calc(100% - 60px);
    margin-left: 30px;
    color: white;
}
#citiesAndSchools div article:hover ul{
    top: 0px;
}
#citiesAndSchools div article:hover h3{
    bottom: 100%;
}
@media screen and (max-width: 1000px) {
    #citiesAndSchools div{
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: stretch;
    }
    #citiesAndSchools div article{
        min-width: 220px;
        max-width: 500px;
    }
    #citiesAndSchools div article:nth-last-child(5){
        min-height: 400px;
        min-width: 100%;
        width: 100%;
        max-height: 500px;
    }
    #sideLinks{
        display: none;
    }
    #sideLinks.homeSideLinks{
        display: flex !important;
    }
}
#visaProcessAndNotes{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}
#visaProcess{
    max-height: calc(100vh - 250px);
    width: 100%;
    max-width: 600px;
    object-fit: contain;
    object-position: left;
    flex-grow: 1;
    flex-basis: 0;
    min-width: 300px;
    margin: 20px 0px;
}
#visaProcess:hover{
    box-shadow: none;
    transform: scale(100%);
    filter: saturate(3);
}
#visaProcessAndNotes .specialNotes{
    max-width: 600px;
    flex-grow: 1;
    flex-basis: 0;
    min-width: 270px;
}
@media screen and (max-width: 630px) {
    #visaProcess{
        min-width: unset;
    }
}

/* study */
#timetableCards{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 30px;
}
#timetableCards article{
    flex-grow: 1;
    flex-basis: 0;
    max-width: 700px;
    padding: 20px;
    box-shadow: 0 0 10px #ffffff60;
    border-radius: 20px;
    background-color: #ffffff21;
    min-width: 250px;
}
#timetableCards article h1{
    transition: 0.3s;
}
#timetableCards article:hover h1{
    color: white;
}
#timetableCards article:nth-of-type(1){
    max-width: 100%;
    min-width: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
#timetableCards article:nth-of-type(1) *{
    flex-grow: 1;
    flex-basis: 0;
}
#timetableCards article span{
    display: inline-block;
    min-width: 260px;
}
#timetableCards img{
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: auto;
    display: block;
}
#timetableCards article hr{
    margin: 20px auto 20px;
    width: 100%;
}
#timetableCards article a{
    padding: 10px 20px;
    background-color: #ffffff38;
    color: var(--themePurple);
    border-radius: 20px;
    display: block;
    width: fit-content;
    margin: 20px auto 0px;
    transition: 0.5s;
}
#timetableCards article a:hover{
    color: white;
}
#timetableCards article:nth-of-type(1) span:nth-of-type(1){
    border-right: 2px solid var(--themeGray);
    padding-right: 50px;
}
#timetableCards article:nth-of-type(1) span:nth-of-type(2){
    padding: 0px 20px;
}
#timetableCards article *{
    text-align: center;
}
#timetableCards article h4{
    margin-top: 10px;
}
#timetableCards article h4:nth-of-type(1){
    margin-top: 0px;
}
@media screen and (max-width: 600px) {
    #timetableCards article:nth-of-type(1){
        display: block;
        text-align: center;
    }
    #timetableCards article:nth-of-type(1) span:nth-of-type(1){
        border-bottom: 2px solid var(--themeGray);
        padding-bottom: 20px;
        border-right: 0px;
        padding-right: 0px;
    }
    #timetableCards article:nth-of-type(1) span:nth-of-type(2){
        padding-top: 20px;
    }
}

/* twoImagesGallery */
.twoImagesGallery{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}
.twoImagesGallery img{
    flex-grow: 1;
    flex-basis: 0;
    min-width: 500px;
}
@media screen and (max-width: 600px) {
    .twoImagesGallery img{
        flex-grow: 1;
        flex-basis: 0;
        min-width: 280px;
    }
}

/* nextClassesDates */
.nextClassesDates{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 20px;
}
.nextClassesDates article{
    flex-grow: 1;
    flex-basis: 0;
    max-width: 700px;
    padding: 20px;
    box-shadow: 0 0 10px #ffffff60;
    border-radius: 20px;
    border: 1px solid #ffffff21;
    min-width: 250px;
    text-align: center;
}
.nextClassesDates article h3{
    margin: 10px 0px 10px;
    border: 1px solid #ffffff21;
    padding: 15px 10px;
    border-radius: 15px;
    color: var(--themeGray);
    background-color: #ffffff21;
    transition: 0.3s;
    margin: 10px 0px;
}
.nextClassesDates article p{
    margin-top: 15px;
}
.nextClassesDates article h1{
    transition: 0.3s;
}
.nextClassesDates article:hover h1{
    color: white;
}
.nextClassesDates h3:hover{
    color: white;
}


.videoContainer video{
    width: 100%;
}

/* google_translate_element */
#google_translate_element{
    margin: auto;
    color-scheme: dark;
}