@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --color-1: #0f1016;
    --color-text-headers: #0f1016;
    --color-text: #57585C;
    --color-footer: #2D2D2D;
    --color-light-grey: #F3F3F3;
    --primary: #4292F3;
    --primary-dark: #004C97;
    --primary-light: #CCDFFE;
    --secondary: #EACBAC;
    --secondary-dark: #C7A987;
    --tertiary: #E81427;
    --tertiary-hover: #D50206; 
    --accent-color: #006aff;
    --mb-15: 15px;
    --radius-outer: 16px;
    --radius-inner: 8px;
}


/*--------------------------------------------------------------
# General 
--------------------------------------------------------------*/

*,
*::before,
*::after {
    box-sizing: border-box;
}
div {
    display: block;
    unicode-bidi: isolate;
}

* {
    margin: 0;
    padding: 0;
}

html,
body {
    min-height: 100%;
    font-size: 100%;
    font-family: Poppins, sans-serif, Tahoma;
}

body,
p,
li,
.form-control{
    font-size: 0.938rem;
    line-height: 1.563rem;
    color: var(--color-text)
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all .3s ease-in 0s;
}

    a:focus,
    a:hover {
        color: var(--primary-hover);
        transition: .5s;
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-text-headers);
    font-weight: 600;
}

h1 {
    font-size: 4.125rem;
    line-height: 5.125rem;
}

h2 {
    font-size: 2.5rem;
    line-height: 3.125rem;
}

h3 {
    font-size: 2rem;
    line-height: 2.625rem;
}

h4 {
    font-size: 1.5rem;
    line-height: 2.125rem;
}

h5 {
    font-size: 1.125rem;
    line-height: 1.75rem;
}
.h5-ex-thins{
    font-weight:400;
    line-height:2.375rem;
}

h6 {
    font-size: 1rem;
    line-height: 1.625rem;
}


.gen-list {
    margin: unset;
    padding: unset;
}

    .gen-list li {
        list-style-type: none;
        margin: 10px 0;
        display: flex;
        align-items: center;
    }

        .gen-list li .icon-check {
            margin-right: 15px;
            font-size: 12px;
            border-radius: 50%;
            background-color: var(--lgrey);
            padding: 6px;
            margin-top: 3px;
        }

        .gen-list li i {
            margin-right: 10px;
            font-size: 18px;
            padding: 6px;
            margin-top: 1px;
        }

        .gen-list li .li-info {
            padding: 0 6px;
            line-height: 1.7em;
        }

        .gen-list li .li-bold {
            font-weight: 600;
        }

.gl-lrg li {
    font-size: 1.25rem;
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/

.btn {
    border-radius: 25px;
    display: flex;
    justify-content: center;
    padding: 10px 20px;
    transition: all 0.4s ease-in-out;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
    .btn-primary:hover {
        background: var(--primary-dark);
        border-color: var(--primary-dark);
        color: #fff;
    }

.btn-tertiary {
    background: var(--tertiary);
    border-color: var(--tertiary);
    color:#fff;
}
    .btn-tertiary:hover {
        background: var(--tertiary-hover);
        border-color: var(--tertiary-hover);
        color: #fff;
    }

.btn-outline-white {
    border: 1px #fff solid;
    color: #fff;
}

    .btn-outline-white:hover {
        background: #fff;
        border: 1px #fff solid;
        color: var(--primary);
    }

.btn-wicon {
    display: flex;
    align-items: center;
}

    .btn-wicon i {
        font-size: 1.5rem;
        margin-left: 10px;
    }

/*--------------------------------------------------------------
# Container and Columns
--------------------------------------------------------------*/

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
    }
}

.row {
    display: flex;
    flex-wrap:wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.row-100{
    width:100%;
}

.col-100 {
    width: 100%;
}

.col-90 {
    width: 90%;
}

.col-80 {
    width: 80%;
}

.col-70 {
    width: 70%;
}

.col-60 {
    width: 60%;
}

.col-50 {
    width: 50%;
}

.col-40 {
    width: 40%;
}

.col-30 {
    width: 30%;
}
.col-33 {
    width: 33%;
}

.col-25 {
    width: 25%;
}

.col-20 {
    width: 20%;
}
.col-10 {
    width: 10%;
}

.col-100,
.col-90,
.col-80,
.col-70,
.col-60,
.col-50,
.col-40,
.col-33,
.col-30,
.col-25,
.col-20,
.col-10 {
    padding-left: 15px;
    padding-right: 15px;
    flex: 0 0 auto;
}



/*--- margin padding spacing ---*/
.flex-hc{
    display:flex;
    justify-content:center;
}
.mt-50 {
    margin-top: 50px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-25 {
    margin-bottom: 25px;
}

.pr-25 {
    padding-right: 25px;
}
.mh-100{
    min-height:100%;
}
/*--- images ---*/
.img-ver-long {
    border-radius: var(--radius-outer);
    max-width: 100%;
}

/*--------------------------------------------------------------
# Top Nav
--------------------------------------------------------------*/

header {
    transition: all ease-in-out .5s;
    min-height: 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 15px 0;
    z-index: 10;
    position: fixed;
}

    header.scrolled {
        background-color: #fff;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }

.logo-mobile {
    display: none;
}

.links-container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

#sidebar-active {
    display: none;
}

.open-sidebar-btn,
.close-sidebar-btn {
    display: none;
}

.top-nav-logo {
    background: transparent url('/img/logo-getta-express.svg') no-repeat left top;
    background-size: contain;
    width: 200px;
    height: 60px;
    margin-left: 15px;
}
.top-nav-logo a{
    display:block;
    height:100%;
    width:100%;
}

header.scrolled .top-nav-logo {
    background: transparent url('/img/logo-getta-express-col.svg') no-repeat left top;
}

.top-nav-center,
.top-nav-right {
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    list-style-type: none;
    overflow: hidden;
}

header.scrolled .top-nav-center,
header.scrolled .top-nav-right {
    box-shadow: unset;
}

header.scrolled .top-nav-center {
    border-radius: unset;
}

.top-nav-center {
    background: #fff;
}

.top-nav-right {
    background: var(--primary);
    margin-right: 15px;
}

    .top-nav-center nav,
    .top-nav-right nav {
        display: flex;
        align-items: center;
    }

        .top-nav-center nav a {
            color: var(--color-text);
        }

header.scrolled .top-nav-center nav a {
    border-radius: 25px;
}

.top-nav-right nav a {
    color: #fff;
}

nav a {
    height: 100%;
    padding: 12px 22px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

    nav a:hover {
        background-color: var(--primary);
        color: #fff;
    }

.top-nav-right nav a:hover {
    background: var(--primary-dark);
    color: #fff;
}

nav .home-link {
    margin-right: auto;
}

header svg {
    fill: #fff;
}



@media (max-width:768px) {
    header {
        background-color: unset;
        padding: 10px 0;
        min-height: 50px;
    }


    .logo-mobile {
        background: transparent url('/img/logo-icon-getta-express.svg') no-repeat center center;
        display: block;
        height: 50px;
        width: 50px;
        position: absolute;
        left: 10px;
    }
    .logo-mobile a{
        display:block;
        width:100%;
        height:100%;
    }

    header.scrolled .logo-mobile {
        background: transparent url('/img/logo-icon-getta-express-col.svg') no-repeat center center;
    }

    header.scrolled svg {
        fill: var(--primary);
    }

    header.scrolled .top-nav-center nav a {
        border-radius: unset;
    }

    .links-container {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 10;
        width: 300px;
        background-color: var(--color-1);
        box-shadow: -5px 0 5px rgba(0, 0, 0, 0.25);
        transition: 0.5s ease-out;
    }

    .top-nav-logo {
        display: none;
    }

    .top-nav-center,
    .top-nav-right {
        background: transparent;
        border-radius: unset;
        width: 100%;
    }

        .top-nav-center nav,
        .top-nav-right nav {
            flex-direction: column;
        }

    nav a {
        box-sizing: border-box;
        height: auto;
        width: 100%;
        padding: 20px 30px;
        justify-content: flex-start;
    }

    .top-nav-center nav a {
        color: #fff;
    }

    .top-nav-right {
        margin: 0;
    }

    .open-sidebar-btn,
    .close-sidebar-btn {
        padding: 10px 20px;
        display: block;
    }

    #sidebar-active:checked ~ .links-container {
        right: 0;
    }

    #sidebar-active:checked ~ #overlay {
        background-color: rgba(0, 0, 0, 0.25);
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9;
    }
}


/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/

.hero {
    background-color: var(--primary);
    background-image: url('/img/Gette-Express-Couriers.jpg');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 50% 100%;
    height: 85vh;
    position: relative;
}

    .hero .overlay {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 30%;
    }

    .hero .container,
    .hero .container .col-50,
    .hero .text-layout {
        height: 100%;
    }

    .hero .text-layout {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

        .hero .text-layout h1 {
            color: #fff;
            font-size: 6rem;
            line-height: 6.5rem;
        }

        .hero .text-layout p {
            color: #fff;
            padding: 15px 150px 15px 0;
        }


/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.sec-header-setup {
    display: flex;
    flex-direction: column;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

    .sec-header-setup h2 {
        margin-bottom: var(--mb-15);
    }

    .sec-header-setup p {
        padding: 10px 100px;
    }

/*--------------------------------------------------------------
# Card
--------------------------------------------------------------*/

.card {
    min-height: 100%;
    border-radius: var(--radius-outer);
    padding: 20px;
}
    .card .card {
        border-radius: var(--radius-inner);
        border: 1px solid;
        padding: 10px;
    }

.card-lg{
    background:var(--color-light-grey);
}
.card-p {
    background: var(--primary);
}
    .card-p .card{
        border-color:#fff;
        color:#fff;
    }
    .card-dp {
        background: var(--primary-dark);
    }
    .card-dp h5,
    .card-dp p,
    .card-dp li,
    .card-p h5,
    .card-p p,
    .card-p li {
        color: #fff
    }

.card-p-road-map {
    background: var(--primary) url('/img/personal-road-map.svg') no-repeat right center;
    background-size:cover;
}
.card-dp-road-map {
    background: var(--primary-dark) url('/img/personal-road-map.svg') no-repeat right center;
    background-size: cover;
}
.card-dp-road-map h4{
    color:#fff;
    margin-bottom:25px;
}

.card-body {
    padding: 25px;
}
.card-grey-emp {
    background: var(--color-light-grey);
    padding: 20px;
    min-height: 100%;
}

/*--------------------------------------------------------------
# HomePage - Quick Links for Personal and Business
--------------------------------------------------------------*/

.hp-quicklinks h3,
.hp-quicklinks h4,
.hp-quicklinks li,
.hp-quicklinks p {
    color: var(--primary-dark);
}

.hp-quicklinks .emp-block {
    border: 1px var(--primary-dark) solid;
    border-radius: 25px;
    padding: 25px;
    min-height: 120px;
}

.hpq-personal,
.hpq-business {
    background-color: var(--color-light-grey);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
    background-size: 60% 50%;
    min-height: 100%;
}

.hpq-personal {
    background-image: url('/img/hpq-personal.svg');
}

.hpq-business {
    background-image: url('/img/hpq-business.svg');
}

/*--------------------------------------------------------------
# HomePage - Features
--------------------------------------------------------------*/
.hp-features {
    padding-top: 0;
}

.hp-features-indv {
    background: var(--color-light-grey);
    padding: 20px;
    min-height: 100%;
}

    .hp-features-indv .icon {
        background-color: var(--primary);
        border-radius: 50%;
        width: 80px;
        height: 80px;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        margin-bottom: 25px;
    }

    .hp-features-indv h4,
    .hp-features-indv p {
        color: var(--primary-dark);
    }

    .hp-features-indv h4 {
        margin-bottom: 15px;
    }

/*--------------------------------------------------------------
# HomePage - How do I track my Parcel
--------------------------------------------------------------*/
.hp-track-parcel {
    padding-top: 0;
}

    .hp-track-parcel img {
        max-height: 500px;
        width: 100%;
        border-radius: 15px;
    }

    .hp-track-parcel .info {
        padding: 45px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 100%;
    }

        .hp-track-parcel .info h2 {
            margin-bottom: 25px;
            padding-right: 100px;
        }


/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/

.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.1);
    display: block;
    appearance: none;
    width: 100%;
    padding: 0.625rem 1.25rem;
    font-weight: 400;
    background-clip: padding-box;
    border-radius: 25px;
    border: 1px rgba(50,50,50,0.25) solid;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    font-family: Poppins;
}
    .form-control:focus {
        color: var(--bs-body-color);
        background-color: #fff;
        border-color: #86b7fe;
        outline: 0;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    }
.form-select {
    padding: 0.75rem 2.25rem 0.75rem 1.25rem;
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

label{
    display:block;
    margin-bottom:10px;
}


/*--------------------------------------------------------------
# Sub Page Styling
--------------------------------------------------------------*/

.sp-header {
    background-color: var(--primary);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 32% 100%;
    height: 45vh;
    position: relative;
}
.sph-tracking {
    background-image: url('/img/getta-tracking.jpg');
}
.sph-help {
    background-image: url('/img/getta-help.jpg');
}
.sph-about {
    background-image: url('/img/getta-about.jpg');
}
.sph-personal {
    background-image: url('/img/getta-personal.jpg');
}
.sph-business {
    background-image: url('/img/getta-business.jpg');
}

    .sp-header .overlay {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 30%;
    }
    .sp-header .container {
        min-height: 45vh;
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        margin-top:-100px;

    }
.sph-info {
    padding: 100px 200px 10px 200px;
}
    .sph-info h1,
    .sph-info h2,
    .sph-info p {
        color: #fff;
        text-align: center;
        margin-bottom: 1rem;
    }
    .sph-info h2 {
        font-weight:400;
    }

.sph-block,
.sph-link-blocks {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    transition: all 0.2s ease-in-out;
}
.sph-link-blocks {
    display: flex;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 400;
    color: #fff;
    padding: 15px;
}
    .sph-link-blocks:hover {
        background: var(--primary-dark);
        border: 1px solid var(--primary-dark);
        color: #fff;
    }
        .sph-link-blocks .icon,
        .sph-help-block .icon {
            background: #fff;
            color:var(--primary);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
        }


.form-search {
    display:flex;
    width:650px;
    padding:15px;
}
    .form-search .form-control {
        border: 1px rgba(255,255,255,0.5) solid;
    }
.form-search input::placeholder{
    color:#fff;
}
.form-search .btn{
    width:200px;
    margin-left:10px;
}

.sph-help-block {
    display: flex;
    align-items: center;
    padding:10px;
}

.sph-help-block h2 {
    margin-left:15px;
    font-size:1.125rem;
    font-weight:400;
    color:#fff;
}
    .sph-help-block h2 a{
        color:#fff;
    }
.sph-info-extra h3,
.sph-info-extra p{
    color:#fff;
}

/*--- features ---*/
.features {
    padding:50px;
}
.features h3{
    font-size:1.5rem;
    line-height:2.875rem;
}
.features .number{
    background:var(--primary);
    border-radius:50%;
    color:#fff;
    width:65px;
    height:65px;
    font-size:2rem;
    display:flex;
    align-items:center;
    justify-content:center;
}
.features .row {
    border-bottom: 1px #ccc solid;
    padding-bottom: 35px;
    margin-bottom: 35px;
    align-items:center
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.head-emp {
    padding: 10px 15px;
    font-size: 1.25rem;
    line-height: 2rem;
    font-weight: 400;
    color:var(--color-text-headers)
}

/*--------------------------------------------------------------
# Personal
--------------------------------------------------------------*/

.per-map-link{
    background:#fff;
    display:inline-flex;
    align-items:center;
    padding:15px 25px;
    font-size:1.125rem;
    border-radius:0 50px 50px 0;
    margin-left:-20px;
}
.per-map-link i{
    margin-left:15px;
    font-size:1.5rem;
}


/*-- timeline --*/
.timeline-outer {
    padding: 0 12rem;
}
.timeline {
    position: relative;
    margin: 0 0 0 30px;
    color: white;
}

    .timeline:before {
        content: "";
        position: absolute;
        left: -65px;
        top: 0;
        width: 4px;
        height: 100%;
        background: var(--color-light-grey);
    }

    .timeline .timeline-container {
        position: relative;
        margin-bottom: 2.5rem;
    }

        .timeline .timeline-container .timeline-icon {
            position: absolute;
            left: -92px;
            top: 4px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            text-align: center;
            font-size: 2rem;
            background: #4f537b;
        }

            .timeline .timeline-container .timeline-icon i {
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
            }

            .timeline .timeline-container .timeline-icon img {
                width: 100%;
                height: 100%;
                border-radius: 50%;
            }

        .timeline .timeline-container .timeline-body {
            background: #fff;
            padding: 25px;
            height: auto;
            border-radius: 15px;
            transition: transform 0.3s ease;
        }

            .timeline .timeline-container .timeline-body:before {
                content: "";
                background: inherit;
                width: 20px;
                height: 20px;
                display: block;
                position: absolute;
                left: -10px;
                transform: rotate(45deg);
            }

            .timeline .timeline-container .timeline-body .timeline-title {
                margin-bottom: 1rem;
            }
            .timeline .timeline-container .timeline-body .timeline-title span{
                display:block;
                font-size:1rem;
                color:var(--primary)
            }

                .timeline .timeline-container .timeline-body .timeline-title .badge {
                    background: #4f537b;
                    padding: 4px 8px;
                    border-radius: 3px;
                    font-size: 12px;
                    font-weight: bold;
                }

            .timeline .timeline-container .timeline-body .timeline-subtitle {
                font-weight: 300;
                font-style: italic;
                opacity: 0.4;
                margin-top: 16px;
                font-size: 11px;
            }

        .timeline .timeline-container.blue .badge,
        .timeline .timeline-container.blue .timeline-icon {
            background: var(--primary);
        }

.timeline-body .btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}

    .timeline-body .btn-outline:hover,
    .timeline-body .btn-outline:focus {
        background: var(--primary);
        border-color: var(--primary);
        color: #fff;
    }

/*-- what not to send --*/
.wnt-send {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    padding:10px;
    display:flex;
    align-items:center;
}
.wnt-send .icon{
    background:#fff;
    border-radius:50%;
    color:var(--primary-dark);
    font-size:1.75rem;
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
}
.wnt-send span{
    color:#fff;
    margin-left:15px;
    font-size:1rem;
    width:150px;
}

/*-- personal - track parcel --*/
.tp-form {
    padding: 15px;
    display: flex;
    margin-left: -15px;
    margin-right: -15px
}

/*--------------------------------------------------------------
# Accordion - FAQ
--------------------------------------------------------------*/


.accordion .accordion-item {
    border-bottom: 1px solid #e5e5e5;
}

    .accordion .accordion-item button[aria-expanded='true'] {
        border-bottom: 1px solid var(--primary);
    }

.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: var(--color-text);
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}

    .accordion button:hover,
    .accordion button:focus {
        cursor: pointer;
        color: var(--primary);
    }

        .accordion button:hover::after,
        .accordion button:focus::after {
            cursor: pointer;
            color: var(--primary);
            border: 1px solid var(--primary);
        }

    .accordion button .accordion-title {
        padding: 1em 1.5em 1em 0;
        font-family: Poppins, sans-serif, Tahoma;
    }

    .accordion button .icon {
        display: inline-block;
        position: absolute;
        top: 18px;
        right: 0;
        width: 22px;
        height: 22px;
        border: 1px solid;
        border-radius: 22px;
    }

        .accordion button .icon::before {
            display: block;
            position: absolute;
            content: '';
            top: 9px;
            left: 5px;
            width: 10px;
            height: 2px;
            background: currentColor;
        }

        .accordion button .icon::after {
            display: block;
            position: absolute;
            content: '';
            top: 5px;
            left: 9px;
            width: 2px;
            height: 10px;
            background: currentColor;
        }

    .accordion button[aria-expanded='true'] {
        color:var(--primary);
    }

        .accordion button[aria-expanded='true'] .icon::after {
            width: 0;
        }

        .accordion button[aria-expanded='true'] + .accordion-content {
            opacity: 1;
            max-height: 9em;
            transition: all 200ms linear;
            will-change: opacity, max-height;
        }

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

    .accordion .accordion-content p {
        font-size: 1rem;
        font-weight: 300;
        margin: 2em 0;
    }


/*--------------------------------------------------------------
# Tabs - Horizontal and Vertical
--------------------------------------------------------------*/
.tabs-nav,
.tabs-nav-ver,
.tab-mnu {
    display: flex;
    margin: unset;
    padding: unset;
    list-style-type: none;
}
.tabs-nav-ver {
    flex-direction: column;
}
.tab-mnu {
    flex-direction: column;
    padding-right:100px;
}
    .tabs-nav-ver li{
        margin-bottom: 10px;
    }
    .tab-mnu li {
        margin-bottom: 10px;
        cursor: pointer;
    }
.tabs-nav li a,
.tabs-nav-ver li a,
.tab-mnu li {
    background-color: var(--color-light-grey);
    border: 1px var(--color-light-grey) solid;
    border-radius: 1rem;
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}
        .tabs-nav li.active,
        .tabs-nav-ver li.active,
        .tab-mnu li.active{
            background:#fff;
            border: 1px var(--primary) solid;
            color:var(--primary);
        }
.tab-mnu li i{
    font-size: 1.25rem;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
    background: var(--color-footer);
    min-height: 500px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.footer-logo {
    background: transparent url(/img/logo-getta-express.svg) no-repeat left top;
    background-size: contain;
    width: 200px;
    height: 60px;
    margin-bottom: 25px;
}

footer h5 {
    color: #fff;
    font-weight: 500;
}

footer p {
    color: rgba(255, 255, 255, 0.5);
}

.footer-list {
    margin: unset;
    padding: unset;
    list-style-type: none;
}

    .footer-list li {
        margin: 5px 0;
    }

        .footer-list li a {
            display: block;
            color: rgba(255, 255, 255, 0.5);
        }

            .footer-list li a:hover {
                color: #fff;
            }

.footer-hr {
    border-top: 1px rgba(255, 255, 255, 0.25) solid;
    border-bottom: unset;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.footer-terms {
    display: flex;
    justify-content: center;
    list-style-type: none;
    margin: unset;
    padding: unset;
}

    .footer-terms li {
        margin: 0 10px;
        padding: unset;
        border-right: 1px rgba(255, 255, 255, 0.5) solid;
        padding: 0 20px 0 0;
    }

        .footer-terms li:last-child {
            border-right: unset;
        }

        .footer-terms li a {
            display: block;
            color: rgba(255, 255, 255, 0.5);
        }

            .footer-terms li a:hover,
            .footer-terms li a:focus {
                color: #fff;
            }

/* 
.loading{
    height: 50px;
    width: 50px;
    border:6px solid aqua;
    border-radius: 4px;
    box-shadow: 0 0 8px aqua, 0 0 8px aqua inset;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: 10;
    animation: 2s loading ease-in-out infinite;
}

@keyframes loading {
    0%{
        transform: rotateX(0) rotateY(0) rotateY(0);
    }
    33%{
        transform: rotateX(180deg) rotateY(0) rotateY(0);
    }
    67%{
        transform: rotateX(180deg) rotateY(180deg) rotateY(0);
    }
    100%{
        transform: rotateX(180deg) rotateY(180deg) rotateY(180deg);
    }
    
} */
@media (max-width: 1440px) {
    .hero .text-layout {
        padding-right: 50px;
        margin-top: 50px;
    }
    .hero .text-layout h1 {
        font-size: 4rem ;
        line-height: 4.625rem ;
    }
        .hero .text-layout p {
            color: #fff;
            padding: 15px 15px 15px 0; 
        }
    .hero .text-layout .col-30 {
        width:50%;
    }

    .sp-header {
        background-size: 35% 100%;
        height: 50vh;
    }
    .row-wrap{
        flex-direction:column;
    }
        .row-wrap .col-40,
        .row-wrap .col-60 {
            width:100%;
        }
}
@media (max-width: 1024px) {
    h3 {
        font-size: 1.5rem;
        line-height: 2.125rem;
    }
    nav a {
        padding: 12px 15px;
    }
    .hero {
        background-size: 70% 100%;
        background-position: 170% top;
        height: 90vh;
        position: relative;
    }
    .hero .text-layout h1 {
        font-size: 3.5rem;
        line-height: 4.125rem;
    }
    .hero .text-layout .col-30 {
        width: 100%;
        margin-bottom:15px;
    }
    .card .col-50{
        width:100%;
    }
    .hp-features .col-25{
        width:50%;
    }
    .hp-track-parcel .info {
        padding:15px 25px;
    }
    .sp-header {
        background-size: 70% 100%;
        height:100%;
        padding-bottom:50px;
    }
        .sp-header .col-20,
        .sp-header .col-25,
        .sp-header .col-30{
            width: 100%;
            margin-bottom: 15px;
        }
    .sph-info {
        padding: 100px 50px 10px 50px;
    }
    .tab-mnu {
        padding-right: 15px;
    }
    .timeline-outer {
        padding: 0px 5rem;
    }
    .timeline .timeline-container {
        position: relative;
        margin-bottom: 1.25rem;
    }
        .timeline .timeline-container .timeline-body {
            padding:10px 15px;
        }
}


@media (max-width:768px) {
    h1 {
        font-size: 3.125rem;
        line-height: 4.125rem;
    }

    h2 {
        font-size: 2.5rem;
        line-height: 3.125rem;
    }
    h4 {
        font-size: 1.25rem;
    }

    .row {
        flex-direction: column;
    }

    .col-100,
    .col-90,
    .col-80,
    .col-70,
    .col-60,
    .col-50,
    .col-40,
    .col-33,
    .col-30,
    .col-25,
    .col-20 {
        width: 100%;
    }

    section {
        padding: 50px 25px;
    }

    .sec-header-setup p {
        padding: 10px;
    }
    .sp-header .col-20,
    .sp-header .col-25,
    .sp-header .col-30 {
        margin-bottom: 15px;
    }

    .hero {
        background-color: var(--primary);
        background-image: unset;
        background-size: 100% 100%;
        height: 100%;
    }

        .hero .text-layout {
            padding-top: 80px;
            padding-right:unset;
        }

            .hero .text-layout h1 {
                font-size: 4rem;
                line-height: 5rem;
            }

            .hero .text-layout p {
                color: #fff;
                padding: 0;
            }

    .hp-quicklinks-per-buss {
        flex-direction: column;
    }

        .hp-quicklinks-per-buss .indv {
            width: 100%;
            margin: 10px;
        }

    .hpq-personal,
    .hpq-business {
        padding-bottom: 300px;
    }

    .hpq-personal,
    .hpq-business {
        background-size: 100% 30%;
    }

    .hp-track-parcel .info {
        padding: 45px 0 25px 0;
    }
    .hp-features .col-25 {
        width: 100%;
    }
    .gen-list{
        margin-bottom:25px;
    }

    .sp-header {
        background-size: 100% 100%;
        height: unset; 
    }
    .sph-info {
        padding: 200px 10px 10px 10px;
    }
    .sph-block {
        border-radius:25px;
        width:100%;
    }
        .form-search,
        .tp-form {
            flex-wrap: wrap;
            width: 100%;
        }
            .form-search input,
            .tp-form .col-70 {
                margin-bottom: 15px;
            }
            .form-search .btn {
                width: 100%;
                margin-left: unset;
            }

    footer {
        padding: 50px 25px;
    }

        footer .col-40,
        footer .col-20 {
            margin-bottom: 25px;
        }

    .footer-terms {
        flex-direction: column;
    }

        .footer-terms li {
            border-right: unset;
            margin: unset;
        }

            .footer-terms li a {
                padding: 5px 0;
            }
}
