* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background: white;
}

::selection {
    background: #d1208d;
    color: white;
}

mark {
    background-color: #d1208d;
    color: white;
}

/* Header "sentrido" */

ul {
    list-style-type: none;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

li {
    float: right;
    display: flex;
}

li a {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 5px 10px;
}

.sentridoNav {
    background: #3215a0;
    position: absolute;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}

.sentridoLogo {
    height: 40px;
    float: left;
    margin-left: 10px;
    margin-top: -5px;
    padding-bottom: 5px;
}

.sentridoNavContainer {
    display: flex;
    float: right;
}

.sentridoNavText {
    font-size: 17px;
    color: white;
    transition: color 0.2s ease;
}

.sentridoNavText:hover {
    color: #ff89a5;
}

.sentridoButton {
    font-size: 17px;
    color: white;
    background: #d1208d;
    margin-right: 10px;
    margin-left: 5px;
    border-radius: 7px;
    transition: background 0.2s ease;
}

.sentridoButton:hover {
    background: #b11073;
}


.sentridoBarContainer {
    position: absolute;
    cursor: pointer;
    right: 0%;
    margin-right: 10px;
    margin-top: 5px;
    display: none;
}

.sentridoBarAnimation .sentridoBar1 {
    transform: translate(0, 6px) rotate(45deg);
}

.sentridoBarAnimation .sentridoBar2 {
    opacity: 0;
}

.sentridoBarAnimation .sentridoBar3 {
    transform: translate(0, -10px) rotate(-45deg);
}

.sentridoBar1, .sentridoBar2, .sentridoBar3 {
    transition: 0.2s;
    width: 30px;
    height: 1px;
    background: white;
    margin-top: 7px;
}      

.sentridoNavBarText {
    display: none;
}

.sentridoSticky {
    position: fixed;
    top: 0;
    width: 100%;
}

/* First Section - Banner */
.bannerBackground {
    background-image: url(indexImg/bannerBackground.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 650px;
    color: white;
    font-family: 'Montserrat';
    text-align: center;
    margin: auto;
}

.bannerTitle {
    font-size: 45px;
    font-weight: 600;
    padding-top: 135px;
}  

.bannerSubtitle {
    font-size: 25px;
    font-weight: 200;
    margin-top: 10px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.bannerBox {
    padding: 10px;
    width: 670px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    border: solid 1px #ffffff;
}

.bannerBoxText {
    font-size: 20px;
    font-weight: 200;
    
}

.bannerButton {
    background-color: #ff009d;
    margin-top: 40px;
    padding: 10px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 6px;
    width: 150px;
    margin-left: auto;
    margin-right: auto;
    transition: background-color 0.3s ease;
}

.bannerButton:hover {
    background-color: #d1208d;
}

/* Temporary Section - Subscribe */

.subscribeBackground {
    background: #4d2ed1;
    padding: 30px;
    font-family: 'Montserrat';
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px; 
}

.subscribeTitle {
    color: #ffffff;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 30px;
}  

.subscribeSubtitle {
    font-size: 25px;
    font-weight: 200;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    color: white;
}

.subscribeField {
    border: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    color: #4c3dd8;
    font-weight: 600;
    padding: 10px;
    width: 45%;
    outline: none;
}

.subscribeButton {
    border-style: solid;
    border-color: #d1208d;
    border-radius: 15px;
    background: #d1208d;
    width: 170px;
    padding: 10px;
    margin: auto;
    margin-top: 25px;
    font-size: 22px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    color: white;
    transition: background 0.2s ease;
}

.subscribeButton:hover {
    background: #eb308e;
    border-color: #eb308e;
    cursor: pointer;
    animation: bannerButtonAnimation 0.25s ease;
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.3);
}

/* Second Section - Info Section */

.infoBox {
    text-align: center;
    font-family: 'Montserrat';
    background: #ededed;
    padding: 40px;
    border-bottom-style: solid;
    border-color: #3b17d4;
    border-width: 2px;
}

.infoBoxTitle {
    font-weight: 600;
    font-size: 30px;
    margin-left: 10%;
    margin-right: 10%;
    color: #432ba8;
}

/* Third Section - Tools Columns */

.toolsTitle {
    text-align: center;
    font-size: 30px;
    margin-left: 10%;
    margin-right: 10%;
    margin-top: 30px;
    margin-bottom: 30px;
    font-family: 'Montserrat';
    color: #3b17d4;
}

.toolsContainer {
    display: flex;
    padding-bottom: 25px;
}

.toolsColumn {
    text-align: center;
    border-color: #d9d9d9;
    font-family: 'Montserrat';

}

.toolsColumnImg {
    height: 130px;
    margin-bottom: 15px;
}

.toolsColumnTitle {
    font-size: 30px;
    margin-bottom: 10px;
}

.toolsColumnSubtitle {
    font-size: 18px;
    margin-bottom: 20px;
}

.toolsColumnText {
    font-size: 23px;
    padding: 5px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.toolsButtonContainer {
    text-align: center;
    display: flex;
    justify-content: center;
    font-family: 'Montserrat';
    font-size: 20px;
    margin-bottom: 45px;
    margin-top: 20px;
}

.toolsButtonStart {
    font-size: 25px;
    padding: 7px;
    width: 170px;
    color: white;
    background-color: #ff009d;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.toolsButtonStart:hover {
    background-color: #d1208d;
}

.toolsButtonOr {
    margin-left: 10px;
    margin-right: 2px;
    font-size: 20px;
    padding: 3px;
    margin-top: 13px;
    color:#4b4b4b; 
}

.toolsButtonLearn {
    padding-top: 12px;
    width: 160px;
    font-size: 25px;
    color: #3b17d4;
    text-decoration: underline;
    text-decoration-color: #3b17d4;
    transition: color, text-decoration-color 0.3s ease;
}

.toolsButtonLearn:hover {
    color: #362e55;
    text-decoration-color: #362e55;
}

/* Fifth Column - Pricing */

.pricing {
    font-family: 'Montserrat';
    padding-bottom: 20px;
}

.pricingTitle {
    font-size: 30px;
    text-align: center;
    color: #3b17d4;
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 20px;
    margin-top: 30px;
}

.pricingContainer {
    display: flex;
    justify-content: center;
}

.pricingColumn {
    margin: 20px;
    padding: 13px;
    border-radius: 7px; 
    background: #f9f9f9;
    width: 330px;

}

.pricingColumnTitle {
    padding-top: 4px;
    font-size: 27px;
    margin: 5px;
    margin-top: 20px;
}

.pricingColumnText {
    font-size: 20px;
    margin: 5px;
    margin-bottom: 15px;
    margin-top: 20px;
    width: 90%;
}

.pricingColumnPriceContainer {
    display: flex;
    align-items: center;
}

.pricingColumnPrice {
    font-size: 32px;
    font-weight: 600;
    margin: 5px;
    margin-top: 8px;
    margin-bottom: 12px;
}


.pricingColumnPriceCa {
    font-size: 24px;
}
.pricingColumnSubtext {
    font-size: 15px;
    font-weight: 500;
    margin: 5px;
}

.pricingColumnButton {
    padding: 5px;
    text-align: center;
    width: 90%;
    background: #8236c3;
    color: white;
    font-size: 25px;
    border-radius: 6px;
    transition: background 0.3s ease;
    margin-top: 8px;
    
}

.pricingColumnButton:hover {
    background: #5c1c93;
}

.pricingColumnHighlight {
    font-size: 15px;
    background: #ffffff;
    width: 120px;
    text-align: center;
    color: #dd2596;
    margin-left: 5px;
    position: absolute;
}

/* Sixth Section - Table */

.table {
    font-size: 20px;
    text-align: center;
    font-family: 'Montserrat';
    border-collapse: collapse; 
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    margin-bottom: 30px;
    box-shadow: 1px 1px 14px 1px rgba(196, 196, 196, 0.42);
}

.table tr, th {
    padding: 5px; 
}

.tableFeatures { 
    font-weight: 800;
    background: #eaeaea;
    border: solid 1px #e5e5e5;
    font-size: 15px;
    text-align: left;
    text-indent: 5px;
}

th {
    width: 80px;
    border: solid 1px #e5e5e5;
    background: #eaeaea;
    font-size: 15px;
}

td {
    padding: 5px;
    border: solid 1px #f2f2f2;
}

.tableImg {
    height: 24px;
}

.tableLi {
    margin-left: 50px;
    font-weight: 600;
    margin-top: 10px;
    float: left;
    display: list-item;
}

.tableUl {
    list-style-type: disc;
}

li span {
    margin-left: -8px;
}

@media only screen and (max-width: 510px) {
    .table {
        box-shadow: none;
        width: 90%
    }
    
    .tableImg {
        height: 5vw !important;
    }
    
    .bannerBoxText {
        font-size: 5.5vw !important;
    }
}

/* Seventh Section - Steps */

.stepsTitle {
    font-family: 'Montserrat';
    text-align: center;
    background: white;
    color: #3b17d4;
    width: 750px;
    padding: 5px;
    border-radius: 4px;
    font-size: 30px;
    margin-left: auto;
    margin-right: auto;
}

.stepsTitleContainer {
    position: absolute;
    width: 100%;
    margin-top: -20px;
}

.stepsContainer {
    display: flex;
    font-family: 'Montserrat';
    color: white;
    text-align: center;
}

.stepsColumn {
    height: 460px;
    width: 33.33%;
}

.stepsNumber {
    font-size: 25px;
    padding: 5px;
    margin-top: 28px;
}

.stepsImg {
    height: 130px;
    padding: 5px;
    margin-top: 15px;
}

.stepsName {
    font-size: 30px;
    margin-top: 15px;
}

.stepsText {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 500;
    padding: 5px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.stepsButton {
    font-size: 25px;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    padding: 7px;
    background: #e52e9e;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.stepsButton:hover {
    background: #d1208d;
}


/* Eighth Section - Footer */

footer {
    padding: 30px;
    background: #2a2d5f;
}

.footerContainer {
    display: flex;
    align-items: center;
}

.footerColumn {
    width: 33.33%;
}

.footerText {
    font-size: 16px;
    width: 150px;
    margin: 10px;
    color: white;
    font-family: 'Montserrat';
    font-weight: 500;
}

.footerCopyright {
    font-size: 13px !important;
}

.footerButton {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-family: 'Montserrat';
    transition: color 0.1s ease;
}

.footerButton:hover {
    color: #ffade0;
}

.footerImg {
    height: 36px;
    display: block;
    margin: 10px;
}


@media only screen and (max-width:583px) {
    .toolsColumnTitle {
        font-size: 12px;
    }
    
    .toolsColumnSubtitle {
        font-size: 9px;
        margin-bottom: 10px;
    }
    
    .toolsColumnText {
        font-size: 9px;
    }
}


@media only screen and (max-width:1230px) {
    
    .pricingTitle {
        font-size: 30px;
    }
    
    .pricingContainer {
        flex-direction: column;
    }
    
    .pricingColumn {
        height: 430px;
        width: 70%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 50px;
    }
    
    .pricingColumnTitle {
        font-size: 40px;
        margin-top: 40px;
    }
    
    .pricingColumnText {
        font-size: 30px;
        margin-top: 30px;
    }
    
    .pricingColumnPrice {
        font-size: 45px;
        margin-top: 40px;
    }
    
    .pricingColumnHighlight {
        font-size: 20px;
        width: 170px;
        margin-top: 10px;
        margin-left: 10px;
    }
    
    .pricingColumnButton {
        font-size: 40px;
        margin-top: 20px;
        width: 90%;
    }

    .pricingColumnSubtext {
        font-size: 16px;
        margin-top: 30px;
    }
    
    .tableFeatures {
        font-size: 14px;
        padding: 7px;
    }
    
    .tableText {
        font-size: 10px;
    }
    
    .tableImg {
        height: 30px;
        padding: 3px;
    }
    
    th {
        font-size: 15px;
    }
    
    .table {
        font-size: 17px;
    }
    
    .stepsContainer {
        flex-direction: column;
    }

    .stepsColumn {
        width: 100%;
        height: 530px;
    }
    
    .stepsTitle {
        font-size: 30px;
        width: 600px;
    }
    
    .stepsNumber {
        padding-top: 20px;
        font-size: 30px;
    }
    
    .stepsImg {
        height: 160px;
        margin-top: 30px;
    }
    
    .stepsName {
        font-size: 30px;
        margin-top: 30px;
    }
    
    .stepsText {
        font-size: 20px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .stepsButton {
        font-size: 30px;
        width: 300px;
        margin-top: 30px;
        padding: 10px;
    }
    
    .footerText {
        font-size: 20px;
        padding: 10px;
    }
    
    .footerImg {
        height: 40px;
        padding-bottom: 20px;
        padding: 0;
    }

}
    
@media only screen and (max-width: 857px) {

    .bannerBox {
        width: 550px;   
    }
    
    .toolsContainer {
        flex-direction: column;

    }
    
    .toolsColumn {
        border-left: 0px;
        border-bottom: solid 2px #bebebe;
        padding-bottom: 20px;
        padding-top: 20px;
        margin-bottom: 10px;
    }
    
    .toolsColumnTitle {
        font-size: 35px;
    }
    
    .toolsColumnSubtitle {
        font-size: 20px;
    }
    
    
    .toolsColumnText {
        font-size: 26px;
        margin-bottom: 10px;
    }
    
    .toolsButtonStart {
        font-size: 30px;
        width: 180px;
        padding: 10px;
        margin-right: 10px;
    }
    
    .toolsButtonOr {
        font-size: 30px;
        margin-left: 20px;    
    }
    
    .toolsButtonLearn {
        font-size: 30px;
        width: 200px;
        margin-left: 10px;
    }
    
    .infoBoxTitle {
        font-size: 37px;
    }
    
    .pricingTitle {
        font-size: 35px;
    }
    
    .pricingColumnText {
        width: 450px;
    }
    
    .footerText {
        font-size: 15px;
        width: 90px;
    }
}


@media only screen and (min-width: 1500px) {
    .pricingColumn {
        width: 28%;
    }
    
    .sentridoLogo {
        height: 50px;    
        margin-top: -3px;
    }
    
    .sentridoNavText {
        font-size: 20px;
        padding: 10px 13px;
        margin-top: 3px;
    }
    
    .sentridoButton {
        font-size: 20px;
        padding: 7px 10px;
        margin-top: 6px;
        margin-left: 10px;
        margin-right: 10px;
        width: 80px;
    }
    
    .bannerBackground {
        height: 700px;
    }
    
    .bannerTitle {
        font-size: 60px;
    }
    
    .bannerSubtitle {
        font-size: 30px;
        margin-top: 20px;
    }
    
    .bannerBox {
        width: 900px;
    }
    
    .bannerBoxText {
        font-size: 25px;
    }
    
    .bannerButton {
        font-size: 30px;
        width: 230px;
        margin-top: 60px;
    }
}

@media only screen and (max-width: 655px) {
    
    /* @media Banner */
    
    .bannerBackground {
        height: 1100px;
    }
    
    .bannerSubtitle {
        margin-top: 50px;
    }
    
    .bannerBox {
        height: 400px;
        width: 80%;
        align-content: center;
    }
    
    .bannerBoxText {
        font-size: 29px;
    }
    
    .bannerButton {
        font-size: 30px;
        width: 250px;
    }
    
    /* @media tools */
    
    .toolsButtonLearn {
        font-size: 20px;
        width: 100px;
        padding-top: 0;
    }
    
    .toolsButtonStart {
        font-size: 20px;
        padding: 5px;
        width: 100px;
    }
    
    .toolsButtonOr {
        font-size: 20px;
    }
    
    /* @media Pricing */
    
    .pricingColumn {
        height: 350px;
    }
    
    .pricingColumnTitle {
        font-size: 25px;
    }
    
    .pricingColumnHighlight {
        font-size: 14px;
        width: 90px;
    }
    
    .pricingColumnText {
        font-size: 20px;
        width: 90%;
        margin-top: 20px;
    }
    
    .pricingColumnPrice {
        font-size: 30px;
        margin-top: 10px;
    }
    
    .pricingColumnSubtext {
        font-size: 15px;
        margin-top: 0;
    }
    
    .pricingColumnButton {
        font-size: 25px;
    }
    
    /* @media steps */
    
    .stepsTitle {
        width: 90%;
        margin-top: -20px;
        font-size: 25px;
    }
    
    .stepsColumn {
        height: 600px;
    }
    
    /* @media footer */
    
    .footerContainer {
        flex-direction: column;
        width: 80%;
    }
    
    .footerColumn {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footerCopyright {
        text-align: center;
        margin: auto;
        width: 90%;
    }
    
    .footerImg {
        margin: auto;
    }
    
    .footerLinks {
        display: flex;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        justify-content: space-between;
    }
}


/* @media Navigation Bar */

@media only screen and (max-width: 700px) {
    .sentridoBarContainer {
        display: inherit;
    }

    .sentridoNavText {
        display: none;
    }

    .sentridoButton {
        margin-right: 50px;
    }

    .sentridoNavBarContainer {
        display: flex;
        flex-direction: column;
        height: 6%;
        width: 100%;
        position: fixed;
        z-index: 1;
        top: 0;
        left: 0;
        overflow-y: hidden;
        transition: 0.5s;
    }

    .sentridoNavBarContainerOpen {
        position: relative;
        top: 25%;
        width: 100%;
        margin-top: 30px;
    }


    .sentridoNavBarText {
        display: inherit;
        padding: 20px;
        font-size: 30px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        color: white;
        position: relative;
        margin-top: 50px;
        transition: 0.1s ease;
    }

    .sentridoNavBarText:hover {
        color: #ffade0;
    }
}


