body {
    background: linear-gradient(-45deg,#3864B3,#3864B3 20%,#2F5597 70%,#2C4F8C);
    color: #dae3f3;
    min-height: 100vh;
    margin-left:0px;
    margin-right:0px;
}

.banner {
    margin-top:-10px;
    padding-left:0px;
    background-color: lightgrey;
    overflow:hidden;
}

.banner p {
    width: max-content;
    margin-top:5px;
    margin-bottom:5px;
    font-size:clamp(14px,1.1vw,18px);
    font-family: Cambria;
    color: black;
    white-space: nowrap;
    margin-left: 0%;
    animation: scroll 37s linear infinite;
}

.banner a{
    color:blue;
}
@keyframes scroll {
    0% {
        transform: translateX(100vw);
    }
    100% {
        transform: translateX(-100%);
    }
}

.main-column {
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-family: Calibri,sans-serif;
    justify-content: center;
    text-align: left;
    height: fit-content;
}

.left-column {
    width: 50%;
    margin-left: clamp(20px,3vw,100px);
}

.right-column {
    width: 60%;
    margin-left: 5%;
}

.logo {
    width: 250px;
    height: auto;
    margin-top: 20px;
    margin-left: 20px;
}

.description {
    margin: 20px 0;
}

.shadow {
    position: absolute;
    z-index: -1;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 170px 278px 0 0;
    border-color: rgba(0,0,0,.3) transparent transparent transparent;
    opacity: 50%;
    filter: blur(5px);
    bottom: 0;
    left: 50px;
    transform: scaleX(-1) rotate(0deg);
    transform-origin: left bottom
}

.description h2 {
    font-size: clamp(35px,7vh,120px);
    margin-top: 0;
    margin-bottom: 7vh;
    max-width: 70vh;
}

.description h3 {
    font-size: clamp(18px,2.8vh,35px);
    font-family: Cambria;
    white-space: pre-wrap;
}

h4 {
    font-size: clamp(16px,2vh,30px);
}

.description p {
    font-size: 16px
}

.description ul {
    font-size: 16px;
    padding-left: 20px
}

.description ul li {
    margin-bottom: 10px;
    line-height: 1.2
}

a {
    padding: 12px 4px;
    cursor: pointer;
    color: #dae3f3;
    transition: color .3s,background-color .3s;
    position: relative;
    
}

a:hover {
    color: #dae3f3;
    background-color: #14278c;
    border-radius: 4px;
}

.sign-button {
    font-size: clamp(20px,5vh,30px);
    padding: 15px 15px;
    margin-right: 5px;
    font-family: Berlin sans FB;
    text-decoration:none;
    margin-top: 20px;
    color: white;
}

.welcome-text {
    margin-bottom: 0;
    margin-right: 40px
}

.top-button-container {
    margin-top: 0px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-right: 40px;
}
.button-group{
    margin-top:35px;
}

#openpricingmodal {
    display: inline-block;
    text-underline-offset:6px;
    text-decoration:underline;
    cursor: pointer;
    padding: 5px;
}
#openpricingmodal:hover {
    color: #dae3f3;
    background-color: #14278c;
    border-radius: 4px;
}

.pricingmodal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
}

.pricingmodal-content {
    background-color: lavender;
    margin: 15% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: clamp(200px,80%,600px); 
    border-radius:10px;
    color:black;
    font-size: clamp(18px,2.2vh,35px);
    font-family: Cambria;
}
.pricingclose {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.pricingclose:hover,
.pricingclose:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.tooltip {
    position: relative;
    cursor: pointer;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 70%;
    background-color: #f1f1f1;
    color: black;
    font-weight: normal;
    text-align: left;
    border-radius: 6px;
    padding: 5px 10px; 
    position: absolute;
    z-index: 1;
    top: 100%; 
    left: 10%; 
    margin-top: 5px; 
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s, margin-top 0.3s; 
    font-size: clamp(18px,2.2vh,35px);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-indent: initial;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
.modal {
    display: none;
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #000;
    background-color: rgba(0,0,0,.4);
    padding-top: 60px;
    justify-content: center;
    align-items: center
}

.modal-content {
    margin-top: -100px;
    background-color: #fefefe;
    margin: 10% auto;
    padding: 10px;
    border: 1px solid #888;
    width: 200px;
    font-size: 20px;
    border-radius: 10px;
    color: black;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: 700
}

.close:hover,.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer
}

.slideshow-container {
    position: relative;
    margin: auto
}

.mySlides {
    display: none;
}

.prev,.next {
    cursor: pointer;
    position: relative;
    top: 50%;
    margin-top: 5%;
    padding: 12px;
    color: #fff;
    font-weight: 700;
    font-size: clamp(15px,2.5vw,40px);
    transition: .6s ease;
    user-select: none;
    width: 20px;
}

.prev {
    margin-left:0px;
    border-radius: 0 3px 3px 0;
    margin-right: 0px;
}

.next {
    border-radius: 3px 0 0 3px;
}

.prev:hover,.next:hover {
    background-color: #14278c;
    opacity: 80%
}

.imagecontainer {
    display: flex;
    position: relative;
    align-items:center;
    justify-content:space-between;
    left:0;
    top:0;
}

.text {
    color: #dae3f3;
    font-size: clamp(18px,3vw,25px);
    padding: 8px 12px;
    width: 100%;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 10px;
    font-family: montserrat
}

.numbertext {
    color: #000;
    font-size: 18px;
    padding: 8px 12px;
    position: absolute;
    top: 0
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s
}

.slide-images {
    display: block;
    max-width: 100%;
    margin: auto;
    margin-left: 0;
    overflow: hidden;
    border-color: #8faadc;
    border-width: 6px;
    border-style: solid;
    padding: 0;
    line-height: 0;
    margin-top: 10%;
    height: auto;
    width: 45vw;
    object-fit: cover;
}

#loginContainer {
    margin-top: 0px;
    margin-bottom: 60px;
    overflow: hidden;
    max-width: 70%;
    transform-origin : top left;
    transform : scale(1.5);
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@media(max-width: 800px) {
    .main-column{
        flex-direction:column;
        align-items: flex-start;
        justify-content: flex-start;
        margin-top: 50px;
        margin-bottom: 200px;
    }
    .top-button-container {
        padding-right:10px;
    }
    .left-column{
        width: 95%;
    }
    .right-column{
        margin-left:2.5%;
        width:95%;
    }
    .shadow{
        display:none;
    }
    .slide-images{
        width:95vw;
    }
    .button-group{
        margin-top:25px;
    }
    .logo{
        width: clamp(120px,25vw,250px);
        height: auto;
    }
    .sign-button{
        padding:15px;
        margin:5px;
        font-size:clamp(16px,2.5vw,22px);
    }
    .description h2{
        margin-bottom: 30px;
        font-size:clamp(30px,7.5vw,60px);
    }
    .description h3{
        font-size:clamp(14px,3.7vw,28px);
    }
    #loginContainer{
        margin-bottom:20px;
        transform : none;
    }
    h4{
        margin-top: 10px;
        margin-bottom: 0px;
    }
    .slide-images{
        box-shadow:0 10px 5px -2px rgba(0, 0, 0, 0.3); 
    }
    .text{
        margin-top:15px;
    }
    .banner {
        margin-left:0px;
        padding-right:0px
    }
}

@media(max-width: 400px) {
   .sign-button{
       padding:5px;
       margin:0px;
   }
   .top-button-container {
    padding-right:0px;
    }
    .logo {
        margin-left:0px;
    }
}
