@font-face {
    font-family: 'Vazir';
    src: url('./assets/fonts/Vazirmatn-FD-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
  
@font-face {
    font-family: 'Vazir';
    src: url('./assets/fonts/Vazirmatn-FD-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
  
@font-face {
    font-family: 'Vazir';
    src: url('./assets/fonts/Vazirmatn-FD-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
}
  
@font-face {
    font-family: 'Vazir';
    src: url('./assets/fonts/Vazirmatn-FD-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
}
  
@font-face {
    font-family: 'Vazir';
    src: url('./assets/fonts/Vazirmatn-FD-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}
  
@font-face {
    font-family: 'Vazir';
    src: url('./assets/fonts/Vazirmatn-FD-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}
  
@font-face {
    font-family: 'Vazir';
    src: url('./assets/fonts/Vazirmatn-FD-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}
  
@font-face {
    font-family: 'Vazir';
    src: url('./assets/fonts/Vazirmatn-FD-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
}

html,body{
    margin: 0;
    padding: 0;
}

body {
    direction: rtl;
    font-family: 'Vazir';
}
a{
    text-decoration: none;
    font-family: 'Vazir';
}

.landing-container{
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    background-color: #000000;
    background-image: url('./assets//images/landing-wallpaper.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top right 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

p,h1,h2,h3,h4{
    margin: 0;
}

.landing-container .landing{
    display: flex;
    align-items: start;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-width: 1440px;
}

.landing-container .landing .data-container{
    width: 660px;
}

.landing-container .landing .data-container .address-image{
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-container .landing .data-container .address-image img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.landing-container .landing .data-container .address{
    padding: 8px 16px;
}

.landing-container .landing .data-container .address .address-container{
    padding: 16px;
    border-radius: 8px;
    background: rgba(173, 173, 173, 0.25);
    backdrop-filter: blur(10px);
}

.landing-container .landing .data-container .address .address-container .address-description{
    color: #E5E5E5;
    text-align: right;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.landing-container .landing .data-container .address .address-container .title{
    color: #B2B2B2;
    text-align: right;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 4px;
}

.landing-container .landing .data-container .contacts{
    padding: 8px 16px;
}

.landing-container .landing .data-container .contacts .contacts-container{
    border-radius: 8px;
    background: rgba(173, 173, 173, 0.25);
    backdrop-filter: blur(10px);
    padding: 8px 8px 0px 8px;
}

.landing-container .landing .data-container .contacts .contacts-container .title{
    padding: 8px 16px 8px 16px;
    color: #FFF;
    text-align: right;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
}

.landing-container .landing .data-container .contacts .contacts-container .contact .text{
    display: flex;
    align-items: center;
    gap: 8px;
    color: #E5E5E5;
    text-align: right;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}
.landing-container .landing .data-container .contacts .contacts-container .contact .mobile{
    color: #E5E5E5;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
}
.border-top {
    border-top: 1px solid #4C4C4C;
}

.landing-container .landing .data-container .contacts .contacts-container .contact {
    padding: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-container .landing .data-container .button-container{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 12px 0;
}
.landing-container .landing .data-container .button-container .button{
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    width: 100%;
    margin: auto;
    max-width: 328px;
    height: 56px;
    border: none;
    border-radius: 6px;
    background: #E5C230;
    text-align: center;
    color: #0B0A02;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

.landing-container .landing .data-container .description{
    padding: 12px 16px;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}
.landing-container .landing .data-container .title{
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 42px;
    text-align: center;
}

.landing-container .landing .data-container .logo-container{
    display: flex;
    justify-content: center;
    height: 96px;
}
.landing-container .landing .image-container{
    width: calc(100% - 660px);
    max-width: 580px;
}
.landing-container .landing .image-container img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 1024px) {
    .landing-container{
        background-position: top right;
    }
    .landing-container .data-container{
        width: 404px !important;
    }
    .landing-container .image-container{
        width: calc(100% - 404px) !important;
    } 

}

@media only screen and (max-width: 700px) {
    .landing-container{
        background-position: top right;
    }
    .landing-container .landing{
        display: block;
    }
    .landing-container .data-container{
        width: 100% !important;
    }
    .landing-container .image-container{
        position: relative;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: -15%;
        left: -15%;
    }
}

.button:hover {
    background-color: #c4ab40 !important;
}

a{
    cursor: pointer;
}