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

html {
    -webkit-tap-highlight-color: transparent;
    font-family: 'Noto Sans', sans-serif;
    scroll-behavior: smooth;
}


:root {
    --header-height: 3.8rem;
    --black-color: hsl(220, 24%, 12%);
    --black-color-light: hsl(220, 24%, 15%);
    --black-color-lighten: hsl(220, 20%, 18%);
    --extra-dark-blue: #003763;
    --dark-blue: #00428b;
    --light-blue: #004394;
    --extra-light-blue: #0050b3;
    --light-blue-grey: #799ab5;
    --normal-font-size: .938rem;
    --font-regular: 400;
    --font-semi-bold: 600;
    --z-fixed: 100;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb {
    background-color: var(--dark-blue);
    border: 1px solid #fff;
    border-radius: 20px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

.navbar-container {
    max-width: 1450px;
    margin-inline: 1.5rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
            box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
    z-index: var(--z-fixed);
}

.nav {
    height: var(--header-height);
}

.nav__logo,
.nav__burger,
.nav__close {
    color: var(--dark-blue);
}

.nav__data {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.nav__logo {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    cursor: pointer;
}

.nav__logo img {
    height: 70px;
}

.nav__toggle {
    position: relative;
    width: 32px;
    height: 32px;
}

.nav__burger,
.nav__close {
    position: absolute;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    inset: 0;
    margin: auto;
    font-size: 2rem;
    cursor: pointer;
    -webkit-transition: opacity .1s, -webkit-transform .4s;
    transition: opacity .1s, -webkit-transform .4s;
    -o-transition: opacity .1s, transform .4s;
    transition: opacity .1s, transform .4s;
    transition: opacity .1s, transform .4s, -webkit-transform .4s;
}

.nav__close {
    opacity: 0;
}

.nav__link {
    color: var(--dark-blue);
    background-color: #fff;
    font-weight: var(--font-semi-bold);
    padding: 1.25rem 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: background-color .3s;
    -o-transition: background-color .3s;
    transition: background-color .3s;
}

@media screen and (max-width: 769px) {
    .nav__menu {
        position: absolute;
        left: 0;
        top: 2.5rem;
        width: 100%;
        height: calc(100vh - 3.5rem);
        overflow: auto;
        pointer-events: none;
        opacity: 0;
        -webkit-transition: top .4s, opacity .3s;
        -o-transition: top .4s, opacity .3s;
        transition: top .4s, opacity .3s;
    }

    .nav__menu::-webkit-scrollbar {
        width: 0;
    }

    .nav__list {
        background-color: var(--dark-blue);
        -webkit-box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
                box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);    
    }

    .navbar-container {
        padding: 0 0px;
    }
}

.show-menu {
    opacity: 1;
    top: 3.5rem;
    pointer-events: initial;
}

.show-icon .nav__burger {
    opacity: 0;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
}

.show-icon .nav__close {
    opacity: 1;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
}

.dropdown__item {
    cursor: pointer;
}

.dropdown__arrow {
    font-size: 0.9rem !important;
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    -o-transition: transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s;
    margin-top: 3px;
}

.dropdown__link,
.dropdown__sublink {
    padding: 1.25rem 1.25rem 1.25rem 2.5rem;
    color: #fff;
    background-color: var(--dark-blue);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: .5rem;
       -moz-column-gap: .5rem;
            column-gap: .5rem;
    font-weight: var(--font-semi-bold);
    -webkit-transition: background-color .3s;
    -o-transition: background-color .3s;
    transition: background-color .3s;
}

.dropdown__link i,
.dropdown__sublink i {
    font-size: 1.25rem;
    font-weight: initial;
}

.dropdown__menu {
    width: 250px;
}

.dropdown__menu,
.dropdown__submenu {
    max-height: 0px;
    overflow: hidden;
    -webkit-transition: max-height .4s ease-out;
    -o-transition: max-height .4s ease-out;
    transition: max-height .4s ease-out;
}

.dropdown__item:hover .dropdown__arrow {
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
}

.dropdown__add {
    margin-left: auto;
}

.dropdown__sublink {
    background-color: var(--light-blue);
}


@media screen and (max-width: 340px) {
    .navbar-container {
        margin-inline: 1rem;
    }

    .nav__link {
        padding-inline: 1rem;
    }
}

@media screen and (max-width: 1500px) {
    .navbar-container {
        padding: 0 20px;
    }
}

@media screen and (max-width: 769px) {
    .navbar-container {
        padding: 0 0px;
    }
}

@media screen and (min-width: 769px) {
    .navbar-container {
        margin-inline: auto;
    }

    .nav {
        height: calc(var(--header-height) + 1.7rem);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

    .nav__toggle {
        display: none;
    }

    .nav__list {
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-column-gap: 3rem;
           -moz-column-gap: 3rem;
                column-gap: 3rem;
    }

    .dropdown__menu {
        max-height: 0px;
        -webkit-transition: max-height .4s ease-in;
        -o-transition: max-height .4s ease-in;
        transition: max-height .4s ease-in;
    }

    .dropdown__arrow {
        -webkit-transform: rotateX(0deg);
                transform: rotateX(0deg);
    }

    @media screen and (max-width: 1100px) {
        .nav__list {
            -webkit-column-gap: 2rem;
               -moz-column-gap: 2rem;
                    column-gap: 2rem;
        }
    }

    .nav__link {
        height: 100%;
        padding: 0;
        -webkit-box-pack: initial;
            -ms-flex-pack: initial;
                justify-content: initial;
        -webkit-column-gap: .25rem;
           -moz-column-gap: .25rem;
                column-gap: .25rem;
        width: 100%;
    }

    .nav__link:hover {
        background-color: transparent;
    }

    .dropdown__item,
    .dropdown__subitem,
    .nav__list li {
        position: relative;
    }


    .nav__link:after,
    .nav__link.active:after {
        content: "";
        position: absolute;
        background-color: var(--dark-blue);
        height: 2px;
        width: 0%;
        display: block;
        bottom: 25px;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
        border-radius: 10px
    }

    .nav__link.active:after {
        width: 100%;
    }

    .nav__link:hover:after {
        width: 100%;
    }


    .dropdown__menu,
    .dropdown__submenu {
        max-height: initial;
        overflow: initial;
        position: absolute;
        left: 0;
        top: 6rem;
        opacity: 0;
        pointer-events: none;
        -webkit-transition: opacity .3s, top .3s;
        -o-transition: opacity .3s, top .3s;
        transition: opacity .3s, top .3s;
    }

    .dropdown__link,
    .dropdown__sublink {
        padding-inline: 1rem 1.5rem;
    }

    .dropdown__subitem .dropdown__link {
        padding-inline: 1rem;
    }

    .dropdown__submenu {
        position: absolute;
        left: 100%;
        top: .5rem;
    }

    .dropdown__item:hover .dropdown__menu {
        opacity: 1;
        top: 5.5rem;
        pointer-events: initial;
        -webkit-transition: top .3s;
        -o-transition: top .3s;
        transition: top .3s;
        -webkit-box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
                box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
    }

    .dropdown__subitem:hover>.dropdown__submenu {
        opacity: 1;
        top: 0;
        pointer-events: initial;
        -webkit-transition: top .3s;
        -o-transition: top .3s;
        transition: top .3s;
    }

    .dropdown__link:hover {
        color: var(--light-blue);
        background-color: #fff;
    }
}

@media screen and (max-width: 950px) {
    .nav__logo img {
        height: 50px;
    }

    .nav__list {
        -webkit-column-gap: 1.5rem;
           -moz-column-gap: 1.5rem;
                column-gap: 1.5rem;
        font-size: 16px;
    }

    .nav {
        height: var(--header-height);
    }

    .nav__link:after,
    .nav__link.active:after {
        bottom: 15px;
    }
}

/* Landing Page */

.landing-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.landing-hero img {
    width: 100%;
    height: 100%;
    -webkit-filter: brightness(0.6);
            filter: brightness(0.6);
    -o-object-fit: cover;
       object-fit: cover;
}

.banner-links {
    position: absolute;
    top: 42%;
    right: 4rem;
    justify-items: center;
    row-gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    display: none;
}

@media only screen and (min-width:1023px) {
    .banner-links {
        opacity: 1;
        visibility: visible;
        display: -ms-grid;
        display: grid;
    }
}

.banner-links>* {
    font-size: 1.8rem;
    line-height: 1.25;
    color: #fff;
}

.banner-links::before {
    position: absolute;
    content: "";
    top: -4rem;
    width: 8rem;
    height: 1.5px;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
    background: #fff;
}

.banner-links::after {
    position: absolute;
    content: "";
    bottom: -4rem;
    width: 8rem;
    height: 1.5px;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
    background: #fff;
}

.mobile-brand-links {
    padding: 15px 0;
}

.mobile-brand-links .mobile-logos {
    font-size: 1.8rem;
    line-height: 1.25;
    color: #fff;
    padding: 5px 8px 5px 5px;
}

.banner-links .fa-brands:hover,
.mobile-brand-links .mobile-logos:hover {
    color: var(--extra-light-blue);
    -webkit-transition: .1s all ease-in;
    -o-transition: .1s all ease-in;
    transition: .1s all ease-in;
}

.hero-text-container {
    position: absolute;
    top: 27%;
    padding-left: 10%;
    color: #fff;
    width: 50%;
}

.hero-text-container h1 {
    font-size: 3.5rem;
    font-weight: 600;
}

.hero-text-container h3 {
    font-size: 1.7rem;
    font-weight: 400;
    padding-bottom: 10px;
}

.hero-text-container p {
    font-size: 20px;
    width: 70%;
    font-weight: 400;
    padding-bottom: 20px;
}

.hero-text-container .button2 {
    -webkit-transition: all .1s ease-in;
    -o-transition: all .1s ease-in;
    transition: all .1s ease-in;
    max-width: 165px;
    text-decoration: none;
    border-radius: 45px;
    padding: 12px 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-shadow: rgb(255, 255, 255) 0 80px 0px 2px inset;
            box-shadow: rgb(255, 255, 255) 0 80px 0px 2px inset;
    border: none;
    outline: none;
    background-color: transparent;
    font-size: 1rem;
}

@media screen and (max-width: 764px) {
    .hero-text-container .button2 {
        font-size: 12px;
        padding: 10px 23px;
    }
}

button.button2 {
    color: var(--light-blue);
}

button.button2:hover {
    color: #fff;
    border: 1px solid rgb(255, 255, 255);
    -webkit-box-shadow: none;
            box-shadow: none;
    cursor: pointer;
}

@media (max-width: 1400px) {
    .hero-text-container h1 {
        font-size: 3rem;
    }

    .hero-text-container h3 {
        font-size: 1.3rem;
    }

    .hero-text-container p {
        font-size: 15px;
    }
}

@media (max-width: 1023px) {
    .hero-text-container {
        width: 100%;
    }

    .hero-text-container h1 {
        font-size: 2.5rem;
    }

    .hero-text-container h3 {
        font-size: 1.3rem;
    }

    .hero-text-container p {
        font-size: 15px;
    }
}

@media (max-width: 450px) {
    .hero-text-container h1 {
        font-size: 2rem;
    }

    .hero-text-container h3 {
        font-size: 1rem;
    }

    .hero-text-container p {
        font-size: 12px;
    }

    .mobile-brand-links .mobile-logos {
        font-size: 1.5rem;
    }
}

/* About us Section */

.aboutus-container {
    padding: 80px 0px;
    padding-top: 7rem !important;
}

.aboutus-main-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.aboutus-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
}

.aboutus-flex {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
    padding: 0 20px;
}

.aboutus-container h2 {
    font-size: 45px;
    margin-bottom: 20px;
    color: var(--dark-blue);
}


.aboutus-container p {
    font-size: 18px;
    Line-height: 1.5;
    color: #000;
    margin-bottom: 20px;
}

.aboutus-container img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 20px;
    width: auto;
    border-radius: 12px;
}


.aboutus-btn {
    text-decoration: none;
    color: #fff;
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    background-color: var(--light-blue);
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    margin-top: 5px;
}

.aboutus-btn:hover {
    -webkit-transform: translateY(-3px);
        -ms-transform: translateY(-3px);
            transform: translateY(-3px);
    background-color: #fff;
    color: var(--light-blue);

}

@media screen and (max-width: 1420px) {
    .aboutus-container {
        padding: 40px 0px;
    }

    .aboutus-container h2 {
        font-size: 3vw;
    }

    .aboutus-container p {
        font-size: 1.3vw;
    }

    .aboutus-container img {
        width: 43%;
    }

    .aboutus-btn {
        font-size: 15px;
        padding: 8px 15px;
    }
}

@media screen and (max-width: 900px) {
    .aboutus-container {
        padding: 20px 0px;
        padding-top: 5rem !important;
    }

    .aboutus-main-container {
        padding: 0 30px;
    }

    .aboutus-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        gap: 0;
    }

    .aboutus-flex {
        max-width: 100%;
        padding: 0;
    }

    .aboutus-container h2 {
        font-size: 31px;
    }

    .aboutus-container p {
        font-size: 16px;
    }

    .aboutus-container img {
        width: 100%;
    }

    .aboutus-btn {
        font-size: 16px;
        padding: 8px 16px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 400px) {
    .aboutus-container p {
        font-size: 16px;
    }
}


.Our-Services-container {
    margin: 20px 30px 0;
    padding-bottom: 20px;
}

.our-services-heading {
    font-size: 45px;
    margin-bottom: 20px;
    color: var(--dark-blue);
    text-align: center;
}


.our-services-card-wapper {
    margin: auto 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.our-services-card {
    background-color: #fff;
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    margin: 10px 20px;
    max-width: 435px;
    min-width: 230px;
    overflow: hidden;
    position: relative;
    text-align: right;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.our-services-card *,
.our-services-card *:before,
.our-services-card *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    transition: all 0.45s ease;
}

.our-services-card h2 {
    position: absolute;
    top: 10%;
    left: 10%;
    font-size: 35px;
    z-index: 1;
    -webkit-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
    text-align: left;
}

.our-services-card:hover h2 {
    -webkit-transform: translateX(-20%);
        -ms-transform: translateX(-20%);
            transform: translateX(-20%);
    opacity: 0;
}

.our-services-card img {
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    max-width: 100%;
    vertical-align: top;
    -webkit-filter: brightness(0.6);
            filter: brightness(0.6);
}

.our-services-card:before,
.our-services-card:after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
    background-color: var(--dark-blue);
    opacity: 0.5;
    -webkit-transition: all 0.45s ease;
    -o-transition: all 0.45s ease;
    transition: all 0.45s ease;
}

.our-services-card:before {
    -webkit-transform: skew(30deg) translateX(80%);
    -ms-transform: skew(30deg) translateX(80%);
        transform: skew(30deg) translateX(80%);
}

.our-services-card:after {
    -webkit-transform: skew(-30deg) translateX(70%);
    -ms-transform: skew(-30deg) translateX(70%);
        transform: skew(-30deg) translateX(70%);
}

.our-services-card figcaption {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 1;
    bottom: 0;
    padding: 30px 20px 20px 30%;
    cursor: pointer;
}

.our-services-card figcaption:before,
.our-services-card figcaption:after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--extra-dark-blue);
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    content: '';
    opacity: 0.5;
    z-index: -1;
}

.our-services-card figcaption:before {
    -webkit-transform: skew(30deg) translateX(100%);
    -ms-transform: skew(30deg) translateX(100%);
        transform: skew(30deg) translateX(100%);
}

.our-services-card figcaption:after {
    -webkit-transform: skew(-30deg) translateX(90%);
    -ms-transform: skew(-30deg) translateX(90%);
        transform: skew(-30deg) translateX(90%);
}

.our-services-card h3,
.our-services-card p {
    margin: 0;
    opacity: 0;
    letter-spacing: .5px;
}

.our-services-card h3 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1em;
    text-transform: uppercase;
}

.our-services-card p {
    font-size: 21px;
}

.our-services-card a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.our-services-card:hover h3,
.our-services-card.hover h3,
.our-services-card:hover p,
.our-services-card.hover p {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
        transform: translateY(0);
    opacity: 0.9;
}

.our-services-card:hover:before,
.our-services-card.hover:before {
    -webkit-transform: skew(30deg) translateX(30%);
    -ms-transform: skew(30deg) translateX(30%);
        transform: skew(30deg) translateX(30%);
    -webkit-transition-delay: 0.05s;
    -o-transition-delay: 0.05s;
       transition-delay: 0.05s;
}

.our-services-card:hover:after,
.our-services-card.hover:after {
    -webkit-transform: skew(-30deg) translateX(20%);
    -ms-transform: skew(-30deg) translateX(20%);
        transform: skew(-30deg) translateX(20%);
}

.our-services-card:hover figcaption:before,
.our-services-card.hover figcaption:before {
    -webkit-transform: skew(30deg) translateX(50%);
    -ms-transform: skew(30deg) translateX(50%);
        transform: skew(30deg) translateX(50%);
    -webkit-transition-delay: 0.15s;
    -o-transition-delay: 0.15s;
       transition-delay: 0.15s;
}

.our-services-card:hover figcaption:after,
.our-services-card.hover figcaption:after {
    -webkit-transform: skew(-30deg) translateX(40%);
    -ms-transform: skew(-30deg) translateX(40%);
        transform: skew(-30deg) translateX(40%);
    -webkit-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
       transition-delay: 0.1s;
}

@media screen and (max-width: 1420px) {
    .our-services-heading {
        font-size: 45px;
    }
}

@media screen and (max-width: 1200px) {
    .our-services-card h2 {
        top: 5%;
    }

    .our-services-card figcaption {
        padding: 15px 20px 20px 30%;
    }
}

@media screen and (max-width: 900px) {
    .our-services-heading {
        font-size: 31px;
        margin-bottom: 20px;
    }

    .our-services-card h2 {
        top: 15%;
    }
}

@media (min-width: 1000px) and (max-width: 1170px) {
    .our-services-card {
        margin: 20px 10px !important;
    }

    .our-services-card-wapper {
        margin: 0;
    }
}

@media(max-width:670px) {
    .our-services-card {
        max-width: 600px;
    }

    .our-services-card h2 {
        font-size: 35px;
    }

    .our-services-card p {
        font-size: 17px;
    }

    .our-services-card figcaption {
        padding: 25px 20px 20px 30%;
    }
}

@media(max-width:550px) {
    .our-services-card h2 {
        font-size: 30px;
    }
}

@media(max-width:470px) {
    /* .our-services-card h2 {
        font-size: 25px;
    } */

    .our-services-card p {
        font-size: 14px;
    }

    .our-services-card figcaption {
        padding: 20px 20px 20px 20%;
    }
}

@media (max-width: 400px) {
    .our-services-card h2 {
        font-size: 20px;
    }
}

@media (min-width:650px) and (max-width:850px) {
    .our-services-card h2 {
        font-size: 25px;
    }

    .our-services-card p {
        font-size: 16px;
    }

    .our-services-card figcaption {
        padding: 15px 20px 20px 15%;
    }
}

@media(max-width:999px) {
    .our-services-card-wapper {
        margin: 0;
    }

    .our-services-card {
        margin: 20px 0;
    }
}

.slick-prev:before,
.slick-next:before,
.slick-dots li.slick-active button:before {
    color: var(--extra-dark-blue) !important;
    opacity: .85 !important;
}

.slick-dots {
    margin: -15px 0 !important;
}

.slick-dots li.slick-active button {
    padding-top: 15px;
}

.slick-slide {
    margin: 0 10px !important;
}


.marquee-text-container {
    padding: 5rem 0;
}

.marquee-text {
    overflow: hidden;
    position: relative;
    bottom: 25%;
    cursor: pointer;
}

@font-face {
    font-family: 'EurostileExtended';
    src: url('../fonts/Eurostile\ Extended\ Regular.ttf') format('truetype');
}

.marquee__list a {
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: bolder;
}

.marquee {
    height: 1.5em;
    overflow: hidden;
    font-size: calc(2.5rem + 4.5*((100vw - 42rem)/81));
    line-height: 2;

}

.marquee:nth-child(odd) .marquee__track {
    animation-direction: reverse;
}

.marquee__track {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap;
    -webkit-animation: scan 150s infinite linear;
    animation: scan 100s infinite linear;
    will-change: transform
}


.marquee__list {
    white-space: nowrap;
    list-style-type: none
}

.marquee__item {
    position: relative;
    top: -.35em;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    white-space: nowrap;
    text-transform: uppercase;
    font-family: 'EurostileExtended', sans-serif;
    font-weight: bolder;
}

.marquee__item a {
    -webkit-transition: all 128ms ease-in;
    -o-transition: all 128ms ease-in;
    transition: all 128ms ease-in
}


.marquee__item::before {
    font-size: calc(1.6rem + 2.4*((100vw - 42rem)/81));
    content: "";
    position: relative;
    top: .3em;
    margin-right: .4em;
    margin-left: .5em
}

.marquee__item {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: currentcolor;
}

.marquee__item a:hover {
    outline: 0;
    -webkit-text-fill-color: currentcolor;
    -webkit-text-stroke-width: 0;
    -webkit-text-stroke-color: transparent;
}

.marquee__item+.marquee__item {
    margin-left: -.3em
}

@-webkit-keyframes scan {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        -webkit-transform: translate3d(-66.666%, 0, 0);
        transform: translate3d(-66.666%, 0, 0)
    }
}

@keyframes scan {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    to {
        -webkit-transform: translate3d(-66.666%, 0, 0);
        transform: translate3d(-66.666%, 0, 0)
    }
}




@media (min-width: 1231px) {

    .marquee {
        font-size: 4rem;
    }

    .marquee__item::before {
        font-size: 4rem
    }
}

@media screen and (max-width: 769px) {
    .marquee-text-container {
        padding: 3rem 0;
    }
}

@media screen and (max-width: 500px) {
    .marquee-text-container {
        padding: 2rem 0;
    }

    .marquee__item {
        -webkit-text-stroke-width: 1px;
    }
}

@media (max-width: 220px) {

    .marquee {
        font-size: 2.5rem
    }

    .marquee__item::before {
        font-size: 1.6rem
    }
}


.testimonial-container {
    background: url("../images/testi-2-dull.jpg") center/cover fixed;
    min-height: 700px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.our-testimonial-heading {
    font-size: 45px;
    margin-bottom: 20px;
    color: var(--dark-blue);
    text-align: center;
}

@media screen and (max-width: 1420px) {
    .our-testimonial-heading {
        font-size: 45px;
    }
}

@media screen and (max-width: 900px) {
    .our-testimonial-heading {
        font-size: 31px;
        margin-bottom: 20px;
    }
}

/* Testimonial Cards */
.testimonial-card {
    position: relative;
    min-height: 250px !important;
    border-radius: 10px;
    margin: 0 300px !important;
}

.testimonial-quote-base {
    background-color: #fff;
    color: var(--dark-blue);
    font-weight: bold;
    padding: 40px;
    border-radius: 10px;
    height: auto;
    cursor: pointer;
}


.testimonial-quote-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--dark-blue);
}

.testimonial-quote-author {
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 10pt;
    font-weight: bold;
}

.testimonial-quote-source {
    font-size: 10pt;
}

.testimonial-quote-text {
    margin: 15px 20px;
    text-align: justify;
}

.testimonial-quote-userpic {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 20px;
}

.top-left::before,
.bottom-right::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 67px;
}

.top-left::before {
    top: 0;
    left: 0;
    background: url("../images/svg/topLeft.svg") center/cover no-repeat;
}

.bottom-right::after {
    bottom: 0;
    right: 0;
    background: url("../images/svg/downRight.svg") center/cover no-repeat;
}

.testimonial-quote .testimonial-quote-qmark {
    position: absolute;
    top: -60px;
    right: 10px;
    font-size: 280pt;
    color: var(--dark-blue);
    opacity: 0.25;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    height: 100%;
}

@media screen and (max-width: 1100px) {
    .testimonial-card {
        margin: 0 150px !important;
    }
}

@media screen and (min-width: 768px) {

    .testimonial-quote-source,
    .testimonial-quote-author {
        font-size: 12pt;
    }

    .testimonial-quote-meta {
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
}


@media screen and (max-width: 780px) {

    .testimonial-card {
        margin: 0 50px !important;
    }

    .testimonial-quote-base {
        padding-left: 40px;
        padding-right: 40px;
    }

    .testimonial-quote-meta {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        text-align: center;
    }

    .testimonial-quote-userpic {
        margin: 0 auto;
        margin-bottom: 10px;
    }

    .testimonial-quote-text {
        font-size: 12px;
        margin: 15px 0;
    }

    .testimonial-quote .testimonial-quote-qmark {
        top: -15px;
        font-size: 180pt;
    }


}

@media screen and (max-width: 400px) {
    .testimonial-card {
        margin: 0 30px !important;
    }
}

.contactus-main-container {
    width: 100%;
    padding: 5rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    color: #fff;
    background-color: #fff;
}

.contactus-container {
    max-width: 960px;
    margin: auto;
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr .5rem 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem;
    -webkit-box-shadow: 0 0 1rem hsla(0, 0%, 0%, 0.16);
            box-shadow: 0 0 1rem hsla(0, 0%, 0%, 0.16);
    border-radius: 0.5rem;
    overflow: hidden;
}

.contactus-form-container {
    padding: 20px;
}

.contactus-form-container h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.contactus-from {
    display: -ms-grid;
    display: grid;
    row-gap: 1rem;
}

.contactus-from input,
.contactus-from textarea,
.contact-submit-btn {
    width: 100%;
    border: 1px solid var(--dark-blue);
    outline: none;
    background-color: #fff;
    overflow: hidden;
    padding: 10px;
    font-size: 0.9rem;
    color: var(--dark-blue);
    border-radius: 0.4rem;
}

.contactus-from input::-webkit-input-placeholder, .contactus-from textarea::-webkit-input-placeholder {
    color: var(--dark-blue);
}

.contactus-from input::-moz-placeholder, .contactus-from textarea::-moz-placeholder {
    color: var(--dark-blue);
}

.contactus-from input:-ms-input-placeholder, .contactus-from textarea:-ms-input-placeholder {
    color: var(--dark-blue);
}

.contactus-from input::-ms-input-placeholder, .contactus-from textarea::-ms-input-placeholder {
    color: var(--dark-blue);
}

.contactus-from input::placeholder,
.contactus-from textarea::placeholder {
    color: var(--dark-blue);
}

.contactus-from textarea {
    font-family: inherit;
    font-size: inherit;
    resize: none;
    height: 200px;
}

.contactus-from .contact-submit-btn {
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
}


.contact-us-map iframe {
    width: 100%;
    height: 100%;
}

.arrow::after {
    display: inline-block;
    padding-left: 8px;
    content: "➞";
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.contact-submit-btn:hover::after {
    -webkit-transform: translateX(8px);
        -ms-transform: translateX(8px);
            transform: translateX(8px);
}

.contact-form-mailStatus-text {
    font-size: 17px;
    display: none;
    text-align: center;
}


@media screen and (max-width: 964px) {
    .contactus-container {
        margin: 0 auto;
        width: 90%;
    }
}

@media screen and (max-width: 700px) {
    .contactus-container {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-us-map img {
        height: 100%;
    }
}

.footer-contact-section-sub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 3% 10%;
    padding-bottom: 2%;
    border-top: 2px solid var(--extra-dark-blue);
}

.footer-contact-section,
.footer-main-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: self-start;
        -ms-flex-align: self-start;
            align-items: self-start;
}

.footer-main-section {
    margin: 30px 20px 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.footer-contact-section {
    border-bottom: 2px solid var(--extra-dark-blue);
    padding: 0 20px 30px;
}

.address-container-heading,
.phone-container-heading,
.mail-container-heading,
.ourServices-footer-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 5px;
}

.logoandAboutus a {
    padding-bottom: 20px;

}

.ourServices-footer-heading {
    padding-bottom: 10px;
}

.ourServices-footer {
    padding-bottom: 10px;
}

.footer-contact-section i,
.ourServices-footer-heading i {
    color: var(--dark-blue);
    padding: 10px;
    font-size: 25px;
    padding-left: 0;
}

.address-container,
.logoandAboutus {
    width: 35%;
}


.address-container-heading p,
.phone-container-heading p,
.mail-container-heading p,
.ourServices-footer p {
    font-size: 25px;
    font-weight: 500;
}

.phone-value p{
    color: #000;
}

.phone-value p:hover{
    color: var(--dark-blue);
}

.footer-copyright-area {
    background-color: var(--dark-blue);
    padding: 1% 0%;
    text-align: center;
    -webkit-box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
            box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
}

.footer-copyright-area p,
.footer-copyright-area a {
    color: #fff;
    font-size: 15px;
}

.footer-copyright-area a:hover {
    text-decoration: underline;
}

.ourServices-footer li {
    padding-bottom: 8px;
}


.ourServices-footer li a {
    color: #000;
    font-size: 20px;
    -webkit-transition: color .1s ease-in;
    -o-transition: color .1s ease-in;
    transition: color .1s ease-in;
}

.ourServices-footer li a:hover {
    color: var(--extra-light-blue);
}

.socialMediaLinks-footer a {
    padding-right: 5px;
    cursor: pointer;
}

.socialMediaLinks-footer a i {
    font-size: 25px;
    color: #fff;
    padding: 15px;
    border-radius: 50%;
    background-color: var(--dark-blue);
    -webkit-transition: color .3s ease-in;
    -o-transition: color .3s ease-in;
    transition: color .3s ease-in;
}


.socialMediaLinks-footer .fa-instagram,
.socialMediaLinks-footer,
.socialMediaLinks-footer .fa-whatsapp {
    padding: 15px 17px;
}

.socialMediaLinks-footer .fa-youtube {
    padding: 15px 13px;
}

.socialMediaLinks-footer .fa-facebook:hover {
    background-color: #1877F2;
}

.socialMediaLinks-footer .fa-instagram:hover {
    background: -o-radial-gradient(30% 107%, circle, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-text-fill-color: #fff;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

.socialMediaLinks-footer .fa-x-twitter:hover {
    background-color: #000;
}

.socialMediaLinks-footer .fa-youtube:hover {
    background-color: #cd201f;
}

.socialMediaLinks-footer .fa-whatsapp:hover {
    background-color: #25D366;
}

@media screen and (max-width: 1300px) {
    .footer-contact-section-sub {
        padding: 3% 6%;
    }
}

@media screen and (max-width: 1100px) {
    .nav__logo img {
        height: 50px;
    }

    .address-container-heading p,
    .phone-container-heading p,
    .mail-container-heading p,
    .ourServices-footer p,
    .socialMediaLinks-footer a i {
        font-size: 20px !important;
    }

    .socialMediaLinks-footer a i {
        padding: 10px;
    }

    .socialMediaLinks-footer .fa-instagram,
    .socialMediaLinks-footer,
    .socialMediaLinks-footer .fa-whatsapp {
        padding: 10px 11px;
    }

    .socialMediaLinks-footer .fa-youtube {
        padding: 10px 9px;
    }

    .footer-contact-section-sub p,
    .ourServices-footer li a {
        font-size: 15px;
    }

}

@media screen and (max-width: 950px) {
    .footer-contact-section-sub {
        padding: 3% 4%;
    }

    .socialMediaLinks-footer a i {
        font-size: 15px !important;
    }
}

@media screen and (max-width: 769px) {
    .footer-contact-section-sub {
        padding: 5%;
    }

    .footer-contact-section,
    .footer-main-section {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .footer-main-section {
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }

    .address-container,
    .logoandAboutus {
        width: 100%;
    }

    .logoandAboutus {
        text-align: justify;
    }

    .footer-contact-section i,
    .ourServices-footer-heading i {
        font-size: 22px;
    }

    .address-container,
    .phone-container,
    .logoandAboutus {
        padding-bottom: 10px;
    }

    .footer-copyright-area {
        padding: 2% 0;
    }

    .socialMediaLinks-footer {
        padding: 10px 0 11px;
    }
}

@media screen and (max-width: 500px) {

    .footer-copyright-area p,
    .footer-copyright-area a {
        font-size: 10px;
    }
}


.gallery-main-container {
    margin: 9rem 0rem;
    width: 100%;
    padding: 0 4rem;
}

.gallery-heading,
.project-heading {
    display: block;
    text-align: center;
    font-size: 4rem;
    color: var(--extra-light-blue);
    margin-bottom: 3rem;
}

.gallery-container {
    width: 100%;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.gallery-image-container {
    -ms-flex: 25%;
    -webkit-box-flex: 25%;
            flex: 25%;
    max-width: 25%;
    padding: 0 4px;
}

.gallery-image-container img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
    padding: 10px;
    border-radius: 15px;
}

@media screen and (max-width: 1024px) {

    .gallery-main-container {
        margin: 7rem 0rem;
        padding: 0 2rem;
    }

    .gallery-heading,
    .project-heading {
        font-size: 3rem;
    }
}

@media screen and (max-width: 769px) {

    .gallery-main-container {
        padding: 0 1rem;
    }

    .gallery-heading,
    .project-heading {
        font-size: 2rem;
    }
}

@media screen and (max-width: 425px) {

    .gallery-main-container {
        margin: 6rem 0rem;
    }

    .gallery-heading,
    .project-heading {
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 1200px) {
    .gallery-image-container img {
        padding: 5px;
    }
}

@media screen and (max-width: 900px) {
    .gallery-image-container {
        -ms-flex: 50%;
        -webkit-box-flex: 50%;
                flex: 50%;
        max-width: 50%;
    }
}

@media screen and (max-width: 600px) {
    .gallery-image-container {
        -ms-flex: 100%;
        -webkit-box-flex: 100%;
                flex: 100%;
        max-width: 100%;
    }

    .gallery-image-container img {
        padding: 10px 0;
    }

    .gallery-heading {
        margin-bottom: 2rem;
    }
}

.scrollToTopBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: var(--extra-light-blue);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    font-size: 30px;
    height: 45px;
    width: 45px;
    position: fixed;
    bottom: 80px;
    right: 40px;
    z-index: 100;
    opacity: 0;
    -webkit-transform: translateY(100px);
        -ms-transform: translateY(100px);
            transform: translateY(100px);
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease
}

.showBtn {
    opacity: 1;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0)
}

.project-container {
    margin: 9rem 0rem;
    width: 100%;
    padding: 0 3rem;
}

.project-container-image {
    display: -ms-grid;
    display: grid;
    gap: 10px;
    -ms-grid-rows: 1fr 10px 1fr;
    grid-template-rows: repeat(2, 1fr);
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    justify-items: stretch;
    width: 36%;
}

.project-container-image > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

.project-container-image > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}

.project-container-image > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
}

.project-container-image > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
}

.project-img {
    width: 17vw;
    height: 12vw;
    border-radius: 10px;
}



.project-container-imageandcontent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 3rem;
}

.project-container-content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0px 0 0px 70px;
    font-size: 1.3vw;
    color: var(--extra-light-blue);
}

.project-container-content li {
    padding: 15px 0;
}


.project-heading {
    margin-bottom: 1rem;
}

.project-tab-titles {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-bottom: 3rem;
}

.project-tab-links {
    color: var(--dark-blue);
    font-size: 1.5rem;
    padding: 2rem 7rem;
    cursor: pointer;
    position: relative;
}

.project-tab-links::after {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '';
    color: transparent;
    background: var(--dark-blue);
    height: 3px;
    -webkit-transition: .2s all ease;
    -o-transition: .2s all ease;
    transition: .2s all ease;
    border-radius: 5px;
}

.project-tab-links.project-active-link::after {
    width: 30%;
}

.project-tab-contents.project-active-tab {
    display: block;
}

.project-tab-contents {
    display: none;
}


@media (max-width: 1600px) {
    .project-container-content li {
        padding: 5px 0;
        padding-top: 15px;
    }

}

@media (max-width: 1150px) {
    .project-container {
        padding: 0 2rem;
    }

    .project-container-content {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        padding: 20px 0 20px 40px;
    }

    .project-container-content li {
        padding: 0;
        padding-top: 15px;
    }

    .project-container-content li:last-child {
        padding-bottom: 15px;
    }

    .project-tab-links {
        padding: 2rem 3rem;
    }

    .project-tab-titles {
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 1024px) {
    .project-container {
        margin: 7rem 0rem;
    }

    .project-container-imageandcontent {
        margin-top: 1rem;
    }
}


@media (max-width: 768px) {
    .project-container {
        margin: 7rem 0rem 2rem 0;
    }

    .project-container-imageandcontent {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .project-img {
        width: 100%;
        height: 100%;
    }

    .project-container-image {
        width: 100%;
    }

    .project-container-content {
        padding: 10px 0;
        text-align: justify;
        font-size: 3.3vw;
    }

    .project-tab-links {
        padding: 2rem 1rem;
        font-size: 1rem;
    }

    .project-container-imageandcontent {
        margin-top: 1rem;
    }
}

@media (max-width: 426px) {
    .project-container {
        margin: 6rem 0rem 2rem;
    }

    .project-container {
        padding: 0 1rem;
    }

    .project-tab-links {
        padding: 2rem 0.5rem;
        font-size: 1rem;
    }

    .project-heading {
        margin-bottom: 0rem;
    }
}