
html{
    margin: 0px;
}

body{
    background-color: #fff;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: #000;
    margin: 0px;
}

a {
    color: #000;
    text-decoration: none;
}

header{
    display: flex;
    justify-content: space-around;
    margin: 0px;
    align-items: center;
    background-color: #EEE;
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: #000 3px 0px 20px 0px;
    z-index: 9999;
}

button {
    background-color: #FF6F00;
    border: none;
    padding: 12px 32px;
    border-radius: 12px;
    height: 40px;
    border-spacing: 0px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    box-shadow: #008080 5px 5px 0px;
    transform: translateY(-3px);
}

.navbar-icon {
    display: none;
    padding: 12px;
}

.navbar {
  overflow: hidden;
  display: flex;
  height: 60px;
  align-items: center;
}

.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
  margin: 0;
}

.dropdown .dropbtn {
  font-size: 12px;
  height: 30px;
  border: none;
  outline: none;
  color: black;
  padding: 9px 18px;
  background-color: inherit;
}

.dropbtn {
    border-radius: 16px;
    margin: 15px;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #1F3B4D;
  color: #FF6F00;
}

.dropbtn:hover {
    box-shadow: #fff;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #D0D0D0;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

@media (max-width: 740px) {
    .navbar-icon {
        display: block;
    }

    .navbar {
        display: none;
        position: fixed;
        top: 50px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: #EEE;
    }

    .navbar.active {
        display: flex;
        flex-direction: column;
        height: auto;
        box-shadow: gray 0px 5px 10px 0px;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-content {
        position: relative;
        background-color: #FFF;
    }

    .dropdown .dropbtn {
        text-align: left;
        padding-left: 20px;
    }

    #login_button {
        margin-left: auto;
        margin-right: 12px;
    }
}


h5 {
    font-size: 16px;
    margin: 0px;
}

h1 {
    font-size: 36px;
    margin: 0px;
}

h2 {
    font-size: 24px;
    margin: 0px;
}


.section-landing {
    padding: 32px;
    margin: 100px 0px 48px;
    background-image: linear-gradient(#fff, #D0D0D0);
}

.landing{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.landing-right {
    max-width: 640px;
}

.landing-left {
    display: block;
}

.landing-demo-button {
    font-size: 20px;
    padding: 18px 32px;
    height: auto;
    font-weight: 700;
}

.landing-grid-container {
    display: grid;
    gap: 22px;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto auto;
}

.landing-grid-item {
    display: inline-grid;
}

.landing-grid-item img {
    transition: transform 0.5s ease, filter 0.5s ease;
}

.landing-grid-item img:hover {
    transform: rotate(90deg);
}

@media (max-width: 700px) {
    .landing {
        flex-direction: column-reverse;
        margin-top: -100px;
    }

    .landing-left {
        opacity: 0.6;
        transform: scale(0.6);
    }

    .landing-right {
        margin-top: -250px;
        z-index: 9;
    }
}



.section-landing-bridge{
    width: 100%;
    height: 300px;
    margin: 100px 0px;
    background-image: url("res/bridge_1.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center;
    background-attachment: fixed;
}

@media only screen and (max-width: 900px) {
    .section-bridge-1{
        height: 200px;
    }
    
}



.section-2{
    margin: 2% 6%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.prospectus-t1, .prospectus-t2{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}

.section-2 div div{
    margin: 50px;
}

.section-2 img{
    border-radius: 20px;
    width: 65vw;
    max-width: 480px;
}

.section-2 h1{
    font-size: 32px;
}

.section-2 p{
    font-size: 22px;
}

.prospectus-t1, .prospectus-t2{
    max-width: 1200px;
}

@media only screen and (max-width: 1000px) {
    .section-2{
        margin: 2%;
    }
    
    .section-2 div div{
        margin: 0px;
    }

    .section-2 img{
        border-radius: 22px;
        max-width: 65vw;
        max-height: 62vw;
    }
    
    .prospectus-t1, .prospectus-t2{
        align-items: flex-start;
        margin: 50px;
        margin-top: 150px;
    }
    
    .prospectus-t1{
        flex-direction: column-reverse;
        margin-top: 50px;
    }
    
    .prospectus-t2{
        flex-direction: column;
        margin-top: 50px;
    }
    
}


.section-advantage{
    width: fit-content;
    margin: 100px auto;
}

.section-advantage-grid{
    margin: 0;
    display: grid;
    flex: none;
    gap: 60px;
    grid-auto-rows: min-content;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    grid-template-rows: repeat(2, min-content);
    height: min-content;
    justify-content: center;
    max-width: 1000px;
    overflow: visible;
    padding: 0;
}

.section-advantage-grid div{
    align-content: center;
    align-self: start;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    height: auto;
    justify-content: center;
    justify-self: start;
    padding: 22px;
    border-radius: 20px;
    background-color: #eee;
}

.section-advantage .img_1to1{
    object-fit: cover;
    height: auto;
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 1/1;
}

.section-advantage .img_1to2{
    object-fit: cover;
    height: auto;
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 2/1;
}

.section-advantage p{
    margin-top: 0px;
    max-width: 100%;
}

.section-advantage-grid-getcolum2{
    grid-column: auto / span 2;
}

@media only screen and (max-width: 1050px) {
    .section-advantage{
        width: 75vw;
        margin: auto;
    }
    
    .section-advantage-grid{
        display: block;
        grid-template-columns: repeat(1, min-content);
        grid-template-rows: repeat(1, min-content);
    }

    .section-advantage-grid div{
        margin-top: 50px;
        width: 75%;
    }
    
    .section-advantage .img_1to1, .section-advantage .img_1to2{
        height: auto;
        width: 75vw;
        border-radius: 22px;
        aspect-ratio: 1/1;
    }

    .section-advantage-grid-getcolum2{
        grid-column: null;
    }
    
}


footer {
    padding: 3vw;
    margin-top: 100px;
    background-color: rgba(238, 238, 238, 0.95);
}

.footer-contaner {
    display: flex;
    flex-direction: column;
}

.footer-contaner-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
}

footer h2 {
    margin-top: 18px;
    margin-bottom: 18px;
}

footer a {
    cursor: pointer;
}

.footer-contaner-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.footer-contaner-social-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-contaner-social-links a {
    margin-left: 16px;
}

@media (max-width: 700px) {
    .footer-contaner-top {
        flex-direction: column;
    }

    .footer-contaner-bottom {
        flex-direction: column-reverse;
    }
}

