:root {
    --colorPrimary: #00838F;
    --colorPrimaryDark: #005256;
    --colorPrimaryLight: #BDE2E4;
    --colorError: #BF5C5C;
    --colorAccent: #EA5B57;
}

@font-face {
    font-family: Poppins;
    src: url("/website/assets/fonts/Poppins-Regular.ttf");
}

/*
*  Yekan Bakh is deemed proprietary by Fontiran.
*  For details on the legalities about the usage of these fonts, refer to www.fontiran.com.
*  The license code AM2G6BSD permits the utilization of this font set in the current project.
*/
@font-face {
    font-family: YekanBakh;
    src: url("/website/assets/fonts/YekanBakh-Regular.ttf");
}

.banner {
    background-color: var(--colorPrimary);
    padding-top: 100px;
    padding-bottom: 40px;
}

.logo {
    width: 50%;
    max-width: 300px;
}

.mockup1 {
    width: 50%;
}

.shot-image {
    width: 70%;
    margin-top: 10%;
    border-radius: 20px;
}

.shot-text {
    font-size: 16px;
    margin-top: 5%;
    margin-left: 15%;
    margin-right: 15%;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 5%;
    padding-bottom: 5%;
    background-color: var(--colorPrimaryLight);
    color: var(--colorPrimaryDark);
    border-radius: 20px;
}

.justified-text {
    text-align: justify;
}

.rtl-text {
    direction: rtl;
}

.button-1 {
    font-size: 15px;
    color: #FFFFFF;
    border: 1px;
    border-color: #FFFFFF;
    border-style: solid;
    border-radius: 25px;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;
}

.button-2 {
    font-size: 15px;
    color: #FFFFFF;
    border: 1px;
    background-color: var(--colorPrimary);
    border-style: solid;
    border-radius: 25px;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;
}

.contact-info {
    padding-top: 30px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-top: 50px;
    margin-bottom: 0px;
    background-color: var(--colorPrimaryLight);
    text-align: center;
}

.contact-info a {
    color: var(--colorPrimaryDark);
}

.contact-info a:hover {
    color: var(--colorPrimary);
}

.contact-info p {
    color: var(--colorPrimaryDark);
}

.contact-info i {
    margin-right: 10px;
    font-size: 18px;
}

.footer {
    background-color: var(--colorPrimary);
    padding-top: 25px;
    padding-bottom: 10px;
    padding-left: 0px;
    padding-right: 0px;
}

.copy-right {
    font-size: 14px;
}