/* General style */
@import url("https://use.typekit.net/lwb2wmq.css");

body {
    font-family: "aileron", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0px;
    overflow-x: hidden;
    font-size: 18px;
}

img {
    width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    margin-bottom: 15px;
}

p {
    margin: 0;
    margin-bottom: 10px;
    line-height: 1.4;
    color: #515151;
}

.heading {
    font-size: 70px;
    text-transform: uppercase;
    margin: 0px;
    margin-bottom: 15px;
}

.heading span {
    font-weight: 400;
}

.container {
    max-width: 1400px;
    margin: auto;
    position: relative;
}

a {
    text-decoration: unset;
}

:root {
    --yellow: #FCDD00;
    --blue: #007DED;
}

.theme-btn {
    background-color: var(--yellow);
    color: #000 !important;
    padding: 10px 15px;
    border-radius: 50px;
    text-transform: uppercase;
    border: 2px solid var(--yellow);
}

.bread-crumb-section {
    height: 200px;
}

/* navigation bar */
.navigation-section {
    z-index: 999;
    position: fixed;
    width: 100%;
    margin-top: 20px;
}

.navigation-section .navigation-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
    background-color: rgba(255, 255, 255, 0.5);
    border: .0625rem solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(18.75rem);
    border-radius: 60px;
}

.navigation-section .icon-container {
    width: 50px;
}

.navigation-section nav {
    display: flex;
    justify-content: end;
}

.navigation-section nav .each-link {
    margin-left: 20px;
}

.navigation-section nav .each-link a {
    color: #000;
    text-transform: uppercase;
}

.navigation-section nav .each-link a:hover,
.navigation-section nav .each-link.active a {
    color: var(--yellow);
}

.response-trigger {
    display: none;
}

/* hero section */
.hero-section {
    position: relative;
    padding-top: 180px;
}

.hero-section .container {
    position: relative;
}

.cleaning-equip {
    display: flex;
    align-items: center;
    width: 102%;
    margin-top: -22%;
}

.cleaning-equip span {
    font-weight: 400;
    text-transform: uppercase;
    margin-left: -78px;
    margin-top: 16%;
    width: 300px;
}

.hero-section h2 {
    font-size: 75px;
}

/* services section */
.home-services-section {
    padding-bottom: 40px;
}

.services-swiper {
    padding: 0px 0px 45px 0px;
}

.services-swiper .each-service-container div {
    width: 100%;
}

.services-swiper .swiper-slide:nth-child(even) .each-service-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
}

.services-swiper .swiper-slide:nth-child(even) .each-service-container .img-container {
    margin-bottom: 10px;
}

.services-swiper .swiper-slide h4 {
    text-transform: uppercase;
    color: var(--blue);
    font-size: 20px;
}

.services-swiper .swiper-slide .img-container {
    width: 100%;
    height: 350px;
    overflow: hidden;
    /* ensures the img won't spill outside */
    border-radius: 14px;
}

.services-swiper .swiper-slide .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.services-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
}

.services-swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--blue);
}

/* why choose us section */
.why-choose-us-section {
    padding: 80px 0;
    position: relative;
    z-index: 0;
    /* ensure section content is above ::before */
}

.why-choose-us-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: -30px;
    right: -30px;
    bottom: 0;
    background-color: #E6E6E6;
    transform-origin: center center;
    /*transform: rotate(-3.25deg);*/
    z-index: -1;
    /* send it behind the content */
}

.why-choose-us-section .why-choose-us-wrap {
    z-index: 2;
    position: relative;
}

.why-choose-us-section h2 {
    margin-bottom: 28px;
}

.why-choose-us-section .container {
    /* display: grid;
    grid-template-columns: 1fr 1fr; */
    display: flex;
    flex-wrap: wrap;

}

.why-choose-us-section .container .content-side {
    width: 50%;
}

.why-choose-us-section .container .img-side {
    width: 45%;
    margin-left: auto;
    overflow: hidden;
    border-radius: 14px;
}

.why-choose-us-section .container .img-side img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.why-choose-us-section .container .content-side .each-reason-wrap {
    display: grid;
    grid-template-columns: 40px auto;
    margin-bottom: 24px;
}

.why-choose-us-section .container .content-side .icon-container {
    width: 40px;
    height: 40px;
    max-width: 50px;
    max-height: 50px;
    background-color: #D9D9D9;
    border-radius: 100%;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-choose-us-section .container .content-side .content-container {
    padding-left: 20px;
    width: auto;
}

.why-choose-us-section .container .content-side .icon-container .icom-wrap {
    background-color: var(--blue);
    color: var(--yellow);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10PX;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    font-size: 22px;
}

/* footer */
.footer-section {
    margin-top: 140px;
    z-index: 9;
    position: relative;
    padding-top: 90px;
}

.footer-section footer {
    background-color: #171717;
    color: #fff;
}

.footer-section footer p {
    color: #fff;
}

.footer-section .estimate-outer-section {
    width: 100%;
    position: relative;
}

.footer-section .estimate-section {
    background-color: var(--blue);
    color: #fff;
    padding: 30px 0px;
    text-align: center;
    border-radius: 14px;
    position: absolute;
    width: 100%;
    top: -140px;
}

.footer-section .estimate-section .estimate-wrap {
    position: relative;
}

.footer-section .estimate-section p {
    font-size: 60px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: #fff;
}

.footer-section .estimate-section p span {
    font-weight: 400;
    display: block;
}

.footer-section .estimate-section .icon-container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

}

.footer-section .estimate-section .icon-container.board {
    left: 20px;
}

.footer-section .estimate-section .icon-container.machine {
    right: 20px;
}

.footer-section footer a {
    color: #fff;
}

.footer-section footer .footer-links {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    padding-top: 200px;
}

.footer-section footer .footer-links .each-section {
    grid-column: span 3;
}

.footer-section footer .footer-links .each-section:nth-child(1) {
    grid-column: span 5;
}

.footer-section footer .footer-links .each-section h5 {
    font-size: 25px;
    text-transform: uppercase;
}

.footer-section footer .footer-links .each-section ul {
    list-style: none;
    padding: 0px;
    margin-left: 15px;
}

.footer-section footer .footer-links .each-section ul li {
    margin-bottom: 13px;
}

.footer-section footer .footer-links .each-section ul li a {
    display: inline-flex;
    align-items: center;
}

.footer-section footer .footer-links .each-section ul li a:hover {
    color: var(--blue);
}

.footer-section footer .footer-links .each-section ul li svg {
    margin-right: 5px;
    font-size: 21px;
}

.footer-section footer .icons-container {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.footer-section footer .icons-container a {
    margin-right: 5px;
}

.footer-section footer .icons-container a svg {
    font-size: 30px !important;
}

.footer-section footer span.copy-right {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 0px;
    border-top: 2px solid #fff;
}

.footer-section footer span.copy-right a {
    color: #7c7c7c;
}


/* =====================================
ABout Us Page
========================================*/
.about-us-page .bread-crumb-section {
    background-color: var(--blue);
}

.about-us-page .who-we-are {
    background-color: var(--blue);
    color: #fff;
    padding-bottom: 90px;
    border-bottom-left-radius: 45px;
    border-bottom-right-radius: 45px;
}

.about-us-page .who-we-are .heading {
    margin-bottom: 30px;
}

.about-us-page .who-we-are p {
    color: #fff;
}

.about-us-page .why-choose-us-section::before {
    content: unset;
}

.about-us-page .why-choose-us-section {
    padding-bottom: 0px;
}

/* =====================================
Our Services Page
========================================*/
.service-list-section .service-list-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-right: -15px;
    margin-left: -15px;
}

.service-list-section .service-list-wrap .each-service {
    flex: 0 0 28%;
    max-width: 28%;
    border-radius: 14px;
    text-align: center;
    padding: 20px;
    transition-duration: 0.5s;
    box-shadow: 0px 4px 17px #0000000d;
    margin: 0px 15px 15px 15px
}

.service-list-section .service-list-wrap .each-service:hover {
    box-shadow: 0px 4px 17px #0000004f;
    transition-duration: 0.5s;
}

.service-list-section .service-list-wrap .each-service .thumbnail-container {
    border-radius: 14px;
    overflow: hidden;
    width: 100%;
    height: 300px;
    margin-bottom: 15px;
}

.each-service .thumbnail-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.each-service .content h2 {
    color: var(--blue);
    text-transform: uppercase;
    font-size: 22px;
}

/* =====================================
Contact Us Page
========================================*/
.contact-us-page .bread-crumb-section {
    background-color: var(--blue);
}

.contact-us-page .form-contact-details-section {
    position: relative;
}

.contact-us-page .form-contact-details-section::before {
    position: absolute;
    content: "";
    background-color: var(--blue);
    top: 0;
    left: 0;
    right: 0;
    bottom: 100px;
    z-index: 1;
    border-bottom-left-radius: 45px;
    border-bottom-right-radius: 45px;
}

.contact-us-page .form-contact-details-section .form-details-wrap {
    z-index: 2;
    position: relative;
}

.form-contact-details-section .form-details-wrap .form-content-container {
    display: flex;
    flex-wrap: wrap;
}

.form-contact-details-section .form-details-wrap .content-side {
    color: #fff;
    width: 50%;
}

.form-contact-details-section .form-details-wrap .content-side p {
    color: #fff;
}

.form-contact-details-section .form-details-wrap .content-side .icons-container {
    margin-top: 20px;
}

.form-contact-details-section .form-details-wrap .content-side svg {
    font-size: 32px;
}

.form-contact-details-section .form-details-wrap .content-side a {
    color: #fff;
}

.form-details-wrap .form-side {
    width: 45%;
    margin-left: auto;
}

.form-details-wrap .form-side span {
    margin-bottom: 25px;
    display: block;
    width: 100%;
}

.form-details-wrap .form-side .form-wrap {
    background-color: #fff;
    padding: 50px 30px;
    border-radius: 24px;
    box-shadow: 0px 0px 20px #00000047;
}

.form-details-wrap .form-side input,
.form-details-wrap .form-side textarea {
    padding: 15px 15px;
    border-radius: 14px;
    outline: none;
    border: 1px solid var(--blue);
}

.form-details-wrap .form-side .form-wrap form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.form-details-wrap .form-side .form-wrap form textarea,
.form-details-wrap .form-side .form-wrap form [name="subject"],
.form-details-wrap .form-side .form-wrap form button {
    grid-column: 1 / span 2;
}

.form-details-wrap .form-side .form-wrap form button {
    font-weight: 600;
}

.response p {
    padding: 5px 0px;
    width: 100%;
    text-align: center;
    margin-top: 10px;
    display: block;
    border-radius: 8px;
    font-size: 13px;
}

.response p.success {
    color: green;
    background: #cbffcb;
}

.response p.failed {
    color: red;
    background: rgb(255, 215, 215);
}

/* =====================================
Career Page
========================================*/
.career-page .bread-crumb-section{
    background-color: var(--blue);
}
.archive .bread-crumb-section{
    background-color: unset;
}
.career-page .top-content-section{
    background-color: var(--blue);
    color: #fff;
    padding-bottom: 40px;
    border-bottom-left-radius: 45px;
    border-bottom-right-radius: 45px;
    margin-bottom: 25px;
}
.career-page .top-content-section p{
    color: #fff;
}
.career-page .top-content-section h3{
    margin-bottom: 5px;
}
.career-page .top-content-section ul{
    margin: 2px 0px;
}
.job-lis-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.job-lis-container .each-job-list {
    border: 1px solid var(--blue);
    border-radius: 14px;
    padding: 15px;
}

.job-lis-container .each-job-list h4 {
    text-transform: uppercase;
    font-size: 22px;
}

.job-lis-container .each-job-list p {
    line-height: 1.2;
}

.job-lis-container .each-job-list .bottom-container {
    border-top: 1px solid #000;
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
}

.job-lis-container .each-job-list .bottom-container span a {
    text-decoration: underline;
    color: #000;
}

.career-wrap h1 {
    text-transform: uppercase;
}

.career-wrap li {
    color: #515151;
}


/* pop-up-forms */
.pop-up-from-wrap {
    position: fixed;
    z-index: 9999;
    background-color: #00000076;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    justify-content: center;
    align-items: center;
}

.pop-up-from-wrap.show {
    display: flex;
}

.pop-up-from-wrap .form-container {
    padding: 20px;
    background-color: #fff;
    border-radius: 14px;
    position: relative;
}

.pop-up-from-wrap .form-container .fields-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.pop-up-from-wrap .form-container input,
.pop-up-from-wrap .form-container select,
.pop-up-from-wrap .form-container textarea {
    padding: 15px 15px;
    border-radius: 14px;
    outline: none;
    border: 1px solid var(--blue);
}

.pop-up-from-wrap .form-container textarea {
    grid-column: 1 / span 2;
}

.pop-up-from-wrap button.close {
    position: absolute;
    right: 10px;
    top: 10px;
    border-radius: 100%;
    padding: 8px;
    border: 1px solid #000;
    outline: none;
    cursor: pointer;
}