:root {
    /*---------- Colors ----------*/
    --color-primary: #e11117;
    --color-secondary: #b50007;
    --color-tertiary: #f7d04d;
    --color-quaternary: #f1f2f2;
    --color-grey: #e6e7e8;
}

html,
body {
    overflow-x: hidden;
}
body {
    font-family: "Univers-67", sans-serif;
}
::selection {
    color: #000000;
    background-color: #cccccc;
}
::-moz-selection {
    color: #000000;
    background-color: #cccccc;
}
* {
    font-size: 15px;
    outline: none !important;
}
a {
    font-size: inherit !important;
    color: inherit !important;
    text-decoration: none !important;
    box-shadow: none !important;
}
a.a-hover:hover {
    color: var(--color-primary) !important;
}
a.text-decoration {
    text-decoration: underline !important;
}
.h1 *,
h1 *,
.h2 *,
h2 *,
.h3 *,
h3 *,
.h4 *,
h4 *,
.h5 *,
h5 *,
.h6 *,
h6 * {
    font-size: inherit;
}
p,
.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6,
label {
    margin: 0;
    font-weight: unset;
}
b {
    font-size: inherit;
}
ul,
ol {
    margin-bottom: 0;
}
hr {
    height: 2px !important;
    background-color: #a9a9a9;
}
img,
iframe {
    width: 100%;
    height: 100%;
}
button {
    box-shadow: none !important;
}
svg * {
    transition: all 0.3s;
}

/*
|--------------------------------------------------------------------------
| General Shortcuts
|--------------------------------------------------------------------------
|
*/

/*---------- Measures ----------*/
.width-15 {
    width: 15px;
    height: 15px;
}
.h-100vh {
    height: 100vh;
}
/*---------- End Measures ----------*/

/*---------- Elements ----------*/
.adjust-element {
    font-size: 0;
}
.cursor-pointer {
    cursor: pointer;
}
.z-index-1 {
    z-index: 1;
}
/*---------- End Elements ----------*/

/*---------- Fonts Weights ----------*/
/*.font-weight-regular{
    font-family: 'ts_rotgerregular' !important;
}
.font-weight-light{
    font-family: 'ts_rotgerlight' !important;
}
.font-weight-bold{
    font-family: 'ts_rotgerbold' !important;
}
b,
strong{
    font-family: 'ts_rotgerbold';
}*/
/*---------- End Fonts Weights ----------*/

/*---------- Text Color ----------*/
.text-primary {
    color: var(--color-primary) !important;
}
.text-secondary {
    color: var(--color-secondary) !important;
}
.text-tertiary {
    color: var(--color-tertiary) !important;
}
.text-grey {
    color: var(--color-grey) !important;
}
.text-black {
    color: #000;
}
/*---------- End Text Color ----------*/

/*---------- Background Color ----------*/
.bg-primary {
    background-color: var(--color-primary) !important;
}
.bg-secondary {
    background-color: var(--color-secondary) !important;
}
.bg-tertiary {
    background-color: var(--color-tertiary) !important;
}
.bg-quaternary {
    background-color: var(--color-quaternary) !important;
}
.bg-grey {
    background-color: var(--color-grey) !important;
}
.bg-black {
    background-color: #000000;
}
/*---------- End Background Color ----------*/

/*---------- Picture Ratio ----------*/
/*.picture-wrapper{
    position: relative;
}
.picture-wrapper.padding-top-100{
    padding-top: 100%;
}
.picture-wrapper img,
.picture-wrapper iframe{
    position: absolute;
    top: 0;
    left: 0;
}*/
/*---------- End Picture Ratio ----------*/

/*---------- Images / Videos ----------*/
img.cover,
video.cover {
    -o-object-fit: cover;
    object-fit: cover;
}
img.contain {
    -o-object-fit: contain;
    object-fit: contain;
}
img.greyscale {
    filter: grayscale(1);
}
/*---------- End Images / Videos ----------*/

/*---------- Background Image ----------*/
.background-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.background-image.fixed {
    background-attachment: fixed;
}
/*---------- End Background Image ----------*/

/*---------- Overlay ----------*/
.overlay:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.overlay.top-left:before {
    background-image: linear-gradient(
        -45deg,
        transparent 55%,
        rgba(0, 0, 0, 0.85)
    );
}
.overlay.full-gradient:before {
    background-image: linear-gradient(
        -45deg,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.65) 100%
    );
}
.overlay.full:before {
    background: rgba(0, 0, 0, 0.5);
}
/*---------- End Overlay ----------*/

/*---------- Submit Loader ----------*/
/*.submit-loading{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.75);
    z-index: 9999;
}
.submit-loading img{
    position: absolute;
    width: 25px;
    height: 25px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation: rotation 2s infinite;
    -webkit-animation: rotation 2s infinite;
}*/
/*---------- End Submit Loader ----------*/

/*---------- Rich Text ----------*/
.rich-text {
    word-break: break-word;
}
.rich-text a {
    text-decoration: underline !important;
}
/*.rich-text ul{
    padding-left: 20px;
}*/
/*.rich-text ul li{
    margin-bottom: 20px;
}*/
.rich-text ul li:last-child {
    margin-bottom: 0;
}
/*---------- End Rich Text ----------*/

/*---------- Pagination ----------*/
.pagination {
    justify-content: center;
    margin-top: 50px;
}
.pagination .page-link {
    color: #000000 !important;
    opacity: 0.5;
    border: 0;
    background-color: unset !important;
}
.pagination .page-item.active .page-link {
    opacity: 1;
}
/*---------- End Pagination ----------*/

/*
|--------------------------------------------------------------------------
| End General Shortcuts
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Inputs & Buttons Styling
|--------------------------------------------------------------------------
|
*/

/*---------- Button Custom ----------*/
.btn-custom {
    /*height: 55px;*/
    color: #ffffff !important;
    background-color: var(--color-primary);
    border-radius: 12px;
    /*font-size: 22px;*/
    transition: all 0.3s;
}
/*---------- End Button Custom ----------*/

/*---------- Input Custom ----------*/
.form-control:focus {
    box-shadow: none !important;
    border-color: inherit;
}

.form-group img {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 17.5px;
    transform: translateY(-50%);
    z-index: 1;
}

.form-custom {
    height: 55px;
    padding-left: 26px;
    border-radius: 12px;
    border-color: #ffffff !important;
    background-color: #ffffff !important;
}
.form-custom.invalid-error {
    border-color: #dc3545 !important;
}

.select-custom {
    -moz-appearance: none; /* Firefox */
    -webkit-appearance: none; /* Safari and Chrome */
    appearance: none;
    background: url(../images/icons/arrow-down.svg) no-repeat 94.5%;
}
/*---------- End Input Custom ----------*/

/*---------- HTML General Elements ----------*/
::-webkit-input-placeholder {
    /* Edge */
    color: #cccccc !important;
}
:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #cccccc !important;
}
::placeholder {
    color: #cccccc !important;
}
select {
    color: #000000 !important;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* Chrome, Safari, Edge, Opera */
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    /* Firefox */
    -moz-appearance: textfield;
}
textarea {
    padding-top: 12px !important;
    height: auto !important;
    padding-top: 8px !important;
}
/*---------- End HTML General Elements ----------*/

/*---------- Checkbox Custom ----------*/
.check-custom {
    display: none;
}
.check-custom + label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
}
.check-custom + label:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    border: 1px solid #000000;
    background-color: #ffffff;
    border-radius: 4px;
}
.check-custom:checked + label:before {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}
.check-custom:checked + label:after {
    content: url("../images/icons/tick.svg");
    position: absolute;
    width: 25px;
    height: 25px;
    left: 0;
    text-align: center;
}
/*---------- End Checkbox Custom ----------*/

/*---------- Radio Custom ----------*/
.radio-custom {
    display: none;
}
.radio-custom + label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
}
.radio-custom + label:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 1px solid #000000;
    background-color: #ffffff;
    border-radius: 100%;
}
.radio-custom:checked + label:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 4px;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--color-primary);
    border-radius: 100%;
}
/*---------- End Radio Custom ----------*/

/*
|--------------------------------------------------------------------------
| End Inputs & Buttons Styling
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Override Bootstrap
|--------------------------------------------------------------------------
|
*/

.container {
    max-width: 1500px;
}
.badge {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-100%);
    border-radius: 100%;
}
.form-control:disabled,
.form-control[readonly] {
    border-color: #e9ecef !important;
    background-color: #e9ecef !important;
}
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 600px;
    }
}

/*
|--------------------------------------------------------------------------
| End Override Bootstrap
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Override Slick
|--------------------------------------------------------------------------
|
*/

.slick-slider {
    margin-bottom: 0 !important;
}

/*---------- Dots Custom ----------*/
.slick-dots {
    font-size: 0;
    bottom: -15px;
}
.slick-dots li {
    margin: 0 2.5px;
}
.slick-dots li button {
    padding: 0;
    background-color: black;
    border-radius: 100%;
    opacity: 0.4;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    border: 1px solid #fc0;
}
.slick-dots li,
.slick-dots li button {
    width: 8px;
    height: 8px;
}
.slick-dots li button:before {
    display: none;
    content: none;
}
.slick-dots li.slick-active button {
    opacity: 1;
    background-color: #fc0;
}
/*---------- End Dots Custom ----------*/

/*---------- Vertical Dots Custom ----------*/
.vertical-dots .slick-dots {
    position: absolute;
    top: 50%;
    left: auto;
    bottom: auto;
    right: -60px;
    width: 5px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.vertical-dots .slick-dots li {
    display: block;
    margin: 0;
    margin-bottom: 10px;
}
/*---------- End Vertical Dots Custom ----------*/

/*---------- Arrow Custom ----------*/
.slick-prev,
.slick-next {
    top: 50%;
    width: 25px;
    height: 25px;
    z-index: 1;
}
.slick-prev {
    left: 0;
}
.slick-next {
    right: 0;
}
.slick-prev:before,
.slick-next:before {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    background-size: cover;
    display: inline-block;
    width: 100%;
    height: 100%;
    content: "";
    background-repeat: no-repeat;
}
/* [dir='rtl'] .slick-next:before {
    background-image: url("../images/icons/slick/left.svg");

} */
[dir="rtl"] .slick-next:before {
    content: "";
}

[dir="rtl"] .slick-prev:before {
    content: "";
}

[dir="rtl"] .slick-prev {
    left: 25px;
    right: unset;
}

[dir="rtl"] .slick-next {
    right: -25px;
    left: unset;
}

/* [dir='rtl'] .slick-prev:before {
    background-image: url("../images/icons/slick/right.svg");

} */
.slick-prev:before {
    background-image: url("../images/icons/slick/left.svg");
    background-position: center;
    background-size: cover;
}
.slick-next:before {
    background-image: url("../images/icons/slick/right.svg");
    background-position: center;
    background-size: cover;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: 0.5 !important;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}
/*---------- End Arrow Custom ----------*/

/*
|--------------------------------------------------------------------------
| End Override Slick
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Override Select2
|--------------------------------------------------------------------------
|
*/

.select2-container {
    font-size: 15px !important;
    width: 175px !important;
    border-radius: 0.25rem !important;
}
.select2-selection--single .select2-selection__rendered {
    color: #ffffff !important;
    padding: 0 28px !important;
    padding: 0 1.75rem !important;
    line-height: 40px !important;
    text-align: center;
}
.select2-selection--single .select2-selection__arrow {
    top: 0 !important;
    right: 0 !important;
    width: 60px !important;
    height: 100% !important;
}
.select2-selection--single .select2-selection__arrow b {
    border-width: 6px 5px 0 5px !important;
    border-color: #ffffff transparent transparent transparent !important;
}
.select2-selection--single,
.select2-selection--multiple {
    border: none !important;
    min-height: 40px !important;
    border-radius: 0.25rem !important;
    background-color: var(--color-primary) !important;
}
.select2-dropdown {
    border-color: #eee;
}
.select2-results__option {
    text-align: center;
}
.select2-results__option--highlighted[aria-selected] {
    background-color: var(--color-primary) !important;
}

/*
|--------------------------------------------------------------------------
| End Override Select2
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Google Maps Components
|--------------------------------------------------------------------------
|
*/

/*---------- Map ----------*/
.map {
    width: 100%;
    height: 500px;
}
/*---------- End Map ----------*/

/*---------- InfoWindow ----------*/
.gm-style-iw.gm-style-iw-c {
    border-radius: 0 !important;
    padding: 0 !important;
}
.gm-style-iw.gm-style-iw-c button {
    top: 0 !important;
    right: 0 !important;
}
.gm-style-iw-c .gm-style-iw-d {
    padding: 0 !important;
    overflow: hidden !important;
}
.gm-style .gm-style-iw-t::after {
    background-color: var(--color-secondary) !important;
}
/*---------- End InfoWindow ----------*/

/*
|--------------------------------------------------------------------------
| End Google Maps Components
|--------------------------------------------------------------------------
*/

/*
|--------------------------------------------------------------------------
| Responsiveness Media Queries
|--------------------------------------------------------------------------
|
*/

@media (max-width: 991px) {
    /*
    |--------------------------------------------------------------------------
    | Navigation
    |--------------------------------------------------------------------------
    |
    */

    /*---------- Navbar Toggler ----------*/
    .navbar-toggler {
        background: var(--color-primary);
        transition: all 0.3s;
    }
    .navbar-toggler span {
        position: relative;
        display: block;
        background: #fff;
        width: 25px;
        height: 2px;
        margin: 5px 0;
        transition: all 0.3s;
    }
    .navbar-toggler[aria-expanded="true"] span:nth-child(1) {
        transform: rotate(45deg);
        top: 6.6px;
    }
    .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
        background: transparent !important;
    }
    .navbar-toggler[aria-expanded="true"] span:nth-child(3) {
        transform: rotate(-45deg);
        top: -7.6px;
    }
    /*---------- End Navbar Toggler ----------*/

    /*
    |--------------------------------------------------------------------------
    | End Navigation
    |--------------------------------------------------------------------------
    */
}
.all-nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
}

.top-nav {
    width: 100%;
    height: 38px;
    background-color: #ffcc00;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-nav .top-nav-content {
    width: 85%;
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    max-width: 1550px;
    height: 100%;
}

.top-nav .country-icon-text {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 24px;
    gap: 12px;
    text-transform: uppercase;
    height: 100%;
}

.top-nav .country-social {
    display: flex;
    align-items: center;
    height: 38px;
}

.top-nav .country-social .social {
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 1px solid;
    padding-left: 20px;
}

.top-nav .top-nav-content .country-div {
    width: 76.5px;
    position: relative;
    cursor: pointer;
}

.top-nav .top-nav-content .country-div .country-body {
    top: 38px;
    position: absolute;
    background-color: white;
    display: none;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.top-nav .top-nav-content .country-div:hover .country-body {
    display: block;
}

.top-nav .top-nav-content .country-div .country-body .one-country {
    letter-spacing: 0px;
    color: #000000;
    font-size: 13px;
    padding: 8px 10px;
    text-transform: uppercase;
    font-family: "Univers-57";
    transition: 0.5s all;
}

.top-nav .top-nav-content .country-div .country-body .one-country:hover {
    font-weight: bold;
    background-color: #fc0;
}

.top-nav .top-nav-content .country-div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-nav .top-nav-content .vertical-line {
    width: 1px;
    height: 15.75px;
    background-color: black;
    margin-left: 30px;
    margin-right: 30px;
}

.top-nav .top-nav-content .social-icons {
    display: flex;
    align-items: center;
}

.top-nav .top-nav-content .social-icons .icon {
    width: 20px;
    height: 20px;
}

.top-nav .top-nav-content .social-icons .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-nav .top-nav-content .center-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    font-family: "Univers-67";
}

.top-nav .top-nav-content .center-text img {
    height: 15px;
    width: auto;
}

.top-nav .top-nav-content .right-div {
    display: flex;
    align-items: center;
}

.top-nav .top-nav-content .right-div .phone {
    font-size: 15px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: normal;

    color: #000;
}

.top-nav .top-nav-content .right-div .account {
    display: flex;
    align-items: center;
    margin-left: 15px;
    position: relative;
    cursor: pointer;
}
.top-nav .top-nav-content .right-div .account:hover .account-body {
    display: block;
}

.top-nav .top-nav-content .right-div .account img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 9px;
}

.top-nav .top-nav-content .right-div .account .account-text {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: normal;

    color: #000;
}

.top-nav .top-nav-content .right-div .language:hover .language-body {
    display: block;
}

.top-nav .top-nav-content .right-div .language {
    position: relative;
    cursor: pointer;
}

.top-nav .top-nav-content .right-div .language .language-body {
    position: absolute;
    background-color: white;
    left: 0;
    z-index: 999999;
    display: none;
    transition: opacity 0.3s ease;
    width: 100px;
    top: 20px;
}

.top-nav .top-nav-content .right-div .language .language-body div {
    font-family: "Univers-57";
}

.top-nav .top-nav-content .right-div .language .language-body div:hover {
    font-weight: bold;
}
.top-nav .top-nav-content .right-div .account-body {
    position: absolute;
    background-color: white;
    left: 0;
    z-index: 999999;
    transition: opacity 0.3s ease;
    width: 100px;
    top: 20px;
    display: none;
    transition: 0.3s all;
}

.top-nav .top-nav-content .right-div .language .language-body div {
    padding: 8px 10px;
    cursor: pointer;
}

.top-nav .top-nav-content .right-div .account-body {
    padding: 8px 10px;
    cursor: pointer;
}
.top-nav .top-nav-content .right-div .account-body div {
    font-family: "Univers-57";
}

.top-nav .top-nav-content .right-div .account-body div:hover {
    font-weight: bold !important;
}

.top-nav .top-nav-content .right-div .language .language-text {
    font-size: 15px;
    font-weight: normal;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #000;
    margin-left: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

.bottom-nav {
    width: 100%;
    height: 112px;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-nav .content {
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1550px;
    max-height: 100%; /* Limit the content height */
    overflow: auto;
    height: 100%;
}

.bottom-nav .content .menu {
    display: flex;
    color: white;
    list-style: none;
    gap: 38px;
    align-items: center;
    height: 100%;
}

.bottom-nav .content .menu .menu-item {
    color: white;
    font-size: 16px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    line-height: 1.59;
    letter-spacing: normal;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s all;
    height: 100%;
    display: flex;
    align-items: center;
   
}

.representative-image {
    position: absolute;
    right: 100px;
}
.representative-map {
    width: 492px;
    height: 372px;
}

.bottom-nav .content .menu .active {
    color: #fc0;
}

.bottom-nav .content .menu .menu-item:hover {
    color: #fc0;
}

.bottom-nav img {
    width: 154px;
    height: 42px;
}

.bottom-nav .search {
    width: 200px;
    height: 45px;
    border-radius: 2px;
    position: relative;
}

.bottom-nav .search .icon {
    position: absolute;
    right: 30px;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
}
.bottom-nav .search input {
    width: 100%;
    height: 100%;
    border-radius: 2px;
    background-color: #fff;
    font-size: 14px;
    font-weight: normal;
    font-stretch: condensed;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;

    color: #000;
    text-indent: 20px;
    border: none;
}

.bottom-nav .search input::placeholder {
    font-size: 14px;
    font-weight: normal;
    font-stretch: condensed;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;

    color: black !important;
    text-indent: 20px;
}

.banner {
    width: 100%;
    height: 402px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    box-shadow: -1px 5px 22px 4px rgba(0, 0, 0, 0.76);
    -webkit-box-shadow: -1px 5px 22px 4px rgba(0, 0, 0, 0.76);
    -moz-box-shadow: -1px 5px 22px 4px rgba(0, 0, 0, 0.76);
}

.banner .content {
    color: white;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
}

.banner .content .sub-content {
    width: 85%;
    margin: 0 auto;
    max-width: 1550px;
}

.banner .content .sub-content .path {
    font-family: "Univers-57";
    font-size: 14px;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #fc0;
    font-weight: normal;
}

.banner .content .sub-content .title {
    font-size: 44px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #fff;
    margin-top: 20px;
    text-transform: uppercase;
    max-width: 40%;
}

.banner .content .sub-content .body {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #fff;
    max-width: 50%;
    margin-top: 18px;
    font-family: "Univers-57";
}
.banner .content .sub-content .body span {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    background-color: transparent !important;
    font-family: "Univers-57";
}

.banner .content .sub-content .body * {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #fff;
    font-family: "Univers-57";
}
.banner .content .sub-content .body p {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #fff;
    font-family: "Univers-57";
}

.news-selector {
    height: 80px;
    width: 100%;
    background-color: #ffcc00;
    display: flex;
    align-items: center;
    gap: 60px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.news-selector .content {
    display: flex;
    width: 85%;
    max-width: 1550px;
    margin: 0 auto;
    gap: 60px;
}

.news-selector div {
    font-size: 21px;
    letter-spacing: 0px;
    color: #000000;
    cursor: pointer;
    transition: 0.3s all;
    text-transform: uppercase;
    font-family: "Univers-57";
}

.news-selector .selected {
    font-weight: bold;
    position: relative;
}

.news-selector .content div:hover {
    position: relative;
    font-weight: bold;
}

.news-selector .content div:hover::after {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 3px;
    background-color: black;
}

.news-selector .selected::after {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 3px;
    background-color: black;
}

.news-container {
    width: 85%;
    margin: 60px auto;
    display: flex;
    justify-content: space-between;
    max-width: 1550px;
    flex-wrap: wrap;
}

.news-container .first-two {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.news-container .others {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.news-card {
    width: 100%;
}

.small-news-card {
    width: 100%;
}

.related-news-card {
    flex: 0 0 calc(33.33% - 50px);
}
.news-card .title-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.small-news-card .title-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.related-news-card .title-date {
    margin-top: 20px;
}

.news-card .date {
    font-size: 15px;
    color: #020202;
    opacity: 0.55;
    font-family: "Univers-57";
}

.small-news-card .date {
    font-size: 15px;
    color: #020202;
    opacity: 0.55;
}

.news-card .title {
    font-size: 20px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #000;
}

.small-news-card .title {
    font-size: 20px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #000;
}

.related-news-card .title {
    font-size: 22px !important;
    font-weight: bold !important;
    font-stretch: condensed !important;
    font-style: normal !important;
    letter-spacing: normal !important;
    text-align: left !important;
    color: #000 !important;
}

.news-card .subtitle {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    margin-top: 20px;
    margin-bottom: 22px;
    width: 100%;
    font-family: "Univers-57";
}

.small-news-card .subtitle {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    margin-top: 20px;
    margin-bottom: 22px;
    width: 100%;
    font-family: "Univers-57";
}

.related-news-card .subtitle {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    margin-top: 20px;
    margin-bottom: 22px;
    width: 100%;
    font-family: "Univers-57";
    min-height: 120px;
}
.news-card .read-more {
    font-size: 16px;
    font-weight: normal;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    text-decoration: underline;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s all;
    font-family: "Univers-57";
}

.news-card .read-more:hover {
    font-weight: bold;
}

.related-news-card .read-more {
    font-size: 14px;
    font-weight: normal;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    text-decoration: underline;
    text-transform: uppercase;
    cursor: pointer;
    font-family: "Univers-57";
    transition: 0.3s all;
}

.related-news-card .read-more:hover {
    font-weight: bold;
}

.related-news-card .date {
    font-family: "Univers-57";
}

.small-news-card .read-more {
    font-size: 14px;
    font-weight: normal;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #000;
    text-decoration: underline;
    text-transform: uppercase;
    cursor: pointer;
    font-family: "Univers-57";
    transition: 0.3s all;
}

.small-news-card .read-more:hover {
    font-weight: bold;
}
.news-card .image {
    width: 100%;
    height: 460px;
}

.small-news-card .image {
    width: 100%;
    height: 212px;
}

.related-article-container a {
    display: contents;
}

.related-news-card .image {
    width: 100% !important;
    height: 160px !important;
}

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

.small-news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.one-news {
    width: 85%;
    margin: 0px auto;
    margin-top: 260px;
    max-width: 1550px;
}

.one-news .path,
.one-news .path span {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    font-family: "Univers-57";
}

.one-news .title {
    font-size: 44px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    margin-top: 10px;
}

.one-news .date {
    opacity: 0.55;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #020202;
    margin-bottom: 22px;
    font-family: "Univers-57";
}

.one-news .image {
    width: 1018px;
    height: auto;
    margin-bottom: 30px;
}

.one-news .body {
    max-width: 1018px;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    font-family: "Univers-57";
}
.one-news .body p {
    max-width: 1018px;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    font-family: "Univers-57";
}

.one-news .body span {
    max-width: 1018px;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    font-family: "Univers-57";
}

.related-articles .title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.related-articles .title .yellow-line {
    width: 68px;
    height: 8px;
    background-color: #fc0;
}

.related-articles .title .title-text {
    font-size: 28px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #000;
}
.related-articles .read-date {
    display: flex;
    justify-content: space-between;
}

.related-article-container {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.upcoming-container {
    width: 85%;
    margin: 0 auto;
    margin-top: 52px;
    max-width: 1550px;
}

.upcoming-container .title {
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.upcoming-container .title .yellow-line {
    width: 68px;
    height: 8px;
    background-color: #fc0;
}

.upcoming-container .title .title-text {
    font-size: 28px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #000;
}

.upcoming-container .image-container {
    width: 100%;
    height: 370px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 32px;
    margin-bottom: 52px;
    position: relative;
}

.upcoming-container .image-container .content {
    color: white;
    background-color: rgba(
        0,
        0,
        0,
        0.5
    ); /* Add a background color with transparency */

    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 68px;
}

.upcoming-container .image-container .content .title {
    font-size: 44px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #fff;
    margin-bottom: 4px;
}

.upcoming-container .image-container .content .subtitle {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    font-family: "Univers-57";
    color: #fff;
    max-width: 480px;
    margin-bottom: 15px;
}

.upcoming-container .image-container .content .date {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    font-family: "Univers-57";

    color: #fff;
}

.upcoming-container .image-container .content .learn-more {
    font-size: 14px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;

    color: #000;
    text-transform: uppercase;
    border-radius: 2px;
    background-color: #fc0;
    width: 158px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s all;
}

.upcoming-container .image-container .content .learn-more:hover {
    background-color: transparent;
    border: 1px solid #ffcc00;
    color: #ffcc00;
}

.previous-events {
    width: 85%;
    margin: 0 auto;
    max-width: 1550px;
    margin-bottom: 62px;
}

.media-gallery {
    width: 100%;
    height: 80px;
    background-color: #ffcc00;
    display: flex;
    align-items: center;
    margin-top: 42px;
}

.media-gallery .content {
    width: 85%;
    margin: 0 auto;
    max-width: 1550px;
}

.media-gallery .content .title {
    font-size: 21px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #000;
    position: relative;
}

.media-gallery .content .title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: black;
}

.gallery-div {
    width: 85%;
    max-width: 1550px;
    margin: 0 auto;
    display: flex;
    margin-top: 62px;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.gallery-div .gallery-image {
    width: 370px;
    height: 220px;
}

.gallery-div .gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mobile-nav {
    height: 100px;
    width: 100%;
    background-color: black;
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    z-index: 9999;
}

.mobile-nav .content {
    width: 85%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-container {
    margin-top: 150px;
}

.mobile-nav .content img {
    width: 140px;
    height: auto;
}

.mobile-nav .content i {
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.mobile-menu {
    height: 100vh;
    width: 100%;
    background-color: #ffcc00;
    position: fixed;
    top: 0;
    z-index: 9999999;
    right: 200%;
    padding-top: 20px;
    overflow-y: auto;
    z-index: 2147483640;
}

.mobile-menu .close {
    width: 90%;
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
    margin-right: 10px;
}
.carousel-inner > .carousel-item {
    -webkit-transition: 0s !important;
    -o-transition: 0s !important;
    transition: 0s !important;
}

.mobile-menu .close i {
    font-size: 30px;
    cursor: pointer;
    color: black;
}

.mobile-menu .content {
    width: 90%;
    margin: 0 auto;
}

.mobile-menu .content select {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 24px;
}

.mobile-menu .content .menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu .content .menu li {
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    padding-left: 0px;
    cursor: pointer;
}

.deal {
    width: 85%;
    margin: 0 auto;
    max-width: 1550px;
}

.deal .content {
    display: flex;
    align-items: center;
    margin-top: 45px;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.deal .content .text {
    width: 45%;
}

.deal .content .yellow-line {
    width: 68px;
    height: 8px;
    background-color: #fc0;
}

.deal .content .title {
    position: relative;
}

.deal .content .title div {
    margin-left: 10px;
    font-size: 28px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #000;
    margin-bottom: 13px;
    margin-left: 100px;
}

[dir="rtl"] .deal .content .body {
    margin-right: 100px;
}

.deal .content .body {
    margin-left: 100px;
}

.deal .content .title::before {
    content: "";
    position: absolute;
    width: 68px;
    height: 8px;
    background-color: #fc0;
    top: 50%;

    transform: translateY(-50%);
}

.offers .content .title {
    position: relative;
}

.offers .content .title span {
    margin-left: 10px;
    font-size: 28px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #000;
    margin-bottom: 13px;
    margin-left: 100px;
}

.offers .content .title::before {
    content: "";
    position: absolute;
    width: 68px;
    height: 8px;
    background-color: #fc0;
    top: 50%;

    transform: translateY(-50%);
}

.deal .content .body {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    font-family: "Univers-57";
    color: #000;
}

.deal .content .body p {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    font-family: "Univers-57";
    color: #000;
}

.deal .content .images {
    display: flex;
    gap: 33px;
    flex-wrap: wrap;
}

.deal .content .images .image {
    width: 300px;
    height: 300px;
}

.deal .content .image .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offers {
    width: 85%;
    margin: 0 auto;
    max-width: 1550px;
    margin-top: 105px;
}

.offers .header {
    display: flex;
    align-items: center;
    margin-bottom: 52px;
}

.offers .yellow-line {
    width: 68px;
    height: 8px;
    background-color: #fc0;
}

.offers .title {
    font-size: 28px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #000;
    margin-bottom: 13px;
}

.offers-container {
    display: flex;
    gap: 45px;
    margin-bottom: 78px;
    flex-wrap: wrap;
}

.offer-card {
    border-radius: 2px;
    box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
    flex: 0 0 calc(33.33% - 30px);
}

.offer-card .image {
    width: 100%;
    height: 284px;
}

.offer-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

[dir="rtl"] .offer-card .card-title {
    margin-right: 42px;
}

.offer-card .card-title {
    width: 90%;
    font-size: 20px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #000;
    margin-top: 38px;
    margin-bottom: 27px;
    margin-left: 42px;
}

.offer-card .horizontal-line {
    height: 1px;
    width: 100%;
    background-color: #ffcc00;
    margin-bottom: 27px;
}

.offer-card .card-body {
    height: 120px;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    font-family: "Univers-57";

    color: #000;
    margin-left: 42px;
    margin-right: 42px;
    padding: 0;
    max-width: 80%;
    overflow-y: auto;
}

.offer-card .card-body::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.offer-card .card-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.offer-card .card-body::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
.offer-card .card-body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.products-hover::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.products-hover::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.products-hover::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
.products-hover::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.offer-card .get-in-touch {
    width: 158px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    background-color: #fc0;
    font-size: 14px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;

    color: #000;
    text-transform: uppercase;
    margin-left: 42px;
    margin-right: 42px;
    margin-top: 21px;
    margin-bottom: 40px;
    cursor: pointer;
    transition: 0.3s all;
}

.offer-card .get-in-touch:hover {
    background-color: black;
    color: #ffcc00;
}

.get-in-touch-div {
    margin: 0 auto;
    max-width: 1550px;
    display: flex;
    width: 85%;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
    margin-top: 20px;
    align-items: center;
}

.get-in-touch-div .left .header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 42px;
}

.get-in-touch-div .left .header .title {
    font-size: 28px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #000;
    text-transform: uppercase;
}
.get-in-touch-div .left .header .yellow-line {
    width: 68px;
    height: 8px;
    background-color: #fc0;
}

.get-in-touch-div .left .text {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    font-family: "Univers-57";
    color: #000;
    max-width: 402px;
    margin-bottom: 33px;
}

.get-in-touch-div .left .text p {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    font-family: "Univers-57";
}
.get-in-touch-div .left .text span {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    font-family: "Univers-57";
}

.get-in-touch-div .left .icon-location {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 38px;
}

.get-in-touch-div .left .icon-location .icon {
    width: 48px;
    height: 48px;
    border-radius: 2px;
    background-color: #fc0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.get-in-touch-div .left .icon-location .icon i {
    font-size: 28px;
}

.get-in-touch-div .left .icon-location .info {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.get-in-touch-div .left .icon-location .info .line1 {
    font-size: 16px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #000;
}

.get-in-touch-div .left .icon-location .info .line2 {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;

    color: #000;
}

.terms {
    width: 85%;
    margin: 0 auto;
    max-width: 1550px;
    margin-top: 56px;
}

.terms .header {
    display: flex;
    align-items: center;
    gap: 11px;
}

.terms .header .yellow-line {
    width: 68px;
    height: 8px;
    background-color: #fc0;
}

.terms .header .terms-title {
    font-size: 24px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    text-transform: uppercase;
    color: #000;
}

.terms .subtitle {
    margin-top: 30px;
    margin-bottom: 21px;
    font-size: 16px;
    font-weight: normal;
    font-stretch: condensed;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;

    color: #000;
}

.terms .body {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #838181;
    margin-bottom: 64px;
    margin-top: 20px;
}

.terms .body p {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #838181;
    font-family: "Univers-57";
}

.terms .body span {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #838181;
    font-family: "Univers-57";
}

.terms .body strong {
    color: black;
}
.contact-header {
    width: 100%;
    height: 150px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-header .content {
    width: 75%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 52px;
    flex-wrap: wrap;
}

.contact-header .content .icon-text {
    display: flex;
    gap: 50px;
    align-items: center;
}
.contact-header .content .icon-text .text {
    width: 200px;
}

.contact-header .content .icon-text .icon {
    width: 48px;
    height: 48px;
    border-radius: 2px;
    background-color: #fc0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-header .content .icon-text .icon i {
    font-size: 28px;
}

.contact-header .content .icon-text .text .line1 {
    font-size: 18px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #000;
}

.contact-header .content .icon-text .text .line2 {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    font-family: "Univers-57";
    color: #000;
}

.contact-form {
    width: 85%;
    margin: 0 auto;
    max-width: 1550px;
    border: 1px solid #ffcc00;
    padding: 22px 76px 60px;
    margin-bottom: 50px;
}

.contact-form select {
    border: none;
    width: 100%;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.3);
    padding: 18px 0px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #000;
}

.contact-form .form-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-form .form-row .input {
    width: 424px;
}

.contact-form .form-row .input input {
    width: 100%;
    border: none;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.3);
    padding: 12px 0px;
    font-size: 16px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #000;
}

.contact-form .form-row .input input::placeholder {
    font-size: 16px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #000 !important;
}

.contact-form .form-row .col1 .label {
    font-size: 16px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #000;
    padding: 12px 0px;
}

.contact-form .form-row .help {
    margin-top: 15px;
    width: 424px;
}

.contact-form .form-row .help textarea {
    width: 100%;
    resize: none;
    border-radius: 5px;
    border: solid 0.5px rgba(0, 0, 0, 0.3);
    padding: 20px;
    height: 100px !important;
    margin-top: 10px;
}

.contact-form .form-row .col1 .upload {
    width: 424px;
    height: 116px;
    border-radius: 5px;
    border: solid 0.5px rgba(0, 0, 0, 0.3);
    padding: 22px 0px 98.9px 34.3px;
    cursor: pointer;
}

.contact-form .form-row .col1 .upload .content {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;

    color: #020202;
    opacity: 0.26;
    gap: 10px;
    display: flex;
    align-items: center;
}

.contact-form .form-row .col1 textarea {
    width: 424px;
    height: 116px !important;
    border-radius: 5px;
    border: solid 0.5px rgba(0, 0, 0, 0.3);
}

.contact-form button {
    width: 158px;
    height: 38px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fc0;
    margin: 0px auto;
    margin-top: 35px;
    border: none;
    font-size: 14px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
    transition: 0.3s all;
    text-transform: uppercase;
}

.contact-form button:hover {
    background-color: black;
    color: #ffcc00;
}

.history-header {
    width: 100%;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 40px 0px;
    min-height: 350px;
    height: auto;
}

.history-header .content {
    width: 85%;
    margin: 0 auto;
    max-width: 1550px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 140px;
}

.history-header .content .why-choose div {
    font-size: 28px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    text-transform: uppercase;
}

.history-header .content .why-choose p {
    font-size: 28px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    text-transform: uppercase;
}

.history-header .content .why-choose * {
    font-size: 28px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    text-transform: uppercase;
}

.history-header .content .three-items {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    justify-content: center;
}

.history-header .content .three-items .icon-text {
    display: flex;
    align-items: center;
    gap: 26px;
}

.history-header .content .three-items .icon-text .icon {
    width: 60px;
    height: 60px;
}

.history-header .content .three-items .icon-text .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.history-header .content .three-items .icon-text .text {
    width: 200px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.history-header .content .three-items .icon-text .text .line1 {
    font-size: 24px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #fc0;
}

.history-header .content .three-items .icon-text .text .line2 {
    font-size: 16px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #000;
    text-transform: uppercase;
}

.history-divs {
    display: flex;
    width: 85%;
    margin: 0 auto;
    max-width: 1550px;
    margin-top: 58px;
    margin-bottom: 64px;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.history-divs .left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 47%;
    justify-content: space-between;
}

.history-divs .left .col1 {
    width: 48%;
    height: 405px;
}

.history-divs .left .col2 {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.history-divs .left .col2 img {
    width: 100%;
    height: 188px;
}

.history-divs .left .image1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.history-divs .right {
    width: 45%;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    font-family: "Univers-57";
}

.history-divs .right p {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    font-family: "Univers-57";
}

.history-divs .right span {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    font-family: "Univers-57";
}

.history-divs .right .line1 {
    font-size: 28px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    position: relative;
}

.history-divs .right .line2 {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    color: #000;
    font-family: "Univers-57";
    margin-top: 16px;
    margin-bottom: 60px;
}

.history-divs .right .line1::before {
    content: "";
    position: absolute;
    width: 68px;
    height: 8px;
    background-color: #fc0;
    top: 50%;
    transform: translateY(-50%);
    left: -88px;
}

[dir="rtl"] .history-divs .right .line1::before {
    display: none;
}

.history-divs .right .button {
    width: 160px;
    height: 38px;
    border-radius: 2px;
    background-color: #fc0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    border: 1px solid #fc0;
    transition: 0.3s all;
    font-weight: bold;
}

.history-divs .right .button:hover {
    color: #fc0;
    background-color: black;
}

.vision-header {
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.vision-header .content {
    width: 85%;
    max-width: 1550px;
    margin: 0 auto;
    justify-content: center;
    padding-top: 70px;
    padding-bottom: 46px;
}

.vision-header .content .about-us-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}

.vision-header .content .about-us-item .icon-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.vision-header .content .about-us-item .icon-text .icon {
    width: 80px;
    height: 80px;
}

.vision-header .content .about-us-item .icon-text .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vision-header .content .about-us-item .icon-text .text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 150px;
}

.vision-header .content .about-us-item .icon-text .text .line1 {
    font-size: 28px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #000;
}

.vision-header .content .about-us-item .icon-text .text .line2 {
    width: 236px;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    font-family: "Univers-57";
    color: #000;
}

.vision-header .content .about-us-item .icon-text .text .line2 p {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    font-family: "Univers-57";
    color: #000;
}

.vision-header .content .about-us-item .icon-text .text .line2 span {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    font-family: "Univers-57";
    color: #000;
}

.code-goals {
    display: flex;
    margin-top: 112px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.code-goals .goals {
    display: flex;
}

.code-goals .goals .yellow-line {
    width: 68px;
    height: 8px;
    background-color: #fc0;
    margin-top: 18px;
    margin-right: 38px;
}

.code-goals .goals .title-body {
    display: flex;
    flex-direction: column;
}

.code-goals .goals .title-body .title {
    font-size: 28px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #000;
}

.code-goals .goals .title-body .body {
    max-width: 484px;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    font-family: "Univers-57";
    color: #000;
}

.code-goals .goals .title-body .body p {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    font-family: "Univers-57";
    color: #000;
}

.code-goals .goals .title-body .body span {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    font-family: "Univers-57";
    color: #000;
}

.locate-us .content {
    width: 85%;
    margin: 36px auto;
    max-width: 1550px;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
}

.locate-us .content .search {
    float: right;
    width: 456px;
    height: 45px;
    border-radius: 2px;
    border: solid 1px #fc0;
    background-color: rgba(0, 0, 0, 0.02);
    position: relative;
    margin-left: auto;
}

.locate-us .content .search input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    text-indent: 35px;
    background: #00000005 0% 0% no-repeat padding-box;
}

.locate-us .content .search input::placeholder {
    font-size: 15px;
    font-weight: normal;
    font-stretch: condensed;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;

    color: #000 !important;
    text-indent: 35px;
}

.locate-us .content .search .icon {
    position: absolute;
    right: 15px;
    width: 20px;
    height: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.locate-us-map {
    margin: 42px 0px;
}
.locate-us-map #mymap {
    width: 100%;
    height: 330px;
    border: none;
}

.locate-us-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.locate-us-cards .locate-us-card {
    border-radius: 2px;
    box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
    background-color: #fff;
    padding-bottom: 20px;
    width: calc(33.33% - 27px);
}

.locate-us-cards .locate-us-card .company {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    margin-left: 8px;
    color: #000;
    padding: 22px;
    text-transform: uppercase;

    border-bottom: 1px solid #fc0;
}
.locate-us-cards .locate-us-card .company i {
    color: #fc0;
    font-size: 20px;
}

.locate-us-card .icon-text {
    display: flex;
    align-items: center;
}

.locate-us-card .icon-text i {
    font-size: 20px;
    color: #ffcc00;
}

.locate-us-card .icon-text {
    display: flex;
    gap: 13px;
    padding: 10px;
    padding-left: 28px;
}

.locate-us-card .icon-text .text {
    font-size: 16px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #000;
}

.locate-us-card .icon-text .text {
    display: flex;
    gap: 10px;
    align-items: center;
}

.locate-us-card .icon-text .text .title {
    font-size: 16px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #000;
}

.locate-us-card .icon-text .text .value {
    text-decoration: unset !important;
    font-size: 16px;
    font-weight: normal;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #000;
}

.touch-map #mymap {
    width: 400px;
    height: 100% !important;
    border: none;
}

.get-in-touch-div .right {
    display: flex;
    flex-wrap: wrap;
    height: fit-content;
}

.get-in-touch-div .right .form {
    width: calc(450px - 60px);
    height: 100%;
    border: 1px solid #ffcc00;
    padding: 30px;
}

.get-in-touch-div .right .form .input input {
    width: 100%;
    border: none;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.3);
    padding: 12px 0px;
    font-size: 16px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #000;
}

.get-in-touch-div .right .form .input input::placeholder {
    font-size: 16px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #000 !important;
}

.get-in-touch-div .right .form textarea {
    width: 300px;
    height: 116px !important;
}

.get-in-touch-div .form .label {
    font-size: 16px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #000;
    padding: 12px 0px;
}

.get-in-touch-div .form button {
    width: 158px;
    height: 38px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fc0;
    border: none;
    font-size: 14px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    margin-top: 10px;

    color: #000;
}

.open-vacancies {
    width: 85%;
    margin: 32px auto;
    max-width: 1550px;
}

.open-vacancies .vacancies-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.open-vacancies .vacancies-header .left-header {
    display: flex;
    align-items: center;
    gap: 11px;
    width: 48%;
}

.open-vacancies .vacancies-header .left-header .yellow-line {
    width: 68px;
    height: 8px;
    background-color: #fc0;
}

.open-vacancies .vacancies-header .left-header .title {
    font-size: 24px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #000;
    text-transform: uppercase;
}

.open-vacancies .vacancies-header .right-header {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 48%;
    justify-content: space-between;
}

.open-vacancies .vacancies-header .right-header .input {
    width: 48%;
    height: 45px;
    position: relative;
}

.open-vacancies .vacancies-header .right-header .input input {
    width: 100%;
    height: 100%;
    border-radius: 2px;
    border: solid 1px #fc0;
    background-color: rgba(0, 0, 0, 0.02);
    font-size: 15px;
    font-weight: normal;
    font-stretch: condensed;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;

    color: #000;
    padding-left: 21px;
}

.open-vacancies .vacancies-header .right-header .input .icon {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.open-vacancies .vacancies-header .right-header .input input::placeholder {
    color: #000 !important;
}
.open-vacancies .vacancies-header .right-header .input select {
    cursor: pointer;
    width: 100%;
    height: 100%;
    border-radius: 2px;
    border: solid 1px #fc0;
    background-color: rgba(0, 0, 0, 0.02);
    font-size: 15px;
    font-weight: normal;
    font-stretch: condensed;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;

    color: #000;
    padding-left: 21px;
}

.vacancy-cards {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0px;
}

.vacancy-cards .vacancy-card {
    width: 30%;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
    background-color: #fff;
}

.vacancy-cards .vacancy-card .title {
    padding: 28px;
    font-size: 20px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #000;
    border-bottom: 1px solid #ffcc00;
}

.vacancy-cards .vacancy-card .icon-text-container {
    margin-top: 10px;
    height: 100px;
}

.vacancy-cards .vacancy-card .desc {
    height: 80px;
    overflow: auto;
}

.vacancy-cards .vacancy-card .icon-text {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 28px;
}

.vacancy-cards .vacancy-card .icon-text .icon {
    width: 20px;
}

.vacancy-cards .vacancy-card .icon-text .icon i {
    color: #ffcc00;
    font-size: 20px;
}

.vacancy-cards .vacancy-card .icon-text .text {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    font-family: "Univers-57";
    color: #000;
}

.vacancy-cards .vacancy-card .desc {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    font-family: "Univers-57";
    height: 100px;
    color: #000;
    padding: 0px 28px;
    margin-top: 10px;
    overflow: auto;
}

.vacancy-cards .vacancy-card button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 158px;
    height: 38px;
    border-radius: 2px;
    background-color: #fc0;
    border: none;
    font-size: 14px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-transform: uppercase;

    color: #000;
    margin: 14px 28px;
    transition: 0.3s all;
}

.vacancy-cards .vacancy-card button:hover {
    background-color: #000;
    color: #ffcc00;
    border: 1px solid #ffcc00;
}

.vacancy-content {
    width: 85%;
    margin: 0 auto;
    max-width: 1550px;
    padding-top: 105px;
}

.vacancy-content .path,
.vacancy-content .path span {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    font-family: "Univers-57";
    color: #000;
}

.vacancy-content .big-title {
    font-size: 44px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;

    color: #000;
    margin: 20px 0px;
}

.vacancy-content .icon-text {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.vacancy-content .icon-text .icon {
    width: 20px;
}

.vacancy-content .icon-text .icon i {
    font-size: 20px;
    color: #ffcc00;
}

.vacancy-content .icon-text .text {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;

    font-family: "Univers-57";
    color: #000;
}

.apply-vacancy .header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 48px 0px;
}

.apply-vacancy .header .yellow-line {
    width: 68px;
    height: 8px;
    background-color: #fc0;
}

.apply-vacancy .header .title {
    font-size: 24px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #000;
}

footer {
    width: 100%;
    padding: 45px 0px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(
        0,
        0,
        0,
        0.5
    ); /* Adjust the alpha value to control darkness (0.5 is semi-transparent black) */
}

footer .footer-content {
    width: 85%;
    margin: 0px auto;
    max-width: 1550px;
    color: white;
    z-index: 2; /* Place the content above the overlay */
    position: relative;
}

footer .overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(
        0,
        0,
        0,
        0.3
    ); /* Adjust the alpha value to control darkness (0.5 is semi-transparent black) */
    z-index: 1; /* Place the overlay above the content */
}

footer .footer-content .footer-col .title {
    font-size: 21px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #fff;
    border-bottom: 2px solid #fc0;
    padding: 8px 0px;
}

footer .footer-content .footer-col ul {
    padding: 0;
    margin: 0;
    list-style: none;
    padding-top: 12px;
    font-family: "Univers-57";
}

footer .footer-content .footer-col ul li {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #fff;
    padding: 6px 0px;
    cursor: pointer;
}

footer ul li a {
    transition: 0.3s all;
}

footer ul li a:hover {
    border-bottom: 1px solid;
}

footer .footer-content .multi-col {
    display: flex;
    gap: 100px;
    flex-wrap: wrap;
}

footer .footer-content .links-newsletter {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .footer-content .links-newsletter .newsletter .newsletter-title {
    font-size: 21px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    color: #fff;
    border-bottom: 2px solid #fc0;
}

footer .footer-content .links-newsletter .newsletter .input {
    display: flex;
    align-items: center;
    margin-top: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

footer .footer-content .links-newsletter .newsletter .input input {
    margin: 0;
    border: none;
    outline: none;
    width: 300px;
    height: 40px;
    border-top-left-radius: 2px;
    border-bottom-left-radius: 2px;
}

footer .footer-content .links-newsletter .newsletter .input button {
    height: 42px;
    border: none;
    width: 90px;
    height: 40px;
    background-color: #fc0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #000;
    text-transform: uppercase;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

footer .footer-content .links-newsletter .newsletter .social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

footer .footer-content .links-newsletter .newsletter .social i {
    font-size: 18px;
}

footer .footer-content .logo {
    width: 170px;
    height: 50px;
    margin-top: 50px;
}

footer .footer-content .bottom-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 90%;
}

footer .footer-content .bottom-footer .left {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    font-family: "Univers-57";

    color: #fff;
}

footer .footer-content .bottom-footer .left span {
    font-weight: bold;
}

footer .footer-content .bottom-footer .right ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

footer .footer-content .bottom-footer .right ul li {
    font-size: 14px;
    font-weight: normal;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;

    color: #fff;
}

.video-register {
    display: flex;
    align-items: center;
    width: 85%;
    margin: 60px auto;
    max-width: 1550px;
    gap: 180px;
    flex-wrap: wrap;
}

.video-register .video {
    width: 700px;
    height: 400px;
}

.video-register .video video {
    width: 100%;
    height: 100%;
}

.video-register .register .top-header {
    display: flex;
    align-items: center;
    gap: 23px;
}

/* .video-register .register .yellow-line {
    width: 68px;
    height: 8px;
    background-color: #fc0;
} */

.video-register .register .title {
    font-size: 28px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    text-transform: uppercase;
    max-width: 400px;
    position: relative;
}

.video-register .register .title::before {
    position: absolute;
    content: "";
    width: 68px;
    height: 8px;
    background-color: #fc0;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
}

.video-register .register .body {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    max-width: 500px;
    margin: 30px 0px;
    font-family: "Univers-57";
}

.video-register .register .body p {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    max-width: 500px;
    font-family: "Univers-57";
}

.video-register .register .buttons {
    display: flex;
    justify-content: space-between;
    gap: 26px;
}

.video-register .register .buttons .reg-btn {
    width: 158px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    background-color: #fc0;
    font-size: 14px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
    text-transform: uppercase;
    transition: 0.3s all;
    cursor: pointer;
}

.video-register .register .buttons .reg-btn:hover {
    background: #000000 0% 0% no-repeat padding-box;
    border: 1px solid #ffcc00;
    color: #ffcc00;
}

.video-register .register .buttons .login-btn {
    width: 158px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    background-color: #fff;
    font-size: 14px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
    border: solid 1px #fc0;
    text-transform: uppercase;
    cursor: pointer;
}

.video-register .register .buttons .login-btn:hover {
    background: #ffcc00 0% 0% no-repeat padding-box;
    border: 1px solid #ffcc00;
}

.online-tools {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.online-tools .content {
    width: 85%;
    margin: 0 auto;
    max-width: 1550px;
    padding: 50px 0px;
}

.online-tools .header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.online-tools .header .yellow-line {
    width: 68px;
    height: 8px;
    background-color: #fc0;
}

.online-tools .header .title {
    font-size: 28px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    text-transform: uppercase;
}

.online-tools-container {
    display: flex;
    align-items: center;
    gap: 66px;
    margin-top: 36px;
    overflow-x: auto; /* Enable horizontal scrolling */
    white-space: nowrap;
    width: unset !important;
}

.online-tools-container::-webkit-scrollbar {
    width: 0.5rem; /* Adjust the width to control scrollbar size (set to 0 to hide) */
}

.online-tools-container .one-tool {
    width: 355px;
}

.online-tools-container .one-tool .image {
    width: 355px;
    height: 240px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.online-tools-container .one-tool .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Create a semi-transparent overlay for hover effect */
.online-tools-container .one-tool .image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05); /* Adjust the alpha value for darkness */
    opacity: 0; /* Initially transparent */
    transition: opacity 0.3s ease; /* Add a smooth transition for opacity */
    z-index: 1; /* Ensure the overlay is above the image */
}

/* Apply the hover effect */
.online-tools-container .one-tool .image:hover img {
    transform: scale(1.1); /* Zoom in by 10% on hover */
    filter: brightness(0.7); /* Darken the image on hover */
}

.online-tools-container .one-tool .image:hover::before {
    opacity: 1; /* Show the semi-transparent overlay on hover */
}

.online-tools-container .one-tool .tool-title {
    font-size: 24px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    margin-top: 28px;
}

.scroll-container {
    width: 100%; /* Set the desired width of the viewport */
    overflow: hidden;
    position: relative;
}

.inquiry {
    width: 85%;
    margin: 108px auto;
    max-width: 1550px;
}

.inquiry .header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.inquiry .header .yellow-line {
    width: 68px;
    height: 8px;
    background-color: #fc0;
}

.inquiry .header .title {
    font-size: 28px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    text-transform: uppercase;
}

.inquiry .body {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    max-width: 478px;
    margin-top: 22px;
}

.inquiry .header-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.inquiry .header-logo img {
    width: 290px;
    height: auto;
}

.register-header {
    margin: 0 auto;
    max-width: 1550px;
    width: 85%;
}

.register-header .path {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    padding-top: 100px;
}

.register-header .title {
    font-size: 44px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 22px;
    margin-top: 20px;
}

.register-header .body {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    max-width: 470px;
    margin-bottom: 40px;
}

.reps-container {
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.reps-container .content {
    width: 85%;
    margin: 0 auto;
    max-width: 1550px;
    padding: 42px 0px;
}

.reps-container .content .header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reps-container .content .header .yellow-line {
    width: 68px;
    height: 8px;
    background-color: #fc0;
}

.reps-container .content .header .title {
    font-size: 28px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    text-transform: uppercase;
}

.services-div {
    width: 85%;
    margin: 60px auto;
    max-width: 1550px;
    display: flex;
    gap: 85px;
    flex-wrap: wrap;
}

.services-div .filters {
    border-radius: 2px;
    box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
    border: solid 1px #fc0;
    background-color: #fc0;
    padding: 30px;
    height: fit-content;
    width: 30%;
}

.services-div .filters .all-filters {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 18px;
}

.services-div .filters .title {
    font-size: 21px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    text-align: center;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.services-div .filters .filter-checkbox {
    display: flex;
    align-items: center;
    gap: 13px;
}

.services-div .filters .filter-checkbox input {
    width: 20px;
    height: 20px;
    background-color: transparent !important;
    -webkit-appearance: none; /* Remove default checkbox styles for Webkit browsers */
    appearance: none; /* Remove default checkbox styles */
    background-color: transparent !important; /* Set the background to transparent */
    border: 2px solid #333;
    cursor: pointer;
}

.services-div .filters .filter-checkbox span {
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    font-family: "Univers-57";
    text-transform: uppercase;
}

.services-div .filters .filter-checkbox input[type="checkbox"]:checked {
    /* Add custom styles for the checked state */
    background-color: black !important; /* Optional: Change the background color for the checked state */
}

.all-services {
    display: flex;
    flex-wrap: wrap;
    width: 60%;
    justify-content: space-between;
    gap: 20px;
}

.all-services .service-card {
    border-radius: 2px;
    box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
    width: 47%;
}

.all-services .service-card .image {
    width: 100%;
    height: 208px;
    background-image: linear-gradient(359deg, rgba(0, 0, 0, 0.01) 99%, #000 4%);
}

.all-services .service-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.all-services .service-card .title {
    font-size: 20px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    padding: 36px 30px;
    height: 110px;
}

.all-services .service-card .divider {
    width: 98%;
    height: 1px;
    background-color: #fc0;
    margin: 0 auto;
}

.all-services .service-card .body {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    max-width: 360px;
    font-family: "Univers-57";
    padding: 30px;
    max-height: 200px; /* Set your desired maximum height here */
    overflow: hidden;
    text-overflow: ellipsis;
    padding-bottom: 0px;
    width: 100%; /* Add this line to set a width */
    min-height: 200px;
}

.all-services .service-card .body p {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    font-family: "Univers-57";
}

[dir="rtl"] .all-services .service-card button {
    margin-right: 30px;
}

.all-services .service-card button {
    width: 160px;
    height: 40px;
    border-radius: 2px;
    background-color: #fc0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    border: none;
    font-size: 14px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
    margin-top: 24px;
    transition: 0.3s all;
    margin-left: 30px;
    margin-bottom: 30px;
}

.all-services .service-card button:hover {
    background-color: black;
    color: #fc0;
}

.service-details .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-details .header .image {
    width: 510px;
    height: 456px;
}

.service-details .header .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-details .header .header-content {
    width: 85%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1550px;
    padding: 30px 0px;
}

.service-details .header .header-content .right-content {
    width: 50%;
}

.service-details .header .header-content .right-content .line1 {
    font-size: 28px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    text-transform: uppercase;
    position: relative;
}

[dir="rtl"]
    .service-details
    .header
    .header-content
    .right-content
    .line1::before {
    right: -90px;
    left: unset;
}

.service-details .header .header-content .right-content .line1::before {
    position: absolute;
    content: "";
    left: -90px;
    width: 68px;
    height: 8px;
    background-color: #fc0;
    top: 50%;
    transform: translateY(-50%);
}

.service-details .header .header-content .right-content .line2 {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    font-family: "Univers-57";
}

.service-details .header .header-content .right-content .line2 p {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    font-family: "Univers-57";
}

.service-items {
    width: 85%;
    margin: 0 auto;
    max-width: 1550px;
}

.service-items .header {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 66px;
}

.service-items .header .yellow-line {
    width: 68px;
    height: 8px;
    background-color: #fc0;
}

.service-items .header .title {
    font-size: 28px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    text-transform: uppercase;
}

.service-item-container {
    margin-top: 40px;
    display: flex;
    padding-bottom: 90px;
    flex-wrap: wrap;
}

.service-item-card::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.service-item-card::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.service-item-card::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
.service-item-card::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.service-item-card {
    border-radius: 2px;
    box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
    padding: 50px;
    flex: 0 0 calc(33.33% - 50px);
    margin: 25px;
    height: 300px;
    overflow-y: auto;
}

.service-item-card .title {
    font-size: 20px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    text-transform: uppercase;
}

.service-item-card .body {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    margin-top: 20px;
    font-family: "Univers-57";
    text-overflow: ellipsis;
    width: 100%;
}

.service-item-card .body p {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    font-family: "Univers-57";
}

.video-section {
    width: 100%;
    background-color: black;
}

.video-section .content {
    width: 85%;
    margin: 0 auto;
    max-width: 1550px;
    padding: 60px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.video-section .content .video {
    width: 500px;
    height: 240px;
}

.video-section .content .video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-section .content .video iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-section .content .right-section {
    max-width: 550px;
}

.video-section .content .right-section .line1 {
    font-size: 28px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    color: #fff;
    text-transform: uppercase;
    position: relative;
}

[dir="rtl"] .video-section .content .right-section .line1::before {
    right: -90px;
    left: unset;
}

.video-section .content .right-section .line1::before {
    position: absolute;
    content: "";
    left: -90px;
    width: 68px;
    height: 8px;
    background-color: #fc0;
    top: 50%;
    transform: translateY(-50%);
}

.video-section .content .right-section .line2 {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #fff;
    font-family: "Univers-57";
}

.video-section .content .right-section .line2 p {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #fff;
    font-family: "Univers-57";
}

.video-section .content .right-section .line2 span {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #fff !important;
    background-color: transparent !important;
    font-family: "Univers-57";
}

.tabs-section {
    width: 85%;
    margin: 0 auto;
    max-width: 1550px;
}

.tabs-section .header {
    display: flex;
    align-items: center;
    margin-top: 65px;
    gap: 22px;
}

.tabs-section .header .yellow-line {
    width: 68px;
    height: 8px;
    background-color: #fc0;
}

.tabs-section .header .title {
    font-size: 28px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    text-transform: uppercase;
}

.tabs-container {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-top: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.tabs-container .tab {
    width: 220px;
    height: 105px;
    border-radius: 2px;
    box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
    background-color: white;
    display: flex;
    align-items: center;
    padding: 26px;
    gap: 15px;
    transition: all 0.3s;
    cursor: pointer;
    padding: 10px;
}

.tabs-container .active-tab {
    background-color: #fc0;
}

.tabs-container .tab:hover {
    background-color: #fc0;
}

.tabs-container .tab img {
    width: 50px;
    height: 50px;
}

.tabs-container .tab .name {
    font-size: 18px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    flex: 1;
}

.broch-div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid;
    padding: 10px 0px;
}

.broch-div .title {
    font-size: 16px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
    text-transform: uppercase;
}

.broch-div i {
    font-size: 20px;
    cursor: pointer;
}

.tab-body-image {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    flex-wrap: wrap;
}

.tab-body-image .body {
    max-width: 750px;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    font-family: "Univers-57";
}

.tab-body-image p {
    max-width: 750px;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    font-family: "Univers-57";
}

.tab-body-image span {
    max-width: 750px;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
}

.tab-body-image img {
    width: 300px;
    height: 270px;
}

.products-container {
    display: flex;
    gap: 45px;
    flex-wrap: wrap;
    width: 100%;
}

.products-container a {
    display: contents;
}

.products-container .product-card {
    border-radius: 2px;
    box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
    background-color: #fff;
    cursor: pointer;
    flex: 0 0 calc(50% - 30px);
    height: fit-content;
}

.products-container .image {
    width: 100%;
    height: 270px;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.products-container .image img {
    width: 75%;
    height: auto;
    transition: transform 0.3s ease; /* Add a transition for smooth zoom */
}

.products-container .image:hover img {
    transform: scale(1.1); /* Increase the scale to zoom in by 10% */
}

.products-container .product-card .info {
    padding: 30px 0px;
    width: 75%;
    margin: 0 auto;
}

.products-container .product-card .info .title-arrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.products-container .product-card .info .title-arrow .title {
    font-size: 14px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    text-transform: uppercase;
}

.products-container .product-card .info .description {
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    max-width: 260px;
    margin-top: 8px;
    height: 6em; /* Adjust the height to the number of lines you want to display */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* Adjust the number of lines you want to display */
    -webkit-box-orient: vertical;
    white-space: normal;
}
.products-container .product-card .info .description span {
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Adjust the number of lines you want to display */
    -webkit-box-orient: vertical;
    white-space: normal;
}

.products-container .product-card .info .description p {
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Adjust the number of lines you want to display */
    -webkit-box-orient: vertical;
    white-space: normal;
}

.products-container .product-card .info .description h3 {
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Adjust the number of lines you want to display */
    -webkit-box-orient: vertical;
    white-space: normal;
}

.categories-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 70px auto;
    max-width: 1550px;
    width: 85%;
    flex-wrap: wrap;
}

.categories-card a {
    display: contents;
}
.categories-card .category-card {
    border-radius: 2px;
    box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
    background-color: #fff;
    cursor: pointer;
    width: calc(
        33.33% - 14px
    ); /* Set the width for each item (subtract margin) */
}

.categories-card .category-card .image:hover img {
    transform: scale(1.1); /* Increase the scale to zoom in by 10% */
}

.categories-card .category-card .image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.categories-card .category-card .image img {
    width: 75%;
    height: auto;
    transition: transform 0.3s ease; /* Add a transition for smooth zoom */
}

.categories-card .category-card .title-arrow {
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 28px 0px;
    margin: 0 auto;
    width: 75%;
}

.categories-card .category-card .title-arrow .title {
    font-size: 14px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    text-transform: uppercase;
}

.last-section {
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 72px auto;
    max-width: 1550px;
    flex-wrap: wrap;
    gap: 20px;
}

.last-section .left {
    width: 50%;
}

.last-section .left .button {
    width: 160px;
    height: 35px;
    margin-left: 90px;
    border-radius: 2px;
    background-color: #fc0;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    cursor: pointer;
    transition: 0.3s all;
    border: 1px solid #fc0;
}

.last-section .left .button:hover {
    background-color: black;
    color: #fc0;
}

.last-section .left .line1 {
    font-size: 28px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    text-transform: uppercase;
    position: relative;
    margin-left: 90px;
}

[dir="rtl"] .last-section .left .line1::before {
    right: -90px;
    left: unset;
}

.last-section .left .line1::before {
    content: "";
    position: absolute;
    width: 68px;
    height: 8px;
    background-color: #fc0;
    top: 50%;
    transform: translateY(-50%);
    left: -90px;
}

.last-section .left .line2 {
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    max-width: 750px;
    margin-top: 10px;
    margin-left: 90px;
}

.last-section .left .line2 p {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    font-family: "Univers-57";
}

.last-section .left .line2 span {
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
}

.last-section .right {
    width: 500px;
    height: 340px;
}

.last-section .right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-sliders {
    width: 100%;
    height: calc(100vh - 2000px);
}

.carousel-item {
    position: relative;
}

.carousel-item img {
    object-fit: cover;
}

.carousel-item .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.carousel-item::before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    background-image: url("/assets-web/images/mask.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.4;
}

.home-sliders .one-slider {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    background-color: rgba(0, 0, 0, 0.16);
    overflow: hidden; /* Add this to hide overflow content */
}

.home-sliders .one-slider::before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    background-image: url("/assets-web/images/mask.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.6;
}

.home-sliders .one-slider .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.carousel .line-1 {
    font-size: 34px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    text-align: center;
    color: #fff;
    max-width: 500px;
}

.carousel .button {
    width: 160px;
    height: 38px;
    border-radius: 2px;
    background-color: #fc0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
    cursor: pointer;
    border: 1px solid #fc0;
    transition: 0.3s all;
}

.carousel .button:hover {
    background-color: black;
    color: #fc0;
}

.home-sliders .dots {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
}

.home-sliders .dots .active {
    background-color: #ffcc00 !important;
}

.home-sliders .dots .dot {
    width: 8px;
    height: 8px;
    margin: 0 0 0 8px;
    background-color: rgba(221, 221, 221, 0.38);
    border-radius: 100%;
}

.products-hover {
    display: none;
    position: absolute;
    background-color: white;
    z-index: 999999;
    color: black;
    padding: 22px 65px;
    top: 150px;
    transition: 0.3s all;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
    width: 800px;
    overflow-x: auto;
    /*max-height: 600px;*/
    max-height:367px;
    overflow-y:scroll;

}

.products-hover .left {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 40px;
}

.products-hover .one-row {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    width: 320px;
    padding-right: 20px;
}

.products-hover .one-row .right-div {
    position: absolute;
    right: -320px;
    flex-direction: column;
    gap: 20px;
    top: 0px;
    display: none;
    width: 100%;
    padding-top: 10px;
}

.products-hover .one-row .right-div a {
    font-family: "Univers-57" !important ;
    font-weight: 100 !important;
    width: fit-content;
    text-transform: capitalize;
}
.products-hover .one-row .right-div a:hover {
    font-weight: bold !important;
}

.products-hover .one-row:hover .right-div {
    display: flex;
}

.products-hover .one-row i {
    opacity: 0;
    transition: 0.3s all;
}

.products-hover .one-row a div {
    font-family: "Univers-57" !important ;
    font-weight: 100 !important;
    text-transform: uppercase;
}
.products-hover .one-row a div:hover {
    font-weight: bold !important;
}

.one-row:hover i {
    opacity: 1;
}
.products-hover .one-row img {
    width: 50px;
    height: 50px;
}

.products-hover .left .line1 {
    font-size: 18px;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
    max-width: 280px;
}

.products-hover .left .line2 {
    font-size: 12px;
    letter-spacing: 0px;
    color: #000000;
    opacity: 0.43;
    margin-top: 10px;
    max-width: 280px;
}

.products-hover .right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 360px;
}

.products-hover .right .right-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 3px 6px #00000029;
    background-color: #ffcc00;
    width: 160px;
    height: 160px;
    justify-content: center;
    gap: 10px;
}

.products-hover .right .right-card i {
    font-size: 30px;
}

.products-hover .right .right-card .text {
    font-family: "Univers-57";
    font-size: 15px;
    letter-spacing: 0px;
    color: #000000;
    opacity: 1;
    z-index: 999999999;
}

.products-hover .right .right-card .text:hover {
    font-weight: bold;
}

.product-menu-item:hover .products-hover {
    display: flex;
}

.history-header .content .three-items .icon-text .text {
    width: 120px;
}

.services-hover {
    position: absolute;
    background-color: white;
    z-index: 999999;
    color: black;
    top: 150px;
    transition: 0.3s all;
    width: 800px;
    padding: 30px;
    display: none;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
    justify-content: space-between;
}

.services-hover img {
    width: 300px;
    height: auto;
}

.services-hover ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.services-hover ul li {
    transition: 0.3s all;
    font-family: "Univers-57";
    position: relative;
    margin: 10px 0px;
    font-weight: 100;
    padding: 8px 0px;
}

.services-hover ul li::after {
    position: absolute;
    content: "";
    bottom: 0px;
    width: 100%;
    height: 2px;
    background-color: black;
    transition: 0.3s all;
    opacity: 0;
    left: 0;
    right: 0;
}

.services-hover ul li:hover {
    font-weight: bold;
}

.services-hover ul li:hover::after {
    /* Your styles for .services-hover ul li::after when hovering */
    opacity: 1;
}

.service-menu-item:hover .services-hover {
    display: flex;
}

.company-hover {
    position: absolute;
    background-color: white;
    z-index: 999999;
    color: black;
    top: 150px;
    transition: 0.3s all;
    padding: 30px;
    align-items: center;
    gap: 80px;
    display: none;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

.company-hover ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.company-hover ul li {
    font-size: 16px;
    letter-spacing: 0px;
    color: #000000;
    padding: 10px;
    transition: 0.3s all;
    font-weight: normal;
    font-family: "Univers-57";
}

.company-hover ul li:hover {
    font-weight: bold !important;
}

.company-hover img {
    width: 280px;
    height: 280px;
}

.company-menu-item:hover .company-hover {
    display: flex;
}

.tools-hover {
    position: absolute;
    background-color: white;
    z-index: 999999;
    color: black;
    top: 150px;
    transition: 0.3s all;
    padding: 30px;
    align-items: center;
    gap: 80px;
    display: none;
    right: 17vw;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

.menu-item a {
    position: relative;
}

.menu-item a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: #fc0;
    transition: 0.3s;
}

.menu .active a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #fc0;
    transition: 0.3s;
}

.menu-item a:hover::after {
    width: 100%;
}

.tools-menu-item:hover .tools-hover {
    display: flex;
}

.tools-hover ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tools-hover ul li {
    font-size: 16px;
    letter-spacing: 0px;
    color: #000000;
    padding: 10px;
    transition: 0.3s all;
    font-weight: normal;
    font-family: "Univers-57";
}

.tools-hover ul li:hover {
    font-weight: bold !important;
}

.tools-menu-item:hover .tools-hover {
    display: flex;
}

.tools-hover img {
    width: 332px;
    height: 222px;
}

.products-home .header {
    display: flex;
    align-items: center;
    gap: 22px;
    justify-content: center;
    margin: 40px 0px;
}

.account-hover {
    position: absolute;
    background-color: white;
    z-index: 999999;
    color: black;
    top: 150px;
    transition: 0.3s all;
    padding: 30px;
    align-items: center;
    gap: 80px;
    display: none;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

.account-hover ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.account-hover ul li {
    font-size: 16px;
    letter-spacing: 0px;
    color: #000000;
    padding: 10px;
    transition: 0.3s all;
    font-weight: normal;
    font-family: "Univers-57";
}

.account-hover ul li:hover {
    font-weight: bold !important;
}

.account-hover img {
    width: 332px;
    height: 222px;
}

.account-menu-item:hover .account-hover {
    display: flex;
}

.products-home .header .yellow-line {
    width: 68px;
    height: 8px;
    background-color: #fc0;
}

.products-home .header .title {
    font-size: 28px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    text-transform: uppercase;
}

.products-home .products-cat {
    display: flex;
    justify-content: center;
    gap: 70px;
    margin-bottom: 60px;
}

.products-home .products-cat .tab {
    cursor: pointer;
}

.products-home .view-all {
    display: flex;
    justify-content: center;
    width: 160px;
    height: 40px;
    border-radius: 2px;
    background-color: #fc0;
    align-items: center;
    margin: 50px auto;
    font-size: 14px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
    text-transform: uppercase;
    transition: 0.3s all;
    cursor: pointer;
}

.products-home .view-all:hover {
    background-color: black;
    color: #ffcc00;
}

.products-home .products-cat div {
    text-transform: uppercase;
    font-size: 21px;
    font-weight: normal;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
}

.services-home {
    background-color: black;
    color: white;
    padding: 50px 0px;
    position: relative;
}

.services-home .header {
    display: flex;
    align-items: center;
    gap: 22px;
    justify-content: center;
    margin-bottom: 30px;
}

.services-home .header .yellow-line {
    width: 68px;
    height: 8px;
    background-color: #fc0;
}

.services-home .header .title {
    font-size: 28px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    text-transform: uppercase;
}

.services-home .button {
    width: 160px;
    height: 40px;
    border-radius: 2px;
    background-color: #fc0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: black;
    font-size: 14px;
    cursor: pointer;
    border: 1px #fc0 solid;
    transition: 0.3s all;
    margin: 0 auto;
    margin-top: 20px;
}

.services-home .button:hover {
    background-color: transparent;
    color: #fc0;
}

.huge-selection {
    width: 85%;
    margin: 0px auto;
    max-width: 1550px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    height: auto;
    padding: 80px 0px;
}

.huge-selection .left {
    width: 45%;
}

.huge-selection .right {
    width: 30%;
}

.huge-selection .right .header {
    font-size: 28px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    text-transform: uppercase;
    position: relative;
}

.next-prev-btns {
    max-width: 1550px;
}

.huge-selection .right .header::before {
    position: absolute;
    content: "";
    width: 68px;
    height: 8px;
    background-color: #fc0;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
}

[dir="rtl"] .huge-selection .right .header::before {
    right: -80px;
}

.huge-selection .right .body {
    font-family: Arial;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    margin: 16px 0px;
}

.huge-selection .right .button {
    width: 160px;
    height: 38px;
    border-radius: 2px;
    background-color: #fc0;
    text-transform: uppercase;
    border: 1px solid #fc0;
    transition: 0.3s all;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.huge-selection .right .button:hover {
    background-color: black;
    color: #fc0;
}

.huge-selection .one-part .image {
    width: 100%;
    height: 165px;
    border: solid 1px #fc0;
}

.huge-selection .one-part .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.huge-selection .one-part .name {
    font-size: 14px;
    font-weight: normal;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    color: #fff;
    text-transform: uppercase;
    background-color: black;
    width: 100%;
    font-size: 14px;
    font-weight: normal;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    color: #fff;
    height: 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.3s all;
}
.huge-selection .one-part .name .line1 {
    margin-left: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
[dir="rtl"] .huge-selection .one-part .name .line1 {
    margin-right: 18px;
}
.huge-selection .one-part .name .learn-more {
    font-size: 10px;
    text-transform: uppercase;
    text-decoration: underline;
    margin-left: 18px;
    opacity: 0;
    height: 0;
    transition: 0.3s all;
    cursor: pointer;
}

.huge-selection .one-part:hover .name .learn-more {
    opacity: 1;
    height: 20px;
}

[dir="rtl"] .huge-selection .one-part .name .learn-more {
    margin-right: 18px;
}

.huge-selection .next-prev-btns1 {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.huge-selection .next-prev-btns1 button {
    background-color: #fc0;
    color: black;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 100%;
}

.offers-home {
    width: 85%;
    max-width: 1550px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 180px;
    margin-bottom: 100px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.offers-home .left {
    width: 45%;
}

.offers-home .left .offer-title {
    text-align: center;
    margin-top: 20px;
    width: 90%;
}

.offers-home .right {
    width: 30%;
}

.virtual-tour .left {
    width: 45%;
    padding-left: 150px;
}

[dir="rtl"] .virtual-tour .left {
    padding-left: unset;
    padding-right: 85px;
}

.offers-home .right .header {
    font-size: 28px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    text-transform: uppercase;
    position: relative;
}

.virtual-tour .left .header {
    font-size: 28px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    text-transform: uppercase;
    position: relative;
}

.offers-home .right .header::before {
    position: absolute;
    content: "";
    width: 68px;
    height: 8px;
    background-color: #fc0;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
}

[dir="rtl"] .offers-home .right .header::before {
    right: -80px;
    left: unset;
}

.virtual-tour .left .header::before {
    position: absolute;
    content: "";
    width: 68px;
    height: 8px;
    background-color: #fc0;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
}

[dir="rtl"] .virtual-tour .left .header::before {
    right: -80px;
}
.offers-home .right .body {
    font-family: "Univers-57";
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    margin: 16px 0px;
}

.virtual-tour .left .body {
    font-family: "Univers-57";
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    margin: 16px 0px;
}

.offers-home .right .button {
    width: 160px;
    height: 38px;
    border-radius: 2px;
    background-color: #fc0;
    text-transform: uppercase;
    border: 1px solid #fc0;
    transition: 0.3s all;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.virtual-tour .left .button {
    width: 160px;
    height: 38px;
    border-radius: 2px;
    background-color: #fc0;
    text-transform: uppercase;
    border: 1px solid #fc0;
    transition: 0.3s all;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offers-home .right .button:hover {
    background-color: black;
    color: #fc0;
}

.virtual-tour .left .button:hover {
    background-color: black;
    color: #fc0;
}
.offers-home .right .price {
    font-size: 14px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    margin-bottom: 16px;
}
.offers-home .big-image {
    border: 6px solid #fc0;
    width: 90%;
    padding-bottom: 50%;
    overflow: hidden;
    position: relative;
}
.offers-home .big-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.offers-home .slick-prev {
    left: -90px;
}

.offers-home .small-image {
    border: 6px solid #fc0;
    width: 40%;
    padding-bottom: 40%;
    position: relative;
    overflow: hidden;
}

.offers-home .small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.offers-home .next-prev-btns2 {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.offers-home .next-prev-btns2 button {
    background-color: #fc0;
    color: black;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 100%;
}

.virtual-tour {
    width: 85%;
    margin: 0 auto;
    max-width: 1550px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
    flex-wrap: wrap;
    gap: 20px;
}

.virtual-tour .left .text {
    max-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.virtual-tour .left .text .line1 {
    font-size: 28px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
}

.virtual-tour .left .text .line2 {
    font-family: "Univers-57";
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
}

.virtual-tour .left .yellow-line {
    width: 68px;
    height: 8px;
    background-color: #fc0;
    transform: translateY(15px);
}

.virtual-tour .left .button {
    width: 160px;
    height: 38px;
    border-radius: 2px;
    background-color: #fc0;
    border: 1px solid #fc0;
    transition: 0.3s all;
    font-size: 14px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-transform: uppercase;
}

.virtual-tour .left .button:hover {
    background-color: #000;
    color: #fc0;
}

.virtual-tour .right img {
    width: 790px;
    height: 340px;
}
.virtual-tour .right iframe {
    width: 650px;
    height: 340px;
}

.home-team {
    width: 100%;
    height: 360px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    margin-bottom: 60px;
}

.home-team::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, black, white);
    opacity: 0.1;
}

.home-team .content {
    color: white;
    display: flex;
    z-index: 999;
    padding-top: 100px;
    padding-left: 165px;
    gap: 10px;
    position: relative;
}
[dir="rtl"] .home-team .content {
    padding-left: unset;
    padding-right: 165px;
}

.home-team .content .yellow-line {
    width: 68px;
    height: 8px;
    background-color: #fc0;
    margin-top: 30px;
}

.home-team .content .text {
    max-width: 215px;
}

.home-team .content .text .line1 {
    font-size: 28px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    color: #fff;
    margin-top: 16px;
}

.home-team .content .text .line2 {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #fff;
    font-family: "Univers-57";
    margin-bottom: 30px;
}

.home-team .content .text .button {
    border-radius: 2px;
    background-color: #fc0;
    width: 160px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    color: #000;
    font-size: 14px;
    font-weight: bold;
    border: 1px solid #fc0;
    transition: 0.3s all;
    cursor: pointer;
}

.home-team .content .text .button:hover {
    background-color: #000;
    color: #fc0;
}

.filters-search {
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #fc0;
}

.filters-search .content {
    width: 85%;
    max-width: 1550px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0px;
    flex-wrap: wrap;
}

.filters-search .content .filters {
    display: flex;
    align-items: center;
}

.filters-search .content .filters ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 60px;
    align-items: center;
}

.filters-search .content .filters ul li {
    font-size: 21px;
    font-weight: normal;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
}

.filters-search .content .filters ul li:hover .filter-body {
    display: block;
}

.filters-search .content .filters ul li .filter-body {
    position: absolute;
    background-color: white;
    box-shadow: 0px 3px 6px #00000029;
    width: calc(350px - 40px);
    display: none;
    padding: 20px;
    z-index: 9999;
}

.filters-search .content .filters ul li .filter-body .title-value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-bottom: 0.5px solid #0000004d;
    padding: 8px 0px;
    padding-right: 8px;
}

.filters-search .content .filters ul li .filter-body .title-value .title {
    font-family: "Univers-57";
    font-size: 14px;
    text-transform: uppercase;
}

/* Style the custom checkbox container */
.custom-checkbox {
    display: inline-block;
    width: 15px;
    height: 15px;
    background-color: white;
    border: 2px solid #fc0;
}

/* Style the custom checkbox when checked */
.custom-checkbox input:checked + .checkmark {
    background-color: orange;
}

/* Hide the default checkbox */
.custom-checkbox input {
    display: none;
}

/* Style the custom checkbox's checkmark */
.checkmark {
    width: 100%;
    height: 100%;
    display: block;
}

.filters-search .content .filters ul li i {
    margin-left: 5px;
}

.filters-search .content .search {
    width: 456px;
    position: relative;
}

.filters-search .content .search i {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}
.filters-search .content .search input {
    width: 100%;
    height: 45px;
    background-color: rgba(0, 0, 0, 0.17);
    border: solid 1px #fc0;
    font-size: 15px;
    font-weight: normal;
    font-stretch: condensed;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #000;
    text-indent: 35px;
}

.filters-search .content .search input::placeholder {
    color: #000 !important;
}

.filters-search .content .clear {
    text-decoration: underline;
    text-transform: uppercase;
    font-size: 14px;
}

.filters-search .content .clear-apply {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.filters-search .content .clear-apply .apply {
    background: #ffcc00 0% 0% no-repeat padding-box;
    border-radius: 2px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    width: 70px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-list-category {
    width: 85%;
    max-width: 1550px;
    margin: 55px auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.product-list-category a {
    display: contents;
}

.product-list-category .product-card-category {
    padding: 0 0 40px;
    border-radius: 2px;
    box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
    background-color: #fff;
    width: calc(
        33.33% - 20px
    ); /* Set the width for each item (subtract margin) */
}

.product-list-category .product-card-category .image {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.product-list-category .product-card-category .image:hover img {
    transform: scale(1.1); /* Increase the scale to zoom in by 10% */
}

.product-list-category .product-card-category .image .tag {
    position: absolute;
    width: 156px;
    height: 34px;
    border-radius: 6px;
    background-color: #fc0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    color: #000;
    top: 30px;
    right: 30px;
}

.product-list-category .product-card-category img {
    width: 75%;
    height: auto;

    transition: 0.3s all;
}

.product-list-category .product-card-category .name {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
}

.product-list-category .product-card-category .name span {
    font-size: 14px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    text-transform: uppercase;
}

.product-list-category .product-card-category .orange-line {
    width: 100%;
    height: 1px;
    background-color: #fc0;
}

.product-list-category .product-card-category .two-lines {
    display: flex;
    flex-direction: column;
    padding: 20px 30px;
    gap: 10px;
    max-height: 100px;
    overflow: hidden;
}

.product-list-category .product-card-category .two-lines .line1 {
    font-size: 14px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    color: #000;
    text-transform: uppercase;
}

.product-list-category .product-card-category .two-lines .line2 {
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    font-family: "Univers-57";
}

.product-list-category .product-card-category input[type="checkbox"] {
    display: none;
}

/* Define the custom checkbox */
.custom-checkbox1 {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid #fc0;
    cursor: pointer;
}

/* Define the checked state of the custom checkbox */
.product-list-category
    .product-card-category
    input[type="checkbox"]:checked
    + .custom-checkbox1 {
    background-color: #fc0;
}

/* Define the checked state of the checkmark */
.product-list-category
    .product-card-category
    input[type="checkbox"]:checked
    + .custom-checkbox1::after {
    opacity: 1;
}

[dir="rtl"] .product-list-category .product-card-category label {
    padding-left: 30px;
}

.product-list-category .product-card-category label {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
    font-size: 14px;
    text-transform: uppercase;
    padding-right: 30px;
    cursor: pointer;
    margin-top: 20px;
}

.part-items {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.part-items .content {
    width: 85%;
    margin: 0 auto;
    max-width: 1550px;
    padding: 40px 0px;
    padding-bottom: 110px;
}

.part-items .content .search {
    width: 456px;
    height: 45px;
    position: relative;
}

.part-items .content .search .clear {
    position: absolute;
    left: 0;
}

[dir="rtl"] .part-items .content .search i {
    left: 35px;
    right: unset;
}

.part-items .content .search input {
    width: 100%;
    height: 100%;
    border-radius: 2px;
    border: solid 1px #fc0;
    background-color: rgba(0, 0, 0, 0.17);
    font-size: 15px;
    color: black;
    text-indent: 35px;
}

.part-items .content .search i {
    position: absolute;
    right: 35px;
    top: 50%;
    transform: translateY(-50%);
}

.part-items .content .search input::placeholder {
    color: black !important;
}

.part-items .content .header {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 75px;
}

.part-items .content .header .yellow-line {
    width: 68px;
    height: 8px;
    background-color: #fc0;
}

.part-items .content .header .title {
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
}

.part-items .content .items-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
}

.part-items .content .items-container .item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.part-items .content .items-container .item img {
    width: 60px;
    height: 60px;
}

.part-items .content .items-container .item .body {
    font-family: "Univers-57";
    font-size: 14px;
    max-width: 244px;
    width: 250px;
}
.part-items .content .items-container .item .body p {
    font-family: "Univers-57";
    font-size: 14px;
}

.part-items .content .items-container .item .body span {
    font-family: "Univers-57";
    font-size: 14px;
}

.parts-video-conatiner {
    width: 85%;
    max-width: 1550px;
    margin: 60px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.parts-video-conatiner .video {
    width: 50%;
    height: 400px;
}

.parts-video-conatiner .video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parts-video-conatiner .right {
    max-width: 35%;
}

.parts-video-conatiner .right .line1 {
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 28px;
}

.parts-video-conatiner .right .line2 {
    font-size: 14px;
    font-family: "Univers-57";
}
.parts-video-conatiner .right .line2 span {
    font-size: 14px;
    font-family: "Univers-57";
}
.parts-video-conatiner .right .line2 p {
    font-size: 14px;
    font-family: "Univers-57";
}

[dir="rtl"] .parts-video-conatiner .right .line1::before {
    right: -100px;
    left: unset;
}

.parts-video-conatiner .right .line1::before {
    position: absolute;
    content: "";
    width: 68px;
    height: 8px;
    background-color: #fc0;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
}

.parts-video-conatiner .right .buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.parts-video-conatiner .right .buttons div {
    width: 160px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    border: 1px solid #fc0;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

.parts-video-conatiner .right .buttons .register {
    background-color: #fc0;
    transition: 0.3s all;
}

.parts-video-conatiner .right .buttons .login {
    transition: 0.3s all;
}

.parts-video-conatiner .right .buttons .login:hover {
    background-color: #fc0;
}

.parts-video-conatiner .right .buttons .register:hover {
    background-color: black;
    color: #fc0;
}

.part-categories {
    width: 85%;
    max-width: 1550px;
    margin: 0 auto;
}

.part-categories .header {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 48px;
}

.part-categories .header .yellow-line {
    width: 68px;
    height: 8px;
    background-color: #fc0;
}

.part-categories .header .title {
    font-size: 28px;
    font-weight: bold;
}

.part-categories .part-categories-container {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.part-categories .part-categories-container .card-item {
    flex: 0 0 calc(33.33% - 20px);
}
.part-categories .part-categories-container .card-item .image {
    height: 240px;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
}
.part-categories .part-categories-container a {
    display: contents;
}

.part-categories .part-categories-container .card-item .image:hover img {
    transform: scale(1.1); /* Increase the scale to zoom in by 10% */
}

.part-categories .part-categories-container .card-item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s all;
}

.part-categories .part-categories-container .card-item .title {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 10px;
}

.part-categories .part-categories-container .card-item .shop-now {
    font-size: 14px;
    font-family: "Univers-57";
    text-decoration: underline;
    transition: 0.3s all;
    text-transform: uppercase;
}

.part-categories .part-categories-container .card-item .shop-now:hover {
    font-weight: bold;
}

.part-categories .part-categories-container .card-item .shop-now img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.part-brochures {
    width: 85%;
    max-width: 1550px;
    margin: 0 auto;
}

.part-brochures .header {
    display: flex;
    align-items: center;
    gap: 22px;
}

.part-brochures .header .yellow-line {
    width: 68px;
    height: 8px;
    background-color: #fc0;
}

.part-brochures .header .title {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 28px;
}

.part-brochures a {
    display: contents;
}

.part-brochures .brochure-card {
    height: 108px;
    position: relative;
    width: calc(50% - 20px);
    z-index: 9999;
}

.part-brochures .brochure-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url("/assets-web/images/brochure-overlay.svg");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.part-brochures .brochure-card {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
}

[dir="rtl"] .part-brochures .brochure-card .title {
    margin-right: 28px;
}

.part-brochures .brochure-card .title {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: 28px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    user-select: none;
    z-index: 2; /* Add this line */
}
.brochures-container {
    display: flex;
    width: max-content;
    transition: transform 0.3s ease;
    gap: 20px;
    width: 100% !important;
}

.brochures-carousel {
    width: 100%;
    overflow: hidden;
    margin: 45px 0px;
}

.buying-options {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.53);
    padding: 100px;
    position: relative;
    z-index: 1;
}

.buying-options::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.buying-options .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1550px;
    margin: 0 auto;
}

.buying-options .header .left {
    display: flex;
    align-items: center;
    gap: 22px;
}

.buying-options .header .left .yellow-line {
    width: 68px;
    height: 8px;
    background-color: #fc0;
}

.buying-options .header .left .title {
    font-size: 28px;
    color: white;
    font-weight: bold;
}

.buying-options .header .shop-parts {
    width: 160px;
    height: 35px;
    border-radius: 2px;
    background-color: #fc0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    border: 1px solid #fc0;
    transition: 0.3s all;
    cursor: pointer;
}

.buying-options .header .shop-parts:hover {
    background-color: black;
    color: #fc0;
}

.options-container {
    display: flex;
    z-index: 2;
    gap: 35px;
    flex-wrap: wrap;
    max-width: 1550px;
    margin: 0 auto;
    margin-top: 45px;
}

.options-container .options-card {
    width: 23%;
    min-height: 250px;
    border-radius: 2px;
    box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
    background-color: #fff;
    padding: 33px;
}

.options-container .options-card .title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.options-container .options-card .body {
    font-size: 16px;
    font-family: "Univers-57";
}

.options-container .options-card .body p {
    font-size: 16px;
    font-family: "Univers-57";
}
.options-container .options-card .body span {
    font-size: 16px;
    font-family: "Univers-57";
}

.alert-success {
    margin-top: 20px !important;
}

.product-details {
    width: 85%;
    max-width: 1550px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 55px 0px;
}

.product-details .left {
    width: 40%;
}

.product-details .left img {
    width: 100%;
    height: auto;
}

.product-details .right {
    width: 50%;
}

.product-details .right .available {
    width: 156px;
    height: 34px;
    border-radius: 6px;
    background-color: #fc0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
}

.product-details .right .small-title {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: bold;
    margin: 18px 0px;
}

.product-details .right .title {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 18px;
    margin-top: 10px;
}

.product-details .right h2 {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 18px;
    margin-top: 10px;
}

.product-details .right .body {
    font-family: "Univers-57";
    font-size: 14px;
    margin-bottom: 38px;
}

.product-details .right p {
    font-family: "Univers-57";
    font-size: 14px;
}

.product-details .right .model {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
}

.product-details .right .model-value {
    font-size: 14px;
    font-family: "Univers-57";
    margin: 10px 0px;
}

.product-details .right .divider {
    width: 178.5px;
    height: 1px;
    background-color: #fc0;
    margin: 18px 0px;
}

.product-details .right .attachment {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    cursor: pointer;
}

.product-details .right .attachment:hover span {
    text-decoration: underline;
}

.product-details .right .buttons {
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 22px 0px;
}

.product-details .right .buttons div {
    width: 158px;
    height: 38px;
    border-radius: 2px;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fc0;
    transition: 0.3s all;
    cursor: pointer;
}

.product-details .right .buttons .quote {
    background-color: #fc0;
}

.product-details .right .buttons .quote:hover {
    background-color: black;
    color: #fc0;
}

.product-details .right .buttons .compare:hover {
    background-color: #fc0;
}

.compare-container {
    width: 85%;
    margin: 0 auto;
    max-width: 1550px;
    padding-top: 80px;
}

.compare-container .path {
    font-size: 13px;
    font-family: "Univers-67", sans-serif;
}

.compare-container .title {
    font-size: 30px;
    font-weight: bold;
    margin: 20px 0px;
}

.compare-container .description {
    font-family: "Univers-57";
    font-size: 14px;
    max-width: 480px;
}

.compare-container .compare-boxes {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px 0px;
    gap: 20px;
    flex-wrap: wrap;
}

.compare-container .compare-boxes .box {
    flex: 0 0 calc(33.33% - 20px);
    height: 400px;
    border-radius: 2px;
    box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.compare-container .compare-boxes .box img {
    width: 90px;
    height: 90px;
}

.compare-container .compare-boxes .box .add-model {
    font-size: 18px;
    font-family: "Univers-57";
    margin-top: 35px;
}

.compare-container .compare-boxes .box .content-full img {
    width: 100%;
    height: 75%;
}

.compare-container .compare-boxes .box .content-full .sub-content {
    padding: 25px;
}

.compare-container .compare-boxes .box .content-full .sub-content .line1 {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: bold;
}

.compare-container .compare-boxes .box .content-full .sub-content .line2 {
    font-family: "Univers-57";
    font-size: 14px;
    margin-top: 10px;
}

.compare-container .compare-boxes .box .remove {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 16px;
    padding: 5px 10px;
    background-color: #fc0;
    cursor: pointer;
    transition: 0.3s all;
    border-radius: 8px;
}

.compare-container .compare-boxes .box .remove:hover {
    background-color: black;
    color: #fc0;
}

.modal-footer {
    justify-content: center !important;
}

.modal-footer button {
    background-color: #fc0;
    font-size: 18px;
    border: none;
    outline: none;
    padding: 8px 16px;
    transition: 0.3s all;
    border-radius: 8px;
}

.modal-footer button:hover {
    background-color: black;
    color: #fc0;
}

#exampleModalCenter {
    z-index: 9999999;
}

/* .slick-prev {
    position: relative;
  }
   */
/* Hide the default button text (if any) */
/* .slick-prev:before {
    content: none;
  } */

/* Style the Font Awesome icon */

.form-header {
    width: 85%;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 28px;
    font-weight: bold;
    max-width: 1550px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.form-header .yellow-line {
    width: 68px;
    height: 8px;
    background-color: #fc0;
}

.home-services {
    background-color: black;
    color: white;
    padding: 50px 0px;
}

.home-services .content {
    width: 85%;
    margin: 0 auto;
    max-width: 1550px;
    text-align: center;
}

.home-services .content .header {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.home-services .content .header .yellow-line {
    width: 68px;
    height: 8px;
    background-color: #fc0;
}

.home-services .content .header .title {
    text-transform: uppercase;
    font-size: 28px;
    font-weight: bold;
}

.home-services .content .slider-carousel .slider-carousel-item {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.home-services .content .slider-carousel .slick-slide {
    height: unset !important;
}

.home-services .content .slider-carousel .slick-prev:before {
    color: #fc0;
    font-size: 30px;
}

.home-services .content .slider-carousel .slick-next:before {
    color: #fc0;
    font-size: 30px;
}

.home-services .content .slider-carousel .slider-carousel-item .left {
    text-align: left;
    width: 20%;
}

.home-services .content .slider-carousel .slider-carousel-item .left .line1 {
    text-transform: uppercase;
    font-size: 28px;
    font-weight: bold;
}

.home-services .content .slider-carousel .slider-carousel-item .left .line2 {
    font-size: 16px;
    font-family: "Univers-57";
}

.home-services .content .slider-carousel .slider-carousel-item .right {
    width: 50%;
}
.home-services .content .slider-carousel .slider-carousel-item .right img {
    width: 95%;
    height: 450px;
    object-fit: cover;
}

.home-services .content .view-all {
    background-color: #fc0;
    color: black;
    width: 160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 2px;
    cursor: pointer;
    transition: 0.3s all;
    margin-top: 50px;
    border: 1px solid #fc0;
}

.home-services .content .view-all:hover {
    background-color: black;
    color: #fc0;
}

.huge-selection .slick-prev {
    left: -70px;
}
.huge-selection .slick-next {
    right: -70px;
}

[dir="rtl"] .video-register .register .title::before {
    right: -80px;
    left: unset;
}

.button-locate-us {
    width: 158px;
    height: 38px;
    border-radius: 2px;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fc0;
    transition: 0.3s all;
    cursor: pointer;
    text-transform: uppercase;
    background-color: #fc0;
}
.no-result {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 807px);
    margin-bottom: 55px;
}

.my-carousel .slick-prev {
    left: -60px !important;
}

.my-carousel .slick-next {
    right: -60px !important;
}

.buy-search {
    display: flex;
    gap: 10px;
    align-items: center;
}

.buy-search form {
    margin: 0px;
}

.buy-search button {
    height: 45px;
    border: none;
    background-color: #fc0;
    color: black;
    text-transform: uppercase;
    border: 1px solid #fc0;
    transition: 0.3s all;
    padding: 0px 20px;
    font-weight: bold;
    border-radius: 5px;
}

.buy-search button:hover {
    background-color: black;
    color: #fc0;
}

.new-vision {
    display: flex;
    align-items: center;
    width: 85%;
    margin: 0 auto;
    max-width: 1550px;
    margin-top: 20px;
}

.new-vision .image {
    width: 60%;
}

.new-vision .left {
    width: 20%;
    font-family: "Univers-57";
    font-size: 18px;
}

.new-vision .image img {
    width: 100%;
    height: auto;
}

.new-vision .right {
    width: 20%;
    font-family: "Univers-57";
    font-size: 18px;
}

.new-vision .right p {
    font-size: 18px;
}

.new-vision .left p {
    font-size: 18px;
}

.new-prod-cont {
    display: flex;
    width: 85%;
    margin: 45px auto;
    max-width: 1550px;
    gap: 45px;
}

.new-prod-cont .filters {
    border-radius: 2px;
    box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
    border: solid 1px #fc0;
    background-color: #fc0;
    padding: 30px;
    height: fit-content;
    width: 30%;
}

.new-prod-cont .filters .all-filters {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 18px;
}

.new-prod-cont .filters .title {
    font-size: 21px;
    font-weight: bold;
    font-stretch: condensed;
    font-style: normal;
    letter-spacing: normal;
    text-align: center;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.new-prod-cont .filters .filter-checkbox {
    display: flex;
    align-items: center;
    gap: 13px;
}



.new-prod-cont .filters .filter-checkbox input {
    width: 20px;
    height: 20px;
    background-color: transparent !important;
    -webkit-appearance: none; /* Remove default checkbox styles for Webkit browsers */
    appearance: none; /* Remove default checkbox styles */
    background-color: transparent !important; /* Set the background to transparent */
    border: 2px solid #333;
    cursor: pointer;
}

.new-prod-cont .filters .filter-checkbox span {
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    color: #000;
    font-family: "Univers-57";
    text-transform: uppercase;
    width: 260px;
}

.new-prod-cont .filters .filter-checkbox input[type="checkbox"]:checked {
    /* Add custom styles for the checked state */
    background-color: black !important; /* Optional: Change the background color for the checked state */
}

/* For .products-hover */
.active .products-hover .one-row a:not(:hover)::after {
    display: none;
}

/* For .services-hover */
.active .services-hover a:not(:hover)::after {
    display: none;
}

.menu-level-1 {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.menu-item-level-1 {
    margin-bottom: 5px;
    font-size: 24px;
    text-transform: capitalize;
}

.menu-item-level-1 a {
    text-decoration: none;
    color: #fff;
    display: block;
    padding: 5px;
    border-radius: 3px;
    transition: background-color 0.3s;
    text-transform: capitalize;
}

.menu-level-2 {
    margin-left: 20px;
    list-style: none;
}

.menu-item-level-2 {
    margin-bottom: 5px;
    font-size: 20px;
    text-transform: capitalize;
}

.menu-item-level-2 a {
    text-decoration: none;
    color: #fff;
    display: block;
    padding: 5px;
    border-radius: 3px;
    transition: background-color 0.3s;
    text-transform: capitalize;
}

.menu-level-3 {
    margin-left: 20px;
}

.menu-item-level-3 {
    margin-bottom: 5px;
    font-size: 18px;
    text-transform: capitalize;
}

.menu-item-level-3 a {
    text-decoration: none;
    color: #fff;
    display: block;
    padding: 5px;
    border-radius: 3px;
    transition: background-color 0.3s;
    text-transform: capitalize;
}

.menu-level-2,
.menu-level-3 {
    display: none;
}

/* Add a class to show level 2 and level 3 items when parent is expanded */
.menu-item-expanded > .menu-level-2,
.menu-item-expanded > .menu-level-3 {
    display: block;
}

.products-hover a div::after {
    position: absolute;
    content: "";
    bottom: 0px;
    width: 100%;
    height: 2px;
    background-color: black;
    transition: 0.3s all;
    opacity: 0;
    left: 0;
    right: 0;
}

.products-hover a div:hover::after {
    /* Your styles for .services-hover ul li::after when hovering */
    opacity: 1;
}

.grecaptcha-badge {
    visibility: hidden;
}
.onlinetoolsimages{
   
    height:auto;
}



/* ///////////media */

@media (max-width: 1550px) {


    .bottom-nav .content .menu {
        gap:38;
    }
    .unique-description {
        max-width: 680px;
    }

    .onlinetoolsimages{
       
        height:auto!important;
    }

   
}

@media (max-width: 1450px) {
    .video-register {
        justify-content: center;
    }
    .history-divs {
        justify-content: center;
    }
    .huge-selection .right {
        width: 85% !important;
        margin: 0 auto;
    }

    .onlinetoolsimages{
      
        height:auto!important;
    }

    .bottom-nav .content .menu {
        gap:30;
    }
}
@media (max-width: 1450px) {
    .deal .content .body {
        max-width: 100%;
    }

    .deal .content .images .image {
        width: 500px;
        height: 500px;
    }
    .huge-selection .left {
        width: 100%;
    }

    .unique-carousel1 {
        margin-left: 0px;
    }

    .onlinetoolsimages{
       
        height:auto!important;
    }

    .bottom-nav .content .menu {
        gap:30;
    }
}


@media (max-width: 1412px) {
    .history-header {
        height: auto;
    }
    .history-header .content {
        justify-content: center;
        margin-bottom: 50px;
        margin-top: 50px;
    }

    .onlinetoolsimages{
       
        height:auto!important;
    }

    .bottom-nav .content .menu {
        gap:30;
    }
}

@media (max-width: 1405px) {
    .video-register {
        flex-direction: column;
    }
    .video-register .video {
        width: 100%;
    }
    .bottom-nav .content .menu .menu-item {
        font-size: 14px;
    }
    .bottom-nav img {
      /*  width: 140px;*/
    }
    .buy-search button {
        font-size: 14px;
    }
    .bottom-nav .search {
        width: 180px;
    }

    .bottom-nav .content .menu{
        gap:20px;
    }

    .onlinetoolsimages{
       
        height:auto!important;
    }
    .tools-hover img
    {
        height:auto!important;
    }

    .bottom-nav .content .menu {
        gap:30;
    }
}

@media (max-width: 1330px) {
    .huge-selection {
        justify-content: center;
    }

    .offer-card {
        flex: 0 0 calc(50% - 30px);
    }

    .bottom-nav .content .menu {
        gap:25;
    }
}

@media (max-width: 1300px) {
    .onlinetoolsimages{
      
        height:auto!important;
    }
    .news-card {
        width: 100%;
    }

    .news-card .image {
        width: 100%;
    }

    .virtual-tour .left .text {
        max-width: 100%;
    }

    .virtual-tour .right {
        width: 100%;
    }

    .virtual-tour .right img {
        width: 100%;
    }
    .offers-home {
        flex-direction: column;
        align-items: flex-start;
    }

    .offers-home .left {
        width: 100%;
    }
    .offers-home .right {
        width: 100%;
        margin-left: 2.5%;
    }

    .virtual-tour .left {
        width: 100%;
        margin-left: 2.5%;
    }

    
    .bottom-nav .content .menu {
        gap:25;
    }
}

@media (max-width: 1275px) {
    
    .bottom-nav .content .menu {
        gap:20;
    }
    .onlinetoolsimages{
       
        height:auto!important;
    }

    .parts-video-conatiner .right {
        max-width: 35%;
    }
    .last-section .left {
        width: 100%;
    }
    .last-section .left .line2 {
        max-width: 100%;
    }
    .last-section .right {
        width: 100%;
    }
}
@media (max-width: 1240px) {
        
    .bottom-nav .content .menu {
        gap:20;
    }
    .onlinetoolsimages{
        
        height:auto!important;
    }

    .contact-header {
        margin-top: 20px;
    }
    .part-categories .part-categories-container .card-item {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 1190px) {
        
    .bottom-nav .content .menu {
        gap:20;
    }
    .onlinetoolsimages{
      
        height:auto!important;
    }

    .options-container .options-card {
        width: 48%;
    }

    .locate-us-cards .locate-us-card {
        width: calc(50% - 27px);
    }
}

@media (max-width: 1164px) {
        
    .bottom-nav .content .menu {
        gap:20;
    }
    .onlinetoolsimages{
       
        height:auto!important;
    }

    .contact-form .form-row .help {
        width: 100%;
    }
    .contact-form .form-row .input {
        width: 100%;
    }
    .contact-form .form-row .col1 {
        width: 100%;
    }

    .contact-form .form-row .col1 .upload {
        width: 100%;
    }

    .contact-form .form-row .col1 textarea {
        width: 100%;
    }
    .representative-map {
        display: none;
    }

    .vacancy-cards .vacancy-card {
        width: 47%;
    }
}

@media (max-width: 1150px) {
            
    .bottom-nav .content .menu {
        gap:18;
    }
    .bottom-nav .content .menu {
        gap:20;
    }
    .new-prod-cont .filters {
        width: 100%;
    }
    .new-prod-cont {
        flex-direction: column;
    }
    .new-vision .left {
        font-size: 16px;
    }

    .new-vision .right {
        font-size: 16px;
    }

    .new-vision .right p {
        font-size: 16px;
    }

    .new-vision .left p {
        font-size: 16px;
    }
    .products-container .product-card {
        flex: 0 0 calc(50% - 30px);
    }

    .product-list-category .product-card-category {
        width: calc(
            50% - 20px
        ); /* Set the width for each item (subtract margin) */
    }

    .categories-card .category-card {
        width: calc(
            50% - 14px
        ); /* Set the width for each item (subtract margin) */
    }

    .related-news-card {
        flex: 0 0 calc(50% - 50px);
    }

    .service-item-card {
        border-radius: 2px;
        box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
        padding: 50px;
        flex: 0 0 calc(50% - 50px);
        margin: 25px;
    }
    .service-details .header .header-content {
        justify-content: center;
    }

    .video-section .content {
        justify-content: center;
    }

    .product-details {
        flex-direction: column;
        gap: 20px;
    }

    .product-details .left {
        width: 100%;
    }

    .product-details .right {
        width: 100%;
    }

    .onlinetoolsimages{
       
        height:auto!important;
    }
}

@media (max-width: 1140px) {
        
    .bottom-nav .content .menu {
        gap:18;
    }
    .onlinetoolsimages{
        
        height:auto!important;
    }
    .top-nav {
        display: none;
    }
    .bottom-nav {
        display: none;
    }

    .main-container {
        margin-top: 100px;
    }
    .service-details .header .header-content .right-content {
        width: 85%;
        margin: 0 auto;
        max-width: 1550px;
        margin-bottom: 20px;
    }
}

@media (max-width: 1120px) {
        
    .bottom-nav .content .menu {
        gap:18;
    }
    .onlinetoolsimages{
      
        height:auto!important;
    }
    .one-news .image {
        width: 100%;
    }
    .one-news {
        margin-top: 190px;
    }
    .part-items .content .items-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .part-items .content .items-container .item .body {
        max-width: 100%;
    }
    .parts-video-conatiner {
        flex-direction: column;
        gap: 20px;
    }

    .parts-video-conatiner .video {
        width: 100%;
    }

    .parts-video-conatiner .right {
        max-width: calc(100% - 200px);
    }

    .home-services .content .slider-carousel .slider-carousel-item {
        flex-direction: column;
    }

    .home-services .content .slider-carousel .slider-carousel-item .left {
        width: 100%;
    }
    .home-services .content .slider-carousel .slider-carousel-item .right {
        width: 90%;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 1000px) {
        
    .bottom-nav .content .menu {
        gap:15;
    }
    .onlinetoolsimages{
      
        height:auto!important;
    }
    .new-vision {
        flex-direction: column;
        margin-bottom: 20px;
    }
    .new-vision .left {
        width: 100%;
    }

    .new-vision .image {
        width: 100%;
    }

    .new-vision .right {
        width: 100%;
    }
    .news-container .others {
        width: 100%;
    }
    .news-container {
        flex-direction: column;
    }
    .news-container .first-two {
        width: 100%;
    }
    .services-div .filters {
        width: 100%;
    }
    .all-services {
        width: 100%;
    }

    .open-vacancies .vacancies-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .open-vacancies .vacancies-header .left-header {
        width: 100%;
    }
    .open-vacancies .vacancies-header .right-header {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .bottom-nav .content .menu {
        gap:15;
    }
    .onlinetoolsimages{
     
        height:auto!important;
    }
    .bottom-nav .content .menu {
        gap: 20px;
    }

    .bottom-nav .content .menu .menu-item {
        font-size: 12px;
    }

    .bottom-nav .search {
        width: 250px;
    }

    .news-container .first-two .others {
        gap: 38px;
    }

    .small-news-card .image {
        height: 460px;
    }
}

@media (max-width: 970px) {
    .bottom-nav .content .menu {
        gap:15;
    }
    .onlinetoolsimages{
        
        height:auto!important;
    }
    .part-categories .part-categories-container .card-item {
        width: 100%;
    }

    .history-divs {
        flex-direction: column;
    }

    .history-divs .left {
        width: 100%;
    }

    .history-divs .right {
        width: 100%;
    }
    .products-home .products-cat .tab {
        font-size: 18px;
        text-align: center;
    }
    .products-home .products-cat {
        gap: 30px;
    }
}

@media (max-width: 920px) {
    .bottom-nav .content .menu {
        gap:15;
    }
    .onlinetoolsimages{
       
        height:auto!important;
    }
    .compare-container .compare-boxes .box {
        flex: 0 0 calc(50% - 20px);
    }
    .related-news-card {
        width: 100% !important;
    }

    .related-news-card .image {
        width: 100% !important;
    }

    .related-news-card .image {
        height: 370px !important;
    }
    .offer-card {
        flex: 0 0 100%;
    }
}

@media (max-width: 863px) {
    .bottom-nav .content .menu {
        gap:12;
    }
    .onlinetoolsimages{
        
        height:auto!important;
    }
    .history-header .content .three-items {
        flex-direction: column;
        justify-content: center;
    }
    .history-header .content .three-items .icon-text .text {
        width: 200px;
    }
    .related-news-card {
        flex: 0 0 100%;
    }
    .product-list-category .product-card-category {
        width: 100%; /* Set the width for each item (subtract margin) */
    }
}

@media (max-width: 863px) {
    .bottom-nav .content .menu {
        gap:12;
    }
    .onlinetoolsimages{
      
        height:auto!important;
    }
    .categories-card .category-card {
        border-radius: 2px;
        box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
        background-color: #fff;
        cursor: pointer;
        width: 100%; /* Set the width for each item (subtract margin) */
    }

    .locate-us-cards .locate-us-card {
        width: 100%;
    }
    .contact-header {
        height: auto;
    }
    .contact-header .content {
        flex-direction: column;
        align-items: flex-start;
    }

    /* .huge-selection .left {
        display: none;
    }

    .left-mobile-carousel {
        display: flex !important;
    } */

    /* .huge-selection {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    } */
}

@media (max-width: 768px) {
    
    .onlinetoolsimages{
       
        height:auto!important;
    }
    .part-categories .part-categories-container .card-item {
        flex: 0 0 100%;
    }

    .service-item-card {
        border-radius: 2px;
        box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
        padding: 50px;
        flex: 0 0 100%;
    }
    .top-nav .top-nav-content .center-text img {
        width: 120px;
    }
    .top-nav .top-nav-content .right-div .phone {
        font-size: 12px;
    }
    .top-nav .top-nav-content .right-div .account .account-text {
        font-size: 12px;
    }

    .top-nav .top-nav-content .right-div .language .language-text {
        font-size: 12px;
    }
    .top-nav .top-nav-content .right-div .account img {
        width: 15px;
        height: 15px;
    }
    .bottom-nav img {
        width: 120px;
    }

    .bottom-nav .search {
        width: 180px;
        height: 35px;
    }

    .bottom-nav .content .menu .menu-item {
        font-size: 10px;
    }

    .bottom-nav .search .icon {
        right: 15px;
        width: 12px;
        height: 12px;
    }

    .bottom-nav .search input {
        font-size: 12px;
        text-indent: 10px;
    }

    .bottom-nav .search input::placeholder {
        font-size: 12px;
        text-indent: 10px;
    }

    .deal .content .title div {
        font-size: 22px;
    }
    .offers-home {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .vacancy-cards .vacancy-card {
        width: 100%;
    }

    .products-container .product-card {
        flex: 0 0 100%;
    }
}

@media (max-width: 820px) {
    .vision-header .content .about-us-items {
        flex-direction: column;
        justify-content: center;
    }
}

@media (max-width: 700px) {
    .options-container .options-card {
        width: 100%;
    }
    .buying-options {
        padding: 20px;
    }
}

@media (max-width: 650px) {
    .contact-header .content .icon-text .icon {
        width: 30px;
        height: 30px;
    }

    .contact-header .content .icon-text .icon i {
        font-size: 20px;
    }
    .news-selector .content {
        gap: 20px;
    }
    .news-selector div {
        font-size: 18px;
    }
    .parts-video-conatiner .right .buttons {
        flex-direction: column;
        gap: 20px;
    }
    .parts-video-conatiner .right .buttons div {
        width: 100%;
    }
    .parts-video-conatiner .right .line1::before {
        display: none;
    }

    .parts-video-conatiner .right {
        max-width: 100%;
    }

    .all-services .service-card {
        width: 100%;
    }

    .history-divs .left {
        height: auto;
        gap: 20px;
    }

    .history-divs .left .col1 {
        width: 100%;
    }

    .history-divs .left .col2 {
        width: 100%;
    }

    .history-divs .left .col2 img {
        height: auto;
    }
}

@media (max-width: 576px) {
    .products-home .products-cat {
        gap: 20px;
    }
    .products-home .products-cat .tab {
        font-size: 16px;
    }
    .contact-header {
        justify-content: start;
        width: 100%;
        padding: 20px;
    }
    .checkbox-container {
        flex-wrap: nowrap;
    }
    .checkbox-label {
        max-width: 187px;
    }
    .accordion button[aria-expanded="true"] + .accordion-content {
        max-height: fit-content !important;
    }
    footer .footer-content .logo {
        margin-bottom: 20px;
    }
    .virtual-tour .right iframe {
        width: 100%;
        height: auto;
    }
    .button-locate-us {
        margin-bottom: 20px;
    }
    .history-divs {
        flex-direction: column-reverse;
    }
    .history-header .content .why-choose {
        align-self: start;
    }
    .history-header .content .three-items .icon-text .text {
        width: 100px;
    }
    .banner .content .sub-content .title {
        font-size: 18px;
    }
    .history-header .content {
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .history-header .content .three-items .icon-text .text .line2 {
        font-size: 14px;
    }
    .history-header .content .three-items .icon-text .text .line1 {
        font-size: 18px;
    }
    .history-header .content .three-items .icon-text .icon {
        width: 40px;
        height: 40px;
    }
    .history-header .content {
        gap: 20px;
    }
    .history-header .content .why-choose div {
        font-size: 14px;
    }

    .history-header .content {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .huge-selection .right {
        width: 100% !important;
    }

    footer .footer-content .links-newsletter .newsletter .input input {
        width: 250px;
    }

    .main-container {
        margin-top: 100px;
    }
    .news-container {
        width: calc(100% - 20px);
        padding: 10px;
    }
    .news-card {
        width: 100%;
    }
    .news-card .image {
        width: 100%;
    }
    .small-news-card {
        width: 100%;
    }

    .small-news-card .image {
        width: 100%;
    }
    .news-container .first-two {
        margin-bottom: 38px;
    }
    .one-news {
        width: calc(100% - 20px);
        margin-top: 20px;
        padding: 10px;
    }

    .contact-form {
        padding: 10px;
    }

    .contact-header .content .icon-text .text .line2 {
        font-size: 8px;
    }
    .locate-us .content .search {
        width: 250px;
        margin: 0 auto;
    }
    .locate-us-cards .locate-us-card .company {
        font-size: 20px;
    }
    .locate-us-card .icon-text .text {
        font-size: 14px;
    }
    .locate-us-card .icon-text .text .title {
        font-size: 14px;
    }
    .locate-us-card .icon-text .text .value {
        font-size: 14px;
    }
    .services-div .filters {
        min-width: unset;
    }

    .all-services .service-card .image {
        width: 270px;
    }

    .reps-container .content .header .title {
        font-size: 20px;
    }
    .parts-video-conatiner .video {
        height: 300px;
    }
}

@media (max-width: 767px) {
}

@media (max-width: 575px) {
    .filters-search .content .filters ul li {
        position: static;
    }
    .filters-search .content .filters ul {
        position: relative;
        flex-wrap: wrap;
    }
    .filters-search .content .filters ul li .filter-body {
        position: absolute;
        left: 0px;
    }
    .products-home .products-cat .tab {
        font-size: 12px;
    }

    .carousel-item .content {
        width: 100%;
    }
    .representative-image {
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        width: 50%;
    }
    .representative-map {
        display: block;
        width: 100%;
        height: auto;
    }
    .buying-options .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .banner .content .sub-content .body {
        max-width: 100% !important;
    }
    .banner .content .sub-content .body p {
        width: 100% !important;
    }
    .products-home .products-cat {
        gap: 15px;
    }
    .products-home .header .title {
        font-size: 18px;
    }
    .video-register .register .body {
        text-align: left;
    }
    .video-register .register .title {
        text-align: left;
    }
    .video-register .register {
        width: 100%;
    }
    .video-register .register .title::before {
        display: none;
    }

    .last-section .right {
        width: 100%;
    }
    .last-section .right img {
        height: auto;
    }
    .service-details .header .image {
        width: 100%;
        height: auto;
    }
    .header-content {
        flex-direction: column-reverse;
    }
    .service-details .header .image {
        height: auto;
        width: 100%;
    }
    .virtual-tour .left {
        padding-left: 0px;
    }
    .history-divs .left .col1 {
        height: auto;
    }
    .history-divs .left .col1 img {
        height: auto;
    }
    .history-divs .right .line2 {
        margin-bottom: 20px;
    }
    .history-divs .right .line1 {
        margin-left: 44px;
    }
    .history-divs .right .line1::before {
        width: 32px;
        height: 4px;
        left: -45px;
    }

    .huge-selection {
        flex-direction: column-reverse;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .offers-home {
        flex-direction: column-reverse;
        margin-bottom: 40px;
    }

    .offers-home .right .header {
        margin-left: 44px;
    }
    .offers-home .right .header::before {
        width: 32px;
        height: 4px;
        left: -45px;
    }

    .virtual-tour .left .header {
        margin-left: 44px;
    }
    .virtual-tour .left .header::before {
        width: 32px;
        height: 4px;
        left: -45px;
    }
    .huge-selection .right .header {
        margin-left: 44px;
    }
    .huge-selection .right .header::before {
        width: 32px;
        height: 4px;
        left: -45px;
    }

    .mobile-social {
        display: flex;
        justify-content: flex-end;
        gap: 10px;
    }

    .mobile-social i {
        font-size: 20px;
    }
    .home-services .content .view-all {
        margin: unset;
        margin-top: 50px;
    }
    .home-services .content .slider-carousel .slider-carousel-item .right {
        width: 100%;
    }
    .home-services .content .header {
        justify-content: flex-start;
    }
    .compare-container .compare-boxes .box .content-full .sub-content {
        margin-bottom: 20px;
    }
    .all-services .service-card .image {
        width: 100%;
    }
    .home-team .content .text .line1 {
        font-size: 18px;
    }
    .history-divs .right .line2 p {
        font-size: 14px;
    }
    .history-divs .right .line2 {
        font-size: 14px;
    }
    .history-divs .right .line1 {
        font-size: 18px;
    }
    .virtual-tour .left .text .line2 {
        font-size: 14px;
    }
    .virtual-tour .left .text .line2 p {
        font-size: 14px;
    }
    .virtual-tour .left .text .line1 {
        font-size: 18px;
    }
    .offers-home .right .body p {
        font-size: 14px;
    }
    .offers-home .right .body {
        font-size: 14px;
    }
    .offers-home .right .header {
        font-size: 18px;
    }

    .virtual-tour .left .body p {
        font-size: 14px;
    }
    .virtual-tour .left .body {
        font-size: 14px;
    }
    .virtual-tour .left .header {
        font-size: 18px;
    }
    .offers-home {
        gap: 20px;
    }
    .huge-selection .right .body p {
        font-size: 14px;
    }
    .huge-selection .right .body {
        font-size: 14px;
    }
    .huge-selection .right .header {
        font-size: 18px;
    }
    .home-services
        .content
        .slider-carousel
        .slider-carousel-item
        .left
        .line2 {
        font-size: 14px;
    }
    .home-services
        .content
        .slider-carousel
        .slider-carousel-item
        .left
        .line2
        p {
        font-size: 14px;
    }
    .home-services
        .content
        .slider-carousel
        .slider-carousel-item
        .left
        .line1 {
        font-size: 16px;
    }
    .home-services .content .header .title {
        font-size: 18px;
    }
    .history-header .content .why-choose * {
        font-size: 18px;
    }
    .history-header .content .why-choose p {
        font-size: 18px;
    }
    .tabs-container .tab {
        height: unset;
    }
    .tabs-container .tab img {
        width: 40px;
        height: 40px;
    }
    .tabs-container .tab .name {
        font-size: 16px;
    }
    .tabs-section .header .title {
        font-size: 16px;
    }
    .service-item-container {
        gap: 20px;
    }
    .service-item-card .body {
        font-size: 14px;
    }
    .service-item-card .body p {
        font-size: 14px;
    }
    .service-item-card .title {
        font-size: 16px;
    }
    .service-item-card {
        margin: 0px;
    }
    .service-items .header .title {
        font-size: 18px;
    }
    .video-section .content .right-section .line1::before {
        display: none;
    }
    .video-section .content .right-section .line1 {
        font-size: 18px;
    }

    .service-details .header .image img {
        height: auto;
    }
    .all-services .service-card .body {
        font-size: 14px;
    }
    .all-services .service-card .body p {
        font-size: 14px;
    }
    .all-services .service-card .title {
        font-size: 16px;
    }
    .all-services .service-card .image img {
        height: auto;
    }
    .services-div .filters .filter-checkbox input {
        width: 15px;
        height: 15px;
    }
    .services-div .filters {
        padding: 15px;
    }
    .services-div .filters .filter-checkbox span {
        font-size: 14px;
    }
    .services-div .filters .title {
        font-size: 18px;
    }
    .reps-container .content .header .title {
        font-size: 18px;
    }
    .register-header .body p {
        font-size: 14px;
    }
    .register-header .title {
        font-size: 18px;
    }
    .form-header {
        font-size: 18px;
    }
    #tab3 .gallery-items .item {
        height: unset;
    }
    #tab3 .gallery-items {
        gap: 20px;
    }
    #tab3 .gallery-items img {
        height: auto;
    }
    .product-selector .tab {
        width: fit-content;
    }

    .product-selector {
        height: auto;
        padding: 20px 0px;
    }
    .product-selector .content {
        flex-direction: column;
    }
    .product-details .right .buttons a {
        display: contents;
    }
    .product-details .right .buttons .compare {
        width: 100%;
    }
    .product-details .right .buttons div {
        width: 100%;
    }
    .product-details .right .buttons {
        flex-direction: column;
    }
    .compare-container .compare-boxes .box .content-full img {
        height: auto;
    }
    .compare-container .title {
        font-size: 18px;
    }
    .filters-search .content .filters ul li .filter-body {
        width: calc(350px - 60px);
    }
    .filters-search .content .filters {
        margin-bottom: 20px;
    }
    .filters-search .content .filters ul {
        gap: 20px;
    }
    .filters-search .content .filters ul li {
        font-size: 16px;
        width: 80px;
    }
    .product-list-category .product-card-category .image {
        height: auto;
    }
    .categories-card .category-card .image {
        height: auto;
    }
    .products-container .image {
        height: auto;
    }
    .service-details .header .image {
        height: auto;
    }
    .service-details .header .header-content .right-content .line2 {
        font-size: 14px;
    }
    .service-details .header .header-content .right-content .line2 p {
        font-size: 14px;
    }
    .service-details .header .header-content .right-content .line1 {
        font-size: 18px;
    }
    .service-details .header .header-content .right-content {
        width: 100%;
    }
    .service-details .header .header-content .right-content .line1::before {
        display: none;
    }
    .terms .body {
        font-size: 14px;
    }
    .terms .body p {
        font-size: 14px;
    }
    .last-section .right {
        height: auto;
    }
    .last-section .left .line2 {
        margin-left: 0px;
    }
    .last-section .left .line1 {
        font-size: 18px;
        margin-left: 0px;
    }
    .last-section .left .line1::before {
        width: 32px;
        height: 4px;
    }
    .options-container .options-card .title {
        font-size: 16px;
    }
    .options-container .options-card .body p {
        font-size: 14px;
    }
    .options-container .options-card .title {
        font-size: 16px;
    }
    .buying-options .header .left .title {
        font-size: 18px;
    }
    .part-categories .part-categories-container .card-item .title {
        font-size: 16px;
    }
    .part-categories .header .title {
        font-size: 18px;
    }
    .parts-video-conatiner .right .line1 {
        font-size: 16px;
    }
    .parts-video-conatiner .video {
        height: auto;
    }
    .part-items .content .items-container .item .body {
        max-width: 70%;
    }
    .part-items .content .items-container .item img {
        width: 40px;
        height: 40px;
    }
    .part-items .content .header .title {
        font-size: 18px;
    }
    .part-items .content .search {
        width: 100%;
    }
    .inquiry .header-logo .logo {
        margin-top: 20px;
    }
    .inquiry .header-logo img {
        width: 100%;
    }
    .inquiry {
        margin: 20px auto;
    }
    .inquiry .header .title {
        font-size: 18px;
    }
    .online-tools-container .one-tool .tool-title {
        font-size: 16px;
    }
    .online-tools-container .one-tool .image {
        width: 100%;
        height: auto;
    }
    .online-tools-container .one-tool {
        width: 100%;
    }
    .online-tools .header .title {
        font-size: 18px;
    }
    .video-register .register .title {
        font-size: 18px;
    }
    .video-register {
        margin: 20px auto;
        gap: 20px;
    }
    .locate-us-cards .locate-us-card .company {
        font-size: 16px;
    }
    .locate-us-map #mymap {
        height: 250px;
    }
    .landing-form button {
        width: 100%;
    }
    .landing-touch .body {
        font-size: 14px;
    }
    .landing-touch .body p {
        font-size: 14px;
    }
    .landing-touch .header .title {
        font-size: 18px;
    }
    .landing-header {
        margin-bottom: 20px;
    }
    .logo-country .country {
        font-size: 18px;
    }
    .header-title .title {
        font-size: 18px;
    }
    .landing-header .description {
        font-size: 20px;
    }
    .contact-form button {
        width: 100%;
    }
    .apply-vacancy .header .title {
        font-size: 18px;
    }

    .accordion .accordion-content {
        font-size: 14px !important;
    }
    .accordion .accordion-content p {
        font-size: 14px !important;
    }
    .accordion .accordion-title {
        font-size: 16px !important;
    }

    .vacancy-content .icon-text .text {
        font-size: 14px;
    }
    .vacancy-content .big-title {
        font-size: 18px;
    }

    .vacancy-cards .vacancy-card .desc {
        font-size: 14px;
    }
    ::-webkit-scrollbar {
        width: 5px !important;
    }

    /* Track */
    ::-webkit-scrollbar-track {
        background: #f1f1f1 !important;
    }

    /* Handle */
    ::-webkit-scrollbar-thumb {
        background: #888 !important;
    }

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #555 !important;
    }
    .vacancy-cards .vacancy-card .icon-text .text {
        font-size: 14px;
    }
    .open-vacancies .vacancies-header .left-header .title {
        font-size: 18px;
    }
    .accordion .accordion-content {
        font-size: 14px;
    }
    .accordion .accordion-content p {
        font-size: 14px;
    }
    .terms .header .terms-title {
        font-size: 16px;
    }
    .related-news-card .subtitle {
        font-size: 14px;
    }
    .related-news-card .title {
        font-size: 16px !important;
    }
    .related-news-card .image {
        height: auto !important;
    }
    .yellow-line {
        width: 32px !important;
        height: 4px !important;
    }
    .related-articles .title .title-text {
        font-size: 16px;
    }
    .one-news .body {
        font-size: 14px;
    }
    .one-news .body p {
        font-size: 14px;
    }
    .one-news .date {
        font-size: 14px;
    }
    .one-news .title {
        font-size: 16px;
    }
    footer .footer-content .links-newsletter .newsletter .newsletter-title {
        font-size: 16px;
    }
    footer .footer-content .footer-col ul li {
        font-size: 14px;
    }
    footer .footer-content .footer-col .title {
        font-size: 16px;
    }
    .news-container {
        margin-bottom: 20px;
    }
    .small-news-card .image {
        height: auto;
    }
    .small-news-card .subtitle {
        font-size: 14px;
    }
    .small-news-card .title {
        font-size: 16px;
    }
    .news-card .read-more {
        font-size: 14px;
    }
    .news-card .subtitle {
        font-size: 14px;
    }
    .news-card .title {
        font-size: 16px;
    }
    .news-card .image {
        height: auto;
    }
    .contact-header .content .icon-text .icon {
        width: 40px;
        height: 40px;
    }
    .contact-header .content .icon-text .text .line2 {
        font-size: 14px;
    }
    .contact-header .content .icon-text .text .line1 {
        font-size: 16px;
    }
    .get-in-touch-div .left .header .yellow-line {
        height: 4px;
        width: 32px;
    }
    .code-goals .goals .title-body {
        margin-bottom: 20px;
    }
    .code-goals .goals .title-body .title {
        font-size: 16px;
    }
    .code-goals .goals .yellow-line {
        display: none;
    }
    .vision-header .content {
        padding-top: 20px;
    }
    .vision-header .content .about-us-item .icon-text .text .line2 {
        font-size: 14px;
    }
    .vision-header .content .about-us-item .icon-text .text .line2 p {
        font-size: 14px;
    }
    .vision-header .content .about-us-item .icon-text .text .line2 span {
        font-size: 14px;
    }
    .vision-header .content .about-us-item .icon-text .text .line1 {
        font-size: 16px;
    }
    .vision-header .content .about-us-item .icon-text .icon {
        width: 50px;
        height: 50px;
    }
    footer .footer-content .multi-col {
        gap: 20px;
        flex-direction: column;
    }
    .get-in-touch-div .form button {
        width: 100%;
    }
    .get-in-touch-div .left .header {
        margin-bottom: 20px;
    }
    .get-in-touch-div .left .text {
        font-size: 14px;
    }
    .get-in-touch-div .left .text p {
        font-size: 14px;
    }
    .get-in-touch-div .left .header .title {
        font-size: 16px;
    }
    .history-divs .right {
        font-size: 14px;
    }
    .history-divs .right p {
        font-size: 14px;
    }
    .compare-container .compare-boxes .box {
        flex: 0 0 100%;
    }

    .vision-header .content .about-us-item .icon-text {
        text-align: left;
    }
    .code-goals .goals .title-body .title {
        font-size: 18px;
    }

    .checkbox-label {
        font-size: 12px !important;
    }

    .upcoming-container .image-container .content .title {
        font-size: 30px;
    }

    .upcoming-container .image-container .content .subtitle {
        font-size: 12px;
    }

    .upcoming-container .image-container .content .date {
        font-size: 12px;
    }

    .upcoming-container .image-container .content .learn-more {
        font-size: 12px;
    }
    .upcoming-container .image-container .content {
        padding-left: 20px;
    }

    .vacancy-cards .vacancy-card {
        height: auto;
    }

    .open-vacancies .vacancies-header .right-header .input {
        width: 100%;
    }

    .vacancy-cards .vacancy-card .title {
        font-size: 16px;
    }

    .deal .content .images .image {
        width: 400px;
        height: 400px;
    }
    .offers .content .title span {
        font-size: 14px;
    }

    .deal .content .title div {
        font-size: 14px;
    }

    .deal .content .body {
        font-size: 12px;
    }

    .deal .content .body p {
        font-size: 12px;
    }

    .offer-card .card-title {
        font-size: 18px;
    }

    .offer-card .card-body {
        font-size: 12px;
    }

    .offer-card .card-body p {
        font-size: 12px;
    }

    .offer-card .get-in-touch {
        font-size: 12px;
    }

    .service-items .header .title {
        font-size: 20px;
    }

    .video-section .content .right-section .line2 p {
        font-size: 12px;
    }
    .carousel .line-1 {
        font-size: 20px;
    }
    .products-home .products-cat div {
        font-size: 16px;
    }
    .virtual-tour .right img {
        width: 100%;
        height: auto;
    }
    .home-team .content {
        padding-top: 70px;
        padding-left: 20px;
    }
    .home-services .content .slider-carousel .slider-carousel-item .right img {
        height: auto;
    }

    .home-services .content .slider-carousel .slick-prev {
        display: none !important;
    }
    .home-services .content .slider-carousel .slick-next {
        display: none !important;
    }
}

@media (max-width: 450px) {
    .banner .content .sub-content .body p {
        font-size: 14px;
    }

    .banner .content .sub-content .body {
        font-size: 14px;
    }

    .banner .content .sub-content .body span {
        font-size: 14px;
    }

    .get-in-touch-div .right {
        width: 100%;
    }
    .touch-map {
        width: 100% !important;
    }

    .touch-map #mymap {
        width: 100% !important;
    }
    .get-in-touch-div .right .form {
        width: 100%;
    }
    .get-in-touch-div .right .form textarea {
        width: 100%;
    }
    .deal .content .images .image {
        width: 290px;
        height: 290px;
    }
    .offer-card {
        width: 100%;
    }

    .offer-card .image {
        width: 260px;
        height: 200px;
        margin: 0 auto;
    }

    .products-container .product-card {
        width: 280px;
    }
}

/*
|--------------------------------------------------------------------------
| End Responsiveness Media Queries
|--------------------------------------------------------------------------
*/
