/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,

body {
    margin: 0;
    min-height: 100%;
}

body {
    background:
        linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)),
        url("background.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.main {

    width: 100%;
    background: transparent;
    margin-top: 90px;
}

.header {

    position: fixed;
    background: rgba(1, 1, 1, 1);

    top: 0;
    left: 0;

    width: 100%;
    height: 90px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 0 60px;


    z-index: 9999;
}
.logo{
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}
.logo img{
    height: 80px;      /* Smaller than a 90px header */
    width: auto;
    display: block;
}
.menu {
    position: fixed;

    top: 25px;

    left: 50%;
    transform: translateX(-50%);

    z-index: 1000;
}

.menu ul {

    display: flex;

    gap: 50px;

    list-style: none;
}

.menu li {

    margin: 0;
}

.menu a {

    color: white;

    text-decoration: none;

    font-size: 20px;

    font-weight: bold;

    transition: .3s;
}

.menu a:hover {

    color: #ff7200;
}

.language-selector {

    display: flex;

    gap: 10px;

    font-size: 18px;

    font-weight: bold;
}

.lang {

    cursor: pointer;

    color: white;

    transition: .3s;
}

.lang:hover {

    color: #ff7200;
}

.lang.active {

    color: #ff7200;
}

.separator {

    color: #888;
}

.search {
    width: 330px;
    float: left;
    margin-left: 270px;
}

.srch {
    width: 200px;
    height: 40px;
    font-family: 'Times New Roman';
    float: left;
    background: transparent;
    margin-top: 13px;

    color: #fff;
    border-right: none;
    font-size: 16px;

    padding: 10px;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

.btn {
    width: 100px;
    height: 40px;
    background: #ff7200;
    border: 2px solid #ff7200;
    margin-top: 13px;
    color: #fff;
    font-size: 15px;
    border-bottom-right-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: 0.2s ease;
    cursor: pointer;
}

.btn:hover {
    color: #000;
}

.btn:focus {
    outline: none;
}

.srch:focus {
    outline: none;
}

.content {
    width: 1200px;
    height: auto;
    margin: auto;
    color: #fff;
    position: relative;
}

.content .par {
    padding-left: 20px;
    padding-bottom: 20px;
    font-family: Arial;
    letter-spacing: 1.2px;
    line-height: 30px;
}

.content h1 {
    font-family: 'Times New Roman';
    font-size: 35px;
    padding-left: 20px;
    margin-top: 8%;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.content .cn {
    width: 160px;
    height: 40px;

    border: none;
    margin-bottom: 10px;
    margin-left: 20px;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: .4s ease;

}

.content .cn a {
    text-decoration: none;
    color: #000;
    transition: .3s ease;
}

.cn:hover {
    background-color: #fff;
}

.content span {
    color: #ff7200;
    font-size: 65px
}

.form {
    width: 250px;
    height: 380px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8)50%, rgba(0, 0, 0, 0.8)50%);
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    margin: 40px auto;
    top: -20px;
    transform: translate(0%, -5%);
    border-radius: 10px;
    padding: 25px;
}

.form h2 {
    width: 200px;
    font-family: sans-serif;
    text-align: center;
    color: #ff7200;
    font-size: 22px;
    background-color: #fff;
    border-radius: 10px;
    margin: 2px;
    padding: 8px;
}

.form input {
    width: 240px;
    height: 35px;
    background: transparent;
    border-bottom: 1px solid #ff7200;
    border-top: none;
    border-right: none;
    border-left: none;
    color: #fff;
    font-size: 15px;
    letter-spacing: 1px;
    margin-top: 30px;
    font-family: sans-serif;
}

.form input:focus {
    outline: none;
}

::placeholder {
    color: #fff;
    font-family: Arial;
}

.btnn {
    width: 250px;
    height: 40px;
    background: #ff7200;
    border: none;
    margin-top: 30px;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    color: #fff;
    transition: 0.4s ease;

}

.btnn:hover {
    background: #fff;
    color: #ff7200;
}

.btnn a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.form .link {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    padding-top: 20px;
    text-align: center;
}

.form .link a {
    text-decoration: none;
    color: #ff7200;
}

.liw {

    padding-top: 15px;
    padding-bottom: 10px;
    text-align: center;
}

.contact-info{

    margin-top:50px;
    padding:25px 30px;
margin-bottom: 80px;
    background:rgba(255,255,255,.08);

    border-radius:15px;

    backdrop-filter:blur(6px);

    width:fit-content;

    color:white;

    font-family:Arial, sans-serif;

    line-height:2;
}

.contact-info p{

    margin:10px 0;

    font-size:17px;
}

.contact-info a{

    color:#ffffff;

    text-decoration:none;

    transition:.3s;
}

.contact-info a:hover{

    color:#ff7200;
}

.contact-info strong{

    color:#ff7200;
}

/* =====================
   GENERAL IMPROVEMENTS
===================== */

.navbar,
.content {
    width: 90%;
    max-width: 1200px;
}

.form {
    right: 0;
    left: auto;
}

/* =====================
   TABLET
===================== */

@media (max-width: 992px) {

    .navbar {
        width: 100%;
        height: auto;
        text-align: center;
    }

    .icon,
    .search {
        float: none;
        width: 100%;
        text-align: center;
    }

    .logo {
        float: none;
        padding-left: 0;
    }

    ul {
        float: none;
        flex-wrap: wrap;
        justify-content: center;
    }

    ul li {
        margin: 15px;
    }

    .search {
        margin-left: 0;
        margin-top: 20px;
    }

    .content {
        width: 90%;
        text-align: center;
    }

    .content h1 {
        font-size: 40px;
        padding-left: 0;
    }

    .content .par {
        padding-left: 0;
    }

    .form {
        position: relative;
        width: 300px;
        margin: 40px auto;
        top: 0;
        right: 0;
        transform: none;
    }
}


/* =====================
   MOBILE
===================== */

@media (max-width: 768px) {

    .main {
        height: auto;
        padding-bottom: 50px;
    }

    .logo {
        font-size: 28px;
    }

    ul {
        flex-direction: column;
    }

    ul li {
        margin: 10px 0;
        font-size: 16px;
    }

    .srch {
        width: 65%;
    }

    .btn {
        width: 35%;
    }

    .content h1 {
        font-size: 32px;
        margin-top: 30px;
    }

    .content span {
        font-size: 45px;
    }

    .content .par {
        font-size: 14px;
        line-height: 24px;
    }

    .content .cn {
        width: 140px;
        height: 40px;
        font-size: 16px;
    }

    .form {
        width: 90%;
        max-width: 320px;
        padding: 20px;
    }

    .form input,
    .btnn {
        width: 100%;
    }

    .icons ion-icon {
        font-size: 24px;
        padding-left: 10px;
    }
}


/* =====================
   SMALL PHONES
===================== */

@media (max-width: 480px) {

    .content h1 {
        font-size: 26px;
    }

    .content span {
        font-size: 36px;
    }

    .logo {
        font-size: 24px;
    }

    .srch {
        width: 60%;
        font-size: 14px;
    }

    .btn {
        width: 40%;
        font-size: 14px;
    }

    .form h2 {
        width: auto;
    }
}

@media (max-width: 768px) {

    .navbar {
        height: auto;
        padding-bottom: 20px;
    }

    .content {
        padding-top: 120px;
    }

    .content h1 {
        margin-top: 0;
    }
}


.language-selector {
    position: fixed;

    top: 20px;
    right: 40px;

    display: flex;
    align-items: center;
    gap: 10px;

    z-index: 1001;

    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
}


.lang {

    color: white;

    cursor: pointer;

    transition: .3s ease;
}

.lang:hover {

    color: #ff7200;
}

.lang.active {

    color: #ff7200;
}

.separator {

    color: rgba(255, 255, 255, .5);
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.slider {
    width: 32%;
    max-width: 420px;
    min-width: 280px;
    aspect-ratio: 4/3;

    margin: 0 auto;
    margin-top: 140px;

    overflow: hidden;
    border-radius: 18px;
    position: relative;
    direction: ltr;
}

.slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform .9s cubic-bezier(.77, 0, .175, 1);
    direction: ltr;
    display: flex;
}

.slide {
    min-width: 100%;
    height: 100%;
    user-select: none;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buttons */

.prev,
.next {

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;

    border: none;
    border-radius: 50%;

    background: rgba(0, 0, 0, .35);

    color: white;
    font-size: 30px;

    cursor: pointer;

    transition: .3s;
    z-index: 100;
}

.prev:hover,
.next:hover {
    background: rgba(0, 0, 0, .7);
}

.prev {
    left: 20px;
    left: 20px !important;
    right: auto !important;
}

.next {
    right: 20px;
    right: 20px !important;
    left: auto !important;
}


/* Dots */

.dots {

    position: absolute;

    bottom: 25px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 10px;

}

.dot {

    width: 12px;

    height: 12px;

    border-radius: 50%;

    background: white;

    opacity: .5;

    cursor: pointer;

    transition: .3s;

}

.dot.active {

    opacity: 1;

    transform: scale(1.4);

}
.contact-info a{
    direction: ltr;
    unicode-bidi: embed;
}