/* start global rules */
* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    text-transform: capitalize;
    direction: rtl;
    /* for arabic design */
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    font-family: 'Work Sans', sans-serif;
    font-family: 'Cairo', sans-serif;
    min-height: 100vh;
}

/* end global rules */
/* start variables */
:root {
    --main-color: #2196f3;
    --alt-color: #1787e0;
    --dark-color: #191919;
    --main-txt-color: #777;
    --alt-background: #ECECEC;
    --sections-padding: 70px;
    --main-transition: .3s;
}

/* end variables */
/* start container */
.container {
    margin: 0px auto;
    padding: 0px 20px;
}

@media (min-width:768px) {
    .container {
        width: 750px;
    }
}

@media (min-width:992px) {
    .container {
        width: 970px;
    }
}

@media (min-width:1200px) {
    .container {
        width: 1170px;
    }
}

/* end container */
/* start conponents */
.main-heading {
    width: fit-content;
    max-width: 100%;
    margin: 0px auto 30px;
    position: relative;
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    padding: 20px 20px 30px;
    text-align: center;
}
.main-heading::before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: #aaa;
}
.main-heading::after {
    content: '';
    position: absolute;
    bottom: 1.5px;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 20px;
    height: 20px;
    border: 3px solid #aaa;
    background: #FFF;
    border-radius: 50%;
}
.main-heading h2 {
    font-size:30px;
}
.main-heading p {
    font-size:18px;
    margin-top:20px;
    font-weight:bold;
}
.main-txt {
    line-height: 2.2;
    font-size: 20px;
}
.main-btn , .danger-btn {
    display: block;
    margin: 25px auto;
    padding: 5px 30px;
    box-shadow: 0 12px 20px 0 rgb(0 0 0 / 13%), 0 2px 4px 0 rgb(0 0 0 / 12%);
    text-decoration: none;
    font-size: 18px;
    line-height:2;
    cursor: pointer;
    transition: var(--main-transition);
    font-weight: bold;
    text-transform:none;
    text-align: center;
}
.main-btn {
    color: var(--main-color);
    background:#FFF;
    border: 2px solid var(--main-color);
}
.main-btn:hover {
    background: var(--main-color);
    color: #FFF;
}
.danger-btn {
    color: #FF0000;
    background:#FFF;
    border: 2px solid #FF0000;
}
.danger-btn:hover {
    background: #FF0000;
    color: #FFF;
}
.btn-disabled {
    background: #aaa;
    color: #FFF;
    border-color:var(--alt-background);
}
.btn-disabled:hover {
    background: #aaa;
}
.close-btn {
    position:absolute;
    top:0px;
    left:0px;
    background:none;
    padding:5px 10px;
    border:2px solid var(--alt-background);
    font-size:20px;
    transition:var(--main-transition);
    cursor:pointer;
}
.close-btn:hover {
    background:#ff0000;
    color:#FFF;
}
.close-window-BTN {
    display:flex;
    align-items:center;
    background:#ff0000;
    padding:5px 10px;
    border:none;
    color:#FFF;
    font-weight:bold;
    font-size:20px;
    display:block;
    cursor:pointer;
}

.error-message {
    width:100%;
    text-align:center;
    font-weight:bold;
    color:#ff0000;
}
.custom-alert {
    position:fixed;
    right:-200%;
    bottom:30px;
    transition:1s;
}
.custom-alert .alert {
    height:70px;
    max-width:350px;
    padding-left:20px;
    border-left:7px solid var(--alt-color);
    display:flex;
    gap:20px;
    align-items:center;
    justify-content:flex-start;
    color:var(--main-color);
    font-weight:bold;
    background:var(--alt-background);
    box-shadow: 0 12px 20px 0 rgb(0 0 0 / 13%), 0 2px 4px 0 rgb(0 0 0 / 12%);
}
.custom-alert.show {
    right:20px;
}
.custom-alert button {
    height:100%;
    padding:20px;
    margin:0px;
    border:none;
    outline:none;
    background:var(--alt-color);
    color:#FFF;
    font-size:20px;
    font-weight:bold;
    cursor:pointer;
}
.background-loading-alert {
    position:fixed;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    background:rgb(00, 00, 00, 70%);
    z-index:-1;
}
.container-alert{
    position:fixed;
    top:-200%;
    left:0px;
    width:100%;
    height:100%;
    background:rgb(00, 00, 00, 70%);
    display:flex;
    justify-content:center;
    align-items:center;
}
.container-alert.show {
    top:0px;
}
.alert-box {
    background:#FFF;
    box-shadow: 0 12px 20px 0 var(--main-color), 0 2px 4px 0 var(--main-color);
    border-radius:10px;
    width:420px;
    padding:20px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:20px;
    color:var(--main-color);
    font-weight:bold;
    transition:var(--main-transition);
}
/* end conponents */
/* start navbar */
header .navbar {
    position: relative;
    border-bottom:3px solid var(--main-color);
    color:var(--main-color);
    height:70px;
}
header .navbar .container {
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
header .navbar .container .logo {
    display: flex;
    justify-content: center;
    align-items: center;
}
header .navbar .container .logo img {
    width: 100px;
}
header .navbar .container .nav-toggler {
    border: none;
    outline: none;
    background:none;
    font-size: 30px;
    cursor: pointer;
    color:var(--main-color);
}
header .navbar .container .nav-menu {
    position: absolute;
    top: calc(100% + 50px);
    left: 0px;
    width: 100%;
    background:#FFF;
    padding: 10px 20px 50px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 3px solid var(--main-color);
    box-shadow: 0 12px 20px 0 rgb(0 0 0 / 13%), 0 2px 4px 0 rgb(0 0 0 / 12%);
    opacity: 0;
    z-index:-1;
    transition: var(--main-transition);
}
header .navbar .container .nav-menu.toggle {
    opacity: 1;
    z-index: 2;
    top: 101%;
}
header .navbar .container .nav-menu li {
    width: 100%;
    font-size: 20px;
    font-weight: bold;
}
header .navbar .container .nav-menu li:hover {
    cursor:pointer;
}
header .navbar .container .nav-menu li a, header .navbar .container .nav-menu li button {
    width: 100%;
    height: 100%;
    background:#fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border-top:0px;
    border-right:0px;
    border-left:0px;
    border-bottom: 2px solid var(--main-color);
    font-size:16px;
    font-weight: bold;
    color: var(--main-color);
    text-decoration: none;
    transition: var(--main-transition);
}
header .navbar .container .nav-menu li a:hover, header .navbar .container .nav-menu li button:hover {
    background: var(--alt-background);
    cursor:pointer;
}
header .navbar .container .nav-menu li .account {
    font-weight:bold;
    font-size:18px;
    display:none;
}
/* start landing section*/
header .landing {
    width: 100%;
    height: calc(100vh - 70px);
    min-height:fit-content;
    background: url(../images/1.jpg);
    background-size: cover;
    color: #FFF;
    position:relative;
}
header .landing::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgb(00, 00, 00, 70%);
}
header .landing .container {
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
header .landing .container .main-heading {
    width: 260px;
    max-width: 70%;
}
header .landing .container .main-heading img {
    width: 100%;
}
header .landing .container p {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    width: 500px;
    max-width: 100%;
}
/* end landing */
/*================================= End Header =================================*/
/*================================= start footer =================================*/
footer {
    background: var(--dark-color);
    color: #FFF;
    position: relative;
}
footer .copy {
    padding: 30px;
    border-top: 2px solid #777;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: relative;
}
/*================================= End footer =================================*/
/*================================= start modal style =================================*/
.modal {
    position:fixed;
    top:0px;
    left:0px;
    width:00%;
    height:00%;
    background:rgb(00, 00, 00, 70%);
    z-index: 1000;
}
.modal.toggle, .modal.show {
    width:100%;
    height:100%;
}
.modal .modal-content {
    position:fixed;
    top:50%;
    right:-100%;
    transform:translate(500%, -50%);
    width:80%;
    max-height:90%;
    padding:100px 50px 50px;
    border:3px solid var(--main-color);
    box-shadow: 0 12px 20px 0 rgb(0 0 0 / 13%), 0 2px 4px 0 rgb(0 0 0 / 12%);
    overflow:auto;
    background:#fff;
    font-weight:bold;
    transition:0.8s;
}
.modal .close-modal {
    position:absolute;
    top:0px;
    left:0px;
    background:none;
    padding:5px 10px;
    border:2px solid var(--alt-background);
    font-size:20px;
    transition:var(--main-transition);
    cursor:pointer;
}
.modal .close-modal:hover {
    background:#ff0000;
    color:#FFF;
}
.modal .modal-content h3 {
    margin-top:20px;
}
.modal .modal-content p {
    margin-bottom:20px;
}
.modal .link-shared {
    text-align:center;
    border:2px solid #aaa;
    padding:10px;
    margin:50px 0px
}
.modal .modal-content .image{
    display:block;
    width:300px;
    max-width:80%;
    margin:50px auto;
}
.modal .modal-content .profile-image {
    max-width:80%;
    width:180px;
    height:180px;
    margin:50px auto;
    border:3px solid var(--main-color);
    border-radius:50%;
    overflow:hidden;
}
.modal .modal-content img{
    width:100%;
}
.modal.toggle .modal-content, .modal.show .modal-content {
    right:50%;
    transform:translate(50%, -50%);
}
/*================================= end modal style =================================*/
/*==================================================================*/
/*======================= start font style =========================*/
/*===== arabic =====*/
@font-face {
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 200;
    font-display: swap;
    src: url(../css/fonts/cairo-font-arabic.woff2) format('woff2');
    unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0898-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC, U+102E0-102FB, U+10E60-10E7E, U+10EFD-10EFF, U+1EE00-1EE03, U+1EE05-1EE1F, U+1EE21-1EE22, U+1EE24, U+1EE27, U+1EE29-1EE32, U+1EE34-1EE37, U+1EE39, U+1EE3B, U+1EE42, U+1EE47, U+1EE49, U+1EE4B, U+1EE4D-1EE4F, U+1EE51-1EE52, U+1EE54, U+1EE57, U+1EE59, U+1EE5B, U+1EE5D, U+1EE5F, U+1EE61-1EE62, U+1EE64, U+1EE67-1EE6A, U+1EE6C-1EE72, U+1EE74-1EE77, U+1EE79-1EE7C, U+1EE7E, U+1EE80-1EE89, U+1EE8B-1EE9B, U+1EEA1-1EEA3, U+1EEA5-1EEA9, U+1EEAB-1EEBB, U+1EEF0-1EEF1;
}
@font-face {
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(../css/fonts/cairo-font-arabic.woff2) format('woff2');
    unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0898-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC, U+102E0-102FB, U+10E60-10E7E, U+10EFD-10EFF, U+1EE00-1EE03, U+1EE05-1EE1F, U+1EE21-1EE22, U+1EE24, U+1EE27, U+1EE29-1EE32, U+1EE34-1EE37, U+1EE39, U+1EE3B, U+1EE42, U+1EE47, U+1EE49, U+1EE4B, U+1EE4D-1EE4F, U+1EE51-1EE52, U+1EE54, U+1EE57, U+1EE59, U+1EE5B, U+1EE5D, U+1EE5F, U+1EE61-1EE62, U+1EE64, U+1EE67-1EE6A, U+1EE6C-1EE72, U+1EE74-1EE77, U+1EE79-1EE7C, U+1EE7E, U+1EE80-1EE89, U+1EE8B-1EE9B, U+1EEA1-1EEA3, U+1EEA5-1EEA9, U+1EEAB-1EEBB, U+1EEF0-1EEF1;
}
@font-face {
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../css/fonts/cairo-font-arabic.woff2) format('woff2');
    unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0898-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC, U+102E0-102FB, U+10E60-10E7E, U+10EFD-10EFF, U+1EE00-1EE03, U+1EE05-1EE1F, U+1EE21-1EE22, U+1EE24, U+1EE27, U+1EE29-1EE32, U+1EE34-1EE37, U+1EE39, U+1EE3B, U+1EE42, U+1EE47, U+1EE49, U+1EE4B, U+1EE4D-1EE4F, U+1EE51-1EE52, U+1EE54, U+1EE57, U+1EE59, U+1EE5B, U+1EE5D, U+1EE5F, U+1EE61-1EE62, U+1EE64, U+1EE67-1EE6A, U+1EE6C-1EE72, U+1EE74-1EE77, U+1EE79-1EE7C, U+1EE7E, U+1EE80-1EE89, U+1EE8B-1EE9B, U+1EEA1-1EEA3, U+1EEA5-1EEA9, U+1EEAB-1EEBB, U+1EEF0-1EEF1;
}
@font-face {
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(../css/fonts/cairo-font-arabic.woff2) format('woff2');
    unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0898-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC, U+102E0-102FB, U+10E60-10E7E, U+10EFD-10EFF, U+1EE00-1EE03, U+1EE05-1EE1F, U+1EE21-1EE22, U+1EE24, U+1EE27, U+1EE29-1EE32, U+1EE34-1EE37, U+1EE39, U+1EE3B, U+1EE42, U+1EE47, U+1EE49, U+1EE4B, U+1EE4D-1EE4F, U+1EE51-1EE52, U+1EE54, U+1EE57, U+1EE59, U+1EE5B, U+1EE5D, U+1EE5F, U+1EE61-1EE62, U+1EE64, U+1EE67-1EE6A, U+1EE6C-1EE72, U+1EE74-1EE77, U+1EE79-1EE7C, U+1EE7E, U+1EE80-1EE89, U+1EE8B-1EE9B, U+1EEA1-1EEA3, U+1EEA5-1EEA9, U+1EEAB-1EEBB, U+1EEF0-1EEF1;
}
@font-face {
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(../css/fonts/cairo-font-arabic.woff2) format('woff2');
    unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0898-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC, U+102E0-102FB, U+10E60-10E7E, U+10EFD-10EFF, U+1EE00-1EE03, U+1EE05-1EE1F, U+1EE21-1EE22, U+1EE24, U+1EE27, U+1EE29-1EE32, U+1EE34-1EE37, U+1EE39, U+1EE3B, U+1EE42, U+1EE47, U+1EE49, U+1EE4B, U+1EE4D-1EE4F, U+1EE51-1EE52, U+1EE54, U+1EE57, U+1EE59, U+1EE5B, U+1EE5D, U+1EE5F, U+1EE61-1EE62, U+1EE64, U+1EE67-1EE6A, U+1EE6C-1EE72, U+1EE74-1EE77, U+1EE79-1EE7C, U+1EE7E, U+1EE80-1EE89, U+1EE8B-1EE9B, U+1EEA1-1EEA3, U+1EEA5-1EEA9, U+1EEAB-1EEBB, U+1EEF0-1EEF1;
}
@font-face {
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../css/fonts/cairo-font-arabic.woff2) format('woff2');
    unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0898-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC, U+102E0-102FB, U+10E60-10E7E, U+10EFD-10EFF, U+1EE00-1EE03, U+1EE05-1EE1F, U+1EE21-1EE22, U+1EE24, U+1EE27, U+1EE29-1EE32, U+1EE34-1EE37, U+1EE39, U+1EE3B, U+1EE42, U+1EE47, U+1EE49, U+1EE4B, U+1EE4D-1EE4F, U+1EE51-1EE52, U+1EE54, U+1EE57, U+1EE59, U+1EE5B, U+1EE5D, U+1EE5F, U+1EE61-1EE62, U+1EE64, U+1EE67-1EE6A, U+1EE6C-1EE72, U+1EE74-1EE77, U+1EE79-1EE7C, U+1EE7E, U+1EE80-1EE89, U+1EE8B-1EE9B, U+1EEA1-1EEA3, U+1EEA5-1EEA9, U+1EEAB-1EEBB, U+1EEF0-1EEF1;
}
@font-face {
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(../css/fonts/cairo-font-arabic.woff2) format('woff2');
    unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0898-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC, U+102E0-102FB, U+10E60-10E7E, U+10EFD-10EFF, U+1EE00-1EE03, U+1EE05-1EE1F, U+1EE21-1EE22, U+1EE24, U+1EE27, U+1EE29-1EE32, U+1EE34-1EE37, U+1EE39, U+1EE3B, U+1EE42, U+1EE47, U+1EE49, U+1EE4B, U+1EE4D-1EE4F, U+1EE51-1EE52, U+1EE54, U+1EE57, U+1EE59, U+1EE5B, U+1EE5D, U+1EE5F, U+1EE61-1EE62, U+1EE64, U+1EE67-1EE6A, U+1EE6C-1EE72, U+1EE74-1EE77, U+1EE79-1EE7C, U+1EE7E, U+1EE80-1EE89, U+1EE8B-1EE9B, U+1EEA1-1EEA3, U+1EEA5-1EEA9, U+1EEAB-1EEBB, U+1EEF0-1EEF1;
}
/*===== latin =====*/
@font-face {
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../css/fonts/cairo-font-latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 200;
    font-display: swap;
    src: url(../css/fonts/cairo-font-latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(../css/fonts/cairo-font-latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(../css/fonts/cairo-font-latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(../css/fonts/cairo-font-latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../css/fonts/cairo-font-latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(../css/fonts/cairo-font-latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/*===== latin-ext =====*/
@font-face {
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 200;
    font-display: swap;
    src: url(../css/fonts/cairo-font-latin-ext.woff2) format('woff2');
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(../css/fonts/cairo-font-latin-ext.woff2) format('woff2');
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../css/fonts/cairo-font-latin-ext.woff2) format('woff2');
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(../css/fonts/cairo-font-latin-ext.woff2) format('woff2');
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(../css/fonts/cairo-font-latin-ext.woff2) format('woff2');
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../css/fonts/cairo-font-latin-ext.woff2) format('woff2');
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Cairo';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(../css/fonts/cairo-font-latin-ext.woff2) format('woff2');
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
