html {
    font-size: 1.8vh;
    font-family: "Lato", sans-serif;
}

/* Media Query for Mobile Devices */
@media (max-width: 480px) {
    html {
        font-size: 11px;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    html {
        font-size: 1.2vh;
    }
}

@media only screen and (max-width: 1279px) {
    html {
        font-size: 16px;
    }
}

body {
    height: 100vh;
    margin: 0;
}

div.body_wrapper {
    display: flex;
    flex-direction: column;
    min-width: 1280px;
    min-height: 720px;
}

@media only screen and (orientation: portrait) {
    div.body_wrapper {
        width: 1280px;
    }
}

.page-body-block {
    overflow: hidden;
    flex: 1;
    display: grid;
    grid-template-columns: 30% auto;
    height: 100%;
}

.page-body-block .left-panel {
    display: grid;
    grid-template-rows: min-content auto auto min-content;
    background-color: #F2F4F6;
}

.around-grid-padding {
    padding: 1.2rem 1.9rem;
}

.left-panel .topbar {
    height: fit-content;
    display: flex;
    align-self: center;
    justify-content: space-between;
}

.left-panel .topbar .forticloud-brand-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.left-panel .topbar .forticloud-brand-container img.forticloud-logo {
    width: 10rem;
}

.left-panel .topbar .monitor-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.large-logo-container {
    align-self: end;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.large-logo-container .large-logo {
    height: 9rem;
    padding: 1.5rem;
}

.large-logo-container .brand-name {
    padding-bottom: 1.8rem;
}

.left-panel-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.left-panel-footer a {
    display: flex;
}

.left-panel-footer img {
    width: 6rem;
}

.left-panel-footer .version-text {
    color: #2B2E3499;
}

.legal-footer {
    height: 0.8rem;
    width: 100%;
    position: fixed;
    bottom: 0;
    right: 0;
    background-color: #F2F4F6;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    color: #2B2E3499;
}
.legal-footer .legal-info {
    display: flex;
    flex-direction: row;
}
.legal-footer .legal-info a {
    padding: 0 0.5rem;
    text-decoration: none;
    color: #2B2E3499;
}
.legal-footer .legal-info a.vertical-border {
    border-right: 1px solid #2B2E3499;
}
.legal-footer .legal-info a:hover {
    cursor: pointer;
    text-decoration: underline;
}

.left-panel-content {
    display: grid;
    grid-template-rows: max-content auto;
}

.left-panel-button-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 1rem;
}
.left-panel-button-group button {
    width: 100%;
    border-radius: 5px;
    padding: 0;
}
.left-panel-button-group button a {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 0.5rem;
    padding: 0.5rem 0;
    text-decoration: none;
}
.left-panel-button-group button a:hover {
    text-decoration: none;
}

.left-panel-button-group button.login-button {
    border: none;
    background-color: #464646;
}
.left-panel-button-group button.login-button a {
    color: #FFFFFF;
}
.left-panel-button-group button.login-button:hover {
    background-color: #000000;
    cursor: pointer;
}

.left-panel-button-group button.register-button {
    border: 1px solid #464646;
    background-color: #F2F4F6;
}
.left-panel-button-group button.register-button a {
    color: #464646;
    background: none;
}
.left-panel-button-group button.register-button:hover {
    color: #000000;
    border: 1px solid  #000000;
    box-shadow: 0 1px 3px 0 rgba(43, 46, 52, 0.3);
    cursor: pointer;
}

.left-panel-text-group {
    display: flex;
    flex-direction: column;
}
.left-panel-text-group a {
    color: #307FE2;
    text-decoration: none;
}
.left-panel-text-group a:hover {
    text-decoration: underline;
    cursor: pointer;
}

.fixed-signup-demo-button {
    border: none;
    border-radius: 5px;
    position: absolute;
    top: 2rem;
    right: 3rem;
    z-index: 100;
}
.fixed-signup-demo-button a {
    font-family: "Lato", sans-serif;
    height: fit-content;
    width: fit-content;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 0.5rem;
    padding: 0.5rem;
    color: #464646;
}
.fixed-signup-demo-button:hover {
    cursor: pointer;
}

.fixed-swipe-pager {
    position: absolute;
    left: max(384px, 30%);
    top: max(288px, 40%);
    z-index: 100;
}

.fixed-swipe-pager .swipe-pager-img {
    width: 1.5rem;
}

.fixed-swipe-pager .pager-group {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    row-gap: 1.5rem;
}

.fixed-swipe-pager .pager-group div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fixed-swipe-pager .pager-group div div {
    background-color: #363636;
    border-radius: 50%;
}
.fixed-swipe-pager .pager-group div div:hover {
    cursor: pointer;
    background-color: #89a7e3;
}

.fixed-swipe-pager .pager-group div.selected div {
    background-color: #307FE2;
}

.full-screen-height {
    height: 100vh;
    min-height: 720px;
}

.slide-swiper-wrapper {
    height: 100vh;
    min-height: 720px;
    overflow: hidden;
    transition-property: transform;
    touch-action: pan-x;
}

.google-play-logo, .app-store-logo {
    height: 85%;
    background: transparent;
    border: none;
    padding: 0;
    max-width: 100%;
    display: block; /* Ensure proper alignment for images */
}

.two-by-two-grid-container {
    flex: 1;
    display: grid;
    grid-template-rows: 30% auto;
    grid-template-columns: 40% auto;
    color: #ffffff;
}

.two-by-multiple-button-container {
    padding-left: 3rem;
    width: 35%;
    display: grid; /* Use CSS Grid for layout */
    grid-template-columns: repeat(2, 1fr); /* 2 equal-width columns */
    gap: 10px; /* Space between buttons (both rows and columns) */
    justify-items: left; /* Center align buttons horizontally in each column */
    align-items: center; /* Center align buttons vertically in each grid cell */
    grid-auto-rows: 50px;
}

.placeholder {
    visibility: hidden;
    height: 0;
}

.intro-content-wrapper {
    background: url("../img/land-bg1.png") no-repeat 20% 50%;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
}

.intro-option-list {
    height: fit-content;
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 1);
    background-color: transparent;;
}

.intro-option-list .item {
    height: 2.5rem;
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 1);
}

.video-container {
    width: 75%;
    max-width: 28rem;
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.service-content-wrapper {
    background: url("../img/land-bg2.png") no-repeat 20% 50%;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    color: #ffffff;
}

.service-content {
    margin: 5rem 6rem;
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
}

table {
    border-collapse: collapse;
    border-style: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

table th:first-child {
    text-align: left;
    width: 18rem;
}

table td, table th {
    border: 1px solid rgba(255, 255, 255, 0.3);
}

tr td:not(:first-child) {
    text-align: center;
}

th, td {
    padding: 0.7rem;
}

th, .table-header {
    background-color: #9EB5CC;
    color: #000000;
}

tr.table-header th.white-bg-color {
    background-color: #ffffff;
    color: #000000;
}

.half-opacity {
    opacity: 0.5;
}

.release-content-wrapper {
    background: url("../img/land-bg3.png") no-repeat 20% 50%;
    background-size: 100% 112%;
    display: flex;
    flex-direction: column;
}

.release-content {
    display: flex;
    flex-direction: column;
    color: #ffffff;
}

button.download-button-a {
    background-color: #ffffff;
    color: #474747;
    padding: 10px 16px;
    border: none;
    text-align: center;
    font-size: 14px;
    width: 100%; /* Button fills the width of its column */
    max-width: 150px; /* Optional: Limit button size */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button.download-button-a span {
    white-space: nowrap;
}

button.download-button-a a {
    background-color: #ffffff;
    color: #474747;
    padding: 10px 20px;
    text-align: center;
    font-size: 14px;
    width: 100%; /* Button fills the width of its column */
    max-width: 150px; /* Optional: Limit button size */
    cursor: pointer;
}

button.icon-button-with-content {
    border: none;
    width: 37%;
}
button.icon-button-with-content a {
    text-decoration: none;
    color: #464646;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0.8rem;
    font-family: "Lato", sans-serif;
}
button.icon-button-with-content:hover {
    cursor: pointer;
    border: none;
}
button.icon-button-with-content span {
    padding-left: 3.5rem;
    padding-right: 5rem;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.content-text-line-height {
    line-height: 1.5rem;
}

.title-text {
    font-size: 2.5rem;
}

.content-text {
    font-size: 1.1rem;
}

.footer-text {
    font-size: 0.8rem;
}

.bold-font {
    font-weight: 600;
}

img.icon-img {
    width: 1.0rem;
}

.large-row-gap {
    row-gap: 2.5rem;
}

.md-row-gap {
    row-gap: 2.5rem;
}

.md-col-gap {
    column-gap: 1rem;
}

.two-by-two-grid-container-spacing {
    gap: 2rem 7rem;
    padding-top: 13rem;
    padding-left: 5rem;
    padding-right: 3rem;
}

.one-by-one-spacing {
    gap: 2rem 5rem;
    padding-top: 3rem;
    padding-left: 3rem;
    padding-bottom: 3rem;
}

.service-table {
    width: 95%
}

.text-padding {
    padding: 0.8rem;
}

.swiper-circle {
    height: 1.1rem;
    width: 1.1rem;
}

.swiper-circle div {
    height: 0.7rem;
    width: 0.7rem;
}

.selected.swiper-circle div, .swiper-circle div:hover {
    height: 1.1rem;
    width: 1.1rem;
}

.login-button-text {
    font-size: 1.1rem;
}

@media screen and (max-width: 1279px), screen and (width: 1366px), screen and (width: 1368px){
    .around-grid-padding {
        padding: 1em;
    }

    .login-button-text, .content-text {
        font-size: 0.8rem;
    }

    .large-logo-container .large-logo {
        height: 4rem;
    }

    .content-text-line-height {
        line-height: 1.2rem;
    }

    .title-text {
        font-size: 1.1rem;
    }
}

