@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@400&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Crimson Text', serif !important;
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-track {
    background: #4a89dc;
}

body::-webkit-scrollbar-thumb {
    background-color: rgb(209, 207, 207);
}

#navbar {
    position: fixed;
    z-index: 4;
    top: 0;
    padding: 10px 20px 0 20px;
    transition: all ease-in-out 0.6s;
}

.navbar-brand {
    width: 82px;
}

.navbar-links li {
    padding: 0 20px 0 20px;
    text-align: center;
}

.dropdown-menu {
    width: 100%;
}

.dropdown-item {
    text-transform: capitalize;
    border-bottom: 1px solid lightgray;
    padding: 10px;
}

.dropdown-item:hover {
    background-color: #4a89dc;
    color: white;
}

.no-border {
    border: none;
}

.header {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
}

::placeholder {
    color: white !important;
}

.header-overlay {
    position: absolute;
    width: 100%;
    height: 100vh;
    background: rgba(44, 43, 43, 0.6);
}

.header-tag1 {
    position: absolute;
    margin: 0 0 0 80px;
    top: 20%;
    color: white;
    letter-spacing: 0.2em;
    z-index: 3;
}

#header-tag1-title {
    font-size: 30px;
    font-weight: bold;
}

.header-tag-title {
    display: none;
}

#header-tag1-title-underline {
    width: 400px;
    height: 2px;
    background-color: white;
}

#header-tag1-paragraph {
    width: 400px;
    font-size: 60px;
    font-weight: lighter;
    letter-spacing: 0.1em;
}

.explore-button {
    position: absolute;
    display: none;
    width: 200px;
    top: 80%;
    margin: 0 0 0 80px;
    z-index: 3;
    padding: 20px 40px;
    border-radius: 3px;
    overflow: hidden;
    color: white;
    font-size: 18px;
    letter-spacing: 0.2em;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-box-shadow: 2px 20px 50px rgba(0, 0, 0, 0.5);
    box-shadow: 2px 20px 50px rgba(0, 0, 0, 0.5);
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
}

.explore-button::before,
.explore-button::after {
    content: '';
    background: none;
    position: absolute;
    z-index: -1;
}

.explore-button:hover {
    cursor: pointer;
    color: white;
    text-decoration: none;
}

.explore-button::after {
    width: 0;
    height: 100%;
    left: -35%;
    top: 0;
    background-color: #186fe0;
    transform: skew(50deg);
    transform-origin: bottom right;
    transition: linear .4s;
}

.explore-button:hover::after {
    width: 410px;
    height: 100%;
}

.explore-button span {
    position: absolute;
}

.explore-button span:nth-child(1) {
    top: 0px;
    left: 0px;
    width: 100%;
    height: 2px;
    background: (linear, right top, left top, from(rgba(43, 8, 8, 0)), to(rgb(190, 130, 18)));
    background: linear-gradient(to left, rgba(43, 8, 8, 0), rgb(190, 130, 18));
    -webkit-animation: 2s animateTop linear infinite;
    animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.explore-button span:nth-child(2) {
    top: 0px;
    right: 0px;
    height: 100%;
    width: 3px;
    background: (linear, left bottom, left top, from(rgba(43, 8, 8, 0)), to(rgb(190, 130, 18)));
    background: linear-gradient(to top, rgba(43, 8, 8, 0), #d92626);
    -webkit-animation: 2s animateRight linear -1s infinite;
    animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

.explore-button span:nth-child(3) {
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 2px;
    background: (linear, left top, right top, from(rgba(43, 8, 8, 0)), to(#d92626));
    background: linear-gradient(to right, rgba(43, 8, 8, 0), #d92626);
    -webkit-animation: 2s animateBottom linear infinite;
    animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

.explore-button span:nth-child(4) {
    top: 0px;
    left: 0px;
    height: 100%;
    width: 3px;
    background: (linear, left top, left bottom, from(rgba(43, 8, 8, 0)), to(#d92626));
    background: linear-gradient(to bottom, rgba(43, 8, 8, 0), rgb(190, 130, 18));
    -webkit-animation: 2s animateLeft linear -1s infinite;
    animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

.span-hover {
    display: none;
}

.track-input {
    color: white;
}

.track-submit {
    display: none;
}

@media (max-width: 690px) {
    .explore-button {
        display: none !important;
    }

    .track-submit {
        float: left !important;
    }
}

.result-body {
    font-family: 'Dosis', sans-serif !important;
    position: relative;
    display: table;
    margin: 0 auto;
    background-color: #fff;
    z-index: 4;
}

.result-title {
    margin-top: 30px;
    color: #202020;
    text-align: center;
}

.result-details {
    display: table;
    margin: 0 auto;
}

.result-details h5 {
    font-size: 18px;
    color: #202020;
    text-transform: capitalize;
}


.result-details h5 span {
    font-weight: lighter;
}

.result-title span {
    color: #d92626;
}

.feedback-section {
    background: black;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0 50px 0;
    display: flex;
    justify-content: space-around;
}

.feedback-form {
    width: 380px;
    height: 428px;
    padding: 2em;
    background: transparent;
    color: white;
    border: 1px solid lightblue;
}

.feedback-form h3 {
    font-size: 25px;
    letter-spacing: 0.07em;
    text-align: center;
}

.group {
    position: relative;
    margin-bottom: 45px;
}

input {
    font-size: 18px;
    padding: 10px 10px 10px 5px;
    -webkit-appearance: none;
    display: block;
    background: transparent;
    color: #636363;
    width: 100%;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #757575;
}

input:focus {
    outline: none;
    border-bottom: #4a89dc;
}

.input-focus {
    border-bottom: 1px solid red;
}


/* Label */

label {
    color: #999;
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 10px;
    transition: all 0.2s ease;
}


/* active */

input:focus~label,
input.used~label {
    top: -20px;
    transform: scale(.75);
    left: -2px;
    /* font-size: 14px; */
    color: #4a89dc;
}


/* Underline */

.bar {
    position: relative;
    display: block;
    width: 100%;
}

.bar:before,
.bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: #4a89dc;
    transition: all 0.2s ease;
}

.bar:before {
    left: 50%;
}

.bar:after {
    right: 50%;
}


/* active */

input:focus~.bar:before,
input:focus~.bar:after {
    width: 50%;
}


/* Highlight */

.highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}


/* active */

input:focus~.highlight {
    animation: inputHighlighter 0.3s ease;
}


/* Animations */

@keyframes inputHighlighter {
    from {
        background: #4a89dc;
    }

    to {
        width: 0;
        background: transparent;
    }
}


/* Button */

.button {
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    margin: 3em 0 0.5em 0;
    width: 100%;
    vertical-align: middle;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    -webkit-font-smoothing: antialiased;
    text-align: center;
    letter-spacing: 1px;
    background: transparent;
    border: 0;
    border-bottom: 2px solid #3160B6;
    cursor: pointer;
    transition: all 0.15s ease;
}

.button:focus {
    outline: 0;
}


/* Button modifiers */

.buttonBlue {
    background: #4a89dc;
    text-shadow: 1px 1px 0 rgba(39, 110, 204, .5);
}

.buttonBlue:hover {
    background: #357bd8;
}


/* Ripples container */

.ripples {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: transparent;
}


/* Ripples circle */

.ripplesCircle {
    position: absolute;
    transform: translate(-50%, -50%);
    opacity: 0;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.ripples.is-active .ripplesCircle {
    animation: ripples .4s ease-in;
}


/* Ripples animation */

@keyframes ripples {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    100% {
        width: 200%;
        padding-bottom: 200%;
        opacity: 0;
    }
}

.quotation {
    margin-top: 180px;
}

.quotation h5 {
    color: white;
    font-weight: bold;
    font-size: 25px;
}

.quote-btn {
    width: 150px;
    height: 45px;
    margin-top: 30px;
    background: transparent;
    border: 1px solid lightblue;
    color: white;
    cursor: pointer;
}

.modal-success {
    display: none;
    margin: 0;
    position: fixed;
    top: 50%;
    transform: translateY(-50%)
}

.modal-body-p {
    text-align: center;
    font-size: 20px;
}

.success-tick {
    font-size: 40px;
    color: #3d86e6;
}

.modal-overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(44, 43, 43, 0.6);
    z-index: 4;
}

.footer-section {
    background: #151414;
    width: 100%;
    height: 0rem;
}

.footer-menu ul {
    margin: 0px;
    padding: 0px;
}

.footer-cta {
    border-bottom: 1px solid #373636;
}

.single-cta i {
    color: #4a89dc;
    font-size: 30px;
    float: left;
    margin-top: 8px;
}

.cta-text {
    padding-left: 15px;
    display: inline-block;
}

.cta-text h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}

.cta-text span {
    color: #444444;
    font-size: 15px;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-content h3 {
    color: #303030 !important;
}

.footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 200px;
}

.footer-text p {
    margin-bottom: 14px;
    font-size: 16px;
    color: #444444;
    line-height: 28px;
}

.footer-widget-heading h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

.footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: #4a89dc;
}

.footer-widget ul li {
    display: inline-block;
    float: left;
    width: 50%;
    margin-bottom: 12px;
}

.footer-widget ul li a:hover {
    color: #4a89dc;
}

.footer-widget ul li a {
    color: #444444;
    text-transform: capitalize;
}

.subscribe-form {
    position: relative;
    overflow: hidden;
}

.subscribe-form input {
    width: 100%;
    padding: 14px 20px;
    background: #2E2E2E;
    border: 1px solid #2E2E2E;
    color: #fff;
}

.subscribe-form button {
    position: absolute;
    right: 0;
    background: #4a89dc;
    padding: 13px 20px;
    border: none;
    top: 0;
    outline: none;
    cursor: pointer;
}

.subscribe-form button:hover {
    background-color: #3d86e6;
}

.subscribe-form button i {
    color: #fff;
    font-size: 25px;
    transform: rotate(-6deg);
}

.copyright-area {
    background: #202020;
    padding: 20px 0 1px 0;
    text-align: center;
}

.copyright-text p {
    font-size: 14px;
    color: #878787;
}

.copyright-text p a {
    color: #4a89dc;
}

.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}

.footer-menu li:hover a {
    color: #4a89dc;
}

.footer-menu li a {
    font-size: 14px;
    color: #878787;
}

.contact-header {
    width: 100%;
    height: 55vh;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-overlay {
    position: absolute;
    width: 100%;
    height: 55vh;
    background: rgba(44, 43, 43, 0.6);
}

.contact-title {
    position: absolute;
    color: white;
    margin: 150px 0 0 50px;
    z-index: 3;
}

section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;

}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
}

.contact-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    padding-bottom: 20px;
}

.container .contactInfo {
    height: 300px;
    color: white;
    border: 1px solid lightblue;
    margin-top: 40px;
    padding: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    justify-content: space-between;
}

.container .contactInfo h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
}

.container .contactInfo ul.info {
    position: relative;
    margin: 20px 0;
}

.container .contactInfo ul.info li {
    position: relative;
    list-style: none;
    margin: 20px 0;
    cursor: pointer;
    align-items: flex-start;
}

.container .contactInfo ul.info li span a {
    color: #fff;
    text-decoration: none;
    width: 30px;
    min-width: 30px;

}

.container .contactInfo ul.info li span:nth-child(2) {
    color: #fff;
    margin-left: 10px;
    font-weight: 300;
}

.container .contactInfo ul.sci {
    position: relative;
    display: flex;
}

.container .contactInfo ul.sci li {
    list-style: none;
    margin-right: 15px;
}

.container .contactInfo ul.sci li a {
    text-decoration: none;
}

.container .contactForm {
    width: 400px;
    color: white;
    border: 1px solid lightblue;
    margin-top: 70px;
    padding: 20px;
}

.container .contactForm h2 {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
}

.container .contactForm .formBox {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 30px;
}

.container .contactForm .formBox .inputBox {
    position: relative;
    margin-bottom: 50px;
}

.container .contactForm .formBox .inputBox.w50 {
    width: 47%;
}

.container .contactForm .formBox .inputBox.w100 {
    width: 100%;
}

.container .contactForm .formBox .inputBox input,
.container .contactForm .formBox .inputBox textarea {
    width: 100%;
    resize: none;
    font-size: 18px;
    font-weight: 300;
    background: transparent;
    color: white;
    border: none;
    outline: none;
    border-bottom: 1px solid lightblue;
    margin-bottom: 20px;
}

.container .contactForm .formBox .inputBox textarea {
    height: 80px;
}

.container .contactForm .formBox .inputBox span {
    position: absolute;
    left: 0;
    pointer-events: none;
    font-size: 20px;
    font-weight: 300;
    transition: 0.3s;
}

.container .contactForm .formBox .inputBox input:focus~span,
.container .contactForm .formBox .inputBox input:valid~span,
.container .contactForm .formBox .inputBox textarea:focus~span,
.container .contactForm .formBox .inputBox textarea:valid~span {
    transform: translateY(-20px);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #3d86e6;
    font-weight: 500;
}

.container .contactForm .formBox .inputBox input[type="submit"] {
    position: relative;
    cursor: pointer;
    background: transparent;
    border: 1px solid lightblue;
    color: #fff;
    letter-spacing: 0.05em;
    max-width: 150px;
    margin: auto;
    padding: 10px;

}

#message-success {
    display: none;
    text-align: center;
    margin-top: 20px;
    color: #4a89dc;
}

.about-section-a {
    text-align: center;
    margin: 25px 0;
}

.about-section-a h4 {
    font-size: 30px;
    letter-spacing: 0.04em;
}

.about-section-a h5 {
    width: 350px;
    font-size: 23px;
    letter-spacing: 0.02em;
    margin: auto;
}

.about-section-a h6 {
    width: 500px;
    font-size: 20px;
    font-weight: 100;
    letter-spacing: 0.02em;
    margin: 20px auto;
}

.about-section-a p {
    width: 400px;
    font-size: 18px;
    letter-spacing: 0.02em;
    margin: auto;
}

.about-ticks {
    display: grid;
    place-items: center;
    margin: 15px;
}

.about-ticks ul {
    list-style: none;
}

.ticks-tags {
    font-size: 18px;
    padding-left: 10px;
}

.about-ticks i {
    font-size: 25px;
}

.about-ticks p {
    width: 550px;
    margin: 10px 0;
    font-size: 18px;
    letter-spacing: 0.02em;
}

#counter-stats {
    background: url("/Assets/stats-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    justify-content: center;
    margin-top: 70px;
}

#counter-stats .container {
    display: flex;
    align-items: center;
    width: auto;
    margin: 20px 10px;
    padding: 5px 20px;
    border: 1px solid lightblue;
}

.feature {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.feature h2 {
    margin-bottom: 30px;
    font-weight: bold;
}

.feature .feature-item {
    margin-bottom: 30px;
}

.feature .feature-icon {
    height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #121518;
}

.feature .feature-icon i {
    width: 100px;
    height: 100px;
    padding: 20px 0;
    text-align: center;
    font-size: 60px;
    color: #aa9166;
    background: #000000;
    transition: .5s;
}

.feature .feature-item:hover .feature-icon i {
    margin-right: -15px;
}

.feature .feature-item h3 {
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-size: 30px;
    font-weight: 600;
}

.feature .feature-item h3::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #aa9166;
}

.feature .feature-item p {
    margin: 0;
    font-size: 16px;
}

.feature .feature-img {
    position: relative;
    height: 100%;
    padding: 10px;
    background: #121518;
}

.feature .feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.row hr {
    display: none;
    width: 40%;
    margin: auto;
    border-color: lightblue;
}

.stats {
    text-align: center;
    font-weight: 300;
    color: white;
}

.counting {
    padding: 0 10px;
}

.stats h5 {
    font-size: 19px;
}

.stats i {
    font-size: 40px;
    color: white;
}

.bi-airplane {
    width: 40px;
    height: 40px;
    margin: 6px 0;
    color: white;
}

#spy {
    margin: 50px;
}

#spy .nav-link {
    padding: 20px;
}

.ambulance-flex {
    width: auto;
    height: 60vh;
    margin: auto;
    border-radius: 8px;
}

.ambulance-text {
    display: grid;
    place-content: center;
}

.ambulance-text h3 {
    letter-spacing: 0.01em;
}

.ambulance-text p {
    width: 800px;
    font-size: 19px;
    letter-spacing: 0.02em;
    color: rgb(70, 68, 68);
}

@media (max-width: 1200px) {
    .container {
        width: 90%;
        min-width: auto;
        margin: 20px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    }

    .container .contactInfo {
        top: 0;
        height: 550px;
        position: relative;
        box-shadow: none;
        border-radius: 0px;
    }

    .container .contactForm {
        position: relative;
        width: calc(100% - 350px);
        padding-left: 0;
        margin-left: 0;
        padding: 40px;
        height: 550px;
        box-shadow: none;
        border-radius: 0px;
    }
}

@media (max-width: 991px) {
    section {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
    }

    section::before {
        display: none;
    }

    .container {
        display: flex;
        flex-direction: column-reverse;
    }

    .container .contactForm {
        width: 100%;
        height: auto;
        border-radius: 0px;
    }

    .container .contactInfo {
        width: 100%;
        height: auto;
        flex-direction: row;
        border-radius: 0px;
    }

    .container .contactInfo ul.sci {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 815px) {
    .message {
        font-size: 10px !important;
    }
}

@media (max-width: 600px) {
    .container .contactForm {
        padding: 25px;
    }

    .container .contactInfo {
        padding: 25px;
        flex-direction: column;
        align-items: flex-start;
    }

    .container .contactInfo ul.sci {
        margin-top: 40px;
    }

    .container .contactForm .formBox .inputBox.w50 {
        width: 100%;
    }
}

@media (max-width: 281px) {
    .feedback-form {
        border: none;
    }
}

@media (max-width: 391px) {
    .navbar-links li {
        font-size: 13px;
    }

    #navbar-toggler-icon {
        width: 18px;
    }

    .navbar-brand {
        width: 50px;
    }

    .dropdown-item {
        font-size: 11px;
    }

    .header {
        height: 60vh;
    }

    .header-overlay {
        height: 60vh;
    }

    .header-tag1 {
        margin: 0 0 0 40px;
        top: 15%;
    }

    #header-tag1-title {
        font-size: 12px;
    }

    #header-tag1-title-underline {
        width: 100px;
        height: 1px;
    }

    #header-tag1-paragraph {
        width: 220px;
        font-size: 25px;
        font-weight: bold;
        margin-top: 20px;
    }

    .explore-button {
        width: 150px;
        font-size: 8px;
        top: 45%;
        margin-left: 40px;
    }

    .home-about {
        display: flex;
        flex-direction: column;
        padding: 40px 0 10px 0;
    }

    .home-descr {
        margin: auto;
    }

    .home-about h3 {
        width: 250px;
        font-size: 18px;
        font-weight: bold;
    }

    .home-about p {
        margin: 20px 0 0 0;
        width: 230px;
        font-size: 10px;
    }

    .progress-bars {
        width: 80%;
        margin: 30px auto;
    }

    .progress {
        margin-top: 3px;
    }

    .progress-bars h4 {
        font-size: 15px;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .progress-span-1 {
        font-size: 11px;
    }

    .feedback-section {
        display: flex;
        flex-direction: column;
    }

    .feedback-form {
        width: 280px;
        height: 380px;
        margin: auto;
    }

    .feedback-form h3 {
        font-size: 18px;
        letter-spacing: 0.07em;
    }

    input:focus~label,
    input.used~label {
        top: -2px;
    }

    .feedback-form label {
        font-size: 12px;
    }

    .feedback-form button {
        font-size: 9px;
    }

    .quotation {
        width: 90%;
        margin: 60px auto;
    }

    .quotation h5 {
        font-size: 19px;
    }

    .quotation button {
        width: 120px;
        font-size: 11px;
    }

    .modal-body-p {
        text-align: center;
        font-size: 17px;
    }

    .success-tick {
        font-size: 35px;
        color: #3d86e6;
    }

    .about-section-a h4 {
        font-size: 23px;
    }

    .about-section-a h5 {
        width: auto;
        padding: 0 10px;
        font-size: 18px;
    }

    .about-section-a h6 {
        width: auto;
        padding: 0 10px;
        font-size: 16px;
    }

    .about-section-a p {
        width: auto;
        padding: 0 10px;
        font-size: 14px;
    }

    .about-ticks {
        margin: 5px;
    }

    .ticks-tags {
        font-size: 13px;
        padding-left: 8px;
    }

    .about-ticks i {
        font-size: 17px;
    }

    .about-ticks p {
        width: auto;
        padding: 0 10px;
        font-size: 14px;
    }

    #counter-stats .container {
        padding: 40px 10px;
    }

    .stats h4 {
        font-size: 16px;
    }

    .stats h5 {
        font-size: 12px;
    }

    .stats i {
        font-size: 15px;
        padding: 10px 0;
    }

    .bi-airplane {
        width: 15px;
        height: 15px;
        margin: 10px 0;
    }

    #spy .nav-link {
        width: auto;
        padding: 12px;
        font-size: 13px;
        text-align: center;
    }

    .ambulance-flex {
        width: 70vw;
        height: 25vh;
        border-radius: 4px;
    }

    .ambulance-text h3 {
        font-size: 16px;
        margin-top: 30px;
        padding: 7px;
    }

    .ambulance-text p {
        width: auto;
        font-size: 12px;
        padding: 7px;
    }
}

@media (min-width: 392px) and (max-width: 575.98px) {
    .navbar-links li {
        font-size: 14px;
    }

    #navbar-toggler-icon {
        width: 20px;
    }

    .navbar-brand {
        width: 65px;
    }

    .dropdown-item {
        font-size: 12px;
    }

    .header {
        height: 70vh;
    }

    .header-overlay {
        height: 70vh;
    }


    .header-tag1 {
        margin: 0 0 0 70px;
        top: 20%;
    }

    #header-tag1-title {
        font-size: 15px;
    }

    #header-tag1-title-underline {
        width: 200px;
        height: 1px;
    }

    #header-tag1-paragraph {
        width: 300px;
        font-size: 33px;
        margin-top: 20px;
    }

    .explore-button {
        font-size: 10px;
        top: 55%;
    }

    .home-about {
        display: flex;
        flex-direction: column;
        padding: 40px 0 15px 0;
    }

    .home-descr {
        margin: auto;
    }

    .home-about h3 {
        width: 350px;
        font-size: 20px;
    }

    .home-about p {
        margin: 30px 0 0 0;
        width: 280px;
        font-size: 13px;
    }

    .progress-bars {
        width: 70%;
        margin: 30px auto;
    }

    .progress {
        margin-top: 3px;
    }

    .progress-bars h4 {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .progress-span-1 {
        font-size: 11px;
    }

    .feedback-section {
        padding-top: 40px;
        display: flex;
        flex-direction: column;
    }

    .feedback-form {
        height: 380px;
        margin: auto;
    }

    .feedback-form h3 {
        font-size: 18px;
        letter-spacing: 0.07em;
    }

    .feedback-form label {
        font-size: 14px;
    }

    .feedback-form button {
        font-size: 11px;
    }

    .quotation {
        width: 75%;
        margin: 60px auto;
    }

    .quotation h5 {
        font-size: 19px;
    }

    .quotation button {
        width: 120px;
        font-size: 11px;
    }

    .about-section-a h4 {
        font-size: 26px;
    }

    .about-section-a h5 {
        width: 300px;
        font-size: 20px;
    }

    .about-section-a h6 {
        width: 400px;
        font-size: 18px;
    }

    .about-section-a p {
        width: 300px;
        font-size: 16px;
    }

    .about-ticks {
        margin: 10px;
    }

    .ticks-tags {
        font-size: 15px;
        padding-left: 10px;
    }

    .about-ticks i {
        font-size: 20px;
    }

    .about-ticks p {
        width: auto;
        padding: 0 10px;
        font-size: 16px;
    }

    #counter-stats .container {
        padding: 40px 10px;
    }

    .stats h4 {
        font-size: 18px;
    }

    .stats h5 {
        font-size: 15px;
    }

    .stats i {
        font-size: 20px;
    }

    .bi-airplane {
        width: 20px;
        height: 20px;
        margin: 5px 0;
    }

    .ambulance-section {
        display: flex;
        align-items: center;
    }

    #spy .nav-link {
        width: 70vw;
        padding: 12px;
        font-size: 13px;
        text-align: center;
    }

    .ambulance-flex {
        width: auto;
        height: 30vh;
        border-radius: 4px;
    }

    .ambulance-text h3 {
        font-size: 17px;
        margin-top: 30px;
        padding: 7px;
    }

    .ambulance-text p {
        width: auto;
        font-size: 13px;
        padding: 7px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .navbar-links li {
        font-size: 15px;
    }

    .navbar-brand {
        width: 70px;
    }

    #navbar-toggler-icon {
        width: 25px;
    }

    .dropdown-item {
        font-size: 13px;
        padding: 10px;
    }

    .header {
        height: 80vh;
    }

    .header-overlay {
        height: 80vh;
    }

    #header-tag1-title {
        font-size: 20px;
    }

    #header-tag1-title-underline {
        width: 270px;
        height: 1px;
    }

    #header-tag1-paragraph {
        width: 320px;
        font-size: 40px;
        margin-top: 20px;
    }

    .explore-button {
        font-size: 13px;
        top: 60%;
    }

    .home-about {
        display: flex;
        flex-direction: column;
        padding: 40px 0 15px 0;
    }

    .home-descr {
        margin: auto;
    }

    .home-about h3 {
        width: 430px;
        font-size: 25px;
    }

    .home-about p {
        margin: 35px 0 0 0;
        width: 350px;
        font-size: 15px;
    }

    .progress-bars {
        width: 70%;
        margin: 40px auto;
    }

    .progress {
        margin-top: 3px;
    }

    .progress-bars h4 {
        font-size: 19px;
        margin-bottom: 30px;
    }

    .progress-span-1 {
        font-size: 11px;
    }

    .feedback-section {
        padding-top: 40px;
        display: flex;
        flex-direction: column;
    }

    .feedback-form {
        margin: auto;
    }

    .feedback-form h3 {
        font-size: 22px;
        letter-spacing: 0.07em;
    }

    .feedback-form label {
        font-size: 15px;
    }

    .feedback-form button {
        font-size: 13px;
    }

    .quotation {
        width: 62%;
        margin: 60px auto;
    }

    .quotation h5 {
        font-size: 22px;
    }

    .quotation button {
        width: 150px;
    }

    .stats h4 {
        font-size: 19px;
    }

    .stats h5 {
        font-size: 17px;
    }

    .stats i {
        font-size: 30px;
    }

    .bi-airplane {
        width: 30px;
        height: 30px;
        margin: 5px 0;
    }

    .ambulance-section {
        display: flex;
        flex-direction: column;
    }

    #spy {
        margin: 50px;
    }

    #spy .nav-link {
        width: 70vw;
        padding: 13px;
        font-size: 14px;
        text-align: center;
    }

    .ambulance-flex {
        width: auto;
        height: 40vh;
        margin: auto;
        border-radius: 8px;
    }

    .ambulance-text h3 {
        font-size: 20px;
        margin-top: 50px;
        padding: 10px;
    }

    .ambulance-text p {
        width: auto;
        font-size: 15px;
        padding: 10px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .navbar-links li {
        font-size: 17px;
    }

    .navbar-brand {
        width: 75px;
    }

    .dropdown-item {
        font-size: 15px;
    }

    #header-tag1-title {
        font-size: 26px;
    }

    #header-tag1-title-underline {
        width: 350px;
        height: 1px;
    }

    #header-tag1-paragraph {
        font-size: 55px;
    }

    .explore-button {
        font-size: 15px;
    }

    .home-about {
        padding: 50px 0 40px 0;
    }

    .home-about h3 {
        width: 480px;
        font-size: 30px;
    }

    .home-about p {
        margin: 40px 0 0 0;
        width: 480px;
        font-size: 17px;
    }

    .progress-bars {
        width: 25%;
    }

    .progress {
        margin-top: 8px;
    }

    .progress-bars h4 {
        font-size: 25px;
        margin-bottom: 50px;
    }

    .progress-span-1 {
        font-size: 15px;
    }

    .feedback-section {
        padding-top: 40px;
        display: flex;
        flex-direction: column;
    }

    .feedback-form {
        margin: auto;
    }

    .quotation {
        width: 43%;
        margin: 60px auto;
    }

    .contact-header {
        height: 45vh;
    }

    .contact-overlay {
        height: 45vh
    }

    .stats h4 {
        font-size: 19px;
    }

    .stats h5 {
        font-size: 17px;
    }

    .stats i {
        font-size: 30px;
    }

    .bi-airplane {
        width: 30px;
        height: 30px;
        margin: 5px 0;
    }

    #spy .nav-link {
        padding: 13px;
        font-size: 16px;
    }

    .ambulance-flex {
        width: 45vw;
        height: 45vh;
        margin: auto;
        border-radius: 8px;
    }

    .ambulance-text h3 {
        font-size: 24px;
    }

    .ambulance-text p {
        width: 700px;
        font-size: 17px;
    }
}

@media (max-width: 991px) {
    .row hr {
        display: block;
    }
}

@media (min-width: 992px) {
    .navbar-links li {
        font-size: 19px;
    }

    .navbar-links {
        margin-left: 90px;
    }
}
