/*

Border-Radius : 12px, 24px, 36px
Font-families : Poppins
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
Colors: #294084, #296684, gray, rgb(82, 82, 82)
font-sizes: 14px, 18px, 23px, 24px, 36px, 40px, 60px, 72px, 88px

*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-color: #fafafa;
    width: 100%;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAUCAMAAACtdX32AAAAdVBMVEUAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhMdQaAAAAJ3RSTlMAAAECAwQGBwsOFBwkJTg5RUZ4eYCHkJefpaytrsXGy8zW3+Do8vNn0bsyAAAAYElEQVR42tXROwJDQAAA0Ymw1p9kiT+L5P5HVEi3qJn2lcPjtIuzUIJ/rhIGy762N3XaThqMN1ZPALsZPEzG1x8LrFL77DHBnEMxBewz0fJ6LyFHTPL7xhwzWYrJ9z22AqmQBV757MHfAAAAAElFTkSuQmCC);
    background-position: 100%;
    background-repeat: no-repeat;
    border: 1px solid #ccc;
    padding: 0.5rem;
    border-radius: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #29408402;
}

/* width */
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #294084;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #b30000;
}

::-webkit-scrollbar-track {
    margin-right: 125px;
    margin-left: 125px;
}


/** Helper Classes **/

/* Navigation Overlay */
.back-active {
    width: 100vw;
    height: 100vh;
    background: black;
    position: fixed;
    top: 0;
    opacity: 0.4;
    z-index: 2;
}

.get-qoute-button {
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}

.get-quote-overlay {
    width: 100vw;
    height: 100vh;
    background-color: rgb(0, 0, 0, 0.4);
    position: fixed;
    backdrop-filter: blur(5px);
    z-index: 1;
    display: none;
}

.get-quote-form {
    width: 36%;
    height: fit-content;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 2;
    border-radius: 10px;
    position: fixed;
    left: 50%;
    top: 50%;
    backdrop-filter:blur(10px);
    transform: translate(-50%, -50%);
    display: none;
    transition: all 0.5s ease-in-out;
    animation: get-qoute-form-animation .5s ease-in-out;
}

@keyframes get-qoute-form-animation {
    from {
        opacity: 0;
        scale: .5;
    }
    to {
        opacity: 1;
        scale: 1;
    }
}

.get-quote-form .form-container {
    padding: 20px 20px 0 20px;
    height: 100%;
}

.get-quote-form .form-title-container {
    color: #263A76;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}


.get-quote-form .form-title-container p {
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 18px;
}

.get-quote-form .form-title-container i {
    cursor: pointer;
    font-size: 18px;
    color: rgb(66, 66, 66);
}

.get-quote-form .form-title-container i:hover {
    color: #000;
}

.get-quote-form .form-input {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 20px;
    z-index: 5;
}

.get-quote-form .form-input input {
    height: 40px;
    padding: 10px;
    border-radius: 5px;
    padding-left: 10px;
    background-color: white;
    opacity: 1;
    border: none;
}

.get-quote-form .form-input input:focus {
    outline: none;
}

.get-quote-form .form-input select {
    border-radius: 5px;
    padding: 10px;
    border: none;
}


.get-quote-form .form-input #moveSize option {
    font-size: 15px;
    padding: 15px 10px;
    border: none;
}

.get-quote-form .form-input select:focus {
    outline: none;
}

.get-quote-form textarea {
    margin-top: 20px;
    border-radius: 5px;
    width: 100%;
    height: 180px;
    overflow: scroll;
    overflow-x: hidden;
    padding: 10px;
    border: none;
}

.get-quote-form textarea:focus {
    outline: none;
}

.get-quote-form .form-container button {
    margin-top: 14px;
    margin-bottom: 20px;
    width: 100%;
    cursor: pointer;
    font-weight: 500;
    padding: 10px 0;
    font-size: 18px;
    letter-spacing: 3px;
    border: none;
    color: white;
    background: linear-gradient(89.47deg, #263A76 0%, rgba(14, 50, 154, 0.86) 100%);
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
}


.get-quote-form .form-container button:hover {
    background: linear-gradient(89.47deg, rgba(14, 50, 154, 0.86) 0%, #263A76 100%);
    transform: translateY(-5px);
}

.get-qoute-button button {
    border: none;
    position: fixed;
    bottom: 30px;
    right: 40px;
    color: whitesmoke;
    letter-spacing: 1px;
    padding: 10px 25px;
    font-size: 18px;
    border-radius: 100px;
    background: linear-gradient(267.08deg, #294084 5.15%, #4668cc 94.65%);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 1;
    transition: all 0.2s ease-in-out;
}

.get-qoute-button button:hover {
    background: linear-gradient(267.08deg, #4668cc 5.15%, #294084 94.65%);
    transform: translateY(-5px);
}


/* Ignore this code (Materialize CSS Code) */
.carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 400px;
    -webkit-perspective: 500px;
    perspective: 500px;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
}

.carousel.carousel-slider {
    top: 0;
    left: 0;
}

.carousel.carousel-slider .carousel-fixed-item {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    z-index: 1;
}

.carousel.carousel-slider .carousel-fixed-item.with-indicators {
    bottom: 68px;
}

.carousel.carousel-slider .carousel-item {
    width: 100%;
    height: 100%;
    min-height: 400px;
    position: absolute;
    top: 0;
    left: 0;
}

.carousel.carousel-slider .carousel-item h2 {
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
}

.carousel.carousel-slider .carousel-item p {
    font-size: 15px;
}

.carousel .carousel-item {
    visibility: hidden;
    width: 200px;
    height: 200px;
    position: absolute;
    top: 0;
    left: 0;
}

.carousel .carousel-item>img {
    width: 100%;
}

.carousel .indicators {
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
}

.carousel .indicators .indicator-item {
    display: inline-block;
    position: relative;
    cursor: pointer;
    height: 8px;
    width: 8px;
    margin: 24px 4px;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
    border-radius: 50%;
}

.carousel .indicators .indicator-item.active {
    background-color: #fff;
}

.carousel.scrolling .carousel-item .materialboxed,
.carousel .carousel-item:not(.active) .materialboxed {
    pointer-events: none;
}

/** Navbar **/
.navbar {
    height: 10vh;
    width: 100%;
    background: whitesmoke;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .navbar-logo {
    margin-left: 150px; 
    width: 350px;
    font-size: 24px;
    font-weight: 600;
    color: #000;
    height: 50px;
    text-decoration: none;
    display: flex;
}

.navbar .navbar-logo img {
    height: 100%;
    width: auto;
}

.navbar .navbar-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 0 auto;
}

.navbar .navbar-links li {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;

}

.navbar .navbar-links li i {
    display: none;
}

.navbar .navbar-links li a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.5s;
    font-size: 18px;
}

.navbar .navbar-links li a:hover {
    color: gray;
}

.navbar .cta-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-right: 150px;
}

.navbar .cta-quote button {
    border: none;
    padding: 4px 18px;
    background-color: #294084;
    border-radius: 4px;
    color: white;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
}

.navbar .cta-quote form {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar .cta-quote form input {
    width: 200px;
    border-radius: 6px;
    border: 1px solid black;
}

.navbar .cta-quote i {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    margin-left: 10px;
    color: #000;
}


.navbar-mobile {
    height: 100vh;
    width: 70vw;
    background-color: whitesmoke;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 3;

    display: none;
    align-items: center;
    justify-content: center;
}

.navbar-mobile-list-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.navbar-mobile-icon {
    color: gray;
    font-weight: bold;
    position: absolute;
    cursor: pointer;
    top: 0;
    right: 0;
    margin-top: 25px;
    margin-right: 25px;
    font-size: 18px;
}

.navbar-mobile-links {
    list-style: none;
}

.navbar-mobile-links a {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    color: gray;
}

/* Hero Section */
.hero-section-main {
    background-color: whitesmoke;
    height: 90vh;
    display: flex;
    flex-direction: column;
}

.hero-section-main img {
    position: absolute;
    right: 110px;
    top: 25%;
    width: 600px;
    height: auto;
}

.hero-section {
    width: 80%;
    height: 70vh;
    margin-left: 150px;
    margin-right: 150px;
    border-radius: 12px;
}

.hero-section .hero-section-container {
    height: 100%;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-direction: column;
}

.hero-section .hero-section-container .hero-section-headings {
    color: #333;
    text-shadow: 0px 5px 3px rgba(0, 0, 0, 0.25);
    visibility: hidden;
}

.hero-section .hero-section-container .hero-section-headings h1 {
    font-size: 40px;
    font-weight: 400;
}

.hero-section .hero-section-container .hero-section-headings h2 {
    font-size: 72px;
    width: 50%;
    line-height: 90px;
    margin: 20px 0;
}

.hero-section .hero-section-container .hero-section-headings p {
    font-size: 24px;
    color: #444;
    font-weight: 600;
}

.hero-section .hero-section-container .hero-section-buttons button {
    width: auto;
    padding: 6px 0;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.hero-section .hero-section-container .hero-section-buttons button:hover {
    background-color: #302a5b;
}

.hero-section .hero-section-container .hero-section-buttons {
    display: flex;
    align-items: center;
    visibility: hidden;
}

.hero-section .hero-section-container .hero-section-buttons .hero-contact-icons {
    width: auto;
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 25px;
}

.hero-section .hero-section-container .hero-section-buttons .hero-contact-icons .hero-contact-icon {
    font-size: 25px;
    color: #494084;
    text-decoration: none !important;
    transition: all 0.2s ease-in-out;
}

.hero-section .hero-section-container .hero-section-buttons .hero-contact-icons .hero-contact-icon:hover {
    color: #302a5b;
    transform: translateY(-5px);
}

.hero-section .hero-section-container .hero-section-buttons .hero-button-1 {
    background-color: #494084;
    color: white;
    border: none;
    width: auto;
    font-size: 18px;
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
    letter-spacing: 2px;
    padding: 8px 20px;
    margin-right: 50px;
}

.hero-section-contacts {
    display: flex;
    width: 84%;
    gap: 20px;
    visibility: hidden;
}

.hero-section-contacts .footer-contact-link i {
    color: #294084;
}

.hero-section-contacts .footer-contact-link a {
    text-decoration: none;
    font-weight: 600;
    color: #294084;
}

.hero-section-contacts .footer-contact-link:hover a {
    color: #0f1833;
}

.hero-section-contacts .footer-contact-link:hover .hero-phone {
    color: #0f1833;
}

/* Achievements */
.achievements {
    height: auto;
    margin: 100px 150px 100px 150px;
    display: grid;
    justify-content: center;
    grid-template-columns: auto auto auto auto;
}

.achievements-section .achievements-heading-container {
    margin-bottom: 100px;
}

.achievements-section .achievements-heading-container h2 {
    color: #294084;
    text-align: center;
    letter-spacing: 3px;
    font-weight: 600;
    margin-top: 80px;
}

.achievements-section .achievements-heading-container hr {
    width: 10%;
    border: 1px solid #294084;
    margin: 10px auto;
}

.achievements .achievement-card {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    visibility: hidden;
}

.achievements .achievement-card .achievement-card-img {
    margin-bottom: 30px;
    width: 100px;
    height: 100px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.achievements .achievement-card .achievement-card-img img {
    width: 100%;
    height: auto;
}

.achievements .achievement-card .achievement-heading span {
    font-size: 36px;
    font-weight: 700;
    color: #294084;
}

.achievements .achievement-card .achievement-heading {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
    color: #6c6c6c;
}

.achievements .achievement-card .achievement-text {
    text-align: center;
    font-weight: 500;
    font-size: 20px;
    color: #6c6c6c;
    width: 100%;
    padding: 0 20px;
}

/* Our Services */
.our-services {
    background-color: #29408408;
    width: 100%;
    padding: 10px 0;
}

.services {
    margin-right: 150px;
    margin-left: 150px;
}

.services .services-heading-container {
    margin-bottom: 100px;
}

.services .services-heading-container h2 {
    color: #294084;
    text-align: center;
    letter-spacing: 3px;
    font-weight: 600;
    margin-top: 80px;
}

.services .services-heading-container hr {
    width: 10%;
    border: 1px solid #294084;
    margin: 10px auto;
}

.services .services-main-container .service {
    width: 100%;
    margin-bottom: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 200px;
}

.services .services-main-container {
    overflow: hidden;
}

.services .services-main-container .service .service-info {
    width: 40%;
    visibility: hidden;
}

.services .services-main-container .service .service-info .service-number {
    color: #bdc7ff4e;
    font-size: 88px;
    font-weight: 700;
    text-align: center;
}

.services .services-main-container .service .service-info h3 {
    font-size: 36px;
    text-align: center;
}

.services .services-main-container .service .service-info p {
    margin: 20px 0;
    font-size: 18px;
    color: #525252;
    text-align: center;
}

.services .services-main-container .service .service-info .service-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.services .services-main-container .service .service-info .service-link a {
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 2px;
    color: #296684;
}

.services .services-main-container .service .service-image {
    width: 350px;
    height: auto;
}

.service-image-1 {
    visibility: hidden;
}

.services .services-main-container .service .service-image img {
    width: 100%;
    height: 100%;
}

/* Our Blogs */
.services {
    margin-top: 100px;
}

.services .blogs-main-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
    height: fit-content;
    margin-bottom: 100px;
}

.services .blogs-main-container .blog-container {
    height: fit-content;
    width: 30%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.services .blogs-main-container .blog-container .blog-image {
    overflow: hidden;
    height: fit-content;
    height: 180px;
    border: none;
}

.services .blogs-main-container .blog-container .blog-image img {
    width: 100%;
    height: 100%;
    transition: all 300ms;
    outline: none !important;
    border: 0 !important;
}

.services .blogs-main-container .blog-container img:hover {
    transform: scale(1.1);
}

.services .blogs-main-container .blog-container .blog-text-part {
    margin: 10px 20px;
    margin-bottom: 20px;
}

.services .blogs-main-container .blog-container .blog-text-part h4 {
    font-weight: 400;
    font-size: 23px;
    line-height: 30px;
}

.services .blogs-main-container .blog-container .blog-text-part p {
    color: #525252;
    font-size: 14px;
    margin-top: 10px;
}

.services .blogs-main-container .blog-container .blog-icon-part {
    display: flex;
    font-weight: 600;
    justify-content: space-between;
    align-items: center;
}

.services .blogs-main-container .blog-container .blog-icon-part .blog-icon-1 {
    display: flex;
    width: 60%;
    gap: 20px;
}

.services .blogs-main-container .blog-container .blog-icon-part .blog-icon-1 p {
    display: flex;
    align-items: center;
    justify-content: center;
}

.services .blogs-main-container .blog-container .blog-icon-part .blog-icon-1 p i {
    margin-right: 10px;
}

/* Why work with us */
.services .our-work {
    height: fit-content;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.services .our-work .our-work-container {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.our-work-services .services-heading-container {
    margin-bottom: 70px;
}

.services .our-work .our-work-container .work {
    width: 100%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services .our-work .our-work-container .work h4 {
    font-size: 24px;
    margin: 10px 0;
    width: 100%;
}

.services .our-work .our-work-container .work .work-desc {
    display: flex;
    visibility: hidden;
    align-items: center;
    flex-direction: column;
    width: 80%;
    margin-bottom: 30px;
}


.services .our-work .our-work-container .work .work-desc div {
    display: flex;
}

.services .our-work .our-work-container .work .work-desc div .work-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.services .our-work .our-work-container .work .work-desc img {
    margin-right: 20px;
    box-shadow: 6px 8px 8px rgba(0, 0, 0, 0.25);
}

.services .our-work .our-work-container .work .work-desc p {
    font-size: 16px;
}

/* Contact Us */
.our-contacts {
    background-color: #c4dcff01;
    background: linear-gradient(224.65deg, #8ab9ff01 -0.38%, #29408447 391.18%);
    width: 100%;
    padding-top: 10px;
    padding-bottom: 100px;
    margin-top: 120px;
}

.services .contact {
    display: flex;
    justify-content: space-between;
    height: fit-content;
    padding-bottom: 40px;
}

.services .contact iframe {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.services .contact .contact-form {
    height: 70%;
    width: 50%;
    border-radius: 12px;
}

.services .contact .contact-form .contact-first-row,
.services .contact .contact-form .contact-second-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.services .contact .contact-form .contact-first-row input {
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 18px;
    border: none;
    width: 50%;
    border: 1px solid #bcbcbc;
}

.services .contact .contact-form .contact-first-row input:focus {
    outline: none;
    border: 1px solid #2d4ffd;
}

.services .contact .contact-form .contact-second-row {
    margin-top: 20px;
}

.services .contact .contact-form .contact-second-row input {
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 18px;
    border: none;
    width: 50%;
    border: 1px solid #bcbcbc;
}

.services .contact .contact-form .contact-second-row input:focus {
    outline: none;
    border: 1px solid #6982ff;
}

.services .contact .contact-form .contact-second-row .transportation {
    width: 50%;
    padding: 10px 15px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    border: 1px solid #bcbcbc;
    background-color: white;
}

.services .contact .contact-form .contact-second-row select:focus,
.services .contact .contact-form .contact-second-row select:active {
    border-color: solid #6982ff !important;
}

.services .contact .contact-form .contact-second-row select option {
    font-size: 18px;
}

.services .contact .contact-form .contact-second-row .transportation option:focus {
    outline: none;
}

.services .contact .contact-form .contact-input-field {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    font-size: 18px;
}

.services .contact .contact-form .contact-input-field textarea {
    width: 100%;
    margin-left: 60px;
    margin-top: 20px;
    font-size: 18px;
    border-radius: 5px;
    padding: 10px 15px;
    border: 1px solid #bcbcbc;
}

.services .contact .contact-form .contact-input-field textarea:focus {
    outline: none;
    border: 1px solid #6982ff;
}

.services .contact .contact-form .contact-input-field button {
    width: fit-content;
    padding: 8px 25px;
    margin-top: 20px;
    font-size: 16px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(266.6deg, #395dc5 -0.14%, #233979 99.4%);
    border: none;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    border: 2px solid transparent;
}

.services .contact .contact-form .contact-input-field button:hover {
    color: #233979;
    background: white;
    border: 2px solid #395dc5;
}

/* Testimonials */
.services .testimonial-heading {
    margin-bottom: 0px;
}

.services .testimonial-card-container {
    height: 550px;
}

.services .testimonial-card-container .indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 450px;
}

.services .testimonial-card-container .indicators .indicator-item {
    background-color: white;
    width: 10px;
    height: 10px;
    background-color: #5a7bde;
}

.services .testimonial-card-container .indicators .active {
    background-color: #304faa;
    width: 15px;
    height: 15px;
}

.services .testimonial-card-container .testimonial-card {
    border: 2px solid #395dc5;
    width: 300px;
    height: auto;
    height: 300px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #307ef4;
    background: linear-gradient(224.65deg, #307ef4 -1.38%, #294084 111.18%);
}

.services .testimonial-card-container .testimonial-card .quote-icon {
    font-size: 36px;
    position: absolute;
    margin-top: -14px;
    margin-right: 200px;
    color: #002594;
    align-self: flex-start;
}

.services .testimonial-card-container .testimonial-card .circle-icon {
    position: absolute;
    margin-bottom: -550px;
    font-size: 30px;
    margin-right: 500px;
    margin-left: 500px;
}

.services .testimonial-card-container .testimonial-card .testimonial-box {
    width: 85%;
    display: flex;
    flex-direction: column;
    align-items: space-between;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.services .testimonial-card-container .testimonial-card .testimonial-box .testimonial-text {
    text-align: center;
    color: white;
    font-size: 18px;
    padding: 30px 0 10px 0;
}

.services .testimonial-card-container .testimonial-card .testimonial-box .testimonial-customer {
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 60px;
    width: auto;
    max-width: 100%;
}

.services .testimonial-card-container .testimonial-card .testimonial-box .testimonial-customer .customer-photo-container {
    height: 60px;
}

.services .testimonial-card-container .testimonial-card .testimonial-box .testimonial-customer .customer-photo-container img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
}

.services .testimonial-card-container .testimonial-card .testimonial-box .testimonial-customer .customer-info-container {
    margin: auto 0;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-around;
}

.services .testimonial-card-container .testimonial-card .testimonial-box .testimonial-customer .customer-info-container .customer-name {
    font-size: 15px;
    color: white;
    font-weight: 600;
}

.services .testimonial-card-container .testimonial-card .testimonial-box .testimonial-customer .customer-info-container .customer-info {
    font-size: 12px;
    color: white;
}

.services .testimonial-card-carousel-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    gap: 20px;
}

.services .testimonial-card-carousel-icons .testimonial-active {
    font-size: 24px;
    color: #304faa;
}

.services .testimonial-card-carousel-icons i {
    color: #395dc5;
}

/* Our Membership */
.services-membership {
    overflow: hidden;
}

.services .membership-main .membership-image-container img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.8;
    width: auto;
    height: 50%;
}

.services .membership-main .membership-image-container img:hover {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    opacity: 1;
}

.services .membership-main .marquee {
    color: #aaa;
    position: relative;
    overflow: hidden;
}

.services .membership-main .marquee .marquee-content {
    list-style: none;
    height: 100%;
    display: flex;
    animation: scrolling 20s linear infinite;
}

.services .membership-main .marquee .marquee-content li {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 5vw;
    width: auto;
    max-width: 350px;
    min-height: 80px;
    height: auto;
    max-height: 100px;
    margin: 0 20px;
    object-fit: contain;
    overflow: hidden;
    flex-shrink: 0;
}
.services .membership-main .marquee .marquee-content li img {
    height: 100%;
    width: auto;
}

.services .membership-main .marquee .marquee-content:hover {
    animation-play-state: paused;
}

/* Footer */
.footer {
    background-color: #050f2a;
    background: linear-gradient(109.67deg, #050f2a 0.51%, #0c1736 100%);
    height: fit-content;
    padding-top: 100px;
}

.footer .newsletter-container {
    background: #005be6;
    background: linear-gradient(261.47deg, #005be6 43.48%, rgba(67, 133, 233, 0) 128.61%);
    border-radius: 10px;
    display: flex;
    height: 140px;
    width: 90%;
    margin: 0 auto;
}

.footer .newsletter-container .newsletter {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content:space-around;
    gap: 10%;
}

.footer .newsletter-container .newsletter h4 {
    font-size: 36px;
    color: white;
}

.footer .newsletter-container .newsletter .newsletter-email {
    width: 34%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer .newsletter-container .newsletter .newsletter-email input {
    border: 1px solid #9abef4;
    width: 100%;
    border-radius: 5px;
    padding: 10px 15px;
    background: #347deb;
    color: #ffffff;
}

.footer .newsletter-container .newsletter .newsletter-email input::placeholder {
    color: #9abef4;
    opacity: 1;
}

.footer .newsletter-container .newsletter .newsletter-email input:focus {
    outline: none;
    background: #2264c7;
}

.footer .newsletter-container .newsletter .newsletter-email button {
    padding: 0px 20px;
    border-radius: 5px;
    border: 1px solid #9abef4;
    cursor: pointer;
    font-family: poppins, open sans-serif;
    letter-spacing: 1px;
    color: #005be6;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}

.footer .newsletter-container .newsletter .newsletter-email button:hover {
    background-color: #004aba;
    color: white;
}


.footer .newsletter-container .newsletter .newsletter-email button::-webkit-input-placeholer,
.footer .newsletter-container .newsletter .newsletter-email button::-ms-input-placeholder {
    color: #9abef4;
    opacity: 1;
}

.footer .footer-main {
    height: fit-content;
    width: 88%;
    margin: 50px auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas: "footer-1 footer-2 footer-3 footer-4";
}

.footer .footer-main .footer-content p {
    color: #f5f9ff;
    width: 70%;
    margin-top: 20px;
}

.footer .footer-main .footer-content .footer-image-info {
    display: flex;
    align-content: center;
    gap: 20px;
    max-width: 250px;
    height: 70px;
}

.footer .footer-main .footer-content .footer-image-info img {
   height: 100%;
   width: auto;
}

.footer .footer-main .footer-content-image {
    grid-area: footer-1;
}

.footer .footer-main .footer-content-2 {
    grid-area: footer-2;
}
.footer .footer-main .footer-content-3 {
    grid-area: footer-3;
}
.footer .footer-main .footer-content-4 {
    grid-area: footer-4;
}


.footer .footer-main .footer-content .footer-image-info h1 {
    color: #f5f9ff;
    font-size: 20px;
    margin-top: 6px;
}

.footer .footer-main .footer-content h5 {
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 18px;
    color: #7a7d8c;
}

.footer .footer-main .footer-content .footer-links-container {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    color: #f5f9ff;

}

.footer .footer-main .footer-content .footer-links-container .footer-contact-link {
    margin-bottom: 8px;
}

.footer .footer-main .footer-content .footer-links-container .footer-contact-link i {
    margin-right: 10px;
}

.footer .footer-main .footer-content .footer-links-container .footer-contact-link:hover {
    color: #7e93ff;
}

.footer .footer-main .footer-content .footer-links-container .footer-contact-icons {
    display: flex;
    align-items: center;
    margin-top: 5px;
    gap: 25px;
    font-size: 16px;
}

.footer .footer-main .footer-content .footer-links-container a {
    margin-bottom: 8px;
    text-decoration: none;
    color: #f5f9ff;
    transition: all 0.2s ease-in-out;
}

.footer .footer-main .footer-content .footer-links-container a:hover {
    color: #7e93ff;
}

.footer .footer-main .footer-content .footer-links-container a:hover .footer-contact-link {
    color: #7e93ff;
}

.footer .copyright {
    color: #7a7d8c;
    text-align: center;
    width: 100%;
    padding-bottom: 80px;
}

/************************************************/
/** Queries **/
/** Navbar Q **/

@media (max-width: 1300px) {
    /* Hide scrollbar for Chrome, Safari and Opera */
    .get-quote-form::-webkit-scrollbar {
        display: none;
    }
    
    /* Hide scrollbar for IE, Edge and Firefox */
    .get-quote-form {
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }

    .hero-section-main img {
        width: 400px;
    }

    .footer .footer-main {
         grid-template-areas: "footer-1 footer-2 footer-3 footer-4";
    }
}

@media (max-width: 1200px) {
    .get-quote-form {
        max-height: 90vh;
        height: auto;
        width: 40vw;
        overflow: scroll;
    }

    .navbar .navbar-link {
        display: none !important;
    }

    .navbar .navbar-links li i {
        display: inline-block;
    }


    .navbar .navbar-link .navbar-a {
        display: none;
    }
}

/* specialy achievements*/
@media (max-width: 1250px) {
    .achievements {
        height: fit-content;
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 70%;
        margin: 100px auto;
        grid-row-gap: 100px;
    }
}

@media (max-width: 1188px) {
    .get-quote-form .form-container button {
        margin-bottom: 20px;
    }

    .navbar .navbar-logo {
        margin-left: 25px;
    }

    .navbar .cta-quote {
        margin-right: 25px;
    }

    .hero-section {
        width: 90%;
        margin: 0 auto;
    }

    .hero-section .hero-section-container {
        gap: 60px;
    }

    .hero-section .hero-section-container .hero-section-buttons .hero-button-1 {
        font-size: 11px;
    }

    .services .services-main-container .service .service-image {
        width: 40%;
        height: auto;
    }

    .services .blogs-main-container {
        flex-wrap: wrap;
        row-gap: 80px;
    }

    .services .blogs-main-container .blog-container {
        width: 40%;
    }

    .testimonials-services {
        margin-left: 25px;
        margin-right: 25px;
    }

    .services-membership {
        margin-left: 25px;
        margin-right: 25px;
    }

    .services .membership-main .marquee {
        width: 100vw;
    }
}

@media (max-width: 1058px) {
    .get-quote-form {
        height: auto;
        max-height: 90vh;
        width: 55vw;
        overflow: scroll;
    }

    .hero-section {
        height: 90vh;
    }

    .hero-section-main img {
        right: 10px;
    }
    
    .our-services .services {
        margin: 0 50px !important;
    }

    .services .services-main-container .service .service-info {
        width: 60%;
    }

    .services .services-main-container .service {
        gap: 50px;
    }

    .services .our-work {
        display: inline-block;
    }

    .services .our-work .our-work-container .work .work-desc {
        margin-bottom: 60px;
    }

    .footer .footer-main .footer-content .footer-image-info h1 {
        font-size: 16px;
    }

    .footer .footer-main .footer-content .footer-image-info {
        gap: 10px;
    }

    .footer .footer-main .footer-content p {
        font-size: 12px;
    }

    .footer .footer-main .footer-content .footer-links-container a {
        font-size: 12px;
    }
}

/* Specialy for blogs & Testimonials*/
@media (max-width: 960px) {
    .services .blogs-main-container .blog-container {
        width: 60%;
    }

    .services .testimonial-card-container .testimonial-card {
        width: 60%;
        height: 300px;
    }

    .services .testimonial-card-container .testimonial-card .quote-icon {
        margin-right: 50%;
    }

    .services .testimonial-card-container .testimonial-card .testimonial-box .testimonial-customer {
        gap: 40px;
    }

    .footer .newsletter-container .newsletter h4 {
        font-size: 24px;
    }

    .footer .newsletter-container .newsletter {
        gap: 6%;
    }

    .footer .newsletter-container .newsletter .newsletter-email input {
        width: 40%;
        font-size: 10px;
    }

    .footer .newsletter-container .newsletter .newsletter-email button {
        width: 25%;
        font-size: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer .footer-main {
        grid-template-columns: 1fr 1fr;
        grid-row-gap: 30px;
        grid-template-areas: "footer-2 footer-3"
                             "footer-1 footer-4"
    }
}

@media (max-width: 850px) {
    .hero-section .hero-section-container .hero-section-buttons .hero-button-1 {
        font-size: 9px;
    }

    .our-services .services .services-main-container .service .service-info .service-number {
        display: none;
    }

    .services .services-main-container .service .service-info {
        width: 80%;
    }

    .services .services-main-container .service {
        gap: 40px;
        margin-bottom: 120px;
    }
    

    .services .services-main-container .service .service-image {
        width: 60vw;
        height: auto;
    }
    

    .services .services-main-container .service .service-image img {
        width: 100%;
        height: auto;
    }

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

    .our-blogs-service {
        margin-left: 25px;
        margin-right: 25px;
    }

    .our-services .services .services-main-container .service:nth-child(n) {
        flex-direction: column-reverse;
    }

    .our-services .services .services-main-container .service:nth-child(2n) {
        flex-direction: column;
    }

    .our-contacts .services {
        margin: 0;
    }

    .footer .newsletter-container .newsletter h4 {
        font-size: 24px;
    }

    .footer .newsletter-container .newsletter {
        gap: 10%;
    }

    .footer .newsletter-container .newsletter .newsletter-email input {
        width: 45%;
        font-size: 10px;
    }

    .footer .newsletter-container .newsletter .newsletter-email button {
        width: 30%;
        font-size: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 800px) {
    .get-quote-form {
        height: auto;
        max-height: 90vh;
        width: 65vw;
        overflow: scroll;
    }

    .hero-section-main {
        height: fit-content;
    }

    .hero-section .hero-section-container {
        height: 70%;
    }

    .hero-section .hero-section-container .hero-section-headings {
        text-shadow: none;
    }

    .hero-section .hero-section-container .hero-section-headings h2 {
        font-size: 64px;
        width: 100%;
        line-height: 90px;
        margin: 20px 0;
    }

    .hero-section .hero-section-container .hero-section-buttons .hero-button-1 {
        width: 26%;
    }

    .hero-section .hero-section-container .hero-section-buttons .hero-contact-icons {
        width: 45%;
        gap: 15px;
    }

    .hero-section-main img {
        position: inherit;
        display: none;
    }

    .our-work-services {
        margin-left: 25px;
        margin-right: 25px;
    }

    .services .testimonial-card-container .testimonial-card .testimonial-box .testimonial-text {
        font-size: 14px;
    }

    .services .membership-main .membership-image-container img {
        height: 50%;
    }

    .footer .footer-main {
        height: fit-content;
        grid-template-columns: 1fr 1fr;
        row-gap: 40px;
    }


    .footer .footer-main .footer-content-image {
        justify-content: flex-start !important;
    }

    .footer .footer-main .footer-content {
        display: flex;
        justify-content: start;
        flex-direction: column;
    }

    .footer .footer-main .footer-content .footer-links-container .footer-contact-icons {
        display: flex;
    }

    .footer .newsletter-container .newsletter h4 {
        font-size: 26px;
        width: 30%;
    }

    .footer .newsletter-container .newsletter {
        gap: 6%;
    }

    .footer .newsletter-container .newsletter .newsletter-email {
        width: 40%;
        justify-content: flex-end;
    }

    .footer .newsletter-container .newsletter .newsletter-email input {
        width: 40%;
        font-size: 8px;
    }

    .footer .newsletter-container .newsletter .newsletter-email button {
        width: 30%;
        font-size: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer .footer-main .footer-content:nth-child(1) {
        order: 4;
    }
}

/* specialy for achievments */
@media (max-width: 650px) {
    .get-quote-form {
        height: auto;
        max-height: 90vh;
        width: 85vw;
        overflow: scroll;
    }

    /* Achievements */
    .achievements {
        width: 100%;
    }

    .blogs-main-container-fix {
        overflow: scroll;
        overflow-y: hidden;
    }

    .services .blogs-main-container {
        width: fit-content;
        flex-wrap: nowrap;
    }

    .services .blogs-main-container .blog-container {
        width: 89vw;
        margin-right: 25px;
    }

    .services .blogs-main-container .blog-container-last {
        margin-right: 0px;
    }

    .achievements .achievement-card .achievement-card-img img {
        width: 60px;
        height: 60px;
    }

    .achievements .achievement-card .achievement-heading span {
        font-size: 24px;
    }

    .achievements .achievement-card .achievement-heading {
        font-size: 14px;
    }

    .achievements .achievement-card .achievement-text {
        text-align: center;
        font-weight: 500;
        font-size: 12px;
        color: #6c6c6c;
        width: 100%;
        padding: 0 20px;
    }
    
    .our-services .services {
        margin: 0 10px !important;
    }
    

    .services .services-main-container .service .service-image {
        width: 80vw;
        height: auto;
    }

    .our-contacts .services .contact {
        flex-direction: column-reverse;
        align-items: center;
    }

    .our-contacts .services .contact .map {
        width: 80%;
        margin-top: 60px;
    }

    .our-contacts .services .contact .contact-form {
        width: 80%;
    }

    .footer .newsletter-container .newsletter {
        flex-direction: column;
    }

    .footer .newsletter-container .newsletter h4 {
        width: 100%;
        text-align: center;
    }

    .footer .newsletter-container .newsletter .newsletter-email {
        justify-content: center;
        width: 80%;
    }
}

@media (max-width: 530px) {
    .get-quote-form {
        height: auto;
        max-height: 90vh;
        width: 90vw;
        overflow: scroll;
    }
    
    .get-quote-form .form-title-container {
        margin-bottom: 20px;
    }

    .get-quote-form .form-input {
        padding: 0 0;
        gap: 20px;
    }

    .get-quote-form textarea {
        height: 100px;
    }

    .get-quote-form .form-input {
        grid-template-columns: 1fr;
    }

    .navbar .navbar-logo {
        height: 40px;
    }
    
    .hero-section .hero-section-container {
        height: 6 0%;
    }

    .hero-section-contacts .footer-contact-link i {
        font-size: 12px;
    }

    .hero-section-contacts .footer-contact-link a {
        font-size: 12px;
    }

    .hero-section .hero-section-container .hero-section-headings h2 {
        font-size: 44px;
        line-height: 60px;
    }

    .services .blogs-main-container .blog-container .blog-text-part p {
        font-size: 10px;
    }

    .services .our-work .our-work-container .work h4 {
        font-size: 18px;
        text-align: justify;
    }

    .services .our-work .our-work-container .work .work-desc div .work-image-container {
        display: none;
    }

    .services .our-work .our-work-container .work .work-desc div p {
        text-align: justify;
        margin-left: 0;
    }
    .services .our-work .our-work-container .work .work-desc {
        margin-bottom: 30px;
    }

    .services .testimonial-card-container .testimonial-card {
        width: 80%;
    }

    .services .testimonial-card-container .testimonial-card .testimonial-box .testimonial-customer {
        gap: 20px;
    }

    .services .membership-main .membership-image-container img {
        height: 25%;
    }

    .services .membership-main .marquee .marquee-content li {
        align-items: center;
        margin: 0 20px;
        max-width: 200px;
        height: 50px;
    }

    .services .membership-main .marquee .marquee-content li img {
        height: 100%;
        width: 100%;
    }

    .services .contact .contact-form .contact-first-row, .services .contact .contact-form .contact-second-row {
        flex-direction: column;
    }

    .services .contact .contact-form .contact-first-row input {
        width: 100%;
    }

    .services .contact .contact-form .contact-second-row input {
        width: 100%;
    }

    .services .contact .contact-form .contact-second-row .transportation {
        width: 100%;
    }

    .footer .footer-main .footer-content .footer-image-info {
        height: fit-content;
    }

    .footer .footer-main .footer-content .footer-image-info img {
        height: 50px;
    }

    .footer .footer-main .footer-content .footer-image-info h1 {
        font-size: 12px;
    }

    .footer .copyright {
        font-size: 10px;
    }
}

@media (max-width: 490px) {
    .hero-section .hero-section-container .hero-section-buttons .hero-button-1 {
        width: 36%;
    }

    .footer .footer-main {
        grid-template-areas: "footer-2 footer-3"
                             "footer-1 footer-1" 
                             "footer-4 footer-4";
    }

    .footer .footer-main .footer-content-4 {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .footer .footer-main .footer-content .footer-links-container .footer-contact-icons {
        justify-content: space-between;
    }
}

@media (max-width: 410px) {
    .navbar .cta-quote .search-icon {
        display: none;
    }

    .navbar .navbar-links .navbar-link {
        display: none;
    }

    /*.our-blogs-service .blogs-main-container .blog-container {
        width: 100%;
    }*/

    .our-blogs-service .blogs-main-container .blog-container .blog-text-part h4 {
        font-size: 18px;
    }

    .services .our-work .our-work-container .work h4 {
        font-size: 20px;
    }

    .services .membership-main .membership-image-container img {
        height: 30%;
    }

    .footer .newsletter-container .newsletter h4 {
        font-size: 18px;
    }

    .footer .footer-main .footer-content .footer-links-container {
        font-size: 10px;
    }

    .footer .footer-main .footer-content .footer-links-container a {
        font-size: 10px;
    }
}

@media (max-width: 390px) {
    .hero-section-contacts {
        display: flex;
        flex-direction: column;
        margin-top: 10%;
    }
}

/** Animations **/

/* Marquee */
@keyframes scrolling {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-140vw);
    }
}