body {
    color: #000;
    background: #fff;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    margin: 0px;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden;
    line-height: 1.4;
    position: relative;
}
html {
    scroll-padding-top: 12%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
a {
    text-decoration: none;
}
a[href^="tel:"] {
  white-space: nowrap;
}
p,
li {
    color: #000000;
}
h1,
h2,
h3,
h4 {
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1.2;
    color: #000000;
}
h1 {
    font-size: 30px;
    font-weight: 800;
}
h2 {
    font-size: 25px;
    font-weight: 800;
    text-transform: capitalize;
    margin: 0px;
    text-align: center;
}
h3 {
    font-size: 21px;
}
h4 {
    font-size: 20px;
}
@media (min-width: 600px) {
    body {
        font-size: 18px;
    }
    h1 {
        font-size: 40px;
    }
    h2 {
        font-size: 30px;
    }
    h3 {
        font-size: 23px;
    }
    h4 {
        font-size: 22px;
    }
}
@media (min-width: 981px) {
    h1 {
        font-size: 50px;
    }
    h2 {
        font-size: 40px;
    }
    h3 {
        font-size: 25px;
    }
    h4 {
        font-size: 24px;
    }
}
* {
    box-sizing: border-box;
}
/*NAVIGATION*/
header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: auto;
    z-index: 99999;
}
.navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 10px 0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1),   0 1px 2px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    background: #fff;
    opacity: 0;
}
.navigation.scrolled {
    position: fixed;
    top: 0;
    height: auto;
}
.navigation > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 95%;
    height: 100%;
    max-width: 1280px;
}
.brand {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    margin-bottom: 5px;
}
.brand p {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}
.brand-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    margin-bottom: 5px;
}
.brand-logo img {
    width: 180px;
    height: auto;
    object-fit: contain;
    object-position: center;
}
.nav-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
}
.quote-btn {
    background: #DBEAFE;
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    padding: 10px 15px;
    transition: 0.5s;
    margin: 5px;
    cursor: pointer;
}
.quote-btn:hover {
    background: #1d4fbc;
    transform: scale(1.05);
}
.quote-btn svg {
    width: 20px;
    height: 20px;
}
.quote-btn svg g {
    fill: #1d4fbc;
    transition: 0.5s;
}
.quote-btn:hover svg g {
    fill: #fff;
}
.quote-btn span {
    color: #1d4fbc;
    font-weight: 600;
    margin-left: 10px;
    transition: 0.5s;
}
.quote-btn:hover span {
    color: #fff;
}
.btn {
    background: #2563EB;
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    padding: 10px 15px;
    transition: 0.5s;
    margin: 5px;
}
.btn:hover {
    background: #1d4fbc;
    transform: scale(1.05);
}
.btn svg {
    width: 20px;
    height: 20px;
}
.btn svg g {
    fill: #fff;
}
.btn span {
    color: #fff;
    font-weight: 600;
    margin-left: 10px;
}
/*END OF NAVIGATION*/
/*SLIDER*/
main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}
.slider-section {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: calc(100vh + 520px);
    z-index: 1;
    min-height: 900px;
    max-height: 1065px;
}
.slider-section::before {
    content: '';
    z-index: 3;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0000006e;
}
.slider-section picture {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.slider-section picture img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.slider {
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 95%;
    max-width: 1280px;
    position: relative;
}
.slider-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}
.slider-title {
    color: #fff;
    text-shadow: 0 0 5px #000;
    text-align: center;
    font-weight: 800;
    opacity: 0;
}
.slider-main-text {
    margin: 0;
    color: #fff;
    font-size: 18px;
    text-shadow: 0 0 5px #000;
    text-align: center;
    font-weight: 500;
    opacity: 0;
}
.slider-slogan {
    text-align: center;
    color: #FBBF24;
    font-size: 23px;
    margin: 10px 0;
    font-weight: 600;
    text-shadow: 0 0 5px #000;
    opacity: 0;
}
.slider-list {
    margin: 10px 0;
    padding-left: 15px;
    opacity: 0;
}
.slider-list li {
    color: #fff;
    text-shadow: 0 0 5px #000;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
}
.slider-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 10px;
    opacity: 0;
}
/*CONTACT FORM STYLE*/
#contact-form {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    width: 100%;
    max-width: 700px;
}
.contact-form-title {
    margin-bottom: 10px;
    text-align: center;
    color: #000;
    font-weight: 700;
    font-size: 25px;
}
.contact-form-text {
    text-align: center;
    margin: 0 0 10px;
    color: #545454;
}
.email-form {
    z-index: 1;
    position: relative;
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 15px;
}
.email-form > div {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    width: 100%;
}
.email-form .form-row {
    margin-bottom: 35px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
}
.email-form .form-row:last-of-type {
    width: 100%;
    margin-bottom: 0;
}
.email-form .form-row .btn {
    margin: 0px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    border: #2563EB;
    color: #fff;
    border-radius: 10px;
    width: 100%;
    padding: 20px 0;
}
.email-form input, .email-form textarea {
    width: 100%;
    padding: 20px 10px 10px;
    box-sizing: border-box;
    transition: all 0.3s ease 0s;
    border: 0;
    position: relative;
    border-radius: 10px;
    box-shadow: 6px 6px 12px #c5c5c5, -6px -6px 12px #ffffff;
    background: #ffffff;
    color: #000;
    border-right: 3px solid #fff;
    border-left: 3px solid #fff;
    border-inline: 3px solid #fff;
}
.email-form input:focus, .email-form input:not(:placeholder-shown), .email-form textarea:focus, .email-form textarea:not(:placeholder-shown) {
    outline: 0px;
    border-right: 3px solid #2563EB;
    border-left: 3px solid #2563EB;
    border-inline: 3px solid #2563EB;
    background: #2563EB0f;
}
.email-form input::placeholder, .email-form textarea::placeholder {
    visibility: hidden;
}
.email-form input:focus::placeholder, .email-form textarea:focus::placeholder {
    visibility: visible;
}
.email-form textarea {
    resize: none;
}
.email-form .form-row label {
    color: #000;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease 0s;
    padding: 0px 5px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
}
.email-form .form-row-textarea label {
    color: #000;
    position: absolute;
    right: 10px;
    top: 18%;
    transform: translateY(-50%);
    transition: all 0.3s ease 0s;
    padding: 0px 5px;
}
.email-form input:focus + label,
.email-form input:not(:placeholder-shown) + label,
.email-form textarea:focus + label,
.email-form textarea:not(:placeholder-shown) + label {
    top: 0px;
    color: #000;
    padding: 3px 7px;
    background: #2563EB1c;
    font-size: 14px;
    border: 2px solid #2563EB;
    width: auto;
    border-radius: 20px;
    margin-left: 5px;
}
.email-form textarea:not(:placeholder-shown) + label,
.email-form textarea:focus + label {
    max-width: 76px;
}
.email-form input[type="text"]:focus,
.email-form input[type="tel"]:focus,
.email-form input[type="email"]:focus,
.email-form textarea:focus {
    outline: none;
}
/*END OF SLIDER*/
/*BADGES*/
.badges-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    background: #fff;
}
.badges-section > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    max-width: 1280px;
    position: relative;
    padding: 25px 0;
}
.badges-section > div > a {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.badges-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    align-content: center;
}

/*Uncommend the needed design and delete the other, do the same in the html*/
/*Design with svg/icon*/
.badges-element {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 10px;
    width: auto;
    opacity: 0;
}
.badges-element svg {
    width: 35px;
    height: 35px;
}
.badges-element svg path {
    stroke: #2563EB;
}
.badges-element p {
    margin: 0 0 0 5px;
    font-size: 20px;
    font-weight: 500;
    text-align: left;
}

/*Design with image*/
/* .badges-element {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 10px;
    width: auto;
}
.badges-element img {
    width: 100px;
    height: auto;
    filter: invert(1);
    object-fit: contain;
    object-position: center;
}
.badges-element p {
    margin: 5px 0 0 0;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
} */
/*END OF BADGES*/

/*SERVICES*/
.services-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}
.services-section > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    max-width: 1280px;
    position: relative;
    padding: 25px 0;
    flex-direction: column;
}
.services-title {
    text-align: center;
    color: #000;
    margin-bottom: 20px;
    opacity: 0;
}
.services-subtitle {
    color: #545454;
    text-align: center;
    margin: 0 0 20px;
    opacity: 0;
}
.services-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
    width: 100%;
}
.services-container .servicesSwiper {
    padding: 0 30px 50px;
}
.services-container .servicesSwiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
    position: relative;
    flex-direction: row;
}
.services-container .servicesSwiper .swiper-wrapper .swiper-slide {
    height: auto;
    align-items: center;
    justify-content: center;
    display: flex;
}
.services-container .servicesSwiper .swiper-wrapper .swiper-slide a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.services-container a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    cursor: pointer;
}
.services-element {
    opacity: 0;
}
div.services-swiper-button-prev::after, div.services-swiper-button-next::after {
    color: #000000;
    font-size: 23px !important;
}
div.services-swiper-button-prev:hover::after, div.services-swiper-button-next:hover::after {
    color: #ffffff;
}
div.services-swiper-button-prev {
    border-radius: 5px;
    transition: all 0.5s;
    top: auto;
    bottom: 0;
    border: 1px solid #dbeafe;
    padding: 0px;
    width: 40px;
    height: 40px;
    background: #dbeafe;
    left: calc(50% - 50px);
}
div.services-swiper-button-prev:hover {
    background: #2563eb;
}
div.services-swiper-button-next {
    border-radius: 5px;
    transition: all 0.5s;
    top: auto;
    bottom: 0;
    border: 1px solid #dbeafe;
    padding: 0px;
    width: 40px;
    height: 40px;
    background: #dbeafe;
    right: calc(50% - 50px);
}
div.services-swiper-button-next:hover {
    background: #2563eb;
}

/*Delete the design you don't need, do the same in the html*/

/*Design 1 with small image and svg*/
.services-section {
    background: #F9FAFB;
}
.services-element-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    width: 100%;
    padding: 20px;
    margin: 15px;
    border-radius: 10px;
    transition: 0.5s ease;
    max-width: 390px;
    /*Uncommend this if you have slider*/
    /* height: 100%; */
}
.services-element-1:hover {
    box-shadow: 0 10px 15px -1px rgb(0 0 0 / 22%), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.services-image-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
}
.services-image-1 img {
    object-fit: cover;
    object-position: center;
    height: auto;
    width: 100px;
    max-height: 100px;
}
.services-image-1 svg {
    width: 100px;
    height: 100px;
}
.services-image-1 svg path {
    stroke: #2563EB;
}
.services-content-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.services-content-1 h3 {
    color: #000;
    text-align: center;
    margin: 0 0 10px;
}
.services-content-1 p {
    margin: 0;
    color: #545454;
    text-align: center;
    height: 100%;
}

/*Design 2 with round images*/
.services-section {
    background: #fff;
}
.services-element-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #F9FAFB;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    width: 100%;
    padding: 20px;
    margin: 15px;
    border-radius: 10px;
    transition: 0.5s ease;
    max-width: 390px;
    /*Uncommend this if you have slider*/
    /* height: 100%; */
}
.services-element-2:hover {
    box-shadow: 0 10px 15px -1px rgb(0 0 0 / 22%), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.services-image-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
}
.services-image-2 img {
    object-fit: cover;
    object-position: center;
    height: 130px;
    width: 130px;
    border-radius: 50%;
}
.services-content-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.services-content-2 h3 {
    color: #1d4fbc;
    text-align: center;
    margin: 0 0 10px;
}
.services-content-2 p {
    margin: 0;
    color: #545454;
    text-align: center;
    height: 100%;
}

/*Design 3 with square images*/
.services-section {
    background: #fff;
}
.services-element-3 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    width: 100%;
    padding: 20px;
    margin: 15px;
    border-radius: 10px;
    transition: 0.5s ease;
    max-width: 390px;
    /*Uncommend this if you have slider*/
    /* height: 100%; */
}
.services-element-3:hover {
    box-shadow: 0 10px 15px -1px rgb(0 0 0 / 22%), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.services-image-3 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
}
.services-image-3 img {
    object-fit: cover;
    object-position: center;
    height: 100px;
    width: 100px;
}
.services-content-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.services-content-3 h3 {
    color: #1d4fbc;
    text-align: center;
    margin: 0 0 10px;
}
.services-content-3 p {
    margin: 0;
    color: #545454;
    text-align: center;
    height: 100%;
}

/*Design 4 with big square images*/
.services-section {
    background: #fff;
}
.services-element-4 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #F9FAFB;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    width: 100%;
    padding: 20px;
    margin: 15px;
    border-radius: 10px;
    transition: 0.5s ease;
    max-width: 390px;
    /*Uncommend this if you have slider*/
    /* height: 100%; */
}
.services-element-4:hover {
    box-shadow: 0 10px 15px -1px rgb(0 0 0 / 22%), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.services-image-4 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
}
.services-image-4 img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
    max-height: 200px;
    border-radius: 10px;
}
.services-content-4 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.services-content-4 h3 {
    color: #2563EB;
    text-align: left;
    margin: 0 0 10px;
}
.services-content-4 p {
    margin: 0;
    color: #545454;
    text-align: left;
    height: 100%;
}

/*Design 5 with small rounded images with decoration*/
.services-section {
    background: #F9FAFB;
}
.services-element-5 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #F9FAFB;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    width: 100%;
    padding: 20px;
    margin: 15px;
    border-radius: 10px;
    transition: 0.5s ease;
    max-width: 390px;
    /*Uncommend this if you have slider*/
    /* height: 100%; */
}
.services-element-5:hover {
    box-shadow: 0 10px 15px -1px rgb(0 0 0 / 22%), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.services-image-5 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    margin-bottom: 20px;
    border: 5px solid #DBEAFE;
    padding: 10px;
    border-radius: 50%;
}
.services-image-5 img {
    object-fit: cover;
    object-position: center;
    height: 130px;
    width: 130px;
    border-radius: 50%;
}
.services-content-5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.services-content-5 h3 {
    color: #000000;
    text-align: center;
    margin: 0 0 10px;
}
.services-content-5 p {
    margin: 0;
    color: #545454;
    text-align: center;
    height: 100%;
}
/*END OF SERVICES*/

/*WORKING PROCESS*/
.working-process-element, .working-process-title {
    opacity: 0;
}

/*Delete the design you don't need, do the same in the html*/

/*Design 1 with text icon*/
.working-process-section-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    background: #fff;
}
.working-process-section-1 > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    max-width: 1280px;
    position: relative;
    padding: 25px 0;
    flex-direction: column;
}
.working-process-title-1 {
    color: #000;
    text-align: center;
    margin-bottom: 20px;
}
.working-process-container-1 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    position: relative;
}
.working-process-element-1 {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    background: #F9FAFB;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 15px;
    border-radius: 10px;
    width: 100%;
    height: auto;
    max-width: 290px;
}
.working-process-icon-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 48px;
    text-align: center;
}
.working-process-content-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.working-process-content-1 h3 {
    text-align: center;
    color: #000;
    margin: 10px 0;
}
.working-process-content-1 p {
    margin: 0;
    text-align: center;
    color: #545454;
}

/*Design 2 with text icon*/
.working-process-section-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    background: #DBEAFE;
}
.working-process-section-2 > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    max-width: 1280px;
    position: relative;
    padding: 25px 0;
    flex-direction: column;
}
.working-process-title-2 {
    color: #000;
    text-align: center;
    margin-bottom: 20px;
}
.working-process-container-2 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    position: relative;
}
.working-process-element-2 {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 15px;
    border-radius: 10px;
    width: 100%;
    height: auto;
    max-width: 290px;
}
.working-process-number-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #2563EB;
    border-radius: 50%;
    width: 65px;
    height: 65px;
}
.working-process-number-2 span {
    font-size: 30px;
    text-align: center;
    color: #fff;
    font-weight: 800;
}
.working-process-content-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.working-process-content-2 h3 {
    text-align: center;
    color: #1d4fbc;
    margin: 10px 0;
}
.working-process-content-2 p {
    margin: 0;
    text-align: center;
    color: #545454;
}

/*Design 3 with css numbers and line (like timeline)*/
.working-process-section-3 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    background: #DBEAFE;
}
.working-process-section-3 > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    max-width: 1280px;
    position: relative;
    padding: 25px 0;
    flex-direction: column;
}
.working-process-title-3 {
    color: #1d4fbc;
    text-align: center;
    margin-bottom: 20px;
}
.working-process-container-3 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    position: relative;
}
.working-process-line-3 {
    background: #2563eb42;
    position: absolute;
    width: 5px;
    height: calc(100% - 15px);
    top: 15px;
    z-index: 1;
    left: auto;
    right: auto;
}
.working-process-element-3 {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 15px;
    border-radius: 10px;
    width: 100%;
    height: auto;
    z-index: 2;
}
.working-process-number-3 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #1d4fbc;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}
.working-process-number-3 span {
    font-size: 20px;
    text-align: center;
    color: #fff;
    font-weight: 800;
}
.working-process-content-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.working-process-content-3 h3 {
    text-align: center;
    color: #1d4fbc;
    margin: 10px 0;
}
.working-process-content-3 p {
    margin: 0;
    text-align: center;
    color: #545454;
}
/*END OF WORKING PROCESS*/

/*AREA SERVED*/
.area-served-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    background: #F3F4F6;
}
.area-served-section > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    max-width: 1280px;
    position: relative;
    padding: 25px 0;
    flex-direction: column;
}
.area-served-title {
    text-align: center;
    color: #000;
    margin-bottom: 20px;
    opacity: 0;
}
.area-served-subtitle {
    text-align: center;
    color: #545454;
    margin: 0 0 20px;
    opacity: 0;
}
.area-served-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    opacity: 0;
}
.area-served-element {
    background: #DBEAFE;
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    padding: 10px 15px;
    margin: 5px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.area-served-element div {
    color: #1d4fbc;
    font-weight: 600;
    text-align: center;
}
.area-served-text {
    text-align: center;
    margin-bottom: 0;
    color: #545454;
    opacity: 0;
}
/*END OF AREA SERVED*/

/*GALLERY*/
.gallery-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    background: #F3F4F6;
}
.gallery-section > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    max-width: 1280px;
    position: relative;
    padding: 25px 0;
    flex-direction: column;
}
.gallery-title {
    color: #000;
    text-align: center;
    margin-bottom: 20px;
    opacity: 0;
}
div.GallerySwiper {
    width: 100%;
    padding-bottom: 0;
    opacity: 0;
}
.GallerySwiper .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
}
.GallerySwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}
.GallerySwiper .swiper-slide-shadow-left {
    background-image: linear-gradient(to right, #ffffffc7, #ffffff4a) !important;
}
.GallerySwiper .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, #ffffff4a, #ffffffc7) !important;
}
.gallery-swiper-pagination {
    bottom: 0 !important;
}
.gallery-swiper-pagination .swiper-pagination-bullet {
    background: #000;
}
/*END OF GALLERY*/

/*FAQ*/
.faq-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    background: #fff;
}
.faq-section > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    max-width: 1280px;
    position: relative;
    padding: 25px 0;
    flex-direction: column;
}
.faq-title {
    color: #000;
    text-align: center;
    margin-bottom: 20px;
    opacity: 0;
}
.faq-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* max-width: 800px; */
}
.faq-element {
    background: #F9FAFB;
    border-radius: 10px;
    border: 1px solid #00000014;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 10px;
    opacity: 0;
}
.faq-element-header {
    width: 100%;
    padding: 20px;
    border: none;
    outline: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.25s;
}
.faq-element.is-open .faq-element-header {
    border: 1px solid #00000014;
}
.faq-element-title {
    flex: 1;
    color: #000;
    text-align: left;
    margin: 0;
}
.faq-element-icon {
    position: relative;
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    border-right: 3px solid #000;
    border-bottom: 3px solid #000;
    transform: rotate(45deg);
    transition: 0.25s;
}
.faq-element.is-open .faq-element-icon {
    transform: rotate(225deg);
}
.faq-element-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.22s ease-out, padding-bottom 0.22s ease-out, padding-top 0.22s ease-out;
    will-change: max-height;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    border-radius: 10px;
    background: #fff;
}
.faq-element.is-open .faq-element-content {
    padding-top: 30px;
    padding-bottom: 30px;
}
.faq-element-content p {
    margin: 0;
    color: #000;
    width: 100%;
    text-align: left;
}
/*END OF FAQ*/

/*TESTIMONIALS*/
.testimonials-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    background: #F9FAFB;
}
.testimonials-section > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    max-width: 1280px;
    position: relative;
    padding: 25px 0;
    flex-direction: column;
}
.testimonials-title {
    color: #000;
    text-align: center;
    margin-bottom: 20px;
    opacity: 0;
}
.testimonial-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
}
.testimonialsSwiper {
    width: 100%;
    height: 100%;
    padding: 20px 10px 50px;
}
.testimonialsSwiper .testi-content {
    display: flex;
    align-items: stretch;
    position: relative;
    flex-direction: row;
}
.testimonialsSwiper .swiper-slide {
    height: auto;
    align-items: center;
    justify-content: center;
    display: flex;
}
.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    max-width: 390px;
    margin: 15px;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    opacity: 0;
    /*Uncommend this if you need slider*/
    /* width: 100%; */
    /* height: 100%; */
    /* max-width: none; */
    /* margin: 0; */
}
.testimonials-stars{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.testimonials-stars svg {
    width: 20px;
    height: 20px;
}
.testimonials-stars svg path {
    fill: #FBBF24;
}
.testimonial-text {
    text-align: center;
    width: 100%;
    height: 100%;
    color: #545454;
    font-style: italic;
}
.details {
    display: flex;
    align-items: center;
    justify-content: center;
}
.details span {
    text-align: center;
    font-weight: 500;
}
div.testimonials-swiper-button-next, div.testimonials-swiper-button-prev {
    border-radius: 5px;
    transition: all 0.5s;
    top: auto;
    bottom: 0;
    border: 1px solid #dbeafe;
    padding: 0px;
    width: 40px;
    height: 40px;
    background: #dbeafe;
}
div.testimonials-swiper-button-next {
    right: calc(50% - 50px);
}
div.testimonials-swiper-button-prev {
    left: calc(50% - 50px);
}
div.testimonials-swiper-button-next:hover, div.testimonials-swiper-button-prev:hover {
    background: #2563eb;
}
div.testimonials-swiper-button-next::after, div.testimonials-swiper-button-prev::after {
    color: #000000;
    font-size: 23px !important;
}
div.testimonials-swiper-button-next:hover::after, div.testimonials-swiper-button-prev:hover::after {
    color: #ffffff;
}
/*END OF TESTIMONIALS*/

/*If you don't need the section delet it, check html*/
/*CLOSING SECTION*/
.closing-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    background: #1d4fbc;
}
.closing-section > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    max-width: 1280px;
    position: relative;
    padding: 25px 0;
    flex-direction: column;
}
.closing-title {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    opacity: 0;
}
.closing-text {
    text-align: center;
    color: #fff;
    margin-top: 0;
    opacity: 0;
}
.closing-btn {
    background: #FBBF24;
    opacity: 0;
}
.closing-btn span {
    color: #1d4fbc;
}
.closing-btn svg g {
    fill: #1d4fbc;
}
.closing-btn:hover {
    background: #f9d36f;
}
/*END OF CLOSING SECTION*/

/*FOOTER*/
footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    background: #111827;
    flex-direction: column;
}
footer > div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95%;
    max-width: 1280px;
    position: relative;
    padding: 25px 0;
    flex-direction: column;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 25px;
    opacity: 0;
}
.footer-title {
    text-align: center;
    color: #fff;
    margin: 0 0 20px;
}
.footer-content p {
    text-align: center;
    margin: 0;
    color: #bcbcbc;
}
.footer-services {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    opacity: 0;
}
.footer-services-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.footer-services-list li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 5px;
}
.footer-services-list li a {
    color: #bcbcbc;
    text-align: center;
}
.footer-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
    opacity: 0;
}
.footer-contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.footer-info-element {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 5px;
}
.footer-info-element strong {
    color: #bcbcbc;
    text-align: center;
}
.footer-info-element a {
    color: #bcbcbc;
    margin-left: 5px;
    text-align: center;
}
.footer-info-element span {
    color: #bcbcbc;
    margin-left: 5px;
    text-align: center;
}
.footer-rights {
    border-top: 1px solid #bcbcbc70;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 100px;
    opacity: 0;
}
.footer-rights p {
    color: #bcbcbc;
}
/*END OF FOOTER*/

#mobile-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    position: fixed;
    bottom: 0;
    z-index: 99999999;
}
#mobile-buttons > div {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
}
.footer-button-book {
    width: 50%;
    background: #15bd88;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-button-book a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 15px 5px;
    flex-wrap: wrap;
    align-content: center;
}
.footer-button-book a svg {
    width: 25px;
    height: 25px;
}
.footer-button-book a svg g {
    fill: #000000;
}
.footer-button-book a span {
    margin-left: 5px;
    color: #000000;
    font-size: 20px;
    font-weight: 600;
}
.footer-button-call {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2563EB;
}
.footer-button-call a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 15px 5px;
    flex-wrap: wrap;
    align-content: center;
}
.footer-button-call a svg {
    width: 25px;
    height: 25px;
}
.footer-button-call a svg g {
    fill: #fff;
}
.footer-button-call a span {
    margin-left: 5px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

#booking-engin {
    position: fixed;
    left: 0px;
    z-index: 9999999;
    cursor: pointer;
    bottom: 10px;
    width: auto;
    height: auto;
    display: none;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: none;
    box-shadow: none;
    margin: 0px;
    padding: 0px;
}
#booking-engin .quote-btn {
    margin: 0;
    border-radius: 0 25px 25px 0;
    border: 1px solid #1d4fbc;
}

@keyframes riseRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes riseLeft {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes riseUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes riseDown {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes riseZoom {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (min-width: 600px) {
    .navigation > div {
        flex-direction: row;
        justify-content: space-between;
    }
    .brand {
        width: 40%;
        justify-content: flex-start;
        margin-bottom: 0;
    }
    .brand-logo {
        width: 65%;
        justify-content: flex-start;
        margin-bottom: 0;
    }
    .brand p {
        text-align: left;
    }
    .nav-buttons {
        width: 60%;
        flex-direction: row;
        justify-content: flex-end;
        display: flex;
        flex-wrap: wrap;
        align-content: center;
    }
}
@media (min-width: 981px) {
    .slider-section {
        max-height: 690px;
        min-height: 680px;
        height: calc(100vh + 145px);
    }
    .slider {
        flex-direction: row;
        justify-content: space-between;
    }
    .slider-content {
        width: 49%;
        align-items: flex-start;
    }
    .slider-title {
        text-align: left;
    }
    .slider-main-text {
        text-align: left;
    }
    .slider-buttons {
        justify-content: flex-start;
    }
    #contact-form {
        width: 49%;
        margin-top: 0;
        max-width: 500px;
    }

    /*Design 3 with css numbers and line (like timeline)*/
    .working-process-element-3 {
        width: 21%;
    }
    .working-process-line-3 {
        height: 5px;
        width: 100%;
        top: calc(50% - 2.5px);
    }

    /*FOOTER*/
    footer > div {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    .footer-content {
        align-items: flex-start;
        width: 32%;
    }
    .footer-title {
        text-align: left;
    }
    .footer-content p {
        text-align: left;
    }
    .footer-services {
        align-items: flex-start;
        width: 32%;
    }
    .footer-services-list {
        align-items: flex-start;
    }
    .footer-services-list li a {
        text-align: left;
    }
    .footer-info {
        align-items: flex-start;
        width: 32%;
    }
    .footer-contact-info {
        align-items: flex-start;
    }
    .footer-info-element {
        justify-content: flex-start;
        flex-wrap: wrap;
        align-content: center;
    }
    .footer-info-element strong {
        text-align: left;
    }
    .footer-info-element a {
        text-align: left;
    }
    .footer-info-element span {
        text-align: left;
    }

    #booking-engin {
        display: flex;
    }
    .footer-rights {
        padding-bottom: 25px;
    }
    #mobile-buttons {
        display: none;
    } 
}