html {
    --black-color: #000000;
    --white-color: #FFFFFF;

    --text-black: var(--black-color);
    --yellow-bg: #FFDA3F;
    --yellow-bg-hover: #F2C816;
    --yellow-bg-active: #D9B314;
    --text-gray: #848AA4;
    --placeholder-gray: #BABECE;
    --gray-bg: #CCCED9;
    --gray-bg-hover: #F2F3F7;
    --gray-bg-active: #E6E8F0;
    --black-bg: var(--black-color);
    --black-hover-bg: #242526;
    --light-blue: #ACB6D9;
    --dark-blue: #22446D;
    --extra-dark-blue: #29324F;

    --mariupol-font: "MariupolStrong";

    --h1-font-size: 2.75rem;
    --h1-font-weight: 800;
    --h1-line-height: normal;
    --h2-font-size: 1.5rem;
    --h2-font-weight: 800;
    --h2-line-height: normal;
    --p-font-size: 1rem;
    --p-font-weight: 300;
    --p-line-height: 1.75em;
    --footer-font-size: 1rem;
    --footer-font-weight: 400;
    --footer-line-height: 1.5rem;
    --carousel-items: 21;
    --carousel-items-width: 246px;
    --carousel-items-length: calc(var(--carousel-items) * (var(--carousel-items-width) + 3px));
    --carousel-size: calc(2 * var(--carousel-items-length));

    position: relative;
    font-size: 16px;
    scroll-behavior: smooth;
}

html, body {
    min-width: 375px;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

h1 {
    margin: 0;
    padding: 0;
    color: var(--text-black);
    font-family: var(--mariupol-font), "Inter", sans-serif;
    font-size: var(--h1-font-size);
    font-weight: var(--h1-font-weight);
    line-height: var(--h1-line-height);
}

h2 {
    margin: 0;
    padding: 0;
    color: var(--text-black);
    font-family: var(--mariupol-font), "Inter", sans-serif;
    font-size: var(--h2-font-size);
    font-weight: var(--h2-font-weight);
    line-height: var(--h2-line-height);
    text-transform: uppercase;
}

p {
    margin: 0;
    padding: 0;
    color: var(--text-black);
    font-size: var(--p-font-size);
    font-weight: var(--p-font-weight);
    line-height: var(--p-line-height);
}

p > strong {
    font-weight: 600;
}

/*<editor-fold desc="Form styles">*/
form label {
    display: block;
    padding: 1.25rem 0 .5rem;
    color: var(--text-gray);
}

form .form-control {
    padding: 1.125rem 1.25rem;
    color: var(--black-color);
    font-size: 1rem;
    font-weight: 500;
    line-height: normal;
}

form .form-control::placeholder {
    color: var(--placeholder-gray);
    font-size: 1rem;
    font-weight: 500;
    line-height: normal;
}

form .btn {
    margin-top: 1.25rem;
    height: 56px;
    line-height: 56px;
}

textarea {
    resize: none;
}
/*</editor-fold>*/

hr {
    margin: 0;
    background-color: var(--gray-bg-active);
    opacity: 1;
}

hr.divider {
    display: none;
}

hr.divider-sm {
    display: block;
}

/*<editor-fold desc="Button styles">*/
.btn {
    width: 100%;
    height: 4.5rem;
    padding: 0 2rem;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 4.5rem;
    text-align: center;
    border-radius: 3px;
    box-sizing: border-box;
}

.btn-small {
    height: 3.5rem;
    line-height: 3.5rem;
}

.btn-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-bottom: 2px;
    margin-right: 1rem;
}

.btn-yellow {
    background-color: var(--yellow-bg);
}

.btn-yellow:hover {
    background-color: var(--yellow-bg-hover);
}

.btn-yellow:active {
    background-color: var(--yellow-bg-active);
}

.btn-gray {
    background-color: var(--gray-bg);
}

.btn-gray.transparent {
    border: 1px solid var(--gray-bg);
    background-color: transparent;
}

.btn-gray:hover, .btn-gray.transparent:hover {
    border: 1px solid transparent;
    background-color: var(--gray-bg-hover);
}

.btn-gray:active, .btn-gray.transparent:active {
    border: 1px solid transparent;
    background-color: var(--gray-bg-active);
}

.btn-black {
    color: var(--white-color);
    background-color: var(--black-bg);
}

.btn-black:hover {
    color: var(--white-color);
    background-color: var(--black-hover-bg);
}

.btn-black:active {
    color: var(--white-color);
    background-color: var(--black-bg);
}

.btn-transparent {
    color: var(--black-color);
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.20);
}
/*</editor-fold>*/

.text-yellow {
    color: var(--yellow-bg);
}

/*<editor-fold desc="Navigation Burger section">*/
#navbar-burger {
    height: 56px;
    box-shadow: 0 1px 0 0 var(--gray-bg-active);
    z-index: 100;
}

#navbar-burger .nav-burger-logo {
    display: block;
    padding: 12px 1.75rem 7px;
    box-sizing: initial;
}

#navbar-burger button {
    padding: 1rem 1.5rem;
    color: var(--extra-dark-blue);
    font-size: 1rem;
    line-height: normal;
    border: none;
    border-radius: 0;
    background-color: var(--gray-bg-hover);
}

#navbar-burger button:focus {
    outline: none;
    box-shadow: none;
}

#navbar-burger button img {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: .5rem;
}
/*</editor-fold>*/

/*<editor-fold desc="Navigation Menu section">*/
#navbar-desktop {
    height: 72px;
    z-index: 100;
    box-shadow: 0 1px 0 0 var(--gray-bg-active);
}

#navbar-desktop .navbar-brand {
    display: inline-block;
    padding: 20px 0 15px;
}

#navbar-desktop .navbar-brand img {
    display: inline-block;
    margin-right: 10px;
}

#navbar-desktop .navbar-brand span {
    display: inline-block;
    color: var(--dark-blue);
    font-size: 1rem;
    font-weight: 600;
    line-height: normal;
    padding: 0 0 0 10px;
    border-left: 1px solid var(--dark-blue);
}

#navbar-desktop .nav-link {
    display: flex;
    align-items: center;
    height: 72px;
    padding: 0 24px;
    border-left: 1px solid var(--gray-bg-hover);
}

#navbar-desktop .nav-link p {
    color: var(--black-color);
    font-size: 1rem;
    font-weight: 600;
    line-height: normal;
    text-wrap: nowrap;
}

#navbar-desktop .nav-link span {
    display: block;
    color: var(--text-gray);
    font-size: .875rem;
    font-weight: 500;
}

#navbar-desktop .nav-item:last-of-type .nav-link {
    border-right: 1px solid var(--gray-bg-hover);
}

#navbar-desktop .nav-item:hover, #navbar-desktop .nav-item:active {
    background-color: var(--gray-bg-hover);
}
/*</editor-fold>*/

/*<editor-fold desc="Burger Menu section">*/
#burger-menu {
    background-color: var(--yellow-bg);
}

#burger-menu button {
    padding: 16px;
    background-color: var(--yellow-bg);
}

#burger-menu button img {
    display: block;
    width: 24px;
    height: 24px;
}

#burger-menu .link {
    padding: 28px 0;
    color: var(--black-color);
    font-size: 1rem;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    text-decoration: none;
}

#burger-menu .btn {
    margin-top: 24px;
}

#burger-menu .language-selector {
    display: flex;
    justify-content: center;
    padding-top: 100px;
    column-gap: 1rem;
}

#burger-menu .lang-btn {
    display: block;
    width: 56px;
    height: 56px;
    color: var(--black-color);
    font-size: 1rem;
    font-weight: 600;
    line-height: 56px;
    text-decoration: none;
}

#burger-menu .lang-btn.active {
    background-color: var(--yellow-bg-hover);
}
/*</editor-fold>*/

/*<editor-fold desc="Hero section">*/
#hero-section .hero-content {
    position: relative;
    padding: 7.5rem 1.5rem 3rem;
}

#hero-section .hero-content h1 {
    padding: 0 0 1.5rem;
}

#hero-section .hero-content p {
    padding: 0 0 1.5rem;
}

#hero-section .hero-content .btn {
    width: 100%;
    margin-bottom: 1.5rem;
}

.hero-img-content {
    background-color: var(--yellow-bg);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-img-content > img {
    height: 318px;
    margin-left: -1.5rem;
}
/*</editor-fold>*/

/*<editor-fold desc="About Project section">*/
#about-project-section .about-project-content {
    padding: 4.5rem 1.5rem 2.5rem;
}

#about-project-section .about-project-content h2 {
    padding: 0 0 1.5rem;
}

#about-project-section .about-player-content {
    padding: 0 1.5rem 4.5rem;
    box-sizing: content-box;
    aspect-ratio: 16/9;
}

#about-project-section .about-player-content .player-container {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
}

#about-project-section .about-player-content .player-container .cover {
    width: 100%;
}

#about-project-section .about-player-content .player-container .play-button {
    position: absolute;
    top: calc(50% - 15px);
    left: calc(50% - 18px);
    width: 30px;
}

#about-project-section .about-player-content .player-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

#about-project-section .about-player-content .player-container:hover::after {
    background: rgba(0, 0, 0, 0.1);
}

#about-project-section .about-player-content .about-project-video {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    border: 0;
}/*</editor-fold>*/

/*<editor-fold desc="For Whom section">*/
#for-whom-section .for-whom-content {
    padding: 4.5rem 1.5rem 2.5rem;
}

#for-whom-section .for-whom-content h2 {
    padding: 0 0 1.5rem;
}

#for-whom-section .services-list {
    display: flex;
    flex-wrap: wrap;
    row-gap: 1.5rem;
    padding: 0 1.5rem 3rem;
}

#for-whom-section .services-list .service-card {
    position: relative;
    flex-basis: 100%;
    padding-left: 48px;
}

#for-whom-section .services-list .service-card .service-icon {
    display: block;
    position: absolute;
    top: calc(50% - 16px);
    left: 0;
    width: 32px;
    height: 32px;
}

#for-whom-section .services-list .service-card p {
    display: inline-block;
    font-weight: 600;
}
/*</editor-fold>*/

/*<editor-fold desc="Transfer section">*/
#transfer-section .transfer-content {
    padding: 4.5rem 1.5rem 2.5rem;
}

#transfer-section .transfer-content h2 {
    padding: 0 0 1.5rem;
}

#transfer-section .transfer-location-list {
    display: flex;
    flex-wrap: wrap;
    row-gap: 1.5rem;
    padding: 0 1.5rem 3.5rem;
}

#transfer-section .transfer-location-list .location-card {
    position: relative;
    flex-basis: 100%;
    padding: 2rem 1.5rem 2rem 6.5rem;
    border-radius: 3px;
    background-color: var(--yellow-bg);
    box-sizing: border-box;
}

#transfer-section .transfer-location-list .location-card .location-icon {
    display: block;
    position: absolute;
    top: calc(50% - 32px);
    left: 1.5rem;
    width: 64px;
    height: 64px;
}

#transfer-section .transfer-location-list .location-card p {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.625rem;
}
/*</editor-fold>*/

/*<editor-fold desc="Gallery section">*/
#gallery-section .gallery-content {
    padding: 4.5rem 1.5rem 2.5rem;
}

#gallery-section .gallery-content h2 {
    padding: 0 0 1.5rem;
}

#gallery-quote-section .gallery-quote-content {
    padding: 2rem 1.5rem 4.5rem;
}

#gallery-quote-section .gallery-quote-content .quote-icon {
    display: block;
    width: 40px;
    height: 34px;
}

#gallery-quote-section .gallery-quote-content .quote-text {
    padding-top: 1rem;
    color: var(--extra-dark-blue);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 2rem;
}
/*</editor-fold>*/

/*<editor-fold desc="Team section">*/
#team-section .team-content {
    padding: 4.5rem 1.5rem 2.5rem;
}

#team-section .team-content h2 {
    padding: 0 0 1.5rem;
}

#team-section .team-list {
    padding: 0 1.5rem 3rem;
}

#team-section .team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 1.5rem;
    padding-top: 2rem;
    padding-bottom: 3.5rem;
}

#team-section .team-members .member-card {
    width: 148px;
}

#team-section .team-members .member-card img {
    width: 148px;
    height: auto;
}

#team-section .team-members .member-card p {
    margin: 0;
}

#team-section .team-members .member-card p:first-of-type {
    margin: 1rem 0 0.5rem;
}
/*</editor-fold>*/

/*<editor-fold desc="Sponsors section">*/
#sponsors-section .sponsors-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 2rem;
    padding: 4.5rem 1.5rem 4.5rem;
}

#sponsors-section .sponsors-content img {
    flex-basis: 100%;
    display: block;
}

#sponsors-section .sponsors-content .nchs {
    width: 201px;
    height: 60px;
}

#sponsors-section .sponsors-content .auato {
    width: 120px;
    height: 121px;
}

#sponsors-section .sponsors-content .paramedic {
    width: 262px;
    height: 36px;
}
/*</editor-fold>*/

/*<editor-fold desc="Support Us section">*/
#support-us-section {
    background-color: var(--yellow-bg);
}

#support-us-section .support-us-content {
    padding: 4.5rem 1.5rem 4.5rem;
}

#support-us-section .support-us-content h2 {
    padding: 0 0 1.5rem;
}

#support-us-section .support-us-content p {
    padding: 0 0 1.5rem;
}

#support-us-section .support-us-content .cars-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 1.5rem;
    padding: 1.5rem 0 2.5rem;
}

#support-us-section .support-us-content .cars-list .car-item {
    flex-basis: 30%;
}

#support-us-section .support-us-content .cars-list .car-item:nth-child(3n + 1) {
    text-align: left;
}

#support-us-section .support-us-content .cars-list .car-item:nth-child(3n + 2) {
    text-align: center;
}

#support-us-section .support-us-content .cars-list .car-item:nth-child(3n + 3) {
    text-align: right;
}

#support-us-section .support-us-content .cars-list .car-item:nth-child(n+7) {
    display: none;
}

#support-us-section .support-us-content .cars-list .car-item img {
    display: inline-block;
    width: 91px;
    height: 59px;
}
/*</editor-fold>*/

/*<editor-fold desc="Q&A section">*/
#qna-section .qna-content {
    padding: 4.5rem 1.5rem 4.5rem;
}

#qna-section .qna-content h2 {
    padding: 0 0 1.5rem;
}

#qna-section .qna-content .qna-card {
    width: 100%;
    margin-bottom: .25rem;
    border-radius: 3px;
    background-color: var(--gray-bg-hover);
}

#qna-section .qna-content .qna-card .qna-card-question {
    position: relative;
    padding: 1rem 3.125rem 1rem;
    cursor: pointer;
}

#qna-section .qna-content .qna-card .qna-card-question img {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: block;
    width: 24px;
}

#qna-section .qna-content .qna-card .qna-card-question .chevron {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: block;
    width: .75rem;
    height: .75rem;
    border-right: 2px solid var(--black-color);
    border-bottom: 2px solid var(--black-color);
    transform: rotate(45deg);
}

#qna-section .qna-content .qna-card .qna-card-question p {
    font-weight: 500;
    line-height: 1.5rem;
}

#qna-section .qna-content .qna-card .qna-card-answer {
    display: none;
    border-top: 1px solid var(--gray-bg);
    padding: 1rem;
}

#qna-section .qna-content .qna-card.active .qna-card-question .chevron {
    transform: rotate(-135deg);
}

#qna-section .qna-content .qna-card.active .qna-card-answer {
    display: block;
}
/*</editor-fold>*/

/*<editor-fold desc="Contact Us section">*/
#contact-us-section {
    background-color: var(--extra-dark-blue);
}

#contact-us-section .contact-us-content {
    padding: 4.5rem 1.5rem 0;
}

#contact-us-section .contact-us-content h2 {
    color: var(--white-color);
    padding: 0 0 1.5rem;
}

#contact-us-section .contact-us-content p {
    color: var(--light-blue);
}

#contact-us-section .contact-us-content a {
    display: block;
    margin-bottom: 1rem;
    color: var(--white-color);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 2rem;
    text-decoration: none;
}

#contact-us-section .contact-us-content a:hover {
    text-decoration: underline;
}

#contact-us-section .questions-form-content {

}
/*</editor-fold>*/

/*<editor-fold desc="Questions Form section">*/
#questions-form-section {
    padding: 4rem .5rem;
    background-color: var(--extra-dark-blue);
}

#questions-form-section .questions-form-content {
    padding: 2rem 1.25rem;
    border-radius: 3px;
    background-color: var(--white-color);
}

#questions-form-section .questions-form-content h2 {
    padding: 0 0 .25rem;
}
/*</editor-fold>*/

/*<editor-fold desc="Copyrights section">*/
#copyrights-section {
    position: relative;
    width: 100%;
    min-height: 120px;
    padding: 3rem 0 4.5rem;
    background-color: var(--extra-dark-blue);
}

#copyrights-section .copyrights-content {
    padding: 0 1.5rem 4.5rem;
    text-align: center;
}

#copyrights-section .copyrights-content .logo {
    display: inline-block;
}

#copyrights-section .copyrights-content p {
    color: var(--light-blue);
    font-size: var(--footer-font-size);
    font-weight: var(--footer-font-weight);
    line-height: var(--footer-line-height);
}
/*</editor-fold>*/

@media (min-width: 576px) {
}

@media (min-width: 768px) {
    hr.divider {
        display: block;
    }

    /*<editor-fold desc="Hero section">*/
    #hero-section {
        position: relative;
    }

    #hero-section .hero-content {
        padding-right: calc(50%);
    }

    #hero-section .hero-content p {
        padding-right: 2rem;
        padding-bottom: 2.5rem;
    }

    #hero-section .hero-content .btn {
        display: block;
        width: 290px;
        padding: 0 1.5rem;
    }

    .hero-img-content {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: calc(50% - 120px);
        padding: 0;
        overflow: visible;
    }

    .hero-img-content > img {
        margin-top: 182px;
        margin-left: -110px;
    }
    /*</editor-fold>*/

    /*<editor-fold desc="About Project section">*/
    #about-project-section .about-project-content {
        display: flex;
    }

    #about-project-section .about-project-content * {
        flex-basis: 50%;
    }

    #about-project-section .about-player-content .player-container .play-button {
        top: calc(50% - 58px);
        left: calc(50% - 49px);
        width: 98px;
    }
    /*</editor-fold>*/

    /*<editor-fold desc="For Whom section">*/
    #for-whom-section .for-whom-content {
        display: flex;
        column-gap: 2rem;
    }

    #for-whom-section .for-whom-content * {
        flex-basis: 50%;
    }

    #for-whom-section .services-list {
        justify-content: space-between;
        column-gap: 2rem;
        row-gap: 1.5rem;
    }

    #for-whom-section .services-list .service-card {
        flex-basis: 47%;
    }
    /*</editor-fold>*/

    /*<editor-fold desc="Transfer section">*/
    #transfer-section .transfer-content {
        display: flex;
        column-gap: 2rem;
    }

    #transfer-section .transfer-content * {
        flex-basis: 50%;
    }

    #transfer-section .transfer-location-list {
        row-gap: 1.5rem;
        column-gap: 1.5rem;
    }

    #transfer-section .transfer-location-list .location-card {
        flex-basis: 48%;
    }
    /*</editor-fold>*/

    /*<editor-fold desc="Team section">*/
    #team-section .team-content {
        display: flex;
        column-gap: 2rem;
    }

    #team-section .team-content * {
        flex-basis: 50%;
    }

    #team-section .team-members .member-card {
        width: 160px;
    }

    #team-section .team-members .member-card img {
        width: 160px;
    }
    /*</editor-fold>*/

    /*<editor-fold desc="Sponsors section">*/
    #sponsors-section .sponsors-content {
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: center;
        row-gap: initial;
    }

    #sponsors-section .sponsors-content img {
        display: inline-block;
        flex-basis: initial;
    }

    #sponsors-section .sponsors-content .nchs {
        width: 201px;
        height: 60px;
    }

    #sponsors-section .sponsors-content .auato {
        width: 120px;
        height: 121px;
    }

    #sponsors-section .sponsors-content .paramedic {
        width: 262px;
        height: 36px;
    }
    /*</editor-fold>*/

    /*<editor-fold desc="Support Us section">*/
    #support-us-section .support-us-content {
        position: relative;
    }

    #support-us-section .support-us-content p {
        max-width: 560px;
        margin-right: 408px;
    }

    #support-us-section .support-us-content .btn {
        width: 240px;
    }

    #support-us-section .support-us-content .cars-list {
        position: absolute;
        top: 4.5rem;
        right: 1.5rem;
        width: 360px;
    }

    #support-us-section .support-us-content .cars-list .car-item:nth-child(n+7) {
        display: block;
    }
    /*</editor-fold>*/

    /*<editor-fold desc="Contact Us section">*/
    #contact-us-section {
        position: relative;
    }

    #contact-us-section .contact-us-content {
        padding-right: 432px;
        padding-bottom: 4.5rem;
    }

    #contact-us-section .contact-us-content h2 {
        padding-top: 3.25rem;
    }

    #contact-us-section .contact-us-content * {
        max-width: 330px;
    }

    #contact-us-section #questions-form-section {
        position: absolute;
        top: 0;
        right: 0;
        width: 420px;
        padding-right: 1.5rem;
        z-index: 10;
    }
    /*</editor-fold>*/

    /*<editor-fold desc="Copyrights section">*/
    #copyrights-section .copyrights-content {
        padding-bottom: 6.25rem;
        text-align: left;
    }
    /*</editor-fold>*/
}

@media (min-width: 992px) {
    /*<editor-fold desc="Hero section">*/
    #hero-section .hero-content {
        padding-right: 2rem;
    }

    #hero-section .hero-content h1 {
        padding-right: 50%;
        font-size: 4rem;
    }

    #hero-section .hero-content p {
        padding-right: calc(50% + 2rem);
    }

    .hero-img-content > img {
        height: 455px;
        margin-top: 204px;
        margin-left: -132px;
    }
    /*</editor-fold>*/

    /*<editor-fold desc="Team section">*/
    #team-section .team-members .member-card {
        width: 200px;
    }

    #team-section .team-members .member-card img {
        width: 200px;
    }
    /*</editor-fold>*/

    /*<editor-fold desc="Contact Us section">*/
    #contact-us-section #questions-form-section {
        width: 560px;
    }
    /*</editor-fold>*/
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1140px;
    }

    /*<editor-fold desc="Hero section">*/
    #hero-section .hero-content h1 {
        font-size: 5rem;
    }

    #hero-section .hero-content .btn {
        display: inline-block;
    }

    #hero-section .hero-content .btn:first-of-type {
        margin-right: 1.5rem;
    }
    /*</editor-fold>*/

    /*<editor-fold desc="Transfer section">*/
    #transfer-section .transfer-location-list {
        column-gap: initial;
        justify-content: space-between;
    }

    #transfer-section .transfer-location-list .location-card {
        flex-basis: initial;
        width: 204px;
        padding: 9.5rem 1.5rem 4rem 1.5rem;
    }

    #transfer-section .transfer-location-list .location-card .location-icon {
        top: 3rem;
        left: calc(50% - 40px);
        width: 80px;
        height: 80px;
    }

    #transfer-section .transfer-location-list .location-card p {
        text-align: center;
    }
    /*</editor-fold>*/
}

@media (min-width: 1400px) {
}