/*Variables*/

:root {
    --bs-body-bg: #f2f2f2;
    --bs-card-bg: #ffffff;
    --bs-dropdown-bg: var(--bs-body-bg);
    --primary-color: #005379;
    --secondary-color: #ff8000;
    --light-grey: #a4a4a4;
    --medium-grey: #232323;
    --dark-blue: #123456;
}

* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    animation: pageFade 1s;
}

.primary-color {
    color: var(--primary-color);
}

.secondary-color {
    color: var(--secondary-color);
}

.container-fluid {
    width: 65vw;
}

@media (max-width: 764px) {
    .container-fluid {
        width: 95vw;
    }
}

@media (max-width: 1024px) {
    .container-fluid {
        width: 90vw;
    }
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

.img-cover {
    object-fit: cover;
}

.space {
    margin: 5vh 0;
}

.width-70 {
    width: 70%;
}

.g-mb-2 {
    margin-bottom: 2rem;
}

@media (min-width: 2560px) {
    html {
        font-size: 93%;
    }
}

@media (max-width: 764px) {
    html {
        font-size: 50%;
    }
}

@media (max-width: 764px) {
    .row {
        margin-right: .01rem;
        padding-left: 1rem;
    }
}

body {
    background-color: #ffffff;
    font-family: Barlow, Sans-Serif;
    color: #232323;
}

h2 {
    font-size: 4rem;
    font-weight: 500;
    color: var(--primary-color);
}

.blog h2 {
    font-size: 6rem;
    font-weight: 500;
}

.services h4 {
    font-size: 2rem;
    font-weight: 500;
    text-transform: uppercase;
}

.white p {
    color: #f2f2f2;
}

.white h2 {
    color: #f2f2f2;
    font-size: 3.5rem;
}

.white h3 {
    color: #f2f2f2;
}

.white li {
    color: #f2f2f2;
}

.font-weight-bold {
    font-weight: 600;
}

p {
    font-size: 1.9rem;
    color: #232323;
    font-weight: 400;
}

h1 {
    font-size: 6rem;
    font-weight: 600;
}

@media only screen and (max-width: 768px) {
    h1 {
        font-size:3rem;
    }
}

h3 {
    font-size: 5rem;
    font-weight: 300;
}

h4 {
    font-size: 2.3rem;
    font-weight: 500;
    color: var(--primary-color);
}

h5 {
    font-size: 4rem;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
}

h6 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--medium-grey);
}

.custom-block h6 {
    color: var(--secondary-color);
}

a {
    color: #f2f2f2;
    text-decoration: none;
    font-size: 1.8rem;
}

    a:active, a:focus {
        color: #fd7b00;
        text-decoration: none;
        transition-timing-function: ease-in-out;
        transition-duration: .2s;
    }

.item-icon {
    color: var(--secondary-color);
    font-size: 4rem;
}

.responsive-img {
    width: 80%;
    overflow: hidden;
}

hr {
    opacity: 100%;
    color: var(--light-grey);
}

.hr-orange {
    height: .3rem;
    color: var(--secondary-color);
    background-color: var(--secondary-color);
    width: 20%;
    text-align: center;
    margin: 1.1rem auto;
}

.hr-u {
    height: .3rem;
    color: var(--secondary-color);
    background-color: var(--secondary-color);
    width: 100%;
    text-align: center;
    margin: 1.1rem auto;
}

.hr-blue {
    height: .3rem;
    color: var(--primary-color);
    background-color: var(--primary-color);
    width: 20%;
    text-align: center;
    margin: 1.1rem auto;
}

.width-50 {
    width: 10%;
}
/* BUTTONS */

.btn-white {
    background-color: var(--bs-light);
    padding: 1rem 2rem;
    border-radius: .8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.8rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--primary-color);
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

    .btn-white:hover {
        background-color: var(--secondary-color);
        box-shadow: 0 .2rem .5rem rgba(0, 0, 0, 0.1);
    }

.btn-orange {
    background-color: var(--secondary-color);
    padding: .5rem 3rem;
    border: .1rem var(--secondary-color);
    border-radius: .3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.6rem;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--bs-card-bg);
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

    .btn-orange:hover {
        background-color: var(--primary-color);
        box-shadow: 0 .2rem .5rem rgba(0, 0, 0, 0.1);
    }
/* TOP BAR */

.top-bar-info {
    display: inline-block;
    vertical-align: middle;
}
.top-bar-info a {
font-size:1.3rem;
}


#top-bar {
    display: block;
    position: relative;
    z-index: 999;
    background: var(--dark-blue);
    padding: .7rem 0;
}


.top-social-icon {
    padding: 0;
    float: right;
    margin: 0;
}

    .top-social-icon li {
        font-size: 1.4rem;
        list-style-type: none;
        float: left;
        text-align: center;
        margin: 0;
        padding: 0 .7rem;
    }

        .top-social-icon li img {
            padding-bottom: .5rem;
        }

        .top-social-icon li:last-child a {
            padding-right: 0;
        }

        .top-social-icon li a {
            color: #fff;
            line-height: 2.8rem;
            transition-duration: .3s;
            padding: 0 .3rem;
            font-weight: 400;
        }

            .top-social-icon li a:hover {
                color: var(--secondary-color);
            }
/* NAV */

.arrow a::before {
    background-image: url(/img/menu-arrow.svg);
}

@media only screen and (max-width: 768px) {
    .brand {
        max-width: 50vw;
    }
}

.navbar-toggler-icon {
    background-image: url("/img/burger.svg");
    height: 5rem;
    width: 5rem;
    margin-bottom: -1.3rem;
    margin-right: -3rem;
    float: right;
}

.navbar-collapse {
    justify-content: flex-end;
}

.navbar > ul > li.current > a:after {
    border-color: transparent #F57F20 #F57F20 transparent;
}

ul {
    list-style-type: none;
}

.navbar-nav {
    margin-top: 0.3rem;
    padding: 2rem 0;
}

.dropdown-menu ul {
    padding-left: 0;
}

.dropdown-menu {
    background-color: var(--primary-color);
}

.navbar-nav > li > a {
    position: relative;
    display: block;
    font-size: 1.8rem;
    font-weight: 500;
    color: #232323;
    letter-spacing: .2rem;
    text-transform: uppercase;
    transition-duration: 250ms;
    margin-right: 2rem;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var(--light-grey);
}

.nav-link:focus, .nav-link:hover {
    color: #ff8000;
}

.title {
    font-size: 1.6rem;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .17rem;
    padding-left: 1rem;
}

    .title a:hover {
        color: var(--secondary-color);
    }

.icon-list {
    font-size: 1.6rem;
    line-height: 3.2rem;
}

    .icon-list a::before {
        content: '';
        display: inline-block;
        width: 2rem;
        height: 2rem;
        margin: 0 .2rem .5rem 0;
        background-image: url(/img/icon/menu-arrow.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        vertical-align: middle;
    }

    .icon-list i, .icon-list a {
        margin-right: 1.2rem;
        color: white;
    }

    .icon-list img {
        margin-bottom: .5rem;
    }

    .icon-list a:hover {
        color: var(--light-grey);
    }

.s-icon-list a::before {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    margin: 0 .2rem .5rem 0;
    background-image: url(/img/icon/menu-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

.s-icon-list {
    font-size: 1.6rem;
    line-height: 3.2rem;
}

    .s-icon-list img {
        margin-bottom: .5rem
    }

    .s-icon-list i, .s-icon-list a {
        margin-right: 1.2rem;
        color: var(--primary-color);
    }

        .s-icon-list a:hover {
            color: var(--secondary-color);
        }

.navbar .megamenu {
    padding: 3rem;
    box-shadow: 0 2rem 3rem rgba(0, 0, 0, 0.9);
}
/* ============ desktop view ============ */

@media all and (min-width: 992px) {
    .navbar .has-megamenu {
        position: static !important;
    }

    .navbar .megamenu {
        left: 0;
        right: 0;
        width: 100%;
        margin-top: 0;
    }
}
/* ============ mobile view ============ */

@media(max-width: 991px) {
    .navbar.fixed-top .navbar-collapse, .navbar.sticky-top .navbar-collapse {
        overflow-y: auto;
        max-height: 9rem;
        margin-top: 1rem;
    }
}

.navbar-toggler-icon {
    stroke: var(--primary-color)
}
/* HERO SECTION  */

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 15rem 2rem;
    background-image: url(/img/world.webp);
    background: linear-gradient(30deg, rgba(75, 137, 166, 1) 0%, rgb(8, 39, 54) 50%, rgb(8, 39, 54) 51%, rgb(0, 83, 121) 100%);
    background-size: 400% 400%;
    animation: gradientAnimation 10s ease infinite;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-section h2 {
    color: #f2f2f2;
    font-size: 10rem;
    text-align: center;
    font-weight: 700;
}

.hero-section h4 {
    color: var(--secondary-color);
    font-size: 6rem;
    text-align: center;
    font-weight: 500;
}

.hero-section p {
    color: white;
    font-size: 3rem;
    text-align: center;
    font-weight: 400;
}

@media only screen and (max-width: 768px) {
    .hero-section h4 {
        font-size: 4.3rem;
    }
}

.featured-section {
    background-color: #4B89A6;
    padding-bottom: 5rem;
}

    .featured-section .row {
        position: relative;
        bottom: 10rem;
        margin-bottom: -10rem;
    }

.feature-link a {
    color: var(--medium-grey);
    font-size: 1.8rem;
    font-weight: 500;
}

    .feature-link a:hover {
        color: var(--primary-color);
    }

.feature-link img {
    margin-bottom: .5rem;
    margin-left: 1rem;
}

.custom-block {
    border-radius: .5rem;
    position: relative;
    overflow: hidden;
    padding: 3rem;
    transition: all 0.3s ease;
    height: 100%;
    width: 93%;
}

    .custom-block h4 {
        font-size: 3.5rem;
        font-weight: 500;
        color: var(--primary-color);
    }

    .custom-block h3 {
        font-size: 2.5rem;
        font-weight: 500;
        color: var(--primary-color);
    }

.feature-back {
    background-image: url(/img/world.webp);
    overflow: hidden;
    object-fit: cover;
    background-repeat: no-repeat;
}

strong {
    color: var(--primary-color);

}

.round-button {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: #ff8000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 2rem;
    text-decoration: none;
}

    .round-button i {
        margin-right: .5rem;
    }
/*  ABOUT SECTION -home */

.about {
    background-color: white;
}
/*  blogs */

.blog {
    background-color: white;
    padding-bottom: 1vw;
}

.card {
    --bs-card-bg: white;
    box-shadow: 0 1.0rem 1.0rem rgba(0, 0, 0, 0.2);
    max-width: 90%;
}

.card-title {
    color: var(--secondary-color);
    font-size: 2rem;
}

.card-body {
    margin: 1rem 2rem;
}

@media (max-width: 768px) {
    .card-body {
        margin: 2rem 2rem;
    }
}

.custom-shape-divider-bottom-1715856668 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

    .custom-shape-divider-bottom-1715856668 svg {
        position: relative;
        display: block;
        width: calc(153% + .13rem);
        height: 12.9rem;
    }

    .custom-shape-divider-bottom-1715856668 .shape-fill {
        fill: #FF8000;
    }

.custom-shape-divider-bottom-171 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

    .custom-shape-divider-bottom-171 svg {
        position: relative;
        display: block;
        width: calc(153% + 1.3rem);
        height: 12.9rem;
    }

    .custom-shape-divider-bottom-171 .shape-fill {
        fill: #4b89a6;
    }

.parallax {
    position: relative;
    background-image: url('/img/explosion.webp');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@media (max-width: 768px) {
    .parallax {
        height: 70vh;
    }
}

.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    color: white;
}

.blob {
    background-image: url(/img/why-us.webp);
    background-repeat: no-repeat;
}
/*   FOOTER  */

footer {
    padding: 5rem 0 0;
    background: #1f1f1f;
    color: #939393;
}

    footer p {
        color: #939393;
        font-size: 1.6rem;
    }

    footer h3 {
        font-size: 1.8rem;
        font-weight: 500;
        margin-bottom: 3rem;
        line-height: 1;
        position: relative;
    }

        footer h3:after {
            content: '';
            display: block;
            width: 7rem;
            height: .2rem;
            background: #F57F20;
            margin-top: 1.2rem;
        }

.footer-bar {
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin-top: 5rem;
    text-align: center;
    background: #191919;
    color: #939393;
}

    .footer-bar span {
        color: var(--secondary-color);
        font-size: 1.5rem;
        font-weight: 400;
    }

.footer-social-icons ul {
    margin-bottom: 0;
}

    .footer-social-icons ul li {
        display: inline-block;
        border: .1rem solid #fff;
        border-radius: 50%;
        color: #fff;
        margin-right: 1rem;
        margin-bottom: .5rem;
        transition-duration: 0.3s;
    }

        .footer-social-icons ul li a {
            color: #939393;
            display: block;
            font-size: 1.5rem;
            height: 3.5rem;
            line-height: 3.4rem;
            text-align: center;
            width: 3.5rem;
        }

        .footer-social-icons ul li:hover {
            background: #F57F20;
            border-color: #F57F20;
        }

            .footer-social-icons ul li:hover i {
                color: #fff;
            }

.footer-social-icons.small ul li {
    margin-bottom: 0;
}

    .footer-social-icons.small ul li a {
        font-size: 1.2rem;
        height: 2.5rem;
        line-height: 2.6rem;
        width: 2.5rem;
    }

.footer-title-style3 {
    position: relative;
    padding-bottom: 2.0rem;
    margin-bottom: 2.8rem;
    color: #fff;
}

    .footer-title-style3:after {
        content: '';
        width: 6.0rem;
        height: .2rem;
        background: #F57F20;
        position: absolute;
        bottom: 0;
        left: 2.0rem;
    }

.g-mb-2rem {
    margin-bottom: 2rem;
}

.g-mt-5rem {
    margin-top: 5rem;
}

.g-mt-2-5rem {
    margin-top: 2.5rem;
}

.footer-list {
    margin: 0;
}

    .footer-list img {
        height: 1.9rem;
    }

    .footer-list li {
        list-style-type: none;
        color: #939393;
        padding: .6rem 0;
    }

        .footer-list li:first-child {
            padding-top: 0;
        }

        .footer-list li a {
            font-size: 1.5rem;
            font-weight: 400;
            color: #939393;
        }

    .footer-list li {
        font-size: 1.5rem;
        font-weight: 400;
        color: #939393;
    }

.text-theme-color {
    color: var(--secondary-color);
}

.footer-list img {
    margin-bottom: .5rem;
}

.footer-list li a:hover {
    color: #fff;
}

    .footer-list li a:hover:before {
        color: #fff;
    }

.d-inline-block {
    display: inline-block !important
}

.vertical-align-top {
    vertical-align: top;
}

.footer-title-style3 {
    position: relative;
    padding-bottom: 2.0rem;
    margin-bottom: 2.8rem;
    color: #fff;
}

    .footer-title-style3:after {
        content: '';
        width: 6.0rem;
        height: .2rem;
        background: #F57F20;
        position: absolute;
        bottom: 0;
        left: 2.0rem;
    }

    .footer-title-style3:before {
        content: '';
        width: 100%;
        height: .1rem;
        background: rgba(255, 255, 255, 0.2);
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }
/*  FORMs  */

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-bg);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-card-bg);
    margin-bottom: 2rem;
}

.scroll-to-top {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    background-color: #000000;
    color: white;
    border: .1rem solid var(--medium-grey);
    padding: .3rem 0 .5rem;
    cursor: pointer;
    border-radius: 5rem;
    display: none;
    width: 3.5rem;
    font-size: large;
}

    .scroll-to-top.show {
        display: block;
    }

.client {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    background-color: white;
}

    .client img {
        max-width: 19rem;
    }

.item {
    flex: 1 1 calc(20% - 1rem);
    box-sizing: border-box;
    background-color: white;
    padding: 10px;
    text-align: center;
    max-width: calc(20% - 1rem);
    margin: 1.5rem 0;
}

    .item img {
        width: 100%;
        height: auto;
    }

@media (max-width: 768px) {
    .item {
        flex: 1 1 calc(33.33% - 1rem);
        max-width: calc(33.33% - 1rem);
    }
}

@media (max-width: 480px) {
    .item {
        flex: 1 1 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
}

@media (max-width: 320px) {
    .item {
        flex: 1 1 calc(100% - 1rem);
        max-width: calc(100% - 1rem);
    }
}
/*  Blog blogs */

.box {
    border: var(--light-grey) .1rem solid;
    margin-right: 1vw;
}

    .box p {
        font-size: 1.8rem;
    }

    .box h2 {
        font-size: 2rem;
    }

.post-box {
    margin: 1vh 1vw;
}

    .post-box h2 {
        font-size: 2.4rem;
    }

    .post-box h5 {
        font-size: 3rem;
        text-transform: capitalize;
    }

.breadcrumb {
    list-style: none;
    display: flex;
    padding: 0;
    margin-top: 2rem;
    margin-left: 1vw;
}

.breadcrumb-item {
    margin-right: 0.5rem;
}

    .breadcrumb-item a {
        text-decoration: none;
        color: var(--primary-color);
        font-size: 1.8rem;
    }

    .breadcrumb-item.active {
        font-weight: 500;
        color: var(--secondary-color);
    }

    .breadcrumb-item + .breadcrumb-item::before {
        content: none;
        color: var(--separator-color);
    }

ol li {
    font-size: 1.8rem;
}

.category-rt a {
    color: var(--medium-grey);
    font-weight: 500;
}

ul a:hover {
    color: var(--secondary-color);
}

ul.custom-bullets {
    list-style-type: none;
    padding-left: 0;
}

.custom-bullets a::before {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 2rem;
    margin: 0 .2rem .5rem 0;
    background-image: url(/img/icon/menu-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

p.date {
    font-size: 1.5rem;
}

    p.date::before {
        content: "\f073";
        font-family: "Font Awesome 6 Free";
        color: var(--secondary-color);
        margin-right: 1.4rem;
    }

.page-item a {
    font-size: 1.8rem;
    color: var(--secondary-color);
    background: none;
    border-radius: 4rem;
    border: none;
    margin: 0 2rem;
}

    .page-item a:hover {
        background-color: var(--light-grey);
        color: white;
    }

.hero {
    position: relative;
    height: 30vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero .content {
    position: relative;
    z-index: 2;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.share-post {
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: .1rem dashed #ddd;
    border-bottom: .1rem dashed #ddd;
    text-align: left;
}

.inline-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
    margin-left: auto;
}

    .inline-list li a i {
        color: #ff8000;
    }

.sharepost {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Services */

.services-hero h1 {
    color: white;
    font-size: 7rem;
    text-shadow: .2rem .2rem .4rem rgba(0, 0, 0, 0.5);
}

.accordion-button {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--light-grey);
    padding: 1.6rem;
    text-transform: uppercase;
}

.accordion-button {
    border: 0;
}

    .accordion-button:not(.collapsed) {
        background-color: white;
        border-left: .3rem solid var(--secondary-color);
    }

    .accordion-button:focus {
        box-shadow: none;
    }

.services-menu-head::before, .services-box h1::before {
    content: '';
    display: inline-block;
    width: 3rem;
    height: 0.3rem;
    background-color: var(--secondary-color);
    margin-right: 2rem;
    vertical-align: middle;
}


.quote {
    border-radius: .2rem;
    background-color: var(--bs-body-bg);
    padding: 2rem;
    margin: 2rem 0;
}

.quote-mark {
    content: '';
    display: inline-block;
    width: 20%;
    margin: 0 .2rem .5rem 0;
    background-image: url(/img/icon/quotation.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.b-card {
    background-image: url(/img/pages/calls.webp);
    border-radius: .5rem;
}

    .b-card h2 {
        font-size: 2.5rem;
        font-weight: 600;
        margin: 2rem 2rem;
        color: white;
    }

    .b-card p img {
        padding-bottom: .5rem;
    }

    .b-card p {
        font-size: 2rem;
        font-weight: 400;
        color: white;
    }

.services-box h1 {
    font-size: 4rem;
    color: var(--primary-color);
    padding: 2rem;
    background-color: #f2f2f2;
}
@media (max-width: 768px) {
    .services-box h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services-box h1::before {
        width: 1rem;
        margin-right: 2rem;
    }
}

.services-box h5 {
    font-size: 3rem;
    text-transform: capitalize;
    color: var(--secondary-color);
}

.services-box h4 {
    font-size: 2rem;
    color: var(--secondary-color);
    font-style: italic;
    font-weight: 500;
    line-height:5rem;
}

.hi-light {
    padding: 3rem;
    margin: 3rem 0;
    background-color: var(--bs-body-bg);
    border-left: var(--secondary-color) .5rem solid;
}

.contact a {
    font-size: 2rem;
    font-weight: 500;
    color: var(--medium-grey);
}

.contact i {
    font-size: 2rem;
    margin-right: 2rem;
}

.block {
    border-top: .1rem var(--medium-grey) dotted;
    padding: 3rem 3rem 3rem 0;
}

form label {
    font-size: 1.8rem;
}

.block img {
    margin-right: 1rem;
    padding-bottom: .5rem;
}
/*  Page transition*/

@keyframes pageFade {
    from {
        opacity: 0;
        transform: rotateX(-20deg);
    }

    to {
        opacity: 1;
        transform: rotateX(0);
    }
}

.format h2 {
    color: var(--primary-color);
    font-size: 3.5rem;
    font-weight: 500;
}

.format h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 500;
}

.format h4 {
    font-size: 2.2rem;
    font-weight: 500;
}

.format ul li {
    font-size: 1.8rem;
    font-weight: 500;
    border-bottom: .1rem dashed var(--light-grey);
    background-color: #f2f2f2;
    padding: 1.2rem;
}

.format ul {
    padding-left: 0;
}

    .format ul li::before {
        content: '';
        display: inline-block;
        width: 2rem;
        height: 2rem;
        background-image: url(/img/icon/star.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        margin-right: .8rem;
        vertical-align: middle;
    }
