@import url('https://fonts.googleapis.com/css2?family=Arya:wght@400;700&family=Open+Sans:wght@300;400;600;700&display=swap');

:root{
    --main-blue: #3a7dc3;
    --main-red: #d8474c;
    --main-gray: #e5e5e5;
    --padding-amount: 8px;
    --scale-amount: .75;
}

*{
    margin:0px;
    padding:0px;
    padding-bottom: 10px;
    font-family: 'Arya', sans-serif;
    font-size: 34px;
    font-weight: normal;
    border-radius: var(--padding-amount);
}

body{
  max-width: 1440px;
  margin: auto;
  margin-top: 0px;
  background: var(--main-gray);
  transform: scale(0.75);
  transform-origin: center 0;
}

body div{
    background-color: white;
    max-width: 100%;
    padding-left: var(--padding-amount);
    padding-right: var(--padding-amount);
}

img{
    max-width: 50%;
    max-height: 50%;
    padding-left: var(--padding-amount);
    padding-right: var(--padding-amount);
}

a{
    font-family: 'Arya', sans-serif;
    font-size: 34px;
    color: black;
    text-decoration: none;
}

a:hover{
    background-color: var(--main-gray);
}

/* .circle1 {
    position: absolute;
    height: 480px;
    width: 480px;
    border-radius: 50%;
    margin: 45% auto auto 42%;
    opacity: 100%;
    background-color: #3A7DC3;
    z-index: 1;
}  */

/* .circle2 {
    height: 480px;
    width: 480px;
    border-radius: 50%;
    opacity: 50%;
    background-color: red;
    position: absolute;
} */

.language-headnote{
    text-align: right;
    margin: 10px;
}

.title{
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    padding:0px;
}

@media screen and (max-width: 960px){
    .title > span > img{
        display: none;
    }

    .title-heading{
        line-height: 1;
    }
}

.title-heading{
    font-weight: bold;
    font-size: 74px;
    margin-bottom: 6px;
}

.menu-bar{
    display: flex;
    justify-content: space-between;
    margin: auto 75px auto 75px;
}

.menu-bar a {
    padding-left: var(--padding-amount);
    padding-right: var(--padding-amount);
}

.dropdown {
    position: relative;
    display: inline-block;
}
  
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    width: 100%;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding: 12px 10px;
}

.dropdown:hover {
    background-color: var(--main-gray);
}
  
.dropdown:hover .dropdown-content {
    display: flex;
    flex-direction: column;
}

.dropdown-content > a{
    margin-bottom: 1px;
    border-style: none none solid none;
    border-bottom-color: var(--main-gray);
    font-size: 24px;
    padding-bottom: 0px;
}

.searchIcon{
    position: relative;
    align-self: center;
    height: 30px;
}

#images {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto 83px 20px 83px;
    padding: 10px;
}

#main-body{
    margin: 10px 50px;
    display: grid;
    grid-template-columns: 50% 50%;
}

#body-item1 *{
    font-family: 'Open-Sans', sans-serif;
    grid-column: 1;
    font-weight: 300;
    font-size: 36px;
    line-height:1.3;
    padding: 15px;
}

#body-footnote{
    color: gray;
    font-size: 20px;
}

#body-item2{
    grid-column: 2;
}

.footer *{
    background: var(--main-gray);
    padding-bottom: 0px;
    line-height: 1.3;
}

.footer{
    background-color: var(--main-gray);
    padding: 15px;
    display: grid;
    grid-template-columns: auto auto;
    border-radius: 0%;
}

.logo{
    grid-column: 1;
    margin-left: 50px;
}

.firstLeft{
    font-weight: 600;
    font-size: 40px;
}

.information{
    grid-column: 2;
    text-align: right;
    margin-right: 50px;
}

.information > span{
    text-decoration: underline;
}

.subsection{
    background-color: var(--main-gray);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-radius: var(--padding-amount);
    padding: 23px 30px;
    margin: 0px 83px 92px 83px;
}

.subsection *{
    font-family: 'Open-Sans', sans-serif;
    background-color: var(--main-gray);
}

.subtitle{
    font-weight: 600;
    font-size: 44px;
    line-height: 1.5;
    padding-bottom: 34px;
    padding-top: 12px;
    margin-right: 10px;
}

.subtext{
    font-weight: 300;
    font-size: 36px;
    line-height: 1.5;  
}

