@import url('https://fonts.googleapis.com/css2?family=Google+Sans&display=swap');

html {
    height: max-content;
    width: 100%;
    margin: 0px;
    padding: 0px;
}

body {
    height: max-content;
    width: 100%;
    background-color: #fff;
    color: #353535;
    font-family: "Google Sans", calibri, gadugi;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    margin: 0px;
    padding: 0px;
    word-break: break-word;
    word-wrap: break-word;
}

header {
    height: 80px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
    position: sticky;
    top: 0px;
    background-color: #fff;
    z-index: 99;
}

header.scrolledUp {
    border-bottom: 1px solid #e7e7e9;
    box-shadow: 0 4px 10px #0000001a;
}

.rightSide {
    height: 50px;
    width: max-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    box-sizing: border-box;
}

#companyLogo {
    height: 47px;
    width: 88px;
}

.navMenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    height: fit-content;
    width: auto;
    min-width: fit-content;
}

.navMenuItem {
    margin-left: 10px;
    margin-right: 10px;
    width: auto;
}

.itemMenu {
    text-decoration: none;
    color: #353535;
    width: auto;
    transition: color 0.11s linear;
}

.itemMenu:hover {
    color: #dd9067;
}

#currentItemMenu {
    color: #dd9067;
}

.itemMenu.styleB:hover {
    color: #56bcc5;
    transition: color 0.11s linear;
}

.discoverLinkLine {
    height: 1px;
    width: 1px;
    border-bottom: 0.5px solid transparent;
    background-color: transparent;
}

.discoverLinkLine.fullSizeA {
    width: 101%;
    border-bottom: 1px solid #ffbc98;
    background-color: #ffbc98;
    transition: all 0.25s linear;
}

.discoverLinkLine.fullSizeB {
    width: 101%;
    border-bottom: 1px solid #63d8e2;
    background-color: #63d8e2;
    transition: all 0.25s linear;
}

.boxMenu {
    position: relative;
    display: none;
    justify-content: center;
    align-items: center;
    height: 35px;
    width: 35px;
    margin-right: 10px;
}

#colapseMenu {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    width: 35px;
    border-radius: 4px;
    background-color: transparent;
    background-image: url("../image/menuPic.png");
    background-position: center;
    background-size: 18px 18px;
    background-repeat: no-repeat;
    border-radius: 50%;
    transition: background-color 0.2s linear;
}

#colapseMenu:hover {
    background-color: #e1e1e3;
}

#colapseMenu:active {
    background-color: #ffa777;
    background-image: url("../image/menuPicHover.png");
}

#colapseMenu.afterClick {
    background-color: #ffa777;
    background-image: url("../image/menuPicHover.png");
}

#colapseMenu.afterClick:hover {
    background-color: #ffa777;
}

#closeMenu {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    width: 35px;
    border-radius: 4px;
    background-color: transparent;
    background-image: url("../image/closeMenuNor.png");
    background-position: center;
    background-size: 16px 16px;
    background-repeat: no-repeat;
    border-radius: 50%;
    transition: background-color 0.2s linear;
}

#closeMenu:hover {
    background-color: #e1e1e3;
}

#closeMenu:active {
    background-color: #ffa777;
    background-image: url("../image/closeMenuHov.png");
}

#colMenuContent {
    display: none;
    justify-content: flex-start;
    flex-direction: column;
    align-items: start;
    position: absolute;
    top: -24px;
    box-sizing: border-box;
    background-color: white;
    width: calc(100vw);
    height: calc(100vw);
    border-radius: 2px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    padding-top: 5px;
}

#ControlArea {
    height: 76px;
    width: 100%;
    box-sizing: border-box;
    color: #353535;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 10px;
    padding-right: 20px;
    border-bottom: 1px solid #e7e7e9;
}

#spaceSeparator1 {
    width: 1px;
    height: 50%;
}

#linkGigsArea {
    height: 88px;
    width: 100%;
    box-sizing: border-box;
    color: #353535;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
}

.itemColapseMenu {
    text-decoration: none;
    height: 65px;
    width: 100%;
    box-sizing: border-box;
    color: #353535;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
}

.itemColapseMenu:hover {
    color: white;
    background-color: #ffa777;
    transition: background-color 0.07s linear;
}

.menuIcon {
    height: 24px;
    width: 24px;
    margin-right: 10px;
}

.orderButtonA, .orderButtonB, .gigsOrderButton {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    min-width: min-content;
    border: 1px solid #56bcc5;
    border-radius: 4px;
    background-color: #56bcc5;
    font-size: 18px;
    transition: all .11s linear;
    margin-left: 10px;
    margin-right: 10px;
}

.orderButtonA {
    height: 40px;
    width: 140px;
    transition: all .2s linear;
}

.orderButtonB {
    height: 50px;
    width: 200px;
}

.MenuOrderButton {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    height: 50px;
    width: 40%;
    min-width: min-content;
    border: 1px solid #56bcc5;
    border-radius: 4px;
    background-color: #56bcc5;
    font-size: 22px;
    transition: all .11s linear;
    margin-left: 10px;
    margin-right: 10px;
}

.downloadButton {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    height: 50px;
    width: 200px;
    min-width: min-content;
    border: 1px solid #ffa777;
    border-radius: 4px;
    background-color: #ffa777;
    font-size: 18px;
    transition: all .11s linear;
    margin-left: 10px;
    margin-right: 10px;
}

.orderButtonA.donwloadReady {
    background-color: #ffa777;
    border: 1px solid #ffa777;
    transition: all .2s linear;
}

.downloadButton:hover, .orderButtonA.donwloadReady:hover {
    background-color: #dd9067;
    border: 1px solid #dd9067;
}

.downloadButton:active, .orderButtonA.donwloadReady:active {
    background-color: #bb7b58;
    border: 1px solid #bb7b58;
}

.orderButtonA:hover, .orderButtonB:hover, .MenuOrderButton:hover, .gigsOrderButton:hover {
    background-color: #499da5;
    border: 1px solid #499da5;
}

.orderButtonA:active, .orderButtonB:active, .MenuOrderButton:active, .gigsOrderButton:active {
    background-color: #3f858b;
    border: 1px solid #3f858b;
}

.orderButtonLink, .gigsLink, .downloadButtonLink {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    text-decoration: none;
    color: white;
    transition: color 0.11s linear;
    height: 100%;
    width: 100%;
    padding-bottom: 2px;
    font-weight: 600;
}

section {
    box-sizing: border-box;
    height: 820px;
    width: 100%;
}

.sectionA {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sectionB {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}

#describeASection, #describeBSection, #describeCSection {
    height: max-content;
    margin-top: 75px;
}

#describeCSection {
    margin-bottom: 75px;
}

.secText {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 30%;
    height: 75%;
    box-sizing: border-box;
    min-height: fit-content;
    min-width: fit-content;
}

.secVisual {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 50%;
    height: 75%;
    box-sizing: border-box;
}

.secTextContent {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: start;
    box-sizing: border-box;
    height: max-content;
    width: auto;
}

.sectionTitle {
    font-size: 40px;
    font-weight: 600;
    color: #bb7b58;
    margin-left: 10px;
    margin-right: 10px;
}

.sectionParagraph {
    font-size: 20px;
    margin-left: 10px;
    margin-right: 10px;
}

.highlitedText {
    color: #bb7b58;
    font-weight: bold;
}

.offerDetails, .mainOfferDetails {
    margin-left: 10px;
    margin-right: 10px;
}

.offerItem, .offerDetails {
    display: flex;
    justify-content: flex-start;
    box-sizing: border-box;
    height: fit-content;
    width: fit-content;
}

.offerDetails {
    cursor: pointer;
}

.offerItem {
    margin-bottom: 5px;
}

.offerDetails {
    margin-top: 5px;
}

.offerItemIcon, .offerInfoPic, .offerPic {
    box-sizing: border-box;
    height: 14px;
    width: 14px;
    margin-right: 10px;
    margin-top: 3px;
}

.secVisualPic {
    box-sizing: border-box;
    height: 100%;
    width: 100%;
}

.sectionBigTitle {
    font-size: 40px;
    color: #56bcc5;
    margin-left: 10px;
    margin-right: 10px;
    height: fit-content;
    width: fit-content;
}

.offerPanel {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    height: 90%;
    width: 100%;
}

.separatorLine {
    height: 1px;
    max-height: 1px;
    box-sizing: border-box;
    width: 100%;
    border: 1px solid #56bcc58e;
}

#aboutSection {
    background-color: #f5f5f7;
}

.sectionTitleB {
    font-size: 40px;
    font-weight: 600;
    color: #404040;
    margin-left: 10px;
    margin-right: 10px;
    width: fit-content;
}

.sectionBigTitleB {
    font-size: 40px;
    color: #dd9067;
    margin-left: 10px;
    margin-right: 10px;
    height: fit-content;
    width: fit-content;
}

.highlitedTextB {
    color: #56bcc5;
    font-weight: bold;
}

.highlitedTextC {
    color: #dd9067;
    font-weight: bold;
}

.highlitedTextD {
    color: #499da5;
}

.browserBanner {
    margin-left: 10px;
    margin-right: 10px;
}

.Browserlink {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    text-decoration: none;
    color: #959595;
    font-size: 24px;
    transition: color 0.11s linear;
    height: 100%;
    width: 100%;
    padding-bottom: 2px;
    font-weight: 600;
}

#BrowserLogo {
    height: 50px;
    width: 50px;
}

.spaceSeparator2 {
    width: 5px;
    height: 1px;
    box-sizing: border-box;
}

#browserFeature {
    border: 1px solid transparent;
}

.BrowserPanel {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    align-items: start;
    height: 30%;
    max-height: max-content;
    width: 90%;
    padding-right: 15px;
    padding-left: 15px;
}

.features {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: start;
    box-sizing: border-box;
    height: max-content;
    width: 32%;
    margin-top: 15px;
}

.featureHeader {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
    margin-left: 20px;
    margin-right: 20px;
}

.featurePic {
    height: 64px;
    width: 64px;
    margin-bottom: 10px;
}

.featureTitle {
    color: #404040;
    font-size: 21px;
    font-weight: bold;
    box-sizing: border-box;
}

.featureBody {
    box-sizing: border-box;
    height: max-content;
    min-height: min-content;
    width: fit-content;
    min-width: 50px;
    color: #505356;
    margin-left: 20px;
    margin-right: 20px;
}

#spaceLayout {
    height: 5%;
    width: 20px;
    box-sizing: border-box;
}

footer {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    height: 640px;
    max-height: max-content;
    width: 100%;
    background-color: #f5f5f7;
    padding-top: 30px;
    padding-bottom: 30px;
    color: #404040;
}

.footerHeader {
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-sizing: border-box;
    height: fit-content;
    width: 270px;
    min-width: fit-content;
    margin-bottom: 20px;
}

.socialInvitation {
    font-size: 18px;
    font-weight: 600;
}

.socialPic {
    height: 32x;
    width: 32px;
}

.socialLink {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    text-decoration: none;
    height: fit-content;
    width: fit-content;
}

.footerBody {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    height: 75%;
    min-height: fit-content;
    width: 70%;
    min-width: fit-content;
    padding: 0px;
    border-top: 1px solid #dadadc;
    border-bottom: 1px solid #dadadc;
}

.footerSectionMenu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-sizing: border-box;
    height: 50%;
    min-height: fit-content;
    width: 49.5%;
    min-width: fit-content;
}

.footerMenu {
    display: block;
    box-sizing: border-box;
    height: 180px;
    width: auto;
    min-width: 170px;
}

.fiMenuTitle {
    font-size: 18px;
    font-weight: 600;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
}

.footerItemB {
    margin-bottom: 13px;
}

.footerFooter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: fit-content;
    width: 70%;
}

.companyArea {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 190px;
    height: 40px;
}

.companyName {
    font-size: 25px;
    font-weight: 600;
    height: 38px;
}

.copyRight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100px;
    height: fit-content;
}

.CopyR {
    font-size: 30px;
    height: 30px;
    width: fit-content;
}

.legalsArea {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: fit-content;
    width: 245px;
}