:root {
    --black: #000000;
    --white: #ffffff;
    --dark_white: #cdcdcd;
    --light_gray: #878787;
    --darkgray: #343434;
    --dark_red: #c00101da;
    --light-white: #fff5f5;
}

/* Czcionki */
@font-face {
    font-family: "Kanit";
    src: url(../Fonts/Kanit-Regular.woff);
}

@font-face {
    font-family: "PlayFair";
    src: url(../Fonts/PlayfairDisplay-VariableFont_wght.woff);
}

@font-face {
    font-family: "Poppins";
    src: url(../Fonts/Poppins-Regular.woff);
}

/* body */
body {
    margin: 0;
}

/* container */
.container {
    width: 100%;
    height: auto;
}

/* start */
.start {
    background-color: var(--darkgray);
    height: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 1s ease, transform 1s ease, all 0.1s ease, all 0.1s ease;
    transform: translateY(0);
}

.start.hidden {
    opacity: 0;
    background-color: white;
    color: white;
    transform: translateY(-100%);
}

.start p {
    color: var(--white);
    font-family: "Adi";
    margin: 0;
    font-size: 1.1em;
}

.start span {
    color: gray;
    font-family: "Adi";
}

/* header */
.all-nav {
    display: block;
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background-color: white;
}

.nav {
    width: 100%;
    height: 100px;
    background-color: white;
    display: block;
    transition: transform 0.8s ease;
}

.nav.scrolled {
    transform: translateY(-20px);
}

.topmain {
    width: 100%;
    height: 20px;
    text-align: right;
    margin-right: 10%;
}

.toggle {
    --width: 30px;
    --height: calc(var(--width) / 4);
    position: relative;
    display: inline-block;
    width: var(--width);
    height: var(--height);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    border-radius: var(--height);
    cursor: pointer;
    margin-right: 2%;
}

.toggle input {
    display: none;
}

.toggle .slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--height);
    background-color: #ccc;
    transition: all 0.4s ease-in-out;
}

.toggle .slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(var(--height));
    height: calc(var(--height));
    border-radius: calc(var(--height) / 2);
    background-color: #fff;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease-in-out;
}

.toggle input:checked + .slider {
    background-color: #2196F3;
}

.toggle input:checked + .slider::before {
    transform: translateX(calc(var(--width) - var(--height)));
}

.toggle .labels {
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 12px;
    font-family: sans-serif;
    transition: all 0.4s ease-in-out;
}

.toggle .labels::after {
    content: attr(data-off);
    position: absolute;
    right: 5px;
    color: #4d4d4d;
    opacity: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease-in-out;
}

.toggle .labels::before {
    content: attr(data-on);
    position: absolute;
    left: 5px;
    color: #000000;
    opacity: 0;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.4);
    transition: all 0.4s ease-in-out;
}

.toggle input:checked ~ .labels::after {
    opacity: 0;
}

.toggle input:checked ~ .labels::before {
    opacity: 1;
}

/* main */
.mainheader {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-evenly;
}

.mainheader ol {
    /* wygląd głównego elementu ol */
    list-style-type: none;
    padding: 0;
    margin: 0;
    height: 2em;
    line-height: 2em;
    display: flex;
}

.mainheader ol a {
    /* wygląd wszystkich elementów a w elemencie ol */
    display: block;
    padding: 0 5px;
    height: 61px;
    margin-right: 2em;
}

.mainheader ol > li {
    /* wygląd elementów li wszystkich dzieci elementu ol */
    margin-left: 1px;
}

.mainheader ol > li:first-child {
    /* wygląd elementów li pierwszego dziecka elementu ol */
    margin-left: 0;
}

.mainheader ol > li:hover > ul {
    display: block;
}

.mainheader ol > li > ul {
    /* wygląd głównych rozwijanych elementów */
    display: none;
    list-style-type: none;
    padding: 0;
    margin-top: 0;
    margin-right: 20px;
}

.mainheader ol > li > ul > li {
    /* wygląd li w częsci rozwijanej */
    position: relative;
    background-color: var(--white);
}

.mainheader ol > li > ul > li > a {
    /* wygląd a w częsci rozwijanej */
    border-color: #ffffff;
    height: auto;
}

.mainheader li ul {
    border-color: #000000;
}

.mainheader ul {
    position: absolute;
    width: 300px;
    z-index: 100;
}

.mainheader ul a {
    margin-left: 10%;
}

.bottommain {
    width: 100%;
    height: 10px;
    background-color: var(--dark_red);
}

.logo-mn {
    width: 200px;
    height: 60px;
}

.buttonlinks {
    width: 75%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.buttonlinks img {
    margin-left: 5px;
}

.buttonlinks a {
    text-decoration: none;
    color: var(--dark_red);
    opacity: 1;
    transition: 0.3s;
    font-family: "Kanit";
    font-size: 1em;
}

.buttonlinks a:hover {
    opacity: 0.6;
}

/* main */
/* main */
main {
    width: 100%;
}

.main-bg {
    width: 100%;
    height: 95vh;
    background-image: url(../Images/price-photo.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 110px;
}

.main-bg_title {
    width: 50%;
    height: 50%;
    margin-bottom: 20%;
    display: grid;
}

.main-bg_title-h {
    width: 100%;
    height: auto;
    text-align: center;
}

.appear-from-bottom {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 2s ease forwards;
}

.appear-from-bottom_main_price {
    opacity: 0;
    transform: translateY(80px);
    animation: fadeInMainPrice 3s ease forwards;
}

.appear-from-bottom_main_contact {
    opacity: 1;
    transform: translateX(-400px);
    animation: fadeInContact 1s ease-in-out forwards;
}

.appear-from-bottom_main_mail {
    opacity: 0;
    transform: translateY(100px);
    animation: fadeInInformations 2s ease-in-out forwards;
}

.appear-from-bottom_main_FAQ_first_text {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInFAQfirst 1s ease forwards;
}

.appear-from-bottom_calculator_paragraph {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInCalculatorParagraph 2s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInMainPrice {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInInformations {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInContact {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInFAQfirst {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInCalculatorParagraph {
    to {
        opacity: 1;
        transform: translateY();
    }
}

.main-bg_title-h {
    color: var(--dark_red);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 15px;
}

.main-bg_title-h h1 {
    padding-top: 10%;
    font-size: 1.17em;
    margin: 1em 0;
}

.main-bg_title-text {
    width: 100%;
    height: auto;
    text-align: center;
}

.main-bg_title-text h2 {
    color: var(--white);
    font-size: 44px;
    font-family: "PlayFair";
}

.main-bg_title-p {
    width: 100%;
    height: auto;
    text-align: center;
}

.main-bg_title-p p {
    color: var(--white);
    font-size: 17px;
    font-family: "Poppins";
    margin: 0;
    font-style: oblique;
}

.main-price {
    width: 100%;
    height: 600px;
    background-color: var(--white);
    display: flex;
    justify-content: space-evenly;
    position: relative;
}

.main-price_name_one {
    width: 300px;
    height: 600px;
    background-color: var(--white);
    box-shadow: 0px 10px 20px 5px var(--dark_white);
    margin-top: -90px;
}

.main-price_name_one b {
    color: var(--dark_red);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 15px;
    margin-top: 20px;
}

.main-price_name_one .price-text {
    color: var(--black);
    font-family: "PlayFair";
    font-size: 30px;
    margin: 0.67em 0;
    font-weight: bold;
}

.main-price_name_one-title {
    display: grid;
    text-align: center;
    width: 100%;
    height: 20%;
}

.main-price_name_one-price {
    display: grid;
    width: 100%;
    height: 40%;
}

.main-price_name_one-price b {
    color: var(--dark_red);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 20px;
}

.main-price_name_one-price .price-text {
    color: var(--black);
    font-family: "PlayFair";
    font-size: 80px;
    margin: 0;
    font-weight: bold;
}

.main-price_name_one-price #one {
    text-align: start;
    margin-left: 50px;
    margin-top: 20px;
}

.main-price_name_one-price #one_down {
    text-align: start;
    margin-left: 50px;
    margin-top: 40px;
}

.main-price_name_one-price #two {
    text-align: end;
    margin-right: 40px;
    margin-top: 40px;
}

.main-price_name_one-price #three {
    text-align: center;
}

.main-price_name_one-description {
    text-align: center;
    width: 100%;
    height: 40%;
}

.main-price_name_one-description p {
    color: var(--light_gray);
    margin-top: 15%;
    font-size: 17px;
    font-family: "Playfair";
}

.main-price_name_two {
    width: 300px;
    height: 600px;
    background-color: var(--white);
    box-shadow: 0px 10px 20px 5px var(--dark_white);
    margin-top: -90px;
}

.main-price_name_two-price {
    display: grid;
    width: 100%;
    height: 40%;
}

.main-price_name_two-price b {
    color: var(--dark_red);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 20px;
}

.main-price_name_two-price .price-text {
    color: var(--black);
    font-family: "PlayFair";
    font-size: 80px;
    margin: 0;
    font-weight: bold;
}

.main-price_name_two-price #one {
    text-align: start;
    margin-left: 50px;
    margin-top: 20px;
}

.main-price_name_two-price #one_down {
    text-align: start;
    margin-left: 50px;
    margin-top: 40px;
}

.main-price_name_two-price #two {
    text-align: end;
    margin-right: 40px;
    margin-top: 40px;
}

.main-price_name_two-price #three {
    text-align: center;
    font-size: 80px;
    font-family: "PlayFair";
}

.main-price_name_two b {
    color: var(--dark_red);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 15px;
    margin-top: 20px;
}

.main-price_name_two-title {
    display: grid;
    text-align: center;
    width: 100%;
    height: 20%;
}

.main-price_name_two .price-text {
    color: var(--black);
    font-family: "PlayFair";
    font-size: 30px;
    margin: 0.67em 0;
    font-weight: bold;
}

.main-price_name_two-price b {
    color: var(--dark_red);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 20px;
}

.main-price_name_two-description {
    text-align: center;
    width: 100%;
    height: 40%;
}

.main-price_name_two-description p {
    color: var(--light_gray);
    margin-top: 10%;
    font-size: 17px;
    font-family: "Playfair";
}

.main-informations {
    width: 100%;
    height: 400px;
    background-color: var(--white);
    text-align: center;
}

.main-informations_spacer {
    width: 100%;
    height: 100px;
}

.main-informations b {
    color: var(--dark_red);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 15px;
    margin-top: 50px;
}

.main-informations p {
    color: var(--black);
    margin-top: 2%;
    font-size: 24px;
    font-family: "Playfair";
}

.main-informations #spacer {
    border-bottom: 2px solid var(--dark_red);
    width: 10%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
}

.main-FAQ {
    width: 100%;
    height: 1400px;
    background-color: var(--darkgray);
}

.main-FAQ_spacer {
    width: 100%;
    height: 300px;
    text-align: center;
}

.main-FAQ_spacer h3 {
    color: var(--dark_red);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 15px;
    padding-top: 75px;
}

.main-FAQ_spacer h2 {
    color: var(--white);
    font-size: 44px;
    font-family: "Poppins";
}

.main-FAQ_spacer #spacer {
    border-bottom: 2px solid var(--dark_red);
    width: 10%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
}

.main-FAQ_block {
    width: 100%;
    height: 1000px;
    display: flex;
    justify-content: center;
}

.main-FAQ_first-block {
    width: 40%;
    height: 1000px;
    text-align: center;
}

.main-FAQ_first-block img {
    margin-bottom: 10%;
}

.main-FAQ_first-block h2 {
    color: var(--white);
    font-size: 100%;
    font-family: "Poppins";
}

.main-FAQ_first-block p {
    color: var(--light-white);
    font-size: 100%;
    font-family: 'Times New Roman', Times, serif;
    margin-top: 10%;
    line-height: 150%;
}

.main-FAQ_first-question {
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
}

.main-FAQ_first-question_img {
    width: 30%;
    height: 100%;
}

.main-FAQ_first-question_text {
    width: 70%;
    height: 100%;
}

.main-FAQ_second-block {
    width: 40%;
    height: 1000px;
    text-align: center;
}

.main-FAQ_second-block img {
    margin-bottom: 10%;
}

.main-FAQ_second-block h2 {
    color: var(--white);
    font-size: 100%;
    font-family: "Poppins";
}

.main-FAQ_second-block p {
    color: var(--light-white);
    font-size: 100%;
    font-family: 'Times New Roman', Times, serif;
    margin-top: 10%;
    line-height: 150%;
}

.main-FAQ_second-question {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    margin-top: 30%;
}

.main-FAQ_second-question_img {
    width: 30%;
    height: 100%;
}

.main-FAQ_second-question_text {
    width: 70%;
    height: 100%;
}

.main-FAQ_third-question {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
}

.main-FAQ_third-question_img {
    width: 30%;
    height: 100%;
}

.main-FAQ_third-question_text {
    width: 70%;
    height: 100%;
}

.main-FAQ_fourth-question {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
}

.main-FAQ_fourth-question_img {
    width: 30%;
    height: 100%;
}

.main-FAQ_fourth-question_text {
    width: 70%;
    height: 100%;
}

.main-FAQ_fifth-question {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
}

.main-FAQ_fifth-question_img {
    width: 30%;
    height: 100%;
}

.main-FAQ_fifth-question_text {
    width: 70%;
    height: 100%;
}

.main-contact-navigation {
    width: 100%;
    height: 400px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-contact-navigation_red-spacer {
    width: 100%;
    height: 200px;
    background-color: var(--dark_red);
    position: relative;
}

.main-contact-navigation_main-contact {
    width: 350px;
    height: 300px;
    position: absolute;
    background-color: var(--white);
    box-shadow: 0px 10px 20px 5px var(--light_gray);
    display: flex;
    align-items: center;
}

.main-contact-navigation_main-contact b {
    color: var(--dark_red);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 13px;
}

.main-contact-navigation_main-contact p {
    color: var(--black);
    margin-top: 20px;
    font-size: 24px;
    font-family: "Playfair";
}

.main-contact-navigation_main-contact a {
    color: var(--white);
    text-decoration: none;
    border: 1px solid var(--dark_red);
    padding: 10px 30px 10px 30px;
    background-color: var(--dark_red);
    font-family: "PlayFair";
    font-size: 20px;
    transition: all 0.3s ease;
}

.main-contact-navigation_main-contact a:hover {
    padding: 13px 32px 13px 32px;
}

.main-contact-navigation_main-contact-text {
    width: 100%;
    height: 50%;
    text-align: center;
}

/* main calculator */
/* main contact */
.main-iframe-bg {
    width: 100%;
    height: 105vh;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
}

.main-iframe-bg iframe {
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background-attachment: fixed;
    filter: grayscale(100%);
}

.main-contact-block {
    width: 100%;
    height: 700px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
}

.main-contact-block_one {
    width: 50%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: end;
}

.main-contact-block_one-mail {
    height: auto;
    width: 80%;
    position: absolute;
    margin-right: 25px;
    margin-top: -200px;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    box-shadow: 0px 10px 20px 5px var(--dark_white);
    text-align: center;
}

.main-contact-block_one-mail h1 {
    font-family: "PlayFair", Georgia, 'Times New Roman', Times, serif;
    font-size: 40px;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.main-contact-block_one-mail input {
    width: 70%;
    height: 40px;
    margin-left: auto;
    margin-right: auto;
    color: var(--black);
    border: 0;
    border-bottom: 1px var(--light_gray) solid;
    outline: 0;
    margin-top: 5%;
}

.main-contact-block_one-mail p {
    width: 70%;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    color: var(--light_gray);
    border: 0;
    outline: 0;
}

.main-contact-block_one-mail #input_sumbit {
    width: 20%;
    height: 10%;
    color: var(--white);
    text-decoration: none;
    border: 1px solid var(--dark_red);
    padding: 10px 30px 10px 30px;
    background-color: var(--dark_red);
    font-family: "PlayFair";
    font-size: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.main-contact-block_one-mail #input_sumbit:hover {
    padding: 12px 35px 12px 35px;
}

.main-contact-block_one-mail textarea {
    width: 70%;
    height: 150px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5%;
    border-color: var(--light_gray);
    resize: none;
}

.main-contact-block_one-mail textarea:hover {
    border-color: var(--light_gray);
}

.main-contact-block_two {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-contact-block_two h2 {
    color: var(--light_gray);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 14px;
    padding-top: 25px;
}

.main-contact-block_two p,
.main-contact-block_two .tile-title {
    color: var(--black);
    font-family: "PlayFair", Georgia, 'Times New Roman', Times, serif;
    font-size: 14px;
}

.main-contact-block_two a {
    color: var(--dark_red);
    text-decoration: none;
    font-size: 15px;
}

.main-contact-block_two_first {
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.main-contact-block_two_first-icon {
    width: 10%;
    height: 100%;
    display: flex;
    align-items: center;
}

.main-contact-block_two_first-text {
    width: 90%;
    height: 100%;
    display: flex;
    flex-direction: column;
    line-height: 1px;
}

.main-contact-block_two_second {
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.main-contact-block_two_second-icon {
    width: 10%;
    height: 100%;
    display: flex;
    align-items: center;
}

.main-contact-block_two_second-text {
    width: 90%;
    height: 100%;
    display: flex;
    flex-direction: column;
    line-height: 1px;
}

.main-contact-block_two_third {
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.main-contact-block_two_third-icon {
    width: 10%;
    height: 100%;
    display: flex;
    align-items: center;
}

.main-contact-block_two_third-text {
    width: 90%;
    height: 100%;
    display: flex;
    flex-direction: column;
    line-height: 1px;
}

.main-contact-block_two_fourth {
    width: 100%;
    height: 20%;
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.main-contact-block_two_fourth-icon {
    width: 10%;
    height: 100%;
    display: flex;
    align-items: center;
}

.main-contact-block_two_fourth-text {
    width: 90%;
    height: 100%;
    display: flex;
    flex-direction: column;
    line-height: 1px;
}

.main-contact-information {
    width: 100%;
    height: 700px;
    display: flex;
    justify-content: end;
    align-items: center;
}

.main-contact-information_image {
    width: 100%;
    height: 700px;
    background-image: url(../Images/calculator-photo.jpg);
    background-size: cover;
    position: relative;
}

.main-contact-information_text {
    width: 40%;
    height: 500px;
    position: absolute;
    background-color: var(--white);
    margin-right: 20px;
    text-align: center;
}

.main-contact-information h3 {
    color: var(--dark_red);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 15px;
    padding-top: 75px;
}

.main-contact-information h2,
.main-contact-information_text {
    color: var(--black);
    font-size: 34px;
    font-family: "PlayFair";
}

.main-contact-information #spacer {
    border-bottom: 2px solid var(--dark_red);
    width: 10%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
}

.main-contact-information p {
    color: var(--light_gray);
    font-size: 20px;
    font-family: "PlayFair";
}

/* main start */
.main-bg-aboutus {
    width: 100%;
    height: 95vh;
    background-image: url(../Images/laptop-photo.jpg);
    background-attachment: fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 110px;
}

.main-contact-navigation_main-contact-start {
    width: 500px;
    height: 300px;
    position: absolute;
    background-color: var(--white);
    box-shadow: 0px 10px 20px 5px var(--light_gray);
    display: flex;
    align-items: center;
    margin-right: 500px;
    margin-bottom: 350px;
}

.main-contact-navigation_main-contact-start b {
    color: var(--dark_red);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 13px;
}

.main-contact-navigation_main-contact-start p {
    color: var(--black);
    margin-top: 20px;
    font-size: 24px;
    font-family: "Playfair";
}

.main-contact-navigation_main-contact-start a {
    color: var(--white);
    text-decoration: none;
    border: 1px solid var(--dark_red);
    padding: 10px 30px 10px 30px;
    background-color: var(--dark_red);
    font-family: "PlayFair";
    font-size: 20px;
    transition: all 0.3s ease;
}

.main-contact-navigation_main-contact-start a:hover {
    padding: 13px 32px 13px 32px;
}

.main-bg-calculator {
    width: 100%;
    height: 95vh;
    background-image: url(../Images/all-photo.jpg);
    background-attachment: fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 110px;
    object-fit: contain;
}

.main-calculator-navigation {
    width: 100%;
    height: 400px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.main-calculator_main-contact-start {
    width: 80%;
    height: 300px;
    background-color: var(--white);
    box-shadow: 0px 10px 20px 5px var(--light_gray);
    display: flex;
    position: absolute;
    align-items: center;
    margin-bottom: 20%;
}

.main-calculator_main-contact-start-first {
    width: 33%;
    height: 100%;
    text-align: center;
}

.main-calculator_main-contact-start-first h2 {
    font-family: "PlayFair", Georgia, 'Times New Roman', Times, serif;
    font-size: 24px;
    margin-top: 30%;
}

.main-calculator_main-contact-start-first span {
    font-family: "Poppins";
    color: var(--dark_red);
    font-size: 16px;
    margin-right: 5px;
}

.main-calculator_main-contact-start-first p {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: var(--light_gray);
    font-size: 16px;
}

.main-calculator_main-contact-start-second {
    width: 34%;
    height: 100%;
    border-left: 1px var(--light_gray) solid;
    border-right: 1px var(--light_gray) solid;
    text-align: center;
}

.main-calculator_main-contact-start-second h2 {
    font-family: "PlayFair", Georgia, 'Times New Roman', Times, serif;
    font-size: 24px;
    margin-top: 30%;
}

.main-calculator_main-contact-start-second span {
    font-family: "Poppins";
    color: var(--dark_red);
    font-size: 16px;
    margin-right: 5px;
}

.main-calculator_main-contact-start-second p {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: var(--light_gray);
    font-size: 16px;
}

.main-calculator_main-contact-start-third h2 {
    font-family: "PlayFair", Georgia, 'Times New Roman', Times, serif;
    font-size: 24px;
    margin-top: 30%;
}

.main-calculator_main-contact-start-third span {
    font-family: "Poppins";
    color: var(--dark_red);
    font-size: 16px;
    margin-right: 5px;
}

.main-calculator_main-contact-start-third p {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: var(--light_gray);
    font-size: 16px;
}

.main-calculator_main-contact-start-third {
    width: 33%;
    height: 100%;
    text-align: center;
}

.main-calculator-calculations {
    width: 100%;
    height: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-calculator-calculations_spacer {
    width: 100%;
    height: 300px;
    text-align: center;
}

.main-calculator-calculations_spacer h3 {
    color: var(--dark_red);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 15px;
    padding-top: 75px;
}

.main-calculator-calculations_spacer h2 {
    color: var(--black);
    font-size: 34px;
    font-family: "PlayFair";
}

.main-calculator-calculations_spacer #spacer {
    border-bottom: 2px solid var(--dark_red);
    width: 10%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
}

.main-calculator-calculations_main-block {
    width: 100%;
    height: 1200px;
}

.main-calculator-calculations_data-mobile-first {
    display: flex;
    flex-direction: row;
    margin-bottom: 10%;
}

.main-calculator-calculations_data-mobile-second {
    display: flex;
    flex-direction: row;
    margin-bottom: 10%;
}

.main-calculator-calculations_data-mobile-third {
    display: flex;
    flex-direction: row;
    margin-bottom: 10%;
}

.main-calculator-calculations_data {
    width: 90%;
    height: 100px;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    justify-content: start;
}

.main-calculator-calculations_data-first {
    width: 200px;
    height: 100px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    box-shadow: 0px 10px 20px 5px var(--dark_white);
    text-align: center;
    border-top: 1px var(--light_gray) solid;
    border-left: 1px var(--light_gray) solid;
    border-right: 1px var(--light_gray) solid;
    border-bottom: 1px var(--light_gray) solid;
    margin-right: 10px;
    margin-left: 10px;
}

.main-calculator-calculations_data-second {
    width: 200px;
    height: 100px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    box-shadow: 0px 10px 20px 5px var(--dark_white);
    text-align: center;
    border-top: 1px var(--light_gray) solid;
    border-left: 1px var(--light_gray) solid;
    border-right: 1px var(--light_gray) solid;
    border-bottom: 1px var(--light_gray) solid;
    margin-right: 10px;
    margin-left: 10px;
}

.main-calculator-calculations_data-third {
    width: 200px;
    height: 100px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    box-shadow: 0px 10px 20px 5px var(--dark_white);
    text-align: center;
    border-top: 1px var(--light_gray) solid;
    border-left: 1px var(--light_gray) solid;
    border-right: 1px var(--light_gray) solid;
    border-bottom: 1px var(--light_gray) solid;
    margin-right: 10px;
    margin-left: 10px;
}

.main-calculator-calculations_data-fourth {
    width: 200px;
    height: 100px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    box-shadow: 0px 10px 20px 5px var(--dark_white);
    text-align: center;
    border-top: 1px var(--light_gray) solid;
    border-left: 1px var(--light_gray) solid;
    border-right: 1px var(--light_gray) solid;
    border-bottom: 1px var(--light_gray) solid;
    margin-right: 10px;
    margin-left: 10px;
}

.main-calculator-calculations_data-fiveth {
    width: 200px;
    height: 100px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    box-shadow: 0px 10px 20px 5px var(--dark_white);
    text-align: center;
    border-top: 1px var(--light_gray) solid;
    border-left: 1px var(--light_gray) solid;
    border-right: 1px var(--light_gray) solid;
    border-bottom: 1px var(--light_gray) solid;
    margin-right: 10px;
    margin-left: 10px;
}

.main-calculator-calculations_data h3 {
    width: 200px;
    height: 30px;
    font-family: "PlayFair", Georgia, 'Times New Roman', Times, serif;
    font-size: 12px;
    border-bottom: 1px var(--light_gray) solid;
    padding-bottom: 2px;
}

.main-calculator-calculations_data input {
    width: 150px;
    height: 40px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 12px;
    outline: 0;
    border: 0;
    text-align: center;
}

.main-calculator-calculations_data select {
    width: 150px;
    height: 40px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 12px;
    outline: 0;
    border: 0;
    text-align: center;
}

.main-calculator-calculations_output {
    width: 90%;
    height: 1200px;
    display: flex;
    justify-content: space-around;
    margin-left: auto;
    margin-right: auto;
}

.main-calculator-calculations_output-first-block {
    width: 200px;
    height: 100%;
    text-align: center;
}

.main-calculator-calculations_output-first-block h3 {
    color: var(--white);
    font-family: "Poppins";
    font-size: 15px;
    margin-top: 75px;
    border-top: 1px var(--light_gray) solid;
    border-left: 1px var(--light_gray) solid;
    border-right: 1px var(--light_gray) solid;
    border-bottom: 1px var(--light_gray) solid;
    background-color: var(--light_gray);
    box-shadow: 0px 10px 20px 5px var(--dark_white);
}

.main-calculator-calculations_output-first-block p {
    margin-bottom: 75px;
    color: var(--black);
    font-family: "Poppins";
    font-size: 15px;
    padding-top: 25px;
    height: 50px;
    border-top: 1px var(--light-white) solid;
    border-left: 1px var(--light-white) solid;
    border-right: 1px var(--light-white) solid;
    border-bottom: 1px var(--light-white) solid;
    background-color: var(--light-white);
    box-shadow: 0px 10px 20px 5px var(--dark_white);
}

.main-calculator-calculations_output-second-block {
    width: 200px;
    height: 100%;
    text-align: center;
}

.main-calculator-calculations_output-second-block h3 {
    color: var(--white);
    font-family: "Poppins";
    font-size: 15px;
    margin-top: 75px;
    border-top: 1px var(--light_gray) solid;
    border-left: 1px var(--light_gray) solid;
    border-right: 1px var(--light_gray) solid;
    border-bottom: 1px var(--light_gray) solid;
    background-color: var(--light_gray);
    box-shadow: 0px 10px 20px 5px var(--dark_white);
}

.main-calculator-calculations_output-second-block p {
    margin-bottom: 75px;
    color: var(--black);
    font-family: "Poppins";
    font-size: 15px;
    padding-top: 25px;
    height: 50px;
    border-top: 1px var(--light-white) solid;
    border-left: 1px var(--light-white) solid;
    border-right: 1px var(--light-white) solid;
    border-bottom: 1px var(--light-white) solid;
    background-color: var(--light-white);
    box-shadow: 0px 10px 20px 5px var(--dark_white);
}

.main-calculator-calculations_output-third-block {
    width: 200px;
    height: 100%;
    text-align: center;
}

.main-calculator-calculations_output-third-block h3 {
    color: var(--white);
    font-family: "Poppins";
    font-size: 15px;
    margin-top: 75px;
    border-top: 1px var(--light_gray) solid;
    border-left: 1px var(--light_gray) solid;
    border-right: 1px var(--light_gray) solid;
    border-bottom: 1px var(--light_gray) solid;
    background-color: var(--light_gray);
    box-shadow: 0px 10px 20px 5px var(--dark_white);
}

.main-calculator-calculations_output-third-block p {
    margin-bottom: 75px;
    color: var(--black);
    font-family: "Poppins";
    font-size: 15px;
    padding-top: 25px;
    height: 50px;
    border-top: 1px var(--light-white) solid;
    border-left: 1px var(--light-white) solid;
    border-right: 1px var(--light-white) solid;
    border-bottom: 1px var(--light-white) solid;
    background-color: var(--light-white);
    box-shadow: 0px 10px 20px 5px var(--dark_white);
}

.main-calculator-calculations_output-fourth-block {
    width: 200px;
    height: 100%;
    text-align: center;
}

.main-calculator-calculations_output-fourth-block h3 {
    color: var(--white);
    font-family: "Poppins";
    font-size: 15px;
    margin-top: 75px;
    border-top: 1px var(--light_gray) solid;
    border-left: 1px var(--light_gray) solid;
    border-right: 1px var(--light_gray) solid;
    border-bottom: 1px var(--light_gray) solid;
    background-color: var(--light_gray);
    box-shadow: 0px 10px 20px 5px var(--dark_white);
}

.main-calculator-calculations_output-fourth-block p {
    margin-bottom: 75px;
    color: var(--black);
    font-family: "Poppins";
    font-size: 15px;
    padding-top: 25px;
    height: 50px;
    border-top: 1px var(--light-white) solid;
    border-left: 1px var(--light-white) solid;
    border-right: 1px var(--light-white) solid;
    border-bottom: 1px var(--light-white) solid;
    background-color: var(--light-white);
    box-shadow: 0px 10px 20px 5px var(--dark_white);
}

.main-calculator-calculations_output-fiveth-block {
    width: 200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-calculator-calculations_output-fiveth-block p {
    color: var(--white);
    text-decoration: none;
    border: 1px solid var(--dark_red);
    padding: 10px 30px 10px 30px;
    background-color: var(--dark_red);
    font-family: "PlayFair";
    font-size: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.main-calculator-calculations_output-fiveth-block p:hover {
    padding: 12px 35px 12px 35px;
}

.main-calculator-informations {
    width: 100%;
    height: 400px;
    background-color: var(--white);
    text-align: center;
}

.main-calculator-informations p {
    color: var(--light_gray);
    padding-left: 5%;
    padding-right: 5%;
    margin-top: 5%;
    font-size: 16px;
    font-family: "PlayFair";
}

/* main calculator car */
.main-calculator-car-calculations {
    width: 100%;
    height: 1800px;
}

.main-calculator-car-calculations_data-first {
    width: 200px;
    height: 75px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    box-shadow: 0px 10px 20px 5px var(--dark_white);
    text-align: center;
    border-top: 1px var(--light_gray) solid;
    border-left: 1px var(--light_gray) solid;
    border-right: 1px var(--light_gray) solid;
    border-bottom: 1px var(--light_gray) solid;
    margin-bottom: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-calculator-car-calculations_data-first input {
    border: 0;
    width: 90%;
    height: 90%;
    text-align: center;
    background-color: transparent;
    outline: 0;
}

.main-calculator-car-calculations_data-second input {
    border: 0;
    width: 90%;
    height: 90%;
    text-align: center;
    background-color: transparent;
    outline: 0;
}

.main-calculator-car-calculations_data-third input {
    border: 0;
    width: 90%;
    height: 90%;
    text-align: center;
    background-color: transparent;
    outline: 0;
}

.main-calculator-car-calculations_data-four input {
    border: 0;
    width: 90%;
    height: 90%;
    text-align: center;
    background-color: transparent;
    outline: 0;
}

.main-calculator-car-calculations_data-five input {
    border: 0;
    width: 90%;
    height: 90%;
    text-align: center;
    background-color: transparent;
    outline: 0;
}

.main-calculator-car-calculations_data-six select {
    border: 0;
    width: 90%;
    height: 90%;
    text-align: center;
    background-color: transparent;
    outline: 0;
}

.main-calculator-car-calculations_data-seven input {
    border: 0;
    width: 90%;
    height: 90%;
    text-align: center;
    background-color: transparent;
    outline: 0;
}

.main-calculator-car-calculations_data-eight input {
    border: 0;
    width: 90%;
    height: 90%;
    text-align: center;
    background-color: transparent;
    outline: 0;
}

.main-calculator-car-calculations_data-nine input {
    border: 0;
    width: 90%;
    height: 90%;
    text-align: center;
    background-color: transparent;
    outline: 0;
}

.main-calculator-car-calculations_data-ten input {
    border: 0;
    width: 90%;
    height: 90%;
    text-align: center;
    background-color: transparent;
    outline: 0;
}

.main-calculator-car-calculations_data-second {
    width: 200px;
    height: 75px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    box-shadow: 0px 10px 20px 5px var(--dark_white);
    text-align: center;
    border-top: 1px var(--light_gray) solid;
    border-left: 1px var(--light_gray) solid;
    border-right: 1px var(--light_gray) solid;
    border-bottom: 1px var(--light_gray) solid;
    margin-bottom: 75px;
}

.main-calculator-car-calculations_data-third {
    width: 200px;
    height: 75px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    box-shadow: 0px 10px 20px 5px var(--dark_white);
    text-align: center;
    border-top: 1px var(--light_gray) solid;
    border-left: 1px var(--light_gray) solid;
    border-right: 1px var(--light_gray) solid;
    border-bottom: 1px var(--light_gray) solid;
    margin-bottom: 75px;
}

.main-calculator-car-calculations_data-four {
    width: 200px;
    height: 75px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    box-shadow: 0px 10px 20px 5px var(--dark_white);
    text-align: center;
    border-top: 1px var(--light_gray) solid;
    border-left: 1px var(--light_gray) solid;
    border-right: 1px var(--light_gray) solid;
    border-bottom: 1px var(--light_gray) solid;
    margin-bottom: 75px;
}

.main-calculator-car-calculations_data-five {
    width: 200px;
    height: 75px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    box-shadow: 0px 10px 20px 5px var(--dark_white);
    text-align: center;
    border-top: 1px var(--light_gray) solid;
    border-left: 1px var(--light_gray) solid;
    border-right: 1px var(--light_gray) solid;
    border-bottom: 1px var(--light_gray) solid;
    margin-bottom: 75px;
}

.main-calculator-car-calculations_data-six {
    width: 200px;
    height: 75px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    box-shadow: 0px 10px 20px 5px var(--dark_white);
    text-align: center;
    border-top: 1px var(--light_gray) solid;
    border-left: 1px var(--light_gray) solid;
    border-right: 1px var(--light_gray) solid;
    border-bottom: 1px var(--light_gray) solid;
    margin-bottom: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-calculator-car-calculations_data-seven {
    width: 200px;
    height: 75px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    box-shadow: 0px 10px 20px 5px var(--dark_white);
    text-align: center;
    border-top: 1px var(--light_gray) solid;
    border-left: 1px var(--light_gray) solid;
    border-right: 1px var(--light_gray) solid;
    border-bottom: 1px var(--light_gray) solid;
    margin-bottom: 75px;
}

.main-calculator-car-calculations_data-eight {
    width: 200px;
    height: 75px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    box-shadow: 0px 10px 20px 5px var(--dark_white);
    text-align: center;
    border-top: 1px var(--light_gray) solid;
    border-left: 1px var(--light_gray) solid;
    border-right: 1px var(--light_gray) solid;
    border-bottom: 1px var(--light_gray) solid;
    margin-bottom: 75px;
}

.main-calculator-car-calculations_data-nine {
    width: 200px;
    height: 75px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    box-shadow: 0px 10px 20px 5px var(--dark_white);
    text-align: center;
    border-top: 1px var(--light_gray) solid;
    border-left: 1px var(--light_gray) solid;
    border-right: 1px var(--light_gray) solid;
    border-bottom: 1px var(--light_gray) solid;
    margin-bottom: 75px;
}

.main-calculator-car-calculations_data-ten {
    width: 200px;
    height: 75px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    box-shadow: 0px 10px 20px 5px var(--dark_white);
    text-align: center;
    border-top: 1px var(--light_gray) solid;
    border-left: 1px var(--light_gray) solid;
    border-right: 1px var(--light_gray) solid;
    border-bottom: 1px var(--light_gray) solid;
    margin-bottom: 75px;
}

.main-calculator-car-calculations_output {
    width: 90%;
    height: 2000px;
    display: flex;
    justify-content: space-around;
    margin-left: auto;
    margin-right: auto;
}

.main-calculator-car-calculations_output-first-block {
    width: 200px;
    height: 100%;
    text-align: center;
}

.main-calculator-car-calculations_output-first-block h3 {
    color: var(--white);
    font-family: "Poppins";
    font-size: 15px;
    border-top: 1px var(--light_gray) solid;
    border-left: 1px var(--light_gray) solid;
    border-right: 1px var(--light_gray) solid;
    border-bottom: 1px var(--light_gray) solid;
    background-color: var(--light_gray);
    box-shadow: 0px 10px 20px 5px var(--dark_white);
}

.main-calculator-car-calculations_output-first-block p {
    margin-bottom: 75px;
    color: var(--black);
    font-family: "Poppins";
    font-size: 15px;
    padding-top: 25px;
    height: 50px;
    border-top: 1px var(--light-white) solid;
    border-left: 1px var(--light-white) solid;
    border-right: 1px var(--light-white) solid;
    border-bottom: 1px var(--light-white) solid;
    background-color: var(--light-white);
    box-shadow: 0px 10px 20px 5px var(--dark_white);
}

.main-calculator-car-calculations_output-second-block {
    width: 200px;
    height: 100%;
    text-align: center;
}

.main-calculator-car-calculations_output-second-block h3 {
    color: var(--white);
    font-family: "Poppins";
    font-size: 15px;
    border-top: 1px var(--light_gray) solid;
    border-left: 1px var(--light_gray) solid;
    border-right: 1px var(--light_gray) solid;
    border-bottom: 1px var(--light_gray) solid;
    background-color: var(--light_gray);
    box-shadow: 0px 10px 20px 5px var(--dark_white);
}

.main-calculator-car-calculations_output-second-block p {
    margin-bottom: 75px;
    color: var(--black);
    font-family: "Poppins";
    font-size: 15px;
    padding-top: 25px;
    height: 50px;
    border-top: 1px var(--light-white) solid;
    border-left: 1px var(--light-white) solid;
    border-right: 1px var(--light-white) solid;
    border-bottom: 1px var(--light-white) solid;
    background-color: var(--light-white);
    box-shadow: 0px 10px 20px 5px var(--dark_white);
}

.main-calculator-car-calculations_output-third-block {
    width: 200px;
    height: 100%;
    text-align: center;
}

.main-calculator-car-calculations_output-third-block h3 {
    color: var(--white);
    font-family: "Poppins";
    font-size: 15px;
    border-top: 1px var(--light_gray) solid;
    border-left: 1px var(--light_gray) solid;
    border-right: 1px var(--light_gray) solid;
    border-bottom: 1px var(--light_gray) solid;
    background-color: var(--light_gray);
    box-shadow: 0px 10px 20px 5px var(--dark_white);
}

.main-calculator-car-calculations_output-third-block p {
    margin-bottom: 75px;
    color: var(--black);
    font-family: "Poppins";
    font-size: 15px;
    padding-top: 25px;
    height: 50px;
    border-top: 1px var(--light-white) solid;
    border-left: 1px var(--light-white) solid;
    border-right: 1px var(--light-white) solid;
    border-bottom: 1px var(--light-white) solid;
    background-color: var(--light-white);
    box-shadow: 0px 10px 20px 5px var(--dark_white);
}

.main-calculator-car-calculations_output-fourth-block {
    width: 200px;
    height: 100%;
    text-align: center;
}

.main-calculator-car-calculations_output-fourth-block h3 {
    color: var(--white);
    font-family: "Poppins";
    font-size: 15px;
    border-top: 1px var(--light_gray) solid;
    border-left: 1px var(--light_gray) solid;
    border-right: 1px var(--light_gray) solid;
    border-bottom: 1px var(--light_gray) solid;
    background-color: var(--light_gray);
    box-shadow: 0px 10px 20px 5px var(--dark_white);
}

.main-calculator-car-calculations_output-fourth-block p {
    margin-bottom: 75px;
    color: var(--black);
    font-family: "Poppins";
    font-size: 15px;
    padding-top: 25px;
    height: 50px;
    border-top: 1px var(--light-white) solid;
    border-left: 1px var(--light-white) solid;
    border-right: 1px var(--light-white) solid;
    border-bottom: 1px var(--light-white) solid;
    background-color: var(--light-white);
    box-shadow: 0px 10px 20px 5px var(--dark_white);
}

.main-calculator-car-calculations_output-fiveth-block {
    width: 200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.main-calculator-car-calculations_output-fiveth-block p {
    color: var(--white);
    text-decoration: none;
    border: 1px solid var(--dark_red);
    padding: 10px 30px 10px 30px;
    background-color: var(--dark_red);
    font-family: "PlayFair";
    font-size: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: auto;
    margin-bottom: auto;
}

.main-calculator-car-calculations_output-fiveth-block p:hover {
    padding: 12px 35px 12px 35px;
}

/* calculator pp */
.main-calculator-pp-calculations {
    width: 100%;
    height: 1000px;
}

.main-calculator-pp-calculations_output-fiveth-block {
    width: 200px;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-calculator-pp-calculations_output-fiveth-block p {
    color: var(--white);
    text-decoration: none;
    border: 1px solid var(--dark_red);
    padding: 10px 30px 10px 30px;
    background-color: var(--dark_red);
    font-family: "PlayFair";
    font-size: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.main-calculator-pp-calculations_output-fiveth-block p:hover {
    padding: 12px 35px 12px 35px;
}

/* main contact */
.main-iframe-bg {
    width: 100%;
    height: 105vh;
    background-attachment: fixed;
    background-size: 100% 105vh;
    background-repeat: no-repeat;
    display: flex;
}

.main-iframe-bg iframe {
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background-attachment: fixed;
    filter: grayscale(100%);
}

/* main start */
.main-contact-navigation_main-contact-start {
    width: 500px;
    height: 300px;
    position: absolute;
    background-color: var(--white);
    box-shadow: 0px 10px 20px 5px var(--light_gray);
    display: flex;
    align-items: center;
    margin-right: 500px;
    margin-bottom: 350px;
}

.main-contact-navigation_main-contact-start b {
    color: var(--dark_red);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 13px;
}

.main-contact-navigation_main-contact-start p {
    color: var(--black);
    margin-top: 20px;
    font-size: 24px;
    font-family: "Playfair";
}

.main-contact-navigation_main-contact-start a {
    color: var(--white);
    text-decoration: none;
    border: 1px solid var(--dark_red);
    padding: 10px 30px 10px 30px;
    background-color: var(--dark_red);
    font-family: "PlayFair";
    font-size: 20px;
    transition: all 0.3s ease;
}

.main-contact-navigation_main-contact-start a:hover {
    padding: 13px 32px 13px 32px;
}

/* main onas */
.main-onas {
    width: 100%;
    height: auto;
    background-color: var(--darkgray);
    display: flex;
}

.main-onas-spacer {
    width: 100%;
    height: auto;
    background-color: var(--darkgray);
    text-align: center;
    display: grid;
}

.main-onas-spacer b {
    color: var(--dark_red);
    font-size: 30px;
    font-family: "PlayFair";
    margin-top: 30px;
}

.main-onas-spacer #spacer {
    border-bottom: 2px solid var(--dark_red);
    width: 10%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
}

.main-onas-text {
    width: 70%;
    height: auto;
    margin-bottom: 5%;
}

.main-onas-text p {
    color: var(--white);
    font-family: "PlayFair";
    margin: 25px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
}

.main-onas-certyfikaty {
    width: 30%;
    height: auto;
}

.main-onas-certyfikaty img {
    width: 80%;
    height: auto;
    margin-left: 5%;
    margin-top: 5%;
}

.main-onas-inne {
    width: 100%;
    height: auto;
    background-color: var(--darkgray);
}

.main-onas-inne-certyfikaty1 {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    height: 100%;
}

.main-onas-inne-certyfikaty1 img {
    margin-left: 4%;
    margin-right: 4%;
    width: auto;
    height: 80px;
    object-fit: contain;
    max-height: 30%;
    margin-top: 10%;
    margin-bottom: 10%;
}

#myImg,
#myImg2,
#myImg3,
#myImg4,
#myImg5,
#myImg6 {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg:hover,
#myImg2:hover,
#myImg3:hover,
#myImg4:hover,
#myImg5:hover,
#myImg6:hover {
    opacity: 0.7;
}

/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    /* Fallback color */
    background-color: rgba(0,0,0,0.9);
    /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content,
#caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

/* The Close Button */
.close {
    position: absolute;
    top: 125px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}

/* main full price list */
.main-full-price-list {
    width: 100%;
    height: auto;
    background-color: var(--white);
}

.main-full-price-list_spacer {
    width: 100%;
    height: 300px;
    text-align: center;
}

.main-full-price-list_spacer h3 {
    color: var(--dark_red);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 15px;
    padding-top: 75px;
}

.main-full-price-list_spacer h2 {
    color: var(--black);
    font-size: 34px;
    font-family: "PlayFair";
}

.main-full-price-list_spacer #spacer {
    border-bottom: 2px solid var(--dark_red);
    width: 10%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
}

.main-full-price-list_table {
    width: 100%;
    height: 760px;
    display: flex;
    justify-content: center;
}

.main-full-price-list table {
    width: 80%;
    height: 760px;
    border: 1px solid var(--light_gray);
}

.main-full-price-list thead {
    width: 100%;
    height: 40px;
}

.main-full-price-list tbody {
    width: 100%;
    height: 720px;
}

.main-full-price-list th {
    width: 50%;
    height: 100%;
    font-family: "Poppins";
    text-align: start;
    padding-left: 5%;
}

.main-full-price-list td {
    width: 50%;
    height: 100%;
    font-family: "Poppins";
    font-size: 14px;
    padding-left: 5%;
    color: var(--light_gray);
}

.main-full-price-list tr {
    width: 100%;
    height: 40px;
}

.main-full-price-list tr:hover {
    background-color: var(--light-white);
}

.main-full-price-list_table_spacer {
    width: 100%;
    height: 300px;
    text-align: center;
    margin-top: 10%;
}

.main-full-price-list_table_spacer #spacer {
    border-top: 2px solid var(--dark_red);
    width: 10%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
}

.main-full-price-list_table_spacer p {
    width: 80%;
    font-family: "Poppins";
    font-size: 14px;
    color: var(--light_gray);
    margin-left: auto;
    margin-right: auto;
}

/* othermain */
.othermain {
    display: flex;
    height: 700px;
    width: 100%;
}

.othermain #spacer {
    border-bottom: 2px solid var(--dark_red);
    width: 10%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
}

.imageleft {
    width: 50%;
}

.imageleft img {
    margin-left: 5%;
    height: 350px;
    width: auto;
    background-size: cover;
}

.textright {
    width: 50%;
    text-align: center;
    margin-top: 100px;
}

.textright b {
    color: var(--dark_red);
    font-size: 20px;
    font-family: "PlayFair";
}

.textright h2 {
    font-size: 30px;
    font-family: "PlayFair";
    padding-left: 50px;
    padding-right: 50px;
}

.textright p {
    font-size: 20px;
    font-family: "PlayFair";
    padding-left: 50px;
    padding-right: 50px;
}

.textleft {
    width: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.textleft b {
    color: var(--dark_red);
    font-size: 20px;
    font-family: "PlayFair";
}

.textleft li {
    font-size: 20px;
    text-align: left;
    font-family: "PlayFair";
    padding-left: 50px;
    padding-right: 50px;
}

.textleft ul {
    list-style: none;
}

.textleft ul li::before {
    content: "\2022";
    color: var(--dark_red);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.imageright {
    width: 50%;
}

.imageright img {
    margin-left: 5%;
    height: 350px;
    width: auto;
    background-size: cover;
}

/* main about owner */
.main-about-owner {
    background-image: url(../Images/owner-color.jpg);
    background-size: cover;
    width: 100%;
    height: 1000px;
    opacity: 0.8;
    position: relative;
}

.main-about-owner-block {
    width: 100%;
    height: 1000px;
    background-color: var(--darkgray);
    z-index: 1;
}

.main-about-owner-row {
    width: 30%;
    height: 900px;
    background-color: var(--white);
    box-shadow: 5px 5px 5px 5px var(--light_gray);
    position: absolute;
    margin-left: 65%;
    margin-top: 50px;
    text-align: center;
}

.main-about-owner-row b {
    color: var(--dark_red);
    margin: 5px;
    font-size: 20px;
    font-family: "PlayFair";
}

.main-about-owner-row .owner-quote {
    text-align: center;
    font-weight: bold;
    font-family: "PlayFair";
    font-size: 2em;
    margin: 0.67em 0;
}

.main-about-owner #spacer {
    border-bottom: 2px solid var(--dark_red);
    width: 10%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
}

.main-about-owner-row2 {
    height: 775px;
    width: 100%;
}

.main-about-owner-row2 p {
    font-family: "Poppins";
    font-size: 14px;
    z-index: 100;
    color: var(--black);
    padding-left: 20px;
    padding-right: 20px;
}

/* link section */
.linksection {
    width: 100%;
    height: 600px;
    background-color: var(--white);
    margin-top: 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.linksection a {
    text-decoration: none;
    font-family: "PlayFair",Georgia, 'Times New Roman', Times, serif;
    font-size: 20px;
    color: var(--light_gray);
    transition: all 0.2s ease;
}

.linksection a:hover {
    border-bottom: 2px solid var(--light_gray);
    padding-bottom: 10px;
    font-size: 22px;
    transition: all 0.2s ease;
}

/* footer */
footer {
    width: 100%;
    height: 400px;
    background-color: var(--darkgray);
    display: flex;
    justify-content: center;
}

.logo-ft {
    width: 30%;
    height: 100%;
}

.logo-ft_one {
    width: 100%;
    height: 40%;
    display: flex;
    align-items: end;
}

.logo-ft_two {
    width: 100%;
    height: 60%;
    display: flex;
}

.navigation-ft {
    width: 15%;
    height: 100%;
}

.navigation-ft_one {
    width: 100%;
    height: 30%;
    display: flex;
    align-items: end;
}

.navigation-ft_one .footer-title {
    color: var(--dark_red);
    font-size: 24px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 0.67em 0;
    font-weight: bold;
}

.navigation-ft_two {
    width: 100%;
    height: 60%;
}

.navigation-ft_two a {
    color: var(--white);
    font-size: 16px;
    text-decoration: none;
    font-style: normal;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    transition: all 0.2s ease;
}

.navigation-ft_two p {
    margin-top: 20px;
}

.navigation-ft_two a:hover {
    border-bottom: 2px solid white;
    padding-bottom: 5px;
    font-size: 17px;
    transition: all 0.2s ease;
}

.information-ft {
    width: 25%;
    height: 100%;
}

.information-ft_one {
    width: 100%;
    height: 30%;
    display: flex;
    align-items: end;
}

.information-ft_one .footer-title {
    color: var(--dark_red);
    font-size: 24px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 0.67em 0;
    font-weight: bold;
}

.information-ft_two {
    width: 100%;
    height: 60%;
}

.information-ft_two p {
    color: var(--white);
    font-size: 16px;
    text-decoration: none;
    font-style: normal;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.contact-ft {
    width: 30%;
    height: 100%;
}

.contact-ft_one {
    width: 100%;
    height: 30%;
    display: flex;
    align-items: end;
}

.contact-ft_one .footer-title {
    color: var(--dark_red);
    font-size: 24px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 0.67em 0;
    font-weight: bold;
}

.contact-ft_two {
    width: 100%;
    height: 30%;
}

.contact-ft_two .footer-title {
    color: var(--white);
    font-size: 18px;
    text-decoration: none;
    font-style: normal;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 0;
    font-weight: bold;
}

.contact-ft_two a {
    font-size: 16px;
    text-decoration: none;
    font-style: normal;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: var(--light_gray);
    transition: all 0.2s ease;
}

.contact-ft_two a:hover {
    border-bottom: 2px solid var(--light_gray);
    padding-bottom: 5px;
    font-size: 17px;
}

.contact-ft_three {
    width: 100%;
    height: 40%;
}

.contact-ft_three .footer-title {
    color: var(--white);
    font-size: 18px;
    text-decoration: none;
    font-style: normal;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 0;
    font-weight: bold;
}

.contact-ft_three p {
    font-size: 16px;
    text-decoration: none;
    font-style: normal;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: var(--light_gray);
}

/* mobile menu */
.mobile-menu {
    height: auto;
    width: auto;
    color: var(--dark_red);
    align-items: center;
    justify-content: end;
    margin-left: auto;
    padding-right: 10px;
    display: none;
}

.mobile-menu-icon {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 0.5s;
}

.mobile-menu-icon:hover {
    opacity: 0.6;
}

.mobile-menu-navigation {
    top: 90px;
    right: 0px;
    position: absolute;
    height: 100vh;
    width: 50%;
    background-color: var(--white);
    display: none;
}

.show-menu {
    display: block;
}

.mobile-menu-navigation a {
    text-decoration: none;
    color: var(--dark_red);
    opacity: 1;
    transition: 0.3s;
    font-family: "Kanit";
    font-size: 1em;
    margin: 15px;
}

.mobile-red-line {
    top: 0px;
    right: 0px;
    left: 0px;
    background-color: var(--dark_red);
    height: 100%;
    width: 10px;
    position: absolute;
    display: block;
}

/* Akapity w sekcji "Właściciel" na stronie kontaktu były pogrubione wyłącznie
   dlatego, że przez niezamknięty znacznik <h2> stały się jego dziećmi
   i dziedziczyły pogrubienie nagłówka. Znacznik został domknięty w Fazie 2,
   a pogrubienie zachowane celowo, żeby wygląd strony się nie zmienił.
 Czy tekst ma pozostać pogrubiony — decyzja klientki, patrz docs/02-poprawki.md. */

.main-contact-information_text p {
    font-weight: bold;
}

/*
 * Wspólne reguły dla telefonu i tabletu.
 *
 * Wcześniej powtarzane w plikach wielu podstron; przeniesione tu narzędziem
 * narzedzia/scal_css.py. Pliki stron ładują się po tym arkuszu i mogą je nadpisywać.
 */

@media (max-width: 767px) {
    .start {
        display: none;
    }

    .start p {
        font-size: 60%;
        max-width: 700px;
        max-height: 30px;
    }

    .buttonlinks {
        display: none;
    }

    .logo-mn {
        margin-left: auto;
    }

    .mobile-menu {
        display: flex;
    }

    .main-bg_title-h h1 {
        padding-top: 0%;
    }

    .main-bg_title-h {
        width: 100%;
        height: auto;
        text-align: center;
        font-size: 0.65em;
        position: relative;
    }

    .main-bg_title-text h2 {
        color: var(--white);
        font-size: 1em;
        font-family: "PlayFair";
        margin-top: 5%;
        margin-bottom: 5%;
    }

    .main-bg_title-text {
        width: 100%;
        height: auto;
        text-align: center;
        position: relative;
    }

    .main-bg_title-p p {
        color: var(--white);
        font-size: 0.75em;
        font-family: "Poppins";
        font-style: oblique;
    }

    .main-bg_title-p {
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        text-align: center;
        position: relative;
    }

    .main-contact-navigation {
        width: 100%;
        height: 200px;
        background-color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-contact-navigation_main-contact {
        width: 175px;
        height: 150px;
        position: absolute;
        background-color: var(--white);
        box-shadow: 0px 5px 10px 2px var(--light_gray);
        display: flex;
        align-items: center;
    }

    .main-contact-navigation_main-contact-text b {
        color: var(--dark_red);
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        font-size: 6px;
    }

    .main-contact-navigation_main-contact-text p {
        color: var(--black);
        margin-top: 10px;
        font-size: 12px;
        font-family: "Playfair";
    }

    .main-contact-navigation_main-contact-text a {
        color: var(--white);
        text-decoration: none;
        border: 1px solid var(--dark_red);
        padding: 5px 12px 5px 15px;
        background-color: var(--dark_red);
        font-family: "PlayFair";
        font-size: 10px;
        transition: all 0.3s ease;
    }

    .main-contact-navigation_main-contact-text a:hover {
        padding: 8px 14px 8px 14px;
    }

    footer {
        width: 100%;
        height: 200px;
        background-color: var(--darkgray);
        display: flex;
        justify-content: center;
    }

    .logo-ft_one img {
        width: 80%;
        height: auto;
    }

    .navigation-ft_one .footer-title {
        color: var(--dark_red);
        font-size: 8px;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }

    .navigation-ft_two a {
        color: var(--white);
        font-size: 6px;
        text-decoration: none;
        font-style: normal;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        transition: all 0.2s ease;
    }

    .navigation-ft_two p {
        margin: 0;
    }

    .navigation-ft_two a:hover {
        border-bottom: 1px solid white;
        padding-bottom: 3px;
        font-size: 7px;
        transition: all 0.2s ease;
    }

    .information-ft_one .footer-title {
        color: var(--dark_red);
        font-size: 8px;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }

    .information-ft_two p {
        color: var(--white);
        font-size: 6px;
        text-decoration: none;
        font-style: normal;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }

    .contact-ft_one .footer-title {
        color: var(--dark_red);
        font-size: 8px;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }

    .contact-ft_two .footer-title {
        color: var(--white);
        font-size: 7px;
        text-decoration: none;
        font-style: normal;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        margin: 0;
    }

    .contact-ft_two a {
        font-size: 6px;
        text-decoration: none;
        font-style: normal;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        color: var(--light_gray);
        transition: all 0.2s ease;
    }

    .contact-ft_two a:hover {
        border-bottom: 1px solid var(--light_gray);
        padding-bottom: 2px;
        font-size: 7px;
    }

    .contact-ft_two p {
        margin: 0px 0px 0px 0px;
    }

    .contact-ft_three .footer-title {
        color: var(--white);
        font-size: 8px;
        text-decoration: none;
        font-style: normal;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        margin: 0;
    }

    .contact-ft_three p {
        font-size: 6px;
        text-decoration: none;
        font-style: normal;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        color: var(--light_gray);
    }

    .main-calculator_main-contact-start-first span {
        font-family: "Poppins";
        color: var(--dark_red);
        font-size: 8px;
        margin-right: 5px;
    }

    .main-calculator_main-contact-start-second span {
        font-family: "Poppins";
        color: var(--dark_red);
        font-size: 8px;
        margin-right: 5px;
    }

    .main-calculator_main-contact-start-third span {
        font-family: "Poppins";
        color: var(--dark_red);
        font-size: 8px;
        margin-right: 5px;
    }

    .main-calculator-calculations_spacer h3 {
        color: var(--dark_red);
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        font-size: 7px;
        padding-top: 35px;
    }

    .main-calculator-calculations_spacer #spacer {
        border-bottom: 1px solid var(--dark_red);
        width: 10%;
        margin-left: auto;
        margin-right: auto;
        padding-top: 10px;
    }

    .main-calculator_main-contact-start-first h2 {
        font-family: "PlayFair", Georgia, 'Times New Roman', Times, serif;
        font-size: 12px;
        margin-top: 30%;
    }

    .main-calculator_main-contact-start-second h2 {
        font-family: "PlayFair", Georgia, 'Times New Roman', Times, serif;
        font-size: 12px;
        margin-top: 30%;
    }

    .main-calculator_main-contact-start-third h2 {
        font-family: "PlayFair", Georgia, 'Times New Roman', Times, serif;
        font-size: 12px;
        margin-top: 30%;
    }

    .main-calculator-car-calculations_data-first input {
        border: 0;
        width: 90%;
        height: 90%;
        text-align: center;
        background-color: transparent;
        outline: 0;
        font-size: 5px;
    }

    .main-calculator-car-calculations_data-second input {
        border: 0;
        width: 90%;
        height: 90%;
        text-align: center;
        background-color: transparent;
        outline: 0;
        font-size: 5px;
    }

    .main-calculator-car-calculations_data-third input {
        border: 0;
        width: 90%;
        height: 90%;
        text-align: center;
        background-color: transparent;
        outline: 0;
        font-size: 5px;
    }

    .main-calculator-car-calculations_data-four input {
        border: 0;
        width: 90%;
        height: 90%;
        text-align: center;
        background-color: transparent;
        outline: 0;
        font-size: 5px;
    }

    .main-calculator-car-calculations_data-five input {
        border: 0;
        width: 90%;
        height: 90%;
        text-align: center;
        background-color: transparent;
        outline: 0;
        font-size: 5px;
    }

    .main-calculator-car-calculations_data-six select {
        border: 0;
        width: 90%;
        height: 90%;
        text-align: center;
        background-color: transparent;
        outline: 0;
        font-size: 7px;
    }

    .main-calculator-car-calculations_data-seven input {
        border: 0;
        width: 90%;
        height: 90%;
        text-align: center;
        background-color: transparent;
        outline: 0;
        font-size: 5px;
    }

    .main-calculator-car-calculations_data-eight input {
        border: 0;
        width: 90%;
        height: 90%;
        text-align: center;
        background-color: transparent;
        outline: 0;
        font-size: 5px;
    }

    .main-calculator-car-calculations_data-nine input {
        border: 0;
        width: 90%;
        height: 90%;
        text-align: center;
        background-color: transparent;
        outline: 0;
        font-size: 5px;
    }

    .main-calculator-car-calculations_data-ten input {
        border: 0;
        width: 90%;
        height: 90%;
        text-align: center;
        background-color: transparent;
        outline: 0;
        font-size: 5px;
    }

    .main-calculator-car-calculations_output-first-block h3 {
        color: var(--white);
        font-family: "Poppins";
        font-size: 5px;
        font-size-adjust: 1;
        border-top: 1px var(--light_gray) solid;
        border-left: 1px var(--light_gray) solid;
        border-right: 1px var(--light_gray) solid;
        border-bottom: 1px var(--light_gray) solid;
        background-color: var(--light_gray);
        box-shadow: 0px 5px 10px 5px var(--dark_white);
    }

    .main-calculator-car-calculations_output-second-block h3 {
        color: var(--white);
        font-family: "Poppins";
        font-size: 5px;
        border-top: 1px var(--light_gray) solid;
        border-left: 1px var(--light_gray) solid;
        border-right: 1px var(--light_gray) solid;
        border-bottom: 1px var(--light_gray) solid;
        background-color: var(--light_gray);
        box-shadow: 0px 5px 10px 5px var(--dark_white);
    }

    .main-calculator-car-calculations_output-third-block h3 {
        color: var(--white);
        font-family: "Poppins";
        font-size: 5px;
        border-top: 1px var(--light_gray) solid;
        border-left: 1px var(--light_gray) solid;
        border-right: 1px var(--light_gray) solid;
        border-bottom: 1px var(--light_gray) solid;
        background-color: var(--light_gray);
        box-shadow: 0px 10px 20px 5px var(--dark_white);
    }

    .main-calculator-car-calculations_output-fourth-block h3 {
        color: var(--white);
        font-family: "Poppins";
        font-size: 5px;
        border-top: 1px var(--light_gray) solid;
        border-left: 1px var(--light_gray) solid;
        border-right: 1px var(--light_gray) solid;
        border-bottom: 1px var(--light_gray) solid;
        background-color: var(--light_gray);
        box-shadow: 0px 10px 20px 5px var(--dark_white);
    }

    .main-calculator-car-calculations_output-fiveth-block p:hover {
        padding: 6px 12px 6px 12px;
    }

    .main-full-price-list_spacer h3 {
        color: var(--dark_red);
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        font-size: 8px;
        padding-top: 35px;
    }

    .main-full-price-list_spacer h2 {
        color: var(--black);
        font-size: 17px;
        font-family: "PlayFair";
    }

    .main-full-price-list_spacer #spacer {
        border-bottom: 1px solid var(--dark_red);
        width: 10%;
        margin-left: auto;
        margin-right: auto;
        padding-top: 10px;
    }

    .main-full-price-list table {
        width: 80%;
        height: 360px;
        border: 1px solid var(--light_gray);
    }

    .main-full-price-list thead {
        width: 100%;
        height: 20px;
    }

    .main-full-price-list tbody {
        width: 100%;
        height: 360px;
    }

    .main-full-price-list tr {
        width: 100%;
        height: 20px;
    }

    .main-full-price-list td {
        width: 50%;
        height: 100%;
        font-family: "Poppins";
        font-size: 7px;
        padding-left: 5%;
        color: var(--light_gray);
    }

    .main-full-price-list th {
        width: 50%;
        height: 100%;
        font-family: "Poppins";
        text-align: start;
        padding-left: 5%;
        font-size: 7px;
    }

    .main-full-price-list_table_spacer #spacer {
        border-top: 1px solid var(--dark_red);
        width: 10%;
        margin-left: auto;
        margin-right: auto;
        padding-top: 10px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .main-calculator-car-calculations {
        width: 100%;
        height: 900px;
    }

    .main-calculator-car-calculations_data-first {
        width: 50px;
        height: 35px;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        box-shadow: 0px 10px 20px 5px var(--dark_white);
        text-align: center;
        border-top: 1px var(--light_gray) solid;
        border-left: 1px var(--light_gray) solid;
        border-right: 1px var(--light_gray) solid;
        border-bottom: 1px var(--light_gray) solid;
        margin-bottom: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 5px;
    }

    .main-calculator-car-calculations_data-first input {
        border: 0;
        width: 90%;
        height: 90%;
        text-align: center;
        background-color: transparent;
        outline: 0;
        font-size: 5px;
    }

    .main-calculator-car-calculations_data-second input {
        border: 0;
        width: 90%;
        height: 90%;
        text-align: center;
        background-color: transparent;
        outline: 0;
        font-size: 5px;
    }

    .main-calculator-car-calculations_data-third input {
        border: 0;
        width: 90%;
        height: 90%;
        text-align: center;
        background-color: transparent;
        outline: 0;
        font-size: 5px;
    }

    .main-calculator-car-calculations_data-four input {
        border: 0;
        width: 90%;
        height: 90%;
        text-align: center;
        background-color: transparent;
        outline: 0;
        font-size: 5px;
    }

    .main-calculator-car-calculations_data-five input {
        border: 0;
        width: 90%;
        height: 90%;
        text-align: center;
        background-color: transparent;
        outline: 0;
        font-size: 5px;
    }

    .main-calculator-car-calculations_data-six select {
        border: 0;
        width: 90%;
        height: 90%;
        text-align: center;
        background-color: transparent;
        outline: 0;
        font-size: 7px;
    }

    .main-calculator-car-calculations_data-seven input {
        border: 0;
        width: 90%;
        height: 90%;
        text-align: center;
        background-color: transparent;
        outline: 0;
        font-size: 5px;
    }

    .main-calculator-car-calculations_data-eight input {
        border: 0;
        width: 90%;
        height: 90%;
        text-align: center;
        background-color: transparent;
        outline: 0;
        font-size: 5px;
    }

    .main-calculator-car-calculations_data-nine input {
        border: 0;
        width: 90%;
        height: 90%;
        text-align: center;
        background-color: transparent;
        outline: 0;
        font-size: 5px;
    }

    .main-calculator-car-calculations_data-ten input {
        border: 0;
        width: 90%;
        height: 90%;
        text-align: center;
        background-color: transparent;
        outline: 0;
        font-size: 5px;
    }

    .main-calculator-car-calculations_data-second {
        width: 50px;
        height: 35px;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        box-shadow: 0px 10px 20px 5px var(--dark_white);
        text-align: center;
        border-top: 1px var(--light_gray) solid;
        border-left: 1px var(--light_gray) solid;
        border-right: 1px var(--light_gray) solid;
        border-bottom: 1px var(--light_gray) solid;
        margin-bottom: 35px;
    }

    .main-calculator-car-calculations_data-third {
        width: 50px;
        height: 35px;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        box-shadow: 0px 10px 20px 5px var(--dark_white);
        text-align: center;
        border-top: 1px var(--light_gray) solid;
        border-left: 1px var(--light_gray) solid;
        border-right: 1px var(--light_gray) solid;
        border-bottom: 1px var(--light_gray) solid;
        margin-bottom: 35px;
    }

    .main-calculator-car-calculations_data-four {
        width: 50px;
        height: 35px;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        box-shadow: 0px 10px 20px 5px var(--dark_white);
        text-align: center;
        border-top: 1px var(--light_gray) solid;
        border-left: 1px var(--light_gray) solid;
        border-right: 1px var(--light_gray) solid;
        border-bottom: 1px var(--light_gray) solid;
        margin-bottom: 35px;
    }

    .main-calculator-car-calculations_data-five {
        width: 50px;
        height: 35px;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        box-shadow: 0px 10px 20px 5px var(--dark_white);
        text-align: center;
        border-top: 1px var(--light_gray) solid;
        border-left: 1px var(--light_gray) solid;
        border-right: 1px var(--light_gray) solid;
        border-bottom: 1px var(--light_gray) solid;
        margin-bottom: 35px;
    }

    .main-calculator-car-calculations_data-six {
        width: 50px;
        height: 35px;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        box-shadow: 0px 10px 20px 5px var(--dark_white);
        text-align: center;
        border-top: 1px var(--light_gray) solid;
        border-left: 1px var(--light_gray) solid;
        border-right: 1px var(--light_gray) solid;
        border-bottom: 1px var(--light_gray) solid;
        margin-bottom: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-calculator-car-calculations_data-seven {
        width: 50px;
        height: 35px;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        box-shadow: 0px 10px 20px 5px var(--dark_white);
        text-align: center;
        border-top: 1px var(--light_gray) solid;
        border-left: 1px var(--light_gray) solid;
        border-right: 1px var(--light_gray) solid;
        border-bottom: 1px var(--light_gray) solid;
        margin-bottom: 35px;
    }

    .main-calculator-car-calculations_data-eight {
        width: 50px;
        height: 35px;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        box-shadow: 0px 10px 20px 5px var(--dark_white);
        text-align: center;
        border-top: 1px var(--light_gray) solid;
        border-left: 1px var(--light_gray) solid;
        border-right: 1px var(--light_gray) solid;
        border-bottom: 1px var(--light_gray) solid;
        margin-bottom: 35px;
    }

    .main-calculator-car-calculations_data-nine {
        width: 50px;
        height: 35px;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        box-shadow: 0px 10px 20px 5px var(--dark_white);
        text-align: center;
        border-top: 1px var(--light_gray) solid;
        border-left: 1px var(--light_gray) solid;
        border-right: 1px var(--light_gray) solid;
        border-bottom: 1px var(--light_gray) solid;
        margin-bottom: 35px;
    }

    .main-calculator-car-calculations_data-ten {
        width: 50px;
        height: 35px;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        box-shadow: 0px 10px 20px 5px var(--dark_white);
        text-align: center;
        border-top: 1px var(--light_gray) solid;
        border-left: 1px var(--light_gray) solid;
        border-right: 1px var(--light_gray) solid;
        border-bottom: 1px var(--light_gray) solid;
        margin-bottom: 35px;
    }

    .main-calculator-car-calculations_output-fiveth-block {
        width: 100%;
        height: 100%;
    }

    .main-calculator-car-calculations_output {
        width: 90%;
        height: auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: auto;
        justify-content: space-around;
        margin-left: auto;
        margin-right: auto;
    }

    .main-calculator-car-calculations_output-first-block {
        width: 50px;
        height: 100%;
        text-align: center;
    }

    .main-calculator-car-calculations_output-first-block h3 {
        color: var(--white);
        font-family: "Poppins";
        font-size: 5px;
        font-size-adjust: 1;
        border-top: 1px var(--light_gray) solid;
        border-left: 1px var(--light_gray) solid;
        border-right: 1px var(--light_gray) solid;
        border-bottom: 1px var(--light_gray) solid;
        background-color: var(--light_gray);
        box-shadow: 0px 5px 10px 5px var(--dark_white);
    }

    .main-calculator-car-calculations_output-first-block p {
        margin-bottom: 35px;
        color: var(--black);
        font-family: "Poppins";
        font-size: 5px;
        font-size-adjust: 1;
        padding-top: 10px;
        height: 25px;
        border-top: 1px var(--light-white) solid;
        border-left: 1px var(--light-white) solid;
        border-right: 1px var(--light-white) solid;
        border-bottom: 1px var(--light-white) solid;
        background-color: var(--light-white);
        box-shadow: 0px 10px 20px 5px var(--dark_white);
    }

    .main-calculator-car-calculations_output-second-block {
        width: 50px;
        height: 100%;
        text-align: center;
    }

    .main-calculator-car-calculations_output-second-block h3 {
        color: var(--white);
        font-family: "Poppins";
        font-size: 5px;
        border-top: 1px var(--light_gray) solid;
        border-left: 1px var(--light_gray) solid;
        border-right: 1px var(--light_gray) solid;
        border-bottom: 1px var(--light_gray) solid;
        background-color: var(--light_gray);
        box-shadow: 0px 5px 10px 5px var(--dark_white);
    }

    .main-calculator-car-calculations_output-second-block p {
        margin-bottom: 35px;
        color: var(--black);
        font-family: "Poppins";
        font-size: 5px;
        padding-top: 10px;
        height: 25px;
        border-top: 1px var(--light-white) solid;
        border-left: 1px var(--light-white) solid;
        border-right: 1px var(--light-white) solid;
        border-bottom: 1px var(--light-white) solid;
        background-color: var(--light-white);
        box-shadow: 0px 5px 10px 5px var(--dark_white);
    }

    .main-calculator-car-calculations_output-third-block {
        width: 50px;
        height: 100%;
        text-align: center;
    }

    .main-calculator-car-calculations_output-third-block h3 {
        color: var(--white);
        font-family: "Poppins";
        font-size: 5px;
        border-top: 1px var(--light_gray) solid;
        border-left: 1px var(--light_gray) solid;
        border-right: 1px var(--light_gray) solid;
        border-bottom: 1px var(--light_gray) solid;
        background-color: var(--light_gray);
        box-shadow: 0px 10px 20px 5px var(--dark_white);
    }

    .main-calculator-car-calculations_output-third-block p {
        margin-bottom: 35px;
        color: var(--black);
        font-family: "Poppins";
        font-size: 5px;
        padding-top: 10px;
        height: 25px;
        border-top: 1px var(--light-white) solid;
        border-left: 1px var(--light-white) solid;
        border-right: 1px var(--light-white) solid;
        border-bottom: 1px var(--light-white) solid;
        background-color: var(--light-white);
        box-shadow: 0px 10px 20px 5px var(--dark_white);
    }

    .main-calculator-car-calculations_output-fourth-block {
        width: 50px;
        height: 100%;
        text-align: center;
    }

    .main-calculator-car-calculations_output-fourth-block h3 {
        color: var(--white);
        font-family: "Poppins";
        font-size: 5px;
        border-top: 1px var(--light_gray) solid;
        border-left: 1px var(--light_gray) solid;
        border-right: 1px var(--light_gray) solid;
        border-bottom: 1px var(--light_gray) solid;
        background-color: var(--light_gray);
        box-shadow: 0px 10px 20px 5px var(--dark_white);
    }

    .main-calculator-car-calculations_output-fourth-block p {
        margin-bottom: 35px;
        color: var(--black);
        font-family: "Poppins";
        font-size: 5px;
        padding-top: 10px;
        height: 25px;
        border-top: 1px var(--light-white) solid;
        border-left: 1px var(--light-white) solid;
        border-right: 1px var(--light-white) solid;
        border-bottom: 1px var(--light-white) solid;
        background-color: var(--light-white);
        box-shadow: 0px 10px 20px 5px var(--dark_white);
    }

    .main-calculator-car-calculations_output-fiveth-block {
        width: 50px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        grid-column: 1 / -1;
        grid-row: 2;
        margin-left: auto;
        margin-right: auto;
    }

    .main-calculator-car-calculations_output-fiveth-block p {
        color: var(--white);
        text-decoration: none;
        border: 1px solid var(--dark_red);
        padding: 5px 10px 5px 10px;
        background-color: var(--dark_red);
        font-family: "PlayFair";
        font-size: 5px;
        transition: all 0.3s ease;
        cursor: pointer;
        align-self: end;
    }

    .main-calculator-car-calculations_output-fiveth-block p:hover {
        padding: 6px 12px 6px 12px;
    }

    .main-full-price-list_spacer {
        width: 100%;
        height: 150px;
        text-align: center;
    }

    .main-full-price-list_spacer h3 {
        color: var(--dark_red);
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        font-size: 12px;
        padding-top: 45px;
    }

    .main-full-price-list_spacer h2 {
        color: var(--black);
        font-size: 22px;
        font-family: "PlayFair";
    }

    .main-full-price-list_spacer #spacer {
        border-bottom: 2px solid var(--dark_red);
        width: 10%;
        margin-left: auto;
        margin-right: auto;
        padding-top: 10px;
    }

    .main-full-price-list_table {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
    }

    .main-full-price-list table {
        width: 80%;
        height: 570px;
        border: 1px solid var(--light_gray);
    }

    .main-full-price-list thead {
        width: 100%;
        height: 30px;
    }

    .main-full-price-list tbody {
        width: 100%;
        height: 540px;
    }

    .main-full-price-list tr {
        width: 100%;
        height: 30px;
    }

    .main-full-price-list td {
        width: 50%;
        height: 100%;
        font-family: "Poppins";
        font-size: 10px;
        padding-left: 5%;
        color: var(--light_gray);
    }

    .main-full-price-list th {
        width: 50%;
        height: 100%;
        font-family: "Poppins";
        text-align: start;
        padding-left: 5%;
        font-size: 10px;
    }

    .main-full-price-list_table_spacer {
        width: 100%;
        height: 275px;
        text-align: center;
        margin-top: 5%;
    }

    .main-full-price-list_table_spacer #spacer {
        border-top: 2px solid var(--dark_red);
        width: 10%;
        margin-left: auto;
        margin-right: auto;
        padding-top: 15px;
    }

    .main-full-price-list_table_spacer p {
        width: 80%;
        font-family: "Poppins";
        font-size: 10px;
        color: var(--light_gray);
        margin-left: auto;
        margin-right: auto;
    }
}
