:root {
    /* Colors */
    /* Primary */
    --red-400: hsl(0, 100%, 68%);
    /* Neutral */
    --blue-950: hsl(230, 29%, 20%);
    --blue-100: hsl(207, 33%, 95%);

    /* Typography */
    /* Headings, Call-to-actions, Navigation */
    --secondary-font-family: "Barlow Condensed";
    --font-weight-400: 400;
    --font-weight-700: 700;

    /* Body */
    --main-font-family: Barlow;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--main-font-family);
    font-size: 18px;
    position: relative;
}

.container {
    margin: 0 auto;
    padding: 0 15px;
}

/* Small */
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

/* Medium */
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

/* Large */
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

.special {
    width: 55%;
    height: 60%;
    background-color: #ebf0f4;
    opacity: .5;
    position: absolute;
    right: 0;
    border-bottom-left-radius: 50px;
}

@media (max-width: 767px) {
    .special {
        height: 45%;
    }
}

.tracking {
    padding: 40px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .tracking {
        padding: 20px;
    }
}

.tracking .container {
    position: relative;
}

.tracking .container header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tracking .container header nav {
    display: flex;
}

@media (max-width: 767px) {
    .tracking .container header nav {
        background-color: white;
        flex-direction: column;
        width: calc(100% - 30px);
        text-align: center;
        position: absolute;
        top: 78px;
        padding: 15px;
        box-shadow: 0px 0px 20px 3px #ccc;
        display: none;
        z-index: 1;
    }
}

@media (max-width: 767px) {
    .tracking .container header nav li {
        list-style-type: none;
        padding: 15px 0;
    }
}

.tracking .container header nav li:hover {
    text-decoration: underline;
}

.tracking .container header nav li:not(:last-of-type) {
    list-style-type: none;
    margin-right: 40px;
}

@media (max-width: 767px) {
    .tracking .container header nav li:not(:last-of-type) {
        margin-right: 0;
    }
}

.tracking .container header nav li:last-of-type {
    color: var(--blue-100);
}

@media (max-width: 767px) {
    .tracking .container header nav li:last-of-type {
        border-top: 1px solid hsl(222.86deg 6.25% 56.08%);
    }
}

.tracking .container header nav li:last-of-type a {
    color: hsl(222.86deg 6.25% 56.08%);
    font-weight: var(--font-weight-700);
    font-family: var(--secondary-font-family);
    margin-left: 10px;
}

@media (max-width: 767px) {
    .tracking .container header nav li:last-of-type a {
        margin-left: 0;
    }
}

.tracking .container header nav li a {
    text-transform: uppercase;
    text-decoration: none;
    color: var(--blue-950);
    font-weight: var(--font-weight-700);
    font-family: var(--secondary-font-family);
    font-size: 16px;
}

.tracking .container header svg {
    cursor: pointer;
}

.tracking .container header .humburger {
    display: none;
}

@media (max-width: 767px) {
    .tracking .container header .humburger {
        display: block;
    }
}

.tracking .container header .close {
    display: none;
}

.tracking .container .content {
    margin-top: 150px;
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .tracking .container .content {
        flex-direction: column-reverse;
        margin-top: 50px;
    }
}

.tracking .container .content .text .head p:nth-of-type(1) {
    text-transform: uppercase;
    display: flex;
    align-items: center;
    color: hsl(240deg 1.01% 61.18%);
    letter-spacing: 2px;
}

@media (max-width: 767px) {
    .tracking .container .content .text .head p:nth-of-type(1) {
        font-size: 16px;
    }
}

.tracking .container .content .text .head p:nth-of-type(1) span {
    color: white;
    background-color: var(--blue-950);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 35px;
    border-radius: 50px;
    font-weight: var(--font-weight-700);
    margin-right: 12px;
}

.tracking .container .content .text .head h1 {
    text-transform: uppercase;
    font-weight: var(--font-weight-700);
    font-family: var(--secondary-font-family);
    color: var(--blue-950);
    font-size: 56px;
    margin: 20px 0;
}

@media (max-width: 767px) {
    .tracking .container .content .text .head h1 {
        font-size: 41px;
    }
}

.tracking .container .content .text .head p:nth-of-type(2) {
    color: hsl(230deg 2.83% 41.57%);
    width: 292px;
    margin-bottom: 50px;
}

.tracking .container .content .text .schedule {
    display: flex;
    align-items: center;
}

.tracking .container .content .text .schedule button {
    color: white;
    font-family: var(--main-font-family);
    letter-spacing: 1px;
    font-weight: var(--font-weight-700);
    margin-right: 15px;
    background-color: var(--red-400);
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
}

@media (max-width:767px) {
    .tracking .container .content .text .schedule button {
        font-size: 12px;
        padding: 15px;
    }
}

.tracking .container .content .text .schedule button:hover {
    opacity: .7;
}

.tracking .container .content .text .schedule p {
    text-transform: uppercase;
    color: hsl(0deg 0.97% 79.8%);
    letter-spacing: 3px;
}

@media (max-width: 767px) {
    .tracking .container .content .text .schedule p {
        font-size: 15px;
        letter-spacing: 1px;
    }
}

.tracking .container .content .image {
    position: relative;
    right: -70px;
    width: 700px;
}

@media (max-width: 767px) {
    .tracking .container .content .image {
        width: calc(100% + 180px);
        margin-bottom: 90px;
    }
}

@media (max-width: 767px) {
    .tracking .container .content .image img {
        width: 100%;
    }
}

.attribution {
    font-size: 11px;
    text-align: center;
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.attribution a {
    color: hsl(228, 45%, 44%);
}