@font-face {
    font-family: 'Adobe Garamond Pro';
    src: url('../font/AGaramondPro-Semibold.woff2') format('woff2'),
    url('../font/AGaramondPro-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Inter Medium';
    src: url('../font/Inter-Medium.woff2') format('woff2'),
    url('../font/Inter-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter SemiBold';
    src: url('../font/Inter-SemiBold.woff2') format('woff2'),
    url('../font/Inter-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter Light';
    src: url('../font/Inter-Light.woff2') format('woff2'),
    url('../font/Inter-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Shadeerah';
    src: url('../font/ShadeerahDemo.woff2') format('woff2'),
    url('../font/ShadeerahDemo.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


::selection {
    color: #ffffff;
    background: #000;
}
:root{
    --pimary-color: #846e63;
    --secon-color: #2c2420;
    --font-AGaramondPro-bold: 'Adobe Garamond Pro','sans-serif';
    --font-Inter-light: 'Inter Light','sans-serif';
    --font-Inter-medium: 'Inter Medium','sans-serif';
    --font-Inter-semobold: 'Inter SemiBold','sans-serif';
    --font-Shadeerah: 'Shadeerah','sans-serif';

}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    padding: 0;
    margin: 0;
    font-family: var(--font-Inter-light);
    font-size: 16px;
    color: #757575;
    line-height: 1.7;
    overflow-x: hidden!important;
    background: #ffffff;
}

input, select, button, a, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    cursor: pointer;
    outline: none;
}

select {
    -webkit-appearance: inherit;
    -moz-appearance: inherit;
    appearance: inherit;
    list-style: none;
}
strong{
    font-family: var(--font-Inter-semobold);
}
select option{
    color: black!important;
}
ul{
    margin: 0;
    padding: 0;
    display: flow-root;
}
.container {
    position: relative;
    padding: 0;
}
.section_video{
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.text_video{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}
.text_video img{
    height: 80px;
    display: block;
    margin: 0 auto;
    filter: brightness(0) invert(1);
}
.overlay_video{
    background: #00000085;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.text_video h2{
    font-size: 16px;
    padding: 15px 0;
    position: relative;
    margin: 0;
    font-weight: normal;
    margin-bottom: 15px;
}
.text_video h2:before{
    content: '';
    width: 30px;
    height: 1px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: #ffffff;
}
.text_video h2>label{
    display: inline-block;
    width: 100%;
}
.text_video p{
    margin: 0;
}
.social_media{
    margin-top: 25px;
}
.social_media img{
    height: 25px;
    display: block;
    margin: auto;
    filter: brightness(0) invert(1);
}
.copyright{
    position: absolute;
    bottom: 0;
    left: 0;
    border-top: 1px solid #ffffff1c;
    width: 100%;
    padding: 10px 0;
    color: #ffffff96;
    text-align: center;
    font-size: 14px;
}