.container {
    width: 100%;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
}

.tracking {
    width: 100%;
    
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 40px 80px;
}

.tracking-fold {
    width: 100%;
    height: 400px;

    border-radius: 5px;

    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../media/home/fold-2.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    overflow: hidden;
}

.tracking-fold h1 {
    color: #FFFFFF;

    font-size: 32px;
    line-height: 1.4;

    text-align: center;
    text-transform: uppercase;
}

.tracking-form {
    width: 60%;

    margin: 40px 0;
}

.tracking-form > h1 {
    font-size: 24px;
    font-weight: normal;

    margin-bottom: 40px;

    text-transform: uppercase;
    text-align: center;
}

.tracking-form > form {
    width: 100%;

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

.tf-elem-container {
    width: 100%;

    display: flex;
    flex-direction: column;
}

.tf-elem-container:nth-child(2) {
    margin: 0 20px;
}

.tf-elem-container > label {
    display: flex;
    align-items: center;

    margin-bottom: 20px;
}

.tf-elem-label-text {
    color: var(--textColor);
    
    margin-right: 5px;
}

.tf-elem-label-icon {
    width: 15px;
    height: 15px;

    border-radius: 50%;

    background: var(--secondaryColor);

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

    cursor: pointer;

    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}

.tf-elem-label-icon > i {
    color: var(--textColor);

    font-size: 8px;

    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}

.tf-elem-label-icon:hover {
    background: var(--textColor);
}

.tf-elem-label-icon:hover > i {
    color: var(--secondaryColor);
}

.tf-elem:not(.tf-elem[type="submit"]) {
    width: 100%;
    height: 40px;

    border: none;
    border-radius: 5px;

    background: var(--secondaryColor);

    font-size: 16px;

    padding: 10px;

    caret-color: var(--placeholderColor);

    outline: none;
}

.tf-elem[type="submit"] {
    width: 100%;
    height: 40px;

    border: none;
    border-radius: 5px;

    color: #FFFFFF;
    background: var(--primaryColor);

    font-size: 16px;

    padding: 10px 20px;

    cursor: pointer;

    outline: none;
}

.tracking-progress > div {
    display: flex;
    align-items: flex-start;
}

.point-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    position: relative;
}

.point {
    width: 5px;
    height: 5px;

    border-radius: 5px;

    background: #B9B9B9;

    margin: 0 0 40px 0;

    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}

.point-location {
    width: max-content;

    color: var(--textColor);

    position: absolute;

    bottom: 0;

    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}

.race {
    width: 150px;
    height: 5px;

    border-radius: 5px;

    background: #B9B9B9;

    margin: 0 10px;

    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}

.services {
    width: 100%;
    
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 40px 80px;
}

.s-section-hint {
    border-radius: 5px;
    
    color: #FFFFFF;
    background: var(--primaryColor);

    font-size: 12px;
    line-height: 1.4;

    padding: 5px 10px;

    text-align: center;
    text-transform: uppercase;
}

.services > h2 {
    color: var(--textColor);

    line-height: 1.2;

    margin: 10px 0 20px 0;

    text-align: center;
}

.services > div {
    width: 100%;
    
    display: flex;
    flex-wrap: wrap;
}

.service {
    /* width: calc(25% - 15px); */
    width: calc(50% - 10px);

    border-radius: 5px;

    position: relative;
}

.service:nth-last-child(n+2) {
    margin-bottom: 40px;
}

/* .service:not(.service:nth-child(4n)) {
    margin-right: 20px;
} */

.service:not(.service:nth-child(2n)) {
    margin-right: 20px;
}

.service-icon {
    color: var(--primaryColor);

    font-size: 34px;
}

.service-name {
    color: var(--textColor);

    font-size: 16px;
    line-height: 1.4;

    margin: 10px 0;
}

.service-description {
    color: var(--textColor);

    font-size: 16px;
    line-height: 1.2;
}

.door-to-door {
    width: 100%;
    height: 400px;
    
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 80px;

    overflow-x: hidden;
}

.door-to-door > div {
    width: 100%;
    height: 100%;

    border-radius: 5px;

    background: var(--secondaryColor);

    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.dtd-p {
    width: calc(50% - 10px);
    height: 100%;

    margin-right: 20px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    padding: 20px;
}

.dtd-section-hint {
    border-radius: 5px;
    
    color: #FFFFFF;
    background: var(--primaryColor);

    font-size: 12px;
    line-height: 1.4;

    padding: 5px 10px;

    text-align: center;
    text-transform: uppercase;
}

.dtd-title {
    color: var(--textColor);

    line-height: 1.2;

    margin: 10px 0 20px 0;
}

.dtd-p > p {
    line-height: 1.4;
}

.dtd-img {
    width: calc(50% - 10px);
    height: 100%;

    border-radius: 0 5px 5px 0;

    display: flex;

    overflow: hidden;
}

.dtd-img > img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.price-list {
    width: 100%;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-direction: column;

    padding: 40px 80px;
}

.pl-section-hint {
    border-radius: 5px;
    
    color: #FFFFFF;
    background: var(--primaryColor);

    font-size: 12px;
    line-height: 1.4;

    padding: 5px 10px;

    text-align: center;
    text-transform: uppercase;
}

.price-list > h2 {
    color: var(--textColor);

    line-height: 1.2;

    margin: 10px 0 20px 0;

    text-align: center;
}

.price-list > div {
    width: 100%;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-direction: column;

    margin-bottom: 20px;
}

.pl-row:not(.pl-head-row) {
    width: 100%;

    border-radius: 5px;

    color: var(--textColor);
    background: #FFFFFF;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 20px;
}

.pl-row:not(.pl-head-row):nth-child(odd) {
    background: var(--secondaryColor);
}

.pl-head-row {
    width: 100%;

    border-radius: 5px;

    color: var(--textColor);
    background: var(--primaryColor);

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pl-row > div {
    width: calc(50% - 10px);

    font-size: 16px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    padding: 0 20px;
}

.pl-head-row > div {
    font-weight: bold;

    text-transform: uppercase;
}

.pl-head-row > div > span {
    color: #FFFFFF;
}

.pl-mobile-column-name {
    color: var(--textColor);

    display: none;
}

.pl-vertical-seperator {
    width: 2px;
    min-height: 40px;

    background: #FFFFFF;
}

.pl-note {
    color: var(--textColor);

    font-size: 16px;
    line-height: 1.2;

    text-align: center;
}

.prohibited-products {
    width: 100%;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-direction: column;

    padding: 40px 80px;
}

.pp-section-hint {
    border-radius: 5px;
    
    color: #FFFFFF;
    background: var(--primaryColor);

    font-size: 12px;
    line-height: 1.4;

    padding: 5px 10px;

    text-align: center;
    text-transform: uppercase;
}

.prohibited-products > h2 {
    color: var(--textColor);

    line-height: 1.2;

    margin: 10px 0 20px 0;

    text-align: center;
}

.prohibited-products > div {
    width: 100%;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-direction: column;

    margin-bottom: 20px;
}

.pp-row:not(.pp-head-row) {
    width: 100%;
    min-height: 40px;

    border-radius: 5px;

    color: var(--textColor);
    background: #FFFFFF;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 20px;
}

.pp-row:not(.pp-head-row):nth-child(odd) {
    background: var(--secondaryColor);
}

.pp-head-row {
    width: 100%;
    min-height: 40px;

    border-radius: 5px;

    color: var(--textColor);
    background: var(--primaryColor);

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pp-row > div {
    width: 100%;

    font-size: 16px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    padding: 0 20px;
}

.pp-head-row > div {
    font-weight: bold;

    text-transform: uppercase;
}

.pp-head-row > div > span {
    color: #FFFFFF;
}

.pp-mobile-column-name {
    color: var(--textColor);

    display: none;
}

.pp-note {
    color: var(--textColor);

    font-size: 16px;
    line-height: 1.2;

    text-align: center;
}

.pp-note > a {
    color: var(--primaryColor);
    
    cursor: pointer;
}

.calculator {
    width: 100%;
    
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 40px 80px;
}

.c-section-hint {
    border-radius: 5px;
    
    color: #FFFFFF;
    background: var(--primaryColor);

    font-size: 12px;
    line-height: 1.4;

    padding: 5px 10px;

    text-align: center;
    text-transform: uppercase;
}

.calculator > h2 {
    color: var(--textColor);
    
    line-height: 1.2;

    margin: 10px 0 20px 0;

    text-align: center;
}

.calculator-form {
    width: 100%;

    display: flex;
    flex-direction: column;
}

.cf-elems-container {
    width: 100%;

    display: flex;
    align-items: flex-end;
}

.cf-elems-container:nth-child(2) {
    margin: 20px 0;
}

.cf-elem-container {
    display: flex;
    flex-direction: column;
}

.cf-elems-container[data-elems-number="1"] > .cf-elem-container {
    width: 100%;
}

.cf-elems-container[data-elems-number="2"] > .cf-elem-container {
    width: calc(50% - 10px);
}

.cf-elems-container[data-elems-number="4"] > .cf-elem-container {
    width: calc(25% - 15px);
}

.cf-elem-container:not(.cf-elem-container:last-child) {
    margin-right: 20px;
}

.cf-elem-container > label {
    display: flex;
    align-items: center;
    
    margin-bottom: 20px;
}

.cf-elem-label-text {
    color: var(--textColor);
    
    margin-right: 5px;
}

.cf-elem-label-icon {
    width: 15px;
    height: 15px;

    border-radius: 50%;

    background: var(--secondaryColor);

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

    cursor: pointer;

    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}

.cf-elem-label-icon > i {
    color: var(--textColor);

    font-size: 8px;

    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}

.cf-elem-label-icon:hover {
    background: var(--textColor);
}

.cf-elem-label-icon:hover > i {
    color: var(--secondaryColor);
}

.cf-elem:not(.cf-elem[type="submit"]) {
    width: 100%;
    height: 40px;

    border: none;
    border-radius: 5px;

    background: var(--secondaryColor);

    font-size: 16px;

    padding: 10px;

    caret-color: var(--placeholderColor);

    outline: none;
}

select.cf-elem {
    color: var(--placeholderColor);
}

.cf-elem[type="submit"] {
    width: 100%;
    height: 40px;

    border: none;
    border-radius: 5px;

    color: #FFFFFF;
    background: var(--primaryColor);

    font-size: 16px;

    padding: 10px 20px;

    cursor: pointer;

    outline: none;
}

.popup-price {
    color: var(--primaryColor);
}

.about-us {
    width: 100%;
    
    display: flex;
    align-items: flex-start;

    padding: 40px 80px;

    overflow-x: hidden;
}

.au-img {
    width: calc(50% - 10px);
    height: 600px;

    border-radius: 5px;

    margin-right: 20px;

    overflow: hidden;
}

.au-img > img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.au-p {
    width: calc(50% - 10px);

    display: flex;
    flex-direction: column;
}

.au-section-hint {
    width: fit-content;

    border-radius: 5px;
    
    color: #FFFFFF;
    background: var(--primaryColor);

    font-size: 12px;
    line-height: 1.4;

    padding: 5px 10px;

    text-align: center;
    text-transform: uppercase;
}

.au-p > h2 {
    color: var(--textColor);
    
    margin: 10px 0 20px 0;
}

.au-p > p {
    color: var(--textColor);
    
    line-height: 1.4;
}

.map {
    width: 100%;
    height: 400px;

    padding: 40px 80px;

    overflow: hidden;
}

.map > iframe {
    width: 100%;
    height: 100%;
    
    border-radius: 5px;
}

@media only screen and (max-width: 1200px) {
    .point-location:not(.point-active) {
        display: none;
    }

    .race {
        width: 100px;
    }

    /* .service {
        width: calc(50% - 10px);
    }

    .service:nth-child(-n+4) {
        margin-bottom: 0;
    }

    .service:nth-child(-n+6) {
        margin-bottom: 20px;
    }

    .service:not(.service:nth-child(4n)) {
        margin-right: 0;
    }

    .service:not(.service:nth-child(2n)) {
        margin-right: 20px;
    } */
}

@media only screen and (max-width: 800px) {
    .tracking, .services, .door-to-door, .price-list, .prohibited-products, .calculator, .map {
        padding: 40px;
    }

    .fold h1 {
        font-size: 28px;
    }

    .tracking-form {
        width: 100%;
    }

    .point {
        width: 40px;
    }

    .race {
        width: 0;
    }

    .about-us {
        flex-direction: column-reverse;

        padding: 40px;
    }

    .au-img {
        width: 100%;

        margin: 0;
    }

    .au-p {
        width: 100%;

        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 600px) {
    .tracking, .services, .price-list, .prohibited-products, .calculator, .about-us, .map {
        padding: 20px;
    }

    .tracking-fold h1, .services > h2, .dtd-title, .price-list > h2, .prohibited-products > h2, .calculator > h2, .au-p > h2 {
        font-size: 22px;
    }

    .tracking-form > form {
        flex-direction: column;
    }

    .tf-elem-container:nth-child(2) {
        margin: 20px 0;
    }

    .point {
        width: 20px;
    }

    .s-section-hint, .dtd-section-hint, .pl-section-hint, .pp-section-hint, .c-section-hint, .au-section-hint {
        font-size: 10px;
    }

    .service {
        width: 100%;

        padding: 0;
    }

    .service:nth-child(-n+6) {
        margin-bottom: 0;
    }

    .service:not(.service:last-child) {
        margin-bottom: 20px;
    }

    .service:not(.service:nth-child(2n)) {
        margin-right: 0;
    }

    .service-icon {
        font-size: 16px;
    }

    .door-to-door {
        height: auto;

        flex-direction: column;

        padding: 20px;
    }

    .dtd-p {
        width: 100%;

        margin: 0;
    }

    .dtd-img {
        width: 100%;

        border-radius: 0 0 5px 5px;
    }

    .pl-row {
        flex-direction: column;
    }

    .pl-row:not(.pl-head-row):nth-child(odd) {
        background: initial;
    }

    .pl-row:nth-child(2) {
        margin: 0;
    }
    
    .pl-head-row {
        display: none;
    }

    .pl-row > div {
        width: 100%;
        
        justify-content: space-between;

        padding: 10px 0;
    }

    .pl-mobile-column-name {
        display: block;
    }

    .pl-vertical-seperator {
        width: 100%;
        min-height: 1px;

        background: #dddddd;
    }

    .cf-elems-container {
        flex-direction: column;
    }

    .cf-elems-container[data-elems-number="1"] > .cf-elem-container {
        width: 100%;
    }

    .cf-elems-container[data-elems-number="2"] > .cf-elem-container {
        width: 100%;
    }

    .cf-elems-container[data-elems-number="4"] > .cf-elem-container {
        width: 100%;
    }

    .cf-elem-container:not(.cf-elem-container:last-child) {
        margin: 0 0 20px 0;
    }
    
}