.header {
    min-height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    overflow: hidden;
}


/*.header::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
    /* background-color: rgba(0, 0, 0, 0.8); */
/*    z-index: -2;*/
/*}*/

.header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 55%;
    height: 100%;
    background-color: #dfdfdf;
    z-index: -1;
    transform: skewX(-30deg);
    transform-origin: bottom right;
}

.nav-bar {
    background: var(--color-Primary2);
    padding: 10px 0;
}

.nav-bar .main-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.logo {
    width: 120px;
    height: 90px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.element ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
}

.element ul li {
    list-style: none;
}

.element ul li a {
    color: var(--color-white);
    font-size: 20px;
    display: flex;
    padding: 5px 15px;
    text-transform: uppercase;
    font-family: "font_medium";
    transition: all 0.3s linear;
    position: relative;
}

.element ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    transition: all 0.3s linear;
    transform: scaleX(0);
}

.element ul li a:hover {
    color: var(--color-white);
}

.element ul li a:hover::after {
    transform: scaleX(1);
}

.btns-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: var(--color-white);
}

.btns-header .lang a {
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s linear;
    font-size: 22px;
    font-family: "font_medium";
    text-transform: uppercase;
    color: var(--color-white);
    text-decoration: none;
    position: relative;
}

.btns-header .lang a:hover {
    transform: rotate(360deg) scale(1.1);
    background-color: var(--color-white);
    color: var(--color-Primary2);
    border-color: var(--color-white);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.ctm-btn {
    background:var(--color-Primary2);
    padding: 10px 45px;
    height: 50px;
    border-radius: 30px;
    display: inline-block;
    text-align: center;
    font-size: 18px;
    font-family: "font_medium";
    color: var(--color-white);
    transition: all 0.3s linear;
    position: relative;
    cursor: pointer;
    box-shadow: 0 0 0 transparent;
    overflow: hidden;
    border : none !important;
}


.ctm-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.ctm-btn:hover {
    transform: translateY(-2px) scale(1.05);
    background:var(--color-Primary2);
    box-shadow: 0 8px 25px rgba(91, 155, 211, 0.5);
    color: var(--color-white);
}

.ctm-btn:hover::before {
    left: 100%;
}

.ctm-btn:active {
    transform: translateY(0) scale(1.02);
    box-shadow: 0 4px 15px rgba(91, 155, 211, 0.4);
}
.btn-header .ctm-btn {
    background: #dfdfdfcf;
    color: var(--color-Primary2);
}


.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 700px;
}

.text-hero {
    margin-left: 5%;
    width: 40%;
}

.text-hero h3 {
    color: var(--color-Primary3);
    font-size: 22px;
    font-family: "font_medium";
    text-transform: capitalize;
    margin-bottom: 20px;
}

.text-hero h1 {
    color: var(--color-Primary2);
    font-size: 60px;
    font-family: "font_semibold";
    width: 80%;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.btns-hero {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.ctm-stroke {
    background-color: transparent;
    padding: 10px 45px;
    height: 50px;
    border-radius: 30px;
    display: inline-block;
    text-align: center;
    font-size: 18px;
    font-family: "font_medium";
    color: var(--color-white);
    border: 1px solid var(--color-white);
    transition: all 0.3s linear;
    position: relative;
    cursor: pointer;
    box-shadow: 0 0 0 transparent;
    overflow: hidden;
}

.ctm-stroke:hover {
    transform: translateY(-2px) scale(1.05);
    background-color: var(--color-white);
    color: var(--color-Primary2);
    border-color: var(--color-white);
    box-shadow: 0 8px 25px rgba(91, 155, 211, 0.5);
    color: var(--color-Primary2);
}

.ctm-stroke:hover img {
    filter: invert(1);
}

.ctm-stroke1 {
    background-color: transparent;
    padding: 10px 45px;
    height: 50px;
    border-radius: 30px;
    display: inline-block;
    text-align: center;
    font-size: 18px;
    font-family: "font_medium";
    color: var(--color-Primary2);
    border: 1px solid var(--color-Primary2);
    transition: all 0.3s linear;
    position: relative;
    cursor: pointer;
    box-shadow: 0 0 0 transparent;
    overflow: hidden;
}

.ctm-strok1:hover {
    transform: translateY(-2px) scale(1.05);
    background-color: var(--color-Primary2);
    color: var(--color-Primary2);
    border-color: var(--color-Primary2);
    box-shadow: 0 8px 25px rgba(91, 155, 211, 0.5);
    color: var(--color-white);
}

.ctm-stroke1:hover img {
    filter: invert(1);
}

.header-page::after {
    background-color: #000000dc;
}

.header-page::before {
    display: none;
}

.title-page {
    height: 200px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 5%;
    align-content: center;
}
.title-page h2 {
    font-size: 38px;
    font-family: "font_semibold";
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--color-white);
    width: 100%;
}

.title-page .breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;

}
.title-page .breadcrumb a {
    color: var(--color-white);
    font-size: 18px;
    font-family: "font_medium";
    text-transform: uppercase;
    color: var(--color-white);

}
.title-page .breadcrumb i {
    font-size: 18px;
    font-family: "font_medium";
    text-transform: uppercase;
    color: var(--color-white);
}
.title-page .breadcrumb span {
    font-size: 18px;
    font-family: "font_medium";
    text-transform: uppercase;
    color: var(--color-Primary3);
}