@font-face {
    font-family: "mark-bold";
    src: url("../fonts/outfit_bold.ttf");
}

@font-face {
    font-family: "mark-regular";
    src: url("../fonts/outfit_regular.ttf");
}

@font-face {
    font-family: "mark-semi-bold";
    src: url("../fonts/outfit_semi_bold.ttf");
}

:root {
    --primary: #0078E5;
    --secondary: #CE0695;
    --background: #282828;
    --primaryShadow: #0078E584;
    --grey: #767676;
    --font-bold: mark-bold, sans-serif;
    --font-regular: mark-regular, sans-serif;
    --font-semi-bold: mark-semi-bold, sans-serif;
  }
  
::selection, ::-moz-selection {
    color: white;
    background: var(--secondary);
}

body{
    background-color: #f0f0f0;
    font-family: var(--font-bold);
    margin: 0;
    padding: 0;
}

section{
    height: 100vh;
    overflow: hidden;
    position: relative;
}

h1{
    font-size: 60px;
    margin: 0;
}

p{
    font-family: var(--font-regular);
}

img{
    user-select: none;
    pointer-events: none;
}

#sectionMain, #sectionFunctions, #sectionPromotion{  
    background-color: var(--background);  
}

#sectionBenefits, #sectionFAQ, #sectionOtherCompanies{
    z-index: 0;
    background-color: white;
}

#sectionBenefits::before, #sectionFAQ::before, #sectionOtherCompanies::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/dotted_background.webp');
    background-size: 1200px 1200px;
    background-repeat: repeat;
    opacity: 0.1;
    z-index: -10;
}


/*main section content*/
#sectionMain{
    color: white;
}

#mainHeader{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1vh;
    height: 90px;
    color: white;
    z-index: 20;
}

#logo{
    margin-left: 60px;
    width: 163px;
    height: 45px;
}

#login{
    margin-right: 33px;
    width: 174px;
    height: 57px;

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#login-text {
    display: inline-block;
    position: relative;
    text-decoration: none;
    color: white;
}

#login-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: transparent;
    transition: background-color 0.2s;
}

#login-text:hover::after {
    background-color: var(--secondary);
}

#login img{
    margin-right: 12px;
}

#sectionMain{
    min-height: 500px;
}

#sectionMain #backgroundCircle{
    position: absolute;
    top: -2500px;
    right: -2500px;
    width: 5000px;
    opacity: 0.54;
    z-index: 0;

}

#sectionMain #moiryPlatformaImage{
    margin-right: 5vw;
    width: 82vh;
    max-width: 40vw
}

.purpleText{
    color: var(--secondary);
}

#sectionMain #mainContent{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: calc(100% - 90px - 1vh);
    z-index: 10;
    overflow: hidden;
}

#sectionMain #mainTextBlock{
    margin-left: 5vw;
    width: 40vw;
    color: white;
}

#sectionMain #mainBTN1, #sectionMain #mainBTN2{
    padding: 19px 39px;

    background-color: var(--primary);
    box-shadow: 0px 0px 20px var(--primaryShadow);
    border-radius: 0px 30px 30px 30px;
    transition: background-color 0.3s;
    color: white;
    text-decoration: none;
}

#sectionMain #mainBTN1:hover, #sectionMain #mainBTN2:hover{
    background-color: #0588ff;
}

#sectionMain #mainTextBlock p{
    width: 36vw; /*697px*/
    margin-top: 24px;
    margin-bottom: 63px;
}

#sectionMain #mainBTN2{
    display: none;
}

@media screen and ((max-width: 1300px)){
    #sectionMain #mainTextBlock h1{
        font-size: 50px;
    }
}

@media screen and (max-width: 1000px) {
    #sectionMain #mainTextBlock h1{
        font-size: 60px;/*35px*/
    }

    #sectionMain #mainTextBlock p{
        font-size: 30px;
    }

    #sectionMain #moiryPlatformaImage{
        max-width: 35vw;
    }

    #sectionMain #mainHeader{
        margin-top: 2vh;
    }

    #sectionMain #logo{
        height: 100px;
        width: 300px;
        left: 4vw;
        top: 20px;
    }

    #sectionMain #login{
        height: 100px;
        width: 300px;
        right: 4vw;
        top: 10px;
    }

    #sectionMain #login img{
        height: 50%;
    }

    #sectionMain #login-text{
        font-size: 30px;
        margin-left: 10px;
    }

    #sectionMain #mainContent{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: calc(100% - 90px - 2vh);
    }

    #sectionMain #mainTextBlock{
        margin: 0;
        width: 87vw;
        height: auto;
    }

    #sectionMain #mainTextBlock p{
        width: 87vw;
    }

    #sectionMain #mainBTN1{
        display: none;
    }

    #sectionMain #mainTextBlock h1{
        font-size: 80px;/*35px*/
    }

    #sectionMain #mainBTN2{
        display: block;
        margin-top: 10%;
        font-size: 40px;
        padding: 50px 90px;
        border-radius: 0 90px 90px 90px
    }

    #sectionMain #moiryPlatformaImage{
        margin: 0;
        max-width: 70%;
    }
}

@media screen and (max-width: 1000px) and (max-height: 1600px){
    #sectionMain #mainTextBlock h1{
        font-size: 5vh;
    }

    #sectionMain #mainTextBlock p{
        font-size: 3vh;
    }

    #sectionMain #moiryPlatformaImage{
        max-width: 35vh;
    }
}

@media screen and (max-width: 1000px) and (max-height: 980px){
    #sectionMain #mainTextBlock h1{
        font-size: 3vw;
    }

    #sectionMain #mainTextBlock p{
        font-size: 2vw;
    }

    #sectionMain #moiryPlatformaImage{
        max-width: 35vh;
    }
    
    #sectionMain #mainBTN2{
        padding: 19px 39px;
        font-size: 3vh;
        border-radius: 0px 30px 30px 30px;
        transition: background-color 0.3s;
    }

    #sectionMain #mainHeader{
        margin-top: 2vh;
        height: 10vh;
    }

    #sectionMain #logo{
        height: 10vh;
    }

    #sectionMain #login{
        height: 10vh;
    }

    #sectionMain #login-text{
        font-size: 3vh;
    }
}

@media screen and (max-width: 1000px) and (max-height: 1500px){
    #sectionMain #mainTextBlock h1{
        font-size: 4vh;
    }

    #sectionMain #mainTextBlock p{
        font-size: 2vh;
    }

    #sectionMain #moiryPlatformaImage{
        max-width: 35vh;
    }
}

@media screen and (max-width: 1000px) and (max-height: 650px){
    #sectionMain #mainTextBlock{
        text-align: center;
    }

    #sectionMain #mainTextBlock h1{
        font-size: 8vh;
    }

    #sectionMain #mainTextBlock p{
        font-size: 3vh;
    }

    #sectionMain #moiryPlatformaImage{
        display: none;
    }

    #sectionMain #mainBTN2{
        margin: 0;
    }
}


/*benefits section content*/
#sectionBenefits{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 45vw;
}

#sectionBenefits #benefitsMainDiv{
    position: flex;
    vertical-align: middle;
}

#sectionBenefits #benefitsTopText{
    color: var(--secondary);
    font-size: 30px;
    margin: 0;
    margin-top: 10vh;
}

#sectionBenefits #benefitsBottomText{
    font-size: 60px;
    margin: 10px 0;
}

#sectionBenefits #tabletDiv{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 3vw; /* 0 5vw */
    height: 35vw; /* 50vh */
    min-height: 350px;
    aspect-ratio: 1/1;
}

#sectionBenefits #tabletDiv img{
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 40vw; /* 50vh */
    min-height: 300px;
    max-width: 80vw;
    max-height: 50vh;
}

#sectionBenefits #benefitsMainText{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#sectionBenefits #benefitsBottomContent{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

#sectionBenefits .benefitsCard{
    display: flex;
    align-items: center;
    flex-direction: row;
    margin: 15vh 0;
}

#sectionBenefits .description{
    width: 333px;
    margin: 0;
}

#sectionBenefits .purpleText{
    font-size: 30px;
    margin: 4px 0;
    font-family: var(--font-semi-bold);
}

#timeIcon, #documentIcon, #teamIcon, #puzzleIcon{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 111px;
    height: 111px;
    background-color: var(--primary);
    box-shadow: 0px 0px 20px var(--primaryShadow);
    margin: 0 29px;
}

#timeIcon{
    border-radius: 30px 30px 0px 30px;
    order: 2;
}

#documentIcon{
    border-radius: 30px 0px 30px 30px;
    order: 2;
}

#teamIcon{
    border-radius: 30px 30px 30px 0px;
}

#puzzleIcon{
    border-radius: 0px 30px 30px 30px;
}

#puzzleIcon img{
    transform: translate(-4px, -4px);
}

@media screen and (max-width: 1900px) {
    #sectionBenefits #tabletDiv{
        margin: 0 2vw;
    }
}

@media screen and (max-width: 1870px) and (min-width: 1550px){
    #sectionBenefits #benefitsTopText{
        font-size: 1.5vw;
    }

    #sectionBenefits #benefitsBottomText{
        font-size: 3vw;
    }

    #sectionBenefits #tabletDiv{
        margin: 0 2vw;
        height: 30vw;
    }

    #sectionBenefits #tabletDiv img{
        height: 30vw;
    }

    #sectionBenefits .benefitsCard{
        margin: 20% 0;
        font-size: 1vw;
    }

    #sectionBenefits .benefitsCard .purpleText{
        font-size: 2vw;
    }

    #sectionBenefits .description{
        width: 20vw;
    }
    
    #timeIcon, #documentIcon{
        margin-right: 0;
    }

    #teamIcon, #puzzleIcon{
        margin-left: 0;
    }

    #timeIcon, #documentIcon, #teamIcon, #puzzleIcon{
        width: 6vw;
        height: 6vw;
    }

    .benefitsCard img{
        width: 50%;
    }

    #teamIcon img{
        width: 70%;
    }

    #puzzleIcon img{
        width: 60%
    }

    #timeIcon{
        border-radius: 20px 20px 0px 20px;
        order: 2;
    }
    
    #documentIcon{
        border-radius: 20px 0px 20px 20px;
        order: 2;
    }
    
    #teamIcon{
        border-radius: 20px 20px 20px 0px;
    }
    
    #puzzleIcon{
        border-radius: 0px 20px 20px 20px;
    }
}

@media screen and (max-width: 1550px){
    #sectionBenefits {
        height: 150vh;
        min-height: 2500px;
    }

    #sectionBenefits #benefitsBottomContent {
        flex-direction: column;
    }

    #sectionBenefits .description {
        width: 60vw;
    }

    #sectionBenefits .benefitsCard{
        margin: 10% 0;
        font-size: 30px;
    }

    #sectionBenefits .benefitsCard .purpleText{
        font-size: 40px;
    }

    #sectionBenefits #tabletDiv{
        height: 50vw;
    }

    #sectionBenefits #tabletDiv img{
        height: 50vw;
    }

    #timeIcon, #documentIcon, #teamIcon, #puzzleIcon{
        width: 15vw;
        height: 15vw;
    }

    #timeIcon, #documentIcon{
        order: 0;
        border-radius: 30px 30px 0px 30px;
    }

    #teamIcon, #puzzleIcon{
        border-radius: 30px 0px 30px 30px;
    }

    .benefitsCard img{
        width: 50%;
    }

    #teamIcon img{
        width: 70%;
    }

    #puzzleIcon img{
        width: 60%
    }
}

@media screen and (max-width: 1200px){ 
    #timeIcon, #documentIcon, #teamIcon, #puzzleIcon{
        width: 20vw;
        height: 20vw;
    }

    #sectionBenefits #tabletDiv{
        margin: 0 2vw;
        height: 60vw;
    }

    #sectionBenefits #tabletDiv img{
        height: 60vw;
    }
}

@media screen and (max-height: 700px){
    #sectionBenefits{
        height: 600px;
    }
}


/*functions section content*/
#sectionFunctions{
    overflow: visible;
    height: 400vh;
}

#stickyContent{
    display: flex;
    flex-direction: row;
    overflow: hidden;
    height: 100vh;
}

#functionsImage{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    height: 100%;
}

#functionsImage img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#functionsImage #functionsCircle{
    width: 70%;
}

#functionsImage #functionsAppPreview{
    width: 80%;
    border-radius: 10px;
}

#functionsText{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 5%;
    width: 40%;
    height: 100%;
    color: white;
    font-size: 16px;
}

#functionsText h1{
    margin-bottom: 5%;
}

.infoSection{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 5%;
}

.textSection{
    margin: 0 5%;
}

.textSection p{
    color: var(--grey);
}

.textSection h3{
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--grey);
    font-size: 30px;
}

#functionsText .purpleText{
    color: var(--secondary);
}

#activeStepIndicator{
    background-color: var(--secondary);
}

#whiteText{
    color: white;
}

.functionsStepIndicator{
    box-sizing: content-box;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2px;
    background-color: var(--background);
    height: 26px;
    aspect-ratio: 1/1;
    border-radius: 100%;
    border-width: 2px;
    border-style: solid;
    border-color: var(--secondary);
    z-index: 20;
}

.functionsStepIndicator .stepIndicator{
    height: calc(100% + 2px);
    width: calc(100% + 2px);
    border-radius: 100%;
    margin: 0;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

#infoSectionLine{
    position: absolute;
    width: 2px;
    background-color: var(--secondary);
}

#infoSectionText{
    z-index: 20;
    display: flex;
    flex-direction: column;
}

.greyText{
    color: var(--grey);
}

.sticky {
    position: sticky;
    z-index: 50;
    top: 0;
    align-items: center;
}

.infoActive h3{
    color: var(--secondary);
}

.infoActive p{
    color: white;
}

#sectionIndicatorsMobile{
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.sectionIndicator{
    box-sizing: content-box;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2px;
    background-color: var(--background);
    height: 50px;
    aspect-ratio: 1/1;
    border-radius: 100%;
    border-width: 2px;
    border-style: solid;
    border-color: var(--secondary);
    z-index: 20;
}

.sectionIndicator .indicatorDot{
    height: calc(100% + 2px);
    width: calc(100% + 2px);
    border-radius: 100%;
    margin: 0;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.activeIndicatorDot{
    background-color: var(--secondary);
}

@media screen and (max-width: 3000px){
    #functionsText h1{
        font-size: 5vh;
    }

    #functionsText h3{
        /*font-size: 3vh;*/
        font-size: clamp(1vw, 3vh, 2vh);
    }

    #functionsText p{
        /*font-size: 1.7vh;*/
        font-size: clamp(1vw, 1.7vh, 1.5vh);
    }

    #functionsText:last-child p, .infoSection:last-child{
        margin-bottom: 0;
    }
}

@media screen and (max-width: 1300px){
    #functionsText h1{
        font-size: 4vh;
    }

    #functionsText h3{
        font-size: 2vh;
    }

    #functionsText p{
        font-size: 1.5vh;
    }
}

@media screen and (max-width: 1000px) {
    #sectionFunctions{
        flex-direction: column;
        justify-content: center;
        height: 100vh;
    }

    #stickyContent{
        flex-direction: column;
    }

    .functionsStepIndicator{
        visibility: hidden;
    }

    #sectionIndicatorsMobile{
        visibility: visible !important;
    }

    #functionsImage{
        order: 2;
        width: 80%;
        height: auto;
        margin-bottom: 10%;
    }

    #functionsText{
        margin: 0;
    }

    #functionsText h1{
        text-align: center;
        margin-bottom: 0 !important;
    }

    #infoSectionText {
        z-index: 20;
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
        transition: transform 0.5s ease;
    }

    #infoSectionLine{
        visibility: hidden;
    }

    .infoSection {
        display: block;
        flex: 0 0 auto;
        width: 80vw;
        margin: 0 20px;
    }

    #infoSectionText .textSection{
        margin-left: 20px;
        margin-top: 10%;
    }

    #functionsText {
        width: 100%;
    }

    #functionsText{
        width: 100%;
        height: 50%;
    }

    #functionsText h1{
        font-size: 80px;
        margin-bottom: 15%;
    }

    #functionsText h3{
        font-size: 45px;
    }

    #functionsText p{
        font-size: 25px;
    }

    #functionsImage{
        height: 50%;
    }

    .infoSection{
        display: none;
    }

    .infoActive{
        display: block;
    }
}

/*FAQ section content*/
#sectionFAQ{
    display: flex;
    flex-direction: row;
    min-height: 800px;
}

#FAQText{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 55%;
    margin-left: 5%;
}

#FAQText h2{
    font-size: 60px;
    margin: 0;
    margin-bottom: 2%;
}

#FAQImage{
    position: relative;
    height: 100%;
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#FAQImage img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-35%, -50%);
}

#FAQImage #FAQCircle{
    width: 65%;
}

#FAQImage #FAQAppPreview{
    width: 80%;
}

.FAQCard{
    display: flex;
    flex-direction: row;
    vertical-align: top;
    overflow: hidden;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: var(--secondary);
    cursor: pointer;
}

.FAQCard h3{
    margin-top: 0;
    margin: 16px 0;
    font-size: x-large;
    font-family: var(--font-semi-bold);
}

.FAQCard p{
    max-height: 0;
    opacity: 0;
    margin: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
}

.FAQCard.active p{
    max-height: 200px;
    opacity: 1;
    margin: 16px 0;
}

.FAQCard div{
    width: 100%;
}

.FAQCard img{
    height: 20px;
    width: 20px;
    position: relative;
    margin: 20px 10px 0 0;
}

@media screen and (max-width: 1000px) {
    #sectionFAQ{
        min-height: 1500px;
    }

    #FAQText{
        flex-shrink: 0;
        width: 90%;
        margin-left: 5%;
    }

    #FAQText h2{
        font-size: 80px;
        margin-bottom: 10%;
    }

    #FAQText h3{
        font-size: 40px;
    }

    #FAQText p{
        font-size: 30px;
    }

    #FAQImage{
        display: none;
    }

    .FAQCard{
        border-bottom-width: 5px;
        margin: 3% 0;
        padding-bottom: 1.5%;
    }

    .FAQCard p{
        font-size: 30px;
    }

    .FAQCard img{
        height: 40px;
        width: 40px;
        margin-right: 20px;
    }

    #FAQImage img{
        display: none;
    }
}


/*promotion section content*/
#sectionPromotion{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 350px;
    color: white;
}

#sectionPromotion p{
    font-size: 60px;
    margin-top: 0;
    margin-bottom: 4vh; /*39px*/
}

#sectionPromotion a{
    padding: 19px 39px;
    background-color: var(--primary);
    box-shadow: 0px 0px 20px var(--primaryShadow);
    border-radius: 0px 30px 30px 30px;
    transition: background-color 0.3s;
    color: white;
    text-decoration: none;
}

#sectionPromotion a:hover{
    background-color: #0588ff;
}

@media screen and (max-width: 1000px) {
    #sectionPromotion{
        height: 700px;
    }

    #sectionPromotion p{
        font-size: 80px;
    }

    #sectionPromotion a{
        display: block;
        margin-top: 0;
        font-size: 40px;
        padding: 50px 90px;
        border-radius: 0 90px 90px 90px
    }
    
}


/*otherCompanies section content*/
#sectionOtherCompanies{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 647px;
}

#sectionOtherCompanies div{
    width: 100%;
    height: 65%;
    margin-top: 8vh;
}

#sectionOtherCompanies img{
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: contain;
    margin: 0 2%;
}

@media screen and (max-width: 1000px) {
    #sectionOtherCompanies{
        height: 1000px;
    } 

    #sectionOtherCompanies h1{
        font-size: 80px;
    }

    #sectionOtherCompanies div{
        height: 40%;
        margin-top: 4vh;
    }
}


/*footer section content*/
#sectionFooter{
    display: flex;
    color: white;
    align-items: center;
    justify-content: space-between;
    height: 250px;
    background-color: var(--primary);
}

#sectionFooter #leftContent{
    display: flex;
    flex-direction: row;
    justify-content: left;
    margin-left: 5%;
    width: 40%;
}

#contact, #curiosities{
    padding: 19px 39px;
    flex-shrink: 0;
}

#contact h2{
    margin-top: 0;
    margin-bottom: 0;
}

#curiosities h2{
    margin: 0;
    margin-bottom: 15px;
}

#contact div, #curiosities div{
    display: flex;
}

#contact img, #curiosities img{
    margin-right: 10px;
}

#curiosities a{
    margin-top: 5px;
    margin-bottom: 5px;
    transition: margin-left 0.2s;
    color: white;
    text-decoration: none;
}

#contact a{
    margin-top: 20px;
    margin-bottom: 20px;
    transition: margin-left 0.2s;
}

#contact a:hover, #curiosities a:hover{
    margin-left: 5px;
}

#sectionFooter .social{
    display: flex;
    width: 32px;
    height: 32px;
    margin-right: 16px;
    background-color: white;
    justify-content: center;
    align-items: center;
    border-radius: 0px 20px 20px 20px;
    transition: border-radius 0.2s;
    display: none;
}

#sectionFooter .social:hover{
    border-radius: 20px 0px 20px 20px;
}

#sectionFooter .social img{
    margin: 0;
}

#sectionFooter #disclaimer{
    box-sizing: content-box;
    margin: 0;
    right: 0;
    width: 250px;
    padding: 2% 5%;
    border-left-width: 1px;
    border-left-style: solid;
}

@media screen and (max-width: 1100px){
    #sectionFooter #leftContent{
        margin-right: 5%;
    }
}

@media screen and (max-width: 1000px) {
    #sectionFooter{
        height: 1300px;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
    }

    #sectionFooter #leftContent{
        flex-direction: column;
        width: 90%;
    }

    #sectionFooter #contact{
        padding: 0;
    }

    #contact img{
        width: 50px;
    }

    #sectionFooter .social{
        height: 60px;
        width: 60px;
        border-radius: 0px 30px 30px 30px;
        margin-right: 40px;
    }

    #sectionFooter #curiosities{
        padding: 0;
    }

    #curiosities img{
        width: 20px;
    }

    #sectionFooter .social img{
        width: 20px;
    }

    #sectionFooter #curiosities p{
        font-size: 35px;
        margin: 10px 0;
    }

    #contact a{
        font-size: 35px;
        margin: 50px 0;
    }

    #sectionFooter #curiosities h2, #contact h2{
        font-size: 60px;
        margin-top: 10%;
        margin-bottom: 30px;
    }

    #contact h2{
        margin: 0;
    }

    #sectionFooter #disclaimer{
        width: 90%;
        margin-top: 15%;
        padding: 5% 0;
        margin-left: 5%;
        border-left-width: 0px;
        border-top-width: 5px;
        border-top-style: solid;
        font-size: 40px;
    }
}