@import "./style.css";

#sub-header {
    position: relative;
    width: 80%;
    height: 100px;
    z-index: 2;
    background-color: white;
    z-index: 2;
}
#mobile-dropdown {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid black;
}
#dropdown-arrow-wrapper {
    width: 50px;
    height: 50px;
    background-color: blue;
}
#dropdown-arrow-wrapper img {
    width: 100%;
    height: 100%;
}
#arrow.open {
    transform: rotate(180deg);
}
#item-wrapper {
    position: relative;
    display: none;
    top: 100px;
    height: 250px;
    z-index: 3;
    background-color: white;
}
#item-wrapper.visible {
    display: inline;
}
.sub-header-nav-item-wrapper {
    position: relative;
    width: 100% !important;
    height: 25%;
    flex-flow: row;
    align-items: center;
}
.sub-header-nav-item {
    position: relative;
    width: 100%;
    z-index: 1;
}
.sub-header-nav-item.selected {
    color: blue;
}

#sec1 {
    height: calc(125% - 150px);
}

.content.flex.col {
    display: none;
    justify-content: space-evenly;
}
.content.flex.col.selected { 
    display: flex;
}

#sec1 .content {
    position: absolute;
    left: 0px;
    width: 100%;
    height: 90% !important;
}
.columns.flex.row { 
    position: relative;
    width: 100%;
    height: 90%;
    flex-flow: row !important;
    overflow-x: scroll !important;
    overflow-y: hidden;
    justify-content: space-between;
    transition: 0.25s;
}

.link-wrap {
    top: 90%;
}

.pricing-column {
    position: relative;
    top: 0px;
    left: 0px;
    height: 70%;
    margin: 25px;
    padding: 45px;
    justify-content: space-evenly;
    border: 1px solid lightgrey;
    border-radius: 10px;
}
.pricing-column:nth-child(1) {
    margin-left: 0px;
}
.pricing-column:nth-child(3) {
    margin-right: 0px;
}
.pricing-column h1.title {
    text-align: center;
}

h3.title.centered {
    margin-left: auto !important;
    margin-right: auto !important;
}
.title.centered, p.centered {
    text-align: center;
}

.dots-wrap {
    width: 200px;
    flex-flow: row !important
}

.link-wrap {
    left: 0px;
    width: 70% !important;
}

.pricing.flex.row {
    flex-flow: row;
    justify-content: center;
}
.pricing .color.title {
    margin-left: 5px;
}
@media screen and (min-width: 568px) and (max-width: 853px) and (max-height: 393px) {
    #sec1 {
        height: 125% !important;
    }
    #sec1 .content {
        top: 0px;
        height: 100% !important;
        padding-top: 5%;
        justify-content: flex-start !important;
        align-items: flex-start;
    }
    #sec1 #websites-pricing {
        height: 150% !important;
    }
    .dots-wrap {
        display: none;
    }
    .pricing-column {
        width: 250px !important;
        flex-grow: 0;
        flex-shrink: 0;
    }
    .link-wrap {
        position: relative;
        top: 55%;
    }
    #sec1 .content#cloud-management-pricing {
        align-items: center !important;
        text-align: center;
        height: 100%;
    }
}

@media screen and (min-width: 1100px) {
    #sub-header {
        height: 50px;
    }
    #mobile-dropdown {
        display: none;
    }
    #item-wrapper {
        top: 0px;
        width: fit-content;
        height: 50px;
        display: flex;
        flex-flow: row;
        justify-content: flex-start;
        align-items: center;
    }
    .sub-header-nav-item-wrapper {
        width: fit-content !important;
        height: fit-content;
        padding-bottom: 10px;
        padding-right: 25px;
        align-items: center;
    }
    .sub-header-nav-item {
        width: 100%;
        height: fit-content;
    }

    #sec1 {
        height: calc(100% - 150px) !important;
        min-height: unset !important;
        justify-content: flex-start;
    }

    #sec1 .content {
        justify-content: flex-start;
    }
    #website-pricing .columns.flex.row{
        width: 100% !important;
    }
    #websites-pricing .pricing-column {
        width: 33% !important;
    }
    .pricing-column:nth-child(3) {
        padding-right: 45px !important;
    }
    #sec1 .content#app-pricing, #sec1 .content#software-pricing {
        top: 0px;
        left: 0px;
        width: 450px !important;
        height: 300px !important;
        text-align: left !important;
        justify-content: space-around !important;
        align-items: flex-start !important;
    }
    .content#app-pricing .centered, .content#software-pricing .centered {
        margin: 0 !important;
        text-align: left !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }
    #cloud-management-pricing {
        height: 450px !important;
    }
    #cloud-management-pricing .text-wrapper {
        width: fit-content;
        text-align: left;
    }
    #cloud-management-pricing .text-wrapper .centered {
        margin: 0 !important;
    }

    .dots-wrap {
        display: none;
    }

    .link-wrap {
        position: relative;
        top: 80%;
        width: 300px !important;
    }
    .link-wrap a {
        height: 50px;
    }
}