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

/* Global Code */
.main-color {
    color: #427da0;
}

/* Fonts */
@font-face {
    font-family: AdelleSansARA-Thin;
    src: url("../webfonts/AdelleSansARA-Thin.otf");
}
@font-face {
    font-family: AdelleSansARA-Light;
    src: url("../webfonts/AdelleSansARA-Light.otf");
}
@font-face {
    font-family: AdelleSansARA-Regular;
    src: url("../webfonts/AdelleSansARA-Regular.otf");
}
@font-face {
    font-family: AdelleSansARA-Bold;
    src: url("../webfonts/AdelleSansARA-Bold.otf");
}
@font-face {
    font-family: AdelleSansARA-Extrabold;
    src: url("../webfonts/AdelleSansARA-Extrabold.otf");
}
body {
    font-family: AdelleSansARA-Regular;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    display: block;
}

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

::-webkit-scrollbar-thumb {
    background-color: #427da0;
    border-radius: 5px;
}

::-webkit-scrollbar-track {
    background-color: #fff;
}

.form-check-input {
    box-shadow: none !important;
    outline: none !important;
}

/* Common Code */
header.home-page,
header.request-header,
header.agency-header,
header.project-header {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 0;
}
header.home-page::before,
header.request-header::before,
header.agency-header::before,
header.project-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}
header.home-page .header-wrapper,
header.request-header .header-wrapper,
header.agency-header .header-wrapper,
header.project-header .header-wrapper {
    background-color: #427da0;
    color: #fff;
    border-radius: 20px;
    width: 500px;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    direction: rtl;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
header.home-page .header-wrapper .title,
header.request-header .header-wrapper .title,
header.agency-header .header-wrapper .title,
header.project-header .header-wrapper .title {
    font-family: AdelleSansARA-Bold;
    font-size: 50px;
}
header.home-page .header-wrapper p,
header.request-header .header-wrapper p,
header.agency-header .header-wrapper p,
header.project-header .header-wrapper p {
    font-size: 24px;
    font-family: AdelleSansARA-Thin;
}

header.agency-header,
header.project-header,
header.request-header {
    height: 80vh;
}

header.request-header {
    background-image: url("../imgs/header/new-york.jpg");
}

header.agency-header,
header.project-header {
    background-image: url("../imgs/header/project_bg.jpg");
}

.wrapper {
    background-color: #fff;
    box-shadow: 0px 10px 40px 10px rgba(196, 196, 196, 0.15);
    border-radius: 8px;
}
.wrapper .head,
section.agencies h4 {
    color: #275572;
    font-size: 32px;
    font-weight: 500;
}
.wrapper .row {
    flex-direction: row-reverse;
}
.wrapper .service {
    height: 100%;
}
.wrapper .service,
.wrapper .agency-request,
.wrapper .agency-provide {
    border: 1px solid rgba(66, 125, 160, 0.2);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    color: #000;
}
.wrapper .agency-request,
.wrapper .agency-provide {
    height: 350px;
}
.wrapper .service .sub-title,
.wrapper .agency-request .sub-title,
.wrapper .agency-provide .sub-title {
    font-size: 27px;
    color: #275572;
}
.wrapper .service .img,
.wrapper .agency-request .img,
.wrapper .agency-provide .img {
    width: 51px;
    height: 51px;
    background-color: #427da0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}
.wrapper .service p,
.wrapper .agency-request p,
.wrapper .agency-provide p {
    text-align: right;
    direction: rtl;
}
.wrapper .service button {
    color: #fff;
    background: linear-gradient(
        111.9deg,
        #275572 -3.71%,
        #1e4a66 103.92%,
        #747474 103.93%
    );
}
.wrapper .show-agency {
    margin: auto;
    padding-left: 50px;
    padding-right: 50px;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    display: block;
}

/* Re-captcha */
.recaptcha .serial {
    display: flex;
    align-items: center;
    column-gap: 30px;
}
.recaptcha .serial .reload-icon,
.recaptcha .serial .serialNumber {
    font-size: 20px;
}
.recaptcha .serial .serialNumber {
    letter-spacing: 5px;
}
.recaptcha .serial .reload-icon {
    cursor: pointer;
}
.recaptcha .error {
    display: none;
}

/* Start Navbar */
nav.main-nav {
    position: fixed;
    width: 100%;
    padding: 10px 0;
    top: 0;
    z-index: 10;
    transition: background-color 0.3s ease-in-out;
}
nav.main-nav.bg {
    background-color: #00587b;
}
nav.main-nav .nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
nav.main-nav .nav-wrapper .logo {
    width: 10%;
}
nav.main-nav .nav-wrapper ul {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    flex: 0.5;
    transition: left 0.3s ease-in-out;
}
nav.main-nav .nav-wrapper ul.show {
    left: 0;
}
nav.main-nav .nav-wrapper ul li a {
    color: #fff;
    font-size: 20px;
    position: relative;
}
nav.main-nav .nav-wrapper ul li a::after {
    content: "";
    width: 0;
    height: 2px;
    display: block;
    position: absolute;
    left: 50%;
    bottom: -10px;
    background-color: #fff;
    transition: width 0.3s ease-in-out, left 0.3s linear;
}
nav.main-nav .nav-wrapper ul li a:hover::after {
    left: 0;
    width: 100%;
}
nav.main-nav .nav-wrapper .bars {
    display: none;
    align-items: center;
    flex-direction: column;
    row-gap: 4px;
    cursor: pointer;
}
nav.main-nav .nav-wrapper .bars span {
    background-color: #fff;
    width: 25px;
    height: 2px;
    transition: all 0.3s ease-in-out;
}
nav.main-nav .nav-wrapper .bars.transform span:first-child {
    transform: rotate(50deg) translate(10px, 10px);
}
nav.main-nav .nav-wrapper .bars.transform span:nth-child(2) {
    transform: translateX(-10px);
    visibility: hidden;
    opacity: 0;
}
nav.main-nav .nav-wrapper .bars.transform span:last-child {
    transform: rotate(-50deg) translate(-3px, 0px);
}

/* Start Home Page */
/* Start Header */
header {
    background-image: url("../imgs/header/header.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100vh;
    position: relative;
    z-index: 0;
}
header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

/* Start About */
section.about .about-content {
    direction: rtl;
    text-align: right;
}
section.about .about-content .head,
section.about .about-content p {
    color: #275572;
}
section.about .about-content .head {
    font-size: 32px;
    font-family: AdelleSansARA-Bold;
}
section.about .about-content p {
    font-size: 25px;
    font-family: AdelleSansARA-Thin;
}
section.about .imgs img:first-child {
    transform: translateY(-20px);
    margin-right: 30px;
}
section.about .imgs img:last-child {
    transform: translateY(10px);
}

/* Start trade-agency */
section.agencies .wrapper .btns a {
    background: linear-gradient(
        111.9deg,
        #275572 -3.71%,
        #1e4a66 103.92%,
        #747474 103.93%
    );
}
/* End trade-agency */

/* Start Contact us */
section.contact-us .contact-wrapper {
    border-radius: 8px;
    box-shadow: 0px 10px 40px 10px rgba(196, 196, 196, 0.15);
}
section.contact-us .contact-wrapper .head {
    direction: rtl;
}
section.contact-us .contact-wrapper .head h4 {
    font-weight: 500;
    font-size: 32px;
    color: #275572;
}
section.contact-us .contact-wrapper .head p {
    color: #1b5052;
    font-weight: 400;
    font-size: 20px;
    width: 800px;
    margin: auto;
}
section.contact-us .contact-wrapper form {
    direction: rtl;
}
section.contact-us .contact-wrapper form label {
    color: #1b5052;
    font-size: 20px;
    font-family: AdelleSansARA-Light;
}
section.contact-us .contact-wrapper form .form-control {
    box-shadow: none;
    outline: none;
    background: rgba(66, 125, 160, 0.08);
}
section.contact-us .contact-wrapper form button {
    color: #fff;
    background: linear-gradient(
        111.9deg,
        #275572 -3.71%,
        #1e4a66 103.92%,
        #747474 103.93%
    );
    display: block;
    margin: auto;
    padding-left: 100px;
    padding-right: 100px;
}

/* End Home Page */
/* Start Survey Page */
/* Start Customer List Section */
section.customer-list {
    direction: rtl;
}
section.customer-list .main-title {
    font-size: 25px;
    color: #00587b;
}
section.customer-list ul {
    display: flex;
    align-items: center;
    column-gap: 40px;
}
section.customer-list ul li {
    display: flex;
    align-items: center;
    column-gap: 7px;
    background: #00587b;
    padding: 10px 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    color: #fff;
}
section.customer-list ul li .form-check-input:checked {
    background-color: #198754;
    border: #198754;
}
section.customer-list ul li label {
    font-size: 17px;
}
section.customer-list .select-service select {
    font-size: 20px;
}

/* Start Forms Section */
section.forms-request form {
    direction: rtl;
    display: none;
    /* Owner Form */
}
section.forms-request form.active {
    display: block !important;
}
section.forms-request form .main-title {
    color: #00587b;
}
section.forms-request form .title {
    color: #00587b;
    font-size: 20px;
}
section.forms-request form.owner .form-group,
section.forms-request form.investor .form-group,
section.forms-request form.agency-provider .form-group,
section.forms-request form.agency-request .form-group {
    position: relative;
    margin-bottom: 20px;
}
section.forms-request form.owner .form-group .form-check-input:checked,
section.forms-request form.investor .form-group .form-check-input:checked,
section.forms-request
    form.agency-provider
    .form-group
    .form-check-input:checked,
section.forms-request
    form.agency-request
    .form-group
    .form-check-input:checked {
    background-color: #198754;
    border: #198754;
}
section.forms-request form.owner .form-group .form-check-input:checked + label,
section.forms-request
    form.investor
    .form-group
    .form-check-input:checked
    + label,
section.forms-request
    form.agency-provider
    .form-group
    .form-check-input:checked
    + label,
section.forms-request
    form.agency-request
    .form-group
    .form-check-input:checked
    + label {
    color: #198754;
}
section.forms-request form.owner .form-group .form-control,
section.forms-request form.investor .form-group .form-control,
section.forms-request form.investor .form-group .form-select,
section.forms-request form.owner .form-group .form-select,
section.forms-request form.agency-provider .form-group .form-control,
section.forms-request form.agency-request .form-group .form-control {
    box-shadow: none;
    outline: none;
    border-color: #00587b;
}
section.forms-request form.owner .form-group label,
section.forms-request form.investor .form-group label,
section.forms-request form.investor .form-group select,
section.forms-request form.owner .form-group select,
section.forms-request form.agency-provider .form-group label,
section.forms-request form.agency-request .form-group label {
    color: grey;
    font-family: AdelleSansARA-Thin;
}
section.forms-request form.owner .form-group label.label,
section.forms-request form.investor .form-group label.label,
section.forms-request form.agency-provider .form-group label.label,
section.forms-request form.agency-request .form-group label.label {
    position: absolute;
    right: 10px;
    top: 5px;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
}
section.forms-request form.owner .form-group label.label.transform,
section.forms-request form.investor .form-group label.label.transform,
section.forms-request form.agency-provider .form-group label.label.transform,
section.forms-request form.agency-request .form-group label.label.transform {
    background: #fff;
    right: 15px;
    top: -14px;
    color: #00587b;
}
section.forms-request form.investor .recaptcha .form-check,
section.forms-request form.owner .recaptcha .form-check,
section.forms-request form.agency-request .recaptcha .form-check,
section.forms-request form.agency-provider .recaptcha .form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
section.forms-request form.investor .recaptcha .form-check input,
section.forms-request form.owner .recaptcha .form-check input,
section.forms-request form.agency-request .recaptcha .form-check input,
section.forms-request form.agency-provider .recaptcha .form-check input {
    margin-left: 0;
}
section.forms-request form button[type="submit"] {
    display: flex;
    align-items: center;
    direction: ltr;
}
section.forms-request form input[type="file"] {
    opacity: 0;
}
section.forms-request form input[type="file"] + label {
    position: absolute;
    right: 0;
}
section.forms-request form .gallery {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 15px;
    margin-top: 20px;
}
section.forms-request form .gallery img {
    width: 100px;
    height: 70px;
    margin-bottom: 10px;
}
section.forms-request form.investor .form-group select.form-select,
section.forms-request form.owner .form-group select.form-select {
    padding: 0.375rem 0.75rem 0.375rem 0.75rem;
    background-position: left 0.75rem center;
}
/* End Survey Page */
/* Start Projects Page */
/* Start Projects Section */
section.projects .project,
section.agencies .project {
    display: flex;
    align-items: flex-start;
    border-radius: 10px;
    padding: 20px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
        rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    column-gap: 20px;
    overflow: hidden;
    height: 100%;
}
section.projects .row,
section.agencies .row {
    row-gap: 15px;
}
section.projects .project .img,
section.agencies .project .img {
    width: 200px;
    height: 140px;
    object-fit: cover;
}
section.projects .project .img img,
section.agencies .project .img img {
    height: 100%;
}
section.projects .project .img img,
section.agencies .project .img img {
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}
section.projects .project .project-info,
section.agencies .project .project-info {
    width: 100%;
}
section.projects .project:hover img,
section.agencies .project:hover img {
    transform: scale(1.1);
}
section.projects .paginate,
section.agencies .paginate {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Start Project Details & Agency Details Page */
section.splide {
    height: 70vh;
}
section.splide .splide__track {
    height: 100%;
}

section.project-details .project-longTime .title,
section.project-details .stage .title,
section.project-details .location .title,
section.project-details .project-name .title,
section.project-details .agency-name .title,
section.project-details .date .title,
section.project-details .name .title,
section.agency-details .project-longTime .title,
section.agency-details .stage .title,
section.agency-details .location .title,
section.agency-details .project-name .title,
section.agency-details .agency-name .title,
section.agency-details .date .title,
section.agency-details .name .title {
    color: #00587b;
}
section.project-details .description .title,
section.agency-details .description .title {
    font-size: 20px;
    color: #00587b;
}
section.project-details .description p,
section.agency-details .description p {
    font-size: 16px;
}

.modal .modal-content .modal-header h1 {
    flex: 1;
}
.modal .modal-content .form-floating > .form-control:focus ~ label {
    transform: scale(0.85) translateY(-0.5rem) translateX(3rem);
}

/* End Projects Page */
/* Start Services Page */
/* Start agency-services Section */
section.service-form .selection-wrapper .form-group {
    text-align: right;
    background: #00587b;
    padding: 10px 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    color: #fff;
}
section.service-form .selection-wrapper .form-group .form-check-input:checked {
    background-color: #198754;
    border: #198754;
}
/* service-form Section */
section.service-form {
    direction: rtl;
}
section.service-form form .form-group {
    position: relative;
    margin-bottom: 20px;
}
section.service-form form .form-group .form-control {
    box-shadow: none;
    outline: none;
    border-color: #00587b;
}
section.service-form form .form-group label {
    font-family: AdelleSansARA-Thin;
}
section.service-form form .form-group label.label {
    position: absolute;
    right: 10px;
    top: 5px;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
}
section.service-form form .form-group label.label.transform {
    background: #fff;
    right: 15px;
    top: -14px;
    color: #00587b;
}
section.service-form form button[type="submit"] {
    display: flex;
    align-items: center;
    direction: ltr;
}

/* End Services Page */
/* Start Footer */
footer {
    background-color: #00587b;
    color: #fff;
}
footer .social-links .head,
footer .links .head {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
}
footer .social-links ul li a,
footer .links ul li a {
    color: #fff;
    font-family: AdelleSansARA-Light;
}
footer .social-links ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: right;
}
footer .social-links ul li {
    flex-basis: 45%;
    margin-bottom: 20px;
    border-radius: 20px;
    text-align: center;
}
footer .social-links ul li a {
    display: block;
    font-size: 20px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .social-links ul li a.btn {
    outline: none;
    border-color: transparent !important;
}
footer .social-links ul li.telegram a,
footer .social-links ul li.snapchat a {
    font-size: 20px;
    font-weight: 600;
}
footer .social-links ul li.telegram {
    background: #0088cc;
}
footer .social-links ul li.twitter a,
footer .social-links ul li.tiktok a,
footer .social-links ul li.instagram a {
    color: #fff;
    flex-basis: 30%;
}
footer .social-links ul li.twitter,
footer .social-links ul li.tiktok,
footer .social-links ul li.instagram {
    flex-basis: 30%;
}
footer .social-links ul li.snapchat {
    background: #fffc00;
}
footer .links ul {
    text-align: center;
    direction: rtl;
}
footer .links ul li:not(:last-child) {
    margin-bottom: 15px;
}
footer .links ul li:last-child {
    flex-basis: 100%;
}
footer .links ul li a {
    font-size: 20px;
    font-weight: 500;
    transition: padding-right 0.3s linear;
}
footer .links ul li a:hover {
    padding-right: 10px;
}
footer .company-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer .company-info .head {
    text-align: center;
}
footer .company-info .head .logo {
    width: 30%;
    margin: auto;
}
footer .company-info .head span,
footer .company-info p {
    color: #e1dcdc;
    font-size: 14px;
    font-family: AdelleSansARA-Light;
    direction: rtl;
    text-align: right;
}
footer .company-info p {
    line-height: 23px;
}

/* Start Responsive */
/* Start Navbar */
@media (max-width: 991px) {
    nav.main-nav .logo {
        width: 25% !important;
    }
    nav.main-nav ul {
        position: fixed;
        left: -250px;
        flex-direction: column !important;
        height: 100%;
        background: #00587b;
        width: 250px;
        justify-content: unset !important;
        row-gap: 60px;
        padding: 30px 0;
    }
    nav.main-nav .bars {
        display: flex !important;
    }
}
/* Start About */
@media (max-width: 767px) {
    section.about .about-content p {
        font-size: 16px;
    }
}
@media (max-width: 991px) {
    section.about .about-content {
        text-align: center;
    }
    section.about .imgs {
        display: none;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    section.about .about-content p {
        font-size: 22px;
    }
    section.about .imgs {
        display: flex;
        align-items: center;
    }
    section.about .imgs img {
        max-width: 200px;
    }
}
/* Start Agency */
@media (min-width: 576px) and (max-width: 767px) {
    section.agencies .agency .wrapper .btns,
    section.agencies .trade-agency .wrapper .btns {
        width: 50%;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 767px) {
    section.agencies .row {
        flex-direction: column-reverse;
    }
    .agency .wrapper .agency-request {
        margin-bottom: 20px;
    }
    .agency .wrapper .agency-request,
    .agency .wrapper .agency-provide {
        height: auto;
    }
    .agency .wrapper .agency-request p,
    .agency .wrapper .agency-provide p {
        text-align: center;
    }
}
/* Start Services */
@media (max-width: 767px) {
    section.services .wrapper .service p {
        text-align: center;
        font-size: 16px;
    }
}
/* Start Contact-us */
@media (max-width: 767px) {
    section.contact-us .contact-wrapper .head p {
        width: fit-content;
    }
    section.contact-us .contact-wrapper img {
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    section.contact-us .contact-wrapper .head p {
        width: fit-content;
    }
    section.contact-us .contact-wrapper img {
        height: 100%;
    }
}
/* Start Footer */
@media (max-width: 767px) {
    footer .social-links,
    footer .links,
    footer .company-info {
        margin-bottom: 40px;
    }
}
@media (max-width: 991px) {
    footer .company-info p {
        text-align: center;
    }
}
/* Start Forms Page */
@media (max-width: 575px) {
    section.customer-list ul {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 15px;
    }
    section.customer-list form.select-service {
        width: 100% !important;
    }
    section.customer-list form.select-service select {
        font-size: 16px;
    }
}
@media (max-width: 575px) {
    section.forms-request form.agency-request .form-group label.label,
    section.forms-request form.agency-provider .form-group label.label {
        font-size: 12px;
    }
}
@media (max-width: 767px) {
    section.forms-request form .head,
    section.forms-request form .main-title {
        text-align: center;
    }
    section.forms-request form .head p {
        font-size: 16px;
    }
    section.forms-request form button[type="submit"] {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 575px) {
    section.customer-list ul li label {
        font-size: 14px !important;
    }
}
@media (max-width: 991px) {
    section.customer-list .main-title {
        text-align: center;
    }
    section.customer-list ul li label {
        font-size: 16px;
    }
    section.forms-request form .title {
        font-size: 15px;
    }
}
@media (max-width: 991px) {
    section.forms-request form.owner #idea + label {
        font-size: 15px;
    }
}
/* Start Services Page */
@media (max-width: 767px) {
    section.service-form {
        text-align: center;
    }
    section.service-form form button {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 991px) {
    section.service-form .selection-wrapper .form-group {
        margin-bottom: 20px;
    }
}
/* Start Projects Page */
@media (max-width: 1199px) {
    section.projects .project,
    section.projects .agencies,
    section.agencies .project,
    section.agencies .agencies {
        flex-direction: column;
    }
    section.projects .project .img,
    section.projects .agencies .img,
    section.agencies .project .img,
    section.agencies .agencies .img {
        width: 100%;
        height: 200px;
        margin-bottom: 20px;
    }
    section.projects .project .project-info a,
    section.projects .agencies .project-info a,
    section.agencies .project .project-info a,
    section.agencies .agencies .project-info a {
        width: 100%;
    }
}
/* Start Project Details Page */
@media (max-width: 575px) {
    #projectModal .modal-content .modal-header h1 {
        font-size: 16px !important;
    }
}
@media (max-width: 767px) {
    section.splide {
        height: auto;
    }
    section.splide .splide__track {
        height: 100%;
    }
}
/* Common Responsive code */
@media (max-width: 575px) {
    section.agencies button {
        width: 100% !important;
    }
    section.agencies .btns {
        flex-direction: column;
        gap: 2rem !important;
    }
}
@media (max-width: 767px) {
    section.agencies .btns a {
        justify-content: center;
    }
    section.splide ul.splide__list {
        height: 70vh !important;
    }
    header .header-wrapper {
        width: 80% !important;
    }
    header .header-wrapper p {
        font-size: 20px;
    }
    .trade-agency .wrapper .agency-request p,
    .trade-agency .wrapper .agency-provide p,
    .agency .wrapper .agency-request p,
    .agency .wrapper .agency-provide p {
        font-size: 16px;
        text-align: center;
    }
    .trade-agency .wrapper .agency-request {
        height: auto;
        margin-bottom: 20px;
    }
    .trade-agency .wrapper a,
    .agency .wrapper a {
        width: 100%;
    }
    section.services a {
        width: 100%;
    }
    section.contact-us button[type="submit"] {
        width: 100%;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    section.agencies .wrapper > a {
        height: 400px;
    }
    section.agencies .btns {
        flex-direction: column;
        gap: 2rem !important;
    }
    section.agencies .btns a {
        width: 100%;
        justify-content: center;
    }
}
