:root {
    --primaryColor: #00a19a;
    --secondaryColor: #dc293f;
    --colorGray: #ebebeb;
}

*,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a:hover {
    text-decoration: none;
}

.header_wrapper {
    background-color: var(--primaryColor);
}

header {
    border-bottom: 2px solid #fff;
}

.menu-link {
    justify-content: space-between;
    width: 350px;
}

.nav-link {
    color: #fff !important;
    font-size: 20px;
    font-weight: 500;
    transition: 0.1s ease-in;
    text-transform: uppercase;
}

.nav-link:hover {
    color: var(--secondaryColor) !important;
}

.hero {
    text-align: center;
    padding: 60px 0;
    position: relative;
}

.hero h1 {
    margin: 30px 0;
    color: #fff;
}

.hero h1 span {
    color: var(--secondaryColor);
    text-shadow: -2px 2px 2px #2d2d2d;
}

.hero a {
    color: var(--primaryColor);
    background-color: white;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 15px;
    transition: 0.1s ease-in;
}

.hero a:hover {
    color: #fff;
    background-color: var(--secondaryColor);
}

.plus {
    position: absolute;
    bottom: -8%;
    left: 50%;
    transform: translateX(-50%);
}


/* About */

.about {
    padding: 60px 0;
    text-align: center;
}

.about .about-text h1 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.about .about-text p {
    font-size: 20px;
}

.about-head h1 {
    font-size: 34px;
    font-weight: 700;
}


/* Testation */

.testation {
    padding: 60px 0;
    background-color: var(--colorGray);
}

.test-card {
    background-color: #fff;
    border-radius: 5px;
    padding: 15px 0;
}

.check-in {
    padding: 85px;
    position: relative;
}

.check-in img {
    position: absolute;
    top: 28%;
    left: 15%;
    transform: translate(-50%, -50%);
}

.testation-table {
    background-color: var(--colorGray);
    border-radius: 25px;
    padding: 20px;
}

.testation .testation-table h1 {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.testation-table table {
    border-collapse: separate;
    border-spacing: 0 1em;
    width: 100%;
}

.testation-table .table-hover tbody tr:hover {
    color: #fff;
    background-color: var(--secondaryColor);
}

.testation-table table tr {
    background-color: #fff;
    border-radius: 100px;
    margin: 3px 0 !important;
}

.testation-table table tr td {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -1px;
}

.testation-table table tr td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    padding-left: 10px;
}

.testation-table table tr td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}


/* contact */

.contact {
    padding: 60px 0;
    margin-bottom: 60px;
}

.contact .contact-wrapper {
    text-align: center;
}

.contact .contact-wrapper .contact-text {
    width: 100%;
    height: 200px;
}

.contact .contact-wrapper .contact-text h1 {
    font-size: 24px;
    font-weight: 500;
    margin: 10px 0;
}

.contact .contact-wrapper .contact-text p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.contact .contact-wrapper .contact-btn button {
    width: 100%;
    background-color: var(--primaryColor);
    font-size: 20px;
    font-weight: 500;
    padding: 10px 0;
    border-radius: 17px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    outline: none;
    color: #fff;
    padding: 10px 40px;
    transition: 0.1s ease-in;
}

.contact .contact-wrapper .contact-btn button:hover {
    background-color: var(--secondaryColor);
}


/* page2 */

.page2 {
    padding: 100px 0;
}

.page2 h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}

.page2 h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 3px 0;
}

.page2 h4 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 15px;
}

.page2 p {
    font-size: 18px;
}


/* footer */

footer {
    background-color: var(--primaryColor);
    position: relative;
    padding: 60px 0;
}

.footer-logo {
    color: #fff;
    font-size: 18px;
}

.footer_icon {
    position: absolute;
    top: -28%;
    left: 50%;
    transform: translateX(-50%);
}

.footer-contact .phone-mail {
    display: flex;
    align-items: center;
}

.footer-contact a {
    color: #fff;
}

.footer-contact .phone-mail a {
    color: #fff;
    font-size: 24px;
}

.footer-contact .policy {
    margin-left: 20px;
    color: #fff;
}

.footer-contact .policy a {
    font-size: 16px;
}

@media only screen and (max-width: 550px) {
    footer {
        text-align: center;
    }
    .footer_icon {
        width: 100px;
        top: -13%;
    }
    .footer-logo img {
        width: 130px;
    }
    .footer-logo {
        font-size: 14px;
    }
    .footer-contact {
        margin-top: 10px;
    }
    .footer-contact .phone-mail a {
        font-size: 14px;
    }
    .footer-contact img {
        width: 20px;
    }
    .footer-contact .policy a {
        font-size: 13px;
    }
}