e@font-face{
    font-family: 'Oswald';
    src: url('/static/fonts/Oswald-VariableFont_wght.ttf') format('truetype');
}

@font-face {
    font-family: 'Raleway';
    src: url('/static/fonts/Raleway-VariableFont_wght.ttf');
}

@font-face{
    font-family: 'Lato';
    src: url('/static/fonts/Lato-Regular.ttf')
}

@font-face {
    font-family: 'Poppins';
    src: url('/static/fonts/Poppins-Medium.ttf');
}

@font-face{
    font-family:'Nunito';
    src: url('/static/fonts/Nunito-VariableFont_wght.ttf');
    font-weight:bold;
}

ul{
   padding-inline-start:0; 
   margin:0;
}

.video {
    background-color: rgb(30,30,30);
    color: black;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-out, opacity 0.3s ease;
    opacity: 1;
    z-index:3;
}

.video-container {
    position:fixed;
    align-self:center;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index:0;
    opacity:1;
    white-space: nowrap;
    overflow:hidden;
}

.overlay-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color:rgb(240, 240, 240);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index:1;
    overflow:hidden;
    text-align:center;
    padding:10px;
}

.overlay-text h2{
    font-size:40px;
    margin:0;
    font-family:'Raleway', sans-serif;
}

.overlay-text h1{
    font-size:100px;
    line-height:100px;
    margin:0;
    font-family:'Oswald', sans-serif;
    font-weight:bolder;
}

.overlay-text h3{
    font-size:25px;
    opacity:0;
    color:rgb(240,240,240);
    transition: opacity 0.3s ease-in-out;
    text-transform:uppercase;
}

@media (max-width:1100px) and (min-width:701px){
    .overlay-text h1{
        font-size:60px;
        line-height:60px;
    }
    
    .overlay-text h2{
        font-size:30px;
    }
}

@media (max-width:700px) and (min-width:501px){
    .overlay-text h1{
        font-size:40px;
        line-height:40px;
    }
    
    .overlay-text h2{
        font-size:25px;
    }
}

@media (max-width:500px) {
    .overlay-text h1{
        font-size:35px;
        line-height:35px;
    }
    
    .overlay-text h2{
        font-size:20px;
    }
}

.image-container{
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    transition: 0.45 ease-in-out;
    z-index:4;
    margin-bottom:0;
}
  
.image-container img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
}

.image-container:hover img{
    filter:brightness(40%)
}

.image-container:hover h3{
    opacity:1;
}

.image-container .overlay-text{
    max-width:100%;
    width:700px;
}

@media (max-width:750px) and (min-width:501px){
    .image-container .overlay-text{
        width:500px;
    }
    
    .overlay-text h3{
        font-size:20px;
        line-height:20px;
    }
}

@media (max-width:500px){
    .image-container .overlay-text{
        width:300px;
    }
    
    .overlay-text h3{
        font-size:16px;
        line-height:16px;
    }
}

#explainer{
    position:relative;
    background-color:rgb(240,240,240);
    color:rgb(30,30,30);
    text-align:center;
    margin-top:0;
    display:flex;
    flex-direction:column;
    text-align:center;
    width:100vw;
}

#explainer h1{
    font-size:35px;
    padding-top:60px;
    padding-bottom:40px;
}

.explainer-grid{
    margin:200px auto;
    display: grid;
    gap: 0px;
    grid-template-columns: 1fr 1fr;
    text-overflow:auto;
    justify-content: center;
}

.explainer-tagline{
    display:flex;
    flex-direction:column;
    text-align:left;
    width:600px;
    max-height:600px;
    height:auto;
}

.explainer-tagline h1{
    font-family:'Oswald', sans-serif;
    font-weight:bolder;
    margin:0;
    font-size:80px !important;
    line-height:80px;
    padding-top:22px !important;
    padding-bottom:50px !important;
}

.instructions{
    width:600px;
}

.instructions-row{
    width:500px;
    max-height:150px;
    height:auto;
    align-items:center;
    display:flex;
    flex-direction: row;
    padding: 10px 0;
}

.step-num{
    height:130px;
    width:130px;
    border-radius:100px;
    background-color:greenyellow;
    text-align:center;
    position:relative;
    color:rgb(30,30,30);
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-num p{
    font-size: 70px;
    margin:0;
    transform:translate(-1%, -1%);
}

.step-body{
    vertical-align:middle;
    padding-top:2px;
    padding-left:25px;
    width:350px;
    text-align:left;
    max-height:150px;
    height:auto;
    display:flex;
    align-items:center;
}

.step-body p{
    font-size:23px;
    font-family: 'Lato', sans-serif;
    font-weight:bold;
    margin:0;
}

.arrow-transform{
    margin: 10px auto;
}

.arrow {
    border: solid rgb(30,30,30);
    border-width: 0 7px 7px 0;
    border-radius: 4px;
    display: inline-block;
    padding: 7px;
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

@media (max-width: 1250px) and (min-width:751px) {
    .explainer-grid{
        grid-template-columns:1fr;
        margin-bottom:200px;
    }
}

@media (max-width:750px) and (min-width:501px) {
    .explainer-grid{
        grid-template-columns:1fr;
        width:300px;
        margin:100px auto;
    }
    
    .explainer-tagline{
        width:300px;
    }
    
    .instructions{
        width:300px;
    }
    
    .instructions-row{
        width:300px;
        height:auto;
        max-height:150px;
    }
    
    .step-num{
        height:80px;
        width:140px;
    }
    
    .step-num p{
        font-size:50px;
    }
    
    .step-body{
        padding-top:0;
        height:auto;
        max-height:150px;
    }
    
    .step-body p{
        margin:0;
        font-size:19px;
    }
    
    .explainer-tagline h1{
        font-size:60px !important;
        line-height:60px;
        padding-bottom:30px !important;
    }
}

@media (max-width:500px) {
    .explainer-grid{
        grid-template-columns:1fr;
        width:300px;
        margin:70px auto;
        margin-top:70px;
    }
    
    .explainer-tagline{
        width:300px;
    }
    
    .instructions{
        width:300px;
    }
    
    .instructions-row{
        width:300px;
        height:auto;
        max-height:150px;
    }
    
    .step-num{
        height:60px;
        width:100px;
    }
    
    .step-num p{
        font-size:35px;
        transform:translate(-2%, -2%);
    }
    
    .step-body{
        padding-top:0;
        max-height:150px;
        height:auto;
    }
    
    .step-body p{
        margin:0;
        font-size:16px;
    }
    
    .explainer-tagline h1{
        font-size:50px !important;
        line-height:50px;
        padding-bottom:20px !important;
    }
    
    .arrow{
        border-width: 0 5px 5px 0;
    }
}

#guide{
    width:100vw;
    display:flex;
    flex-direction: column;
    justify-content:center;
    align-items:center;
    background-color:rgb(250,250,250);
    overflow:hidden;
    padding-bottom:200px;
}

.options{
    padding-top:200px;
    text-align:center;
    max-width: 700px;
    width:auto;
    margin:auto;
    justify-content:center;
}

.options h1{
    font-size:115px;
    line-height:115px;
    font-family:'Oswald',sans-serif;
    font-weight:bolder;
    margin-top:0;
}

.options-subtext{
    max-width:700px;
    width:auto;
    margin:auto;
}

.options p{
    margin-top:5px;
    margin-bottom:30px;
    font-size:24px;
    line-height:24px;
    text-align:center;
    font-family:'Lato', sans-serif;
}

@media (max-width:750px) and (min-width:501px) {
    #guide{
        padding-bottom:100px;
    }
    
    .options{
        padding-top:100px;
    }
    
    .options h1{
        font-size:80px;
        line-height:80px;
    }
    
    .options p{
        font-size:18px;
        line-height:18px;
    }
    
    .options-subtext{
        max-width:490px;
    }
}

@media (max-width:500px) {
    #guide{
        padding-bottom:70px;
    }
    
    .options{
        padding-top:70px;
    }
    
    .options h1{
        font-size:50px;
        line-height:50px;
    }
    
    .options p{
        font-size:12px;
        line-height:12px;
    }
    
    .options-subtext{
        max-width:300px;
    }
}

.slideshow-container {
    position: relative;
    width: 85%;
    margin: auto;
    overflow: hidden;
}

.slides {
    display: none;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    background-color: greenyellow;
    color: rgb(30, 30, 30);
    border: none;
    cursor: pointer;
    padding: 15px;
    z-index: 4;
    border-radius: 60px;
    transition: 0.35s ease-in-out;
}

.next {
    right: 0;
}

.prev:hover, .next:hover {
    color: rgb(30, 30, 30);
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

.slideshow-track-container {
    overflow: hidden;
    width: 100%;
}

.slideshow-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slideshow-slide {
    min-width: 100%;
    transition: opacity 0.5s ease-in-out;
    list-style-type: none;
}

.guide-grid{
    display: grid;
    width: 100%;
    max-width: 1050px;
    margin: 50px auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    justify-content: center;
}

.guide-item{
    position:relative;
    width: 500px;
    max-height: 500px;
    text-align: center;
    margin-bottom:0;
    text-align:left;
}
.guide-item h1{
    font-size:80px;
    font-family:'Oswald', sans-serif;
    font-weight:bolder;
    line-height:80px;
    margin-top:0;
}
.guide-item h2{
    font-family:'Raleway', sans-serif;
    font-size:35px;
    margin:0;
    margin-top:5px;
    margin-bottom:-5px;
}
.guide-item p{
    font-family:'Lato', sans-serif;
    font-size:25px;
    margin-top:5px;
    margin-bottom:20px;
}

.guide-item-image{
    display: block;
    transition: transform .4s, filter .4s;
    aspect-ratio: 1/1;
    width:100%;
    object-fit: cover;
    z-index: 1;
    border:inherit;
    box-shadow: 0 5px 20px 5px rgba(0, 0, 0, 0.2);
}

.go-to-form-button{
    background-color:transparent;
    display:flex;
    color: rgb(30, 30, 30);
    border: solid 3px rgb(30, 30, 30);
    border-radius: 50px;
    padding:5px;
    text-align:center;
    justify-content: center;
    width: 125px;
    height: 35px;
    text-shadow: none;
}

.go-to-form-button p{
    font-size: 20px;
    color: rgb(30, 30, 30);
    margin:auto;
    font-family:'Poppins', sans-serif;
}

.blob-border-1{
    border-radius: 71% 29% 61% 39% / 20% 58% 42% 80%; 
}

.blob-border-2{
    border-radius: 58% 42% 33% 67% / 46% 43% 57% 54%; 
}

#inquiry-form{
    padding-top:10vh;
    background-color:rgb(240,240,240);
    display:flex;
    justify-content: center;
    align-items: center;
    position:relative;
    transition: 0.3s all ease-in-out;
}

.inquiry-container{
    margin-left:auto;
    color:rgb(15,15,15);
    width:auto;
    max-width:550px;
    padding: 0 50px;
}

.inquiry-container h1{
    font-size: 80px;
    margin-top:0;
    transform:translateY(-10%);
    line-height:80px;
    font-family:'Oswald', sans-serif
}

.inquiry-container h3{
    font-size: 25px;
    margin-top:0;
    font-family:'Raleway', sans-serif;
}

.label-format{
    font-size:20px;
    color:rgb(15,15,15);
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
}

.field-format{
    margin-top: 5px;
    padding-top:3px;
    border: none;
    width: 100%;
    max-width: 550px;
    border-bottom: solid 1px rgb(15,15,15);
    background: rgb(240,240,240);
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    padding-bottom: 2px;
    outline: none;
    color: rgb(15,15,15);
    padding-left:5px;
}

.image-form {
    margin-top:7px;
    width: 100%;
    max-width: 220px;
    padding: 25px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    transition: all 0.2s ease-in-out;
    box-shadow: 2px 2px 5px rgba(15,15,15, 0.5), inset -2px -2px 3px rgba(15,15,15, 0.05);
}

.image-form:hover {
    box-shadow: 2px 2px 8px rgba(15,15,15, 0.5), inset -2px -2px 3px rgba(15,15,15, 0.2);
}

.send-button{
    margin-top:20px;
    border:none;
    border-radius: 30px;
    font-size:35px;
    font-family: 'Poppins', sans-serif;
    color:rgb(15, 15, 15);
    background-color:greenyellow;
    height:70px;
    width:180px;
    margin-left:auto;
    display:block;
    cursor:pointer;
    transition: 0.2s ease-in-out;
}

.send-button:hover{
    filter:brightness(50%);
}

.category-divider {
    font-weight: bold;
    color: #555;
    background-color: #f0f0f0;
}

select{
    font-size:18px;
}

select option:disabled {
    color: #000;
    font-weight: bold;
    background-color: #e0e0e0;
}

.file-input-wrapper input[type="file"] {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-name {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #555;
}

.add-file-btn, .remove-file-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    display: inline-block;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left:5px;
}

.add-file-btn {
    background-color: greenyellow;
    color: rgb(15, 15, 15);
}

.remove-file-btn {
    background-color: #ff6b6b;
    color: white;
}

.add-file-btn:hover, .remove-file-btn:hover {
    transform: scale(1.1);
}

#preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.file-preview {
    width: 100px;
    height: 120px;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
}

.file-preview img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.file-preview span {
    padding: 5px;
    font-size: 12px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background-color: #f0f0f0;
}

.file-preview.document {
    align-items: center;
    justify-content: center;
}

.document-icon {
    font-size: 30px;
    margin-bottom: 5px;
}

#certification{
    width:100vw;
    background-color:rgb(240,240,240);
    color:rgb(30,30,30);
    position:relative;
    text-align:center;
    justify-items:center;
    overflow:hidden;
    padding-top:10vh;
    padding-bottom:5vh;
}

.certification-header{
    margin:auto;
    width:auto;
    max-width:100vw;
    font-size:50px;
    font-family: 'Oswald', sans-serif;
    font-weight:bolder;
    line-height:100px;
}

.certification-body{
    margin:auto;
    width:auto;
    max-width:800px;
    padding: 0 50px;
    font-size:18px;
    font-family: 'Lato', sans-serif;
}

.logo-grid{
    max-width:500px;
    width:100%;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, 200px);
    justify-content: center;
    text-align:center;
    align-items: center;
    place-items:center;
    grid-template-rows:auto;
    padding-top:30px;
    padding-bottom:80px;
}

.logo-container{
    align-self:center;
    height:200px;
    width:200px;
}

@media (max-width:700px) and (min-width:501px) {
    .certification-header{
        font-size:35px;
        line-height:65px;
    }
    
    .certification-body{
        font-size:16px;
    }
    
    .logo-grid{
        grid-template-columns: repeat(2, 150px);
    }
    
    .logo-container{
        height:150px;
        width:150px;
    }
}

@media (max-width:500px) {
    .certification-header{
        font-size:25px;
        line-height:50px;
    }
    
    .certification-body{
        font-size:14px;
        padding:0 25px;
    }
    
    .logo-grid{
        grid-template-columns: repeat(2, 120px);
    }
    
    .logo-container{
        height:120px;
        width:120px;
    }
    
    #certification{
        padding-top:4rem;
        padding-bottom:1rem;
    }
}


#faq{
    padding-top:3vh;
    padding-bottom: 10vh;
    margin-bottom:0;
    background-color:rgb(220, 220, 220);
    color:rgb(30, 30, 30);
    text-align:center;
    width:100vw;
    display:flex;
    flex-direction:column;
}

#faq h1{
    font-size:100px;
    line-height:100px;
}

.faq-border{
    width:80vw;
    border-bottom:1px rgb(30, 30, 30) solid;
    margin-right: 10vw;
    margin-left:10vw;
}

.faq-accordion{
    padding-top:35px;
    padding-bottom:35px;
    display:flex;
    width:80vw;
    height:100%;
    justify-content:space-between;
    column-gap:0vw;
    color:rgb(30, 30, 30);
}

.faq-container{
    padding-bottom:0;
    padding-left:3vw;
    margin-bottom:0;
    margin-top:0px;
    height:100%;
    width:100%;
    line-height:27px;
    font-size:27px;
    text-align:left;
}

.flip-button {
    background-color:transparent;
    border:none;
    width:10%;
}

.flip-button:hover{
    cursor:pointer;
}

.arrow-image{
    transition: transform 0.2s ease-in-out;
    height:15px;
    margin-top:0;
    transform: rotate(0deg);
}

.arrow-image.flipped{
    transform: rotate(180deg);
}

.content-show {
	max-height: 500px;
	font-size: 21px;
	line-height:21px;
    padding-bottom:0px;
    padding-top:0;
    transform:translateY(-2vh);
}

.content-show p, .content-container p{
    margin:5px 0;
}

.content-hide {
    padding:0;
    margin:0;
	max-height: 0px;
	font-size: 0px;
}

.content-container{
    display:flex;
    font-size:21px;
    line-height:21px;
    width:70vw;
    transition: 0.5s linear;
    text-align:left;
    padding-left:20px;
    overflow: hidden;
    box-sizing: border-box;
    margin-left:3vw;
    margin-top:0;
    padding-top:0;
    transform:translateY(-2vh);
}

.content-container p{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

@media (max-width:700px) and (min-width:501px) {
    .faq-container{
        font-size:22px;
        line-height:22px;
    }
    
    .content-show, .content-container {
        font-size: 17px;
	    line-height:17px;
    }
}

@media (max-width:500px){
    .faq-container{
        font-size:18px;
        line-height:18px;
    }
    
    .content-show, .content-container {
        font-size: 14px;
	    line-height:14px;
    }
    
    #faq h1{
        font-size:60px;
        line-height:60px;
    }
}

#contact{
    position:relative;
    background-color:rgb(45,45,45);
    margin:0;
    width:100vw;
    height:75vh;
    padding-top:30vh;
    text-align:center;
    overflow:hidden;
}

.contact-title{
    color:rgb(240, 240, 240);
}

.contact-title h1{
    color:greenyellow;
    font-size:170px;
    margin-bottom:0;
    font-family:'Oswald',sans-serif;
}

.contact-title h2{
    margin-top:0;
    font-size:22px;
    font-family: 'Raleway', sans-serif;
    transform:translateY(-20px);
}

.contact-grid{
    width:90vw;
    padding-top:10vh;
    display:grid;
    align-self:center;
    grid-template-columns: repeat(auto-fit, 270px);
    margin-left:12vw;
    column-gap:50px;
}

.contact-green-circle{
    background-color:greenyellow;
    width:30px;
    height:30px;
    border-radius: 50px;
    position:absolute;
    transform:translate(-45px, 29px);
}

.contact-container{
    width:270px;
    color:rgb(240, 240, 240);
    text-align:left;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
}

.contact-container h1{
    font-size:30px;
    margin-bottom:30px;
}

.contact-container h2{
    margin-bottom:0;
    margin-top:0;
    font-size:20px;
}

@media (max-width: 1400px) and (min-width:1101px) {
    .guide-grid {
        max-width: 90%;
        max-height:800px;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 30px;
    }
    
    .guide-item {
        width: 100%;
        max-width: 100%;
        max-height: unset;
        height: auto;
    }
    
    .guide-item-image {
        height: auto;
        max-height: unset;
        aspect-ratio: 1/1;
    }
    
    .go-to-form-button{
        width:120px;
        height:35px;
    }
    .go-to-form-button p {
        font-size:20px;
    }
    .slideshow-container {
        width: 95%;
    }
}

@media (max-width: 1100px) and (min-width: 701px) {
    .guide-grid {
        max-width: 90%;
        max-height:800px;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 30px;
        margin:40px auto;
    }
    
    .guide-item {
        width: 100%;
        max-width: 100%;
        max-height: unset;
        height: auto;
    }
    
    .guide-item h1 {
        font-size: 52px;
        line-height: 52px;
    }
    
    .guide-item h2 {
        font-size: 24px;
        margin-top:5px;
        margin-bottom:-5px;
    }
    
    .guide-item p {
        font-size:18px;
        margin-bottom:15px;
    }
    
    .guide-item-image {
        height: auto;
        max-height: unset;
        aspect-ratio: 1/1;
    }
    
    .go-to-form-button{
        width:110px;
        height:30px;
    }
    
    .go-to-form-button p {
        font-size:18px;
    }
    
    .slideshow-container{
        width:90%;
    }
    
    .prev, .next{
        padding:10px;
    }
}

@media (max-width: 700px) and (min-width: 551px) {
    #guide{
        padding-bottom:120px;
    }
    
    .guide-grid {
        max-width: 90%;
        max-height:800px;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 20px;
        margin:30px auto;
    }
    
    .guide-item {
        width: 97%;
        max-width: 100%;
        max-height: unset;
        height: auto;
    }
    
    .guide-item h1 {
        font-size: 36px;
        line-height: 36px;
    }
    
    .guide-item h2 {
        font-size: 18px;
        margin-top:5px;
        margin-bottom:-5px;
    }
    
    .guide-item p {
        font-size: 16px;
        margin-bottom:10px;
    }
    
    .go-to-form-button{
        width:90px;
        height:25px;
        border: solid 2px rgb(30, 30, 30);
    }
    
    .go-to-form-button p {
        font-size:16px;
    }
    .slideshow-container {
        width: 90%;
    }
    
    .prev, .next {
        padding: 8px;
    }
}

@media (max-width: 550px) and (min-width:401px) {
    #guide{
        padding-bottom:100px;
    }
    
    .guide-grid {
        max-width: 90%;
        max-height:800px;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 20px;
        margin:20px auto;
    }
    .guide-item {
        width: 100%;
        max-width: 100%;
        max-height: unset;
        height: auto;
    }
    .guide-item h1 {
        font-size: 28px;
        line-height: 28px;
    }
    
    .guide-item h2 {
        font-size: 18px;
        margin-top:5px;
        margin-bottom:-5px;
    }
    
    .guide-item p {
        font-size: 14px;
        margin-bottom:5px;
    }
    
    .go-to-form-button{
        width:70px;
        height:16px;
        border: solid 2px rgb(30, 30, 30);
    }
    
    .go-to-form-button p {
        font-size:12px;
    }
     .slideshow-container {
        width: 95%;
    }
    
    .prev, .next {
        padding: 5px;
    }
}

@media (max-width: 400px) {
    #guide{
        padding-bottom:80px;
    }
    
    .guide-grid {
        max-width: 90%;
        max-height:800px;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 10px;
        margin: 15px auto;
    }
    .guide-item {
        width: 100%;
        max-width: 100%;
        max-height: unset;
        height: auto;
    }
    .guide-item h1 {
        font-size: 25px;
        line-height: 25px;
    }
    
    .guide-item h2 {
        font-size: 14px;
        margin-top:5px;
        margin-bottom:-5px;
    }
    
    .guide-item p {
        font-size: 10px;
        margin-bottom:3px;
    }
    
    .go-to-form-button{
        width:60px;
        height:12px;
        border: solid 1px rgb(30, 30, 30);
    }
    
    .go-to-form-button p {
        font-size:10px;
    }
    .slideshow-container {
        width: 98%;
    }
    
    .prev, .next {
        padding: 4px;
    }
}