:root {
    --primary-color: #c9752d;
    --secondry-color: #e6eef8;
    --tertiary-color: #f9f9f9;
    --link-color: #9b8bff;
}
.primary-color {
    background-color: var(--primary-color);
}
body {
    background-color: #eee;
    font-family: "Cairo", sans-serif;
}
[dir="ltr"] body {
    font-family: "Lato", sans-serif;
}
.main_body {
    background-color: #f1f1f1;
    padding-top: 6rem;
}
.sec-margin {
    margin-top: 20px;
    margin-bottom: 20px;
}

.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

/* font  */

.cairo-test {
    font-family: "Cairo", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings: "slnt" 0;
}
.lato-thin {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.lato-light {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.lato-regular {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.lato-bold {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.lato-black {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.lato-thin-italic {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.lato-light-italic {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.lato-regular-italic {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.lato-bold-italic {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.lato-black-italic {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: italic;
}

/* end of font  */
header {
    background: #ffffff4d;
    backdrop-filter: blur(4px);
}
.logo {
    height: 100%;
}

.tag {
    background-color: #c9752d;
    padding: 10px;
    text-decoration: none;
    margin: 2px;
}
#getStarted {
    background-color: var(--primary-color);
    width: 129px;
    height: 48px;
    border-radius: 4px;
    border: none !important;
}
#getStarted:hover {
    border: 1px solid white !important;
}
#dropdownMenuButton {
    border: 1px solid #2626266b;
}
#dropdownMenuService:active {
    border: none;
}
.show {
    border-color: transparent !important;
}
/* footer CSS */

.footer {
    background-color: #000;
    color: #fff;
    padding: 50px 0;
    margin-top: 20px;
}
.footer-logo {
    width: 146px;
    height: auto;
}
.footer a {
    text-decoration: none;
    color: #aaa;
}
.footer a:hover {
    color: #fff;
}
.footer-logo {
    font-weight: bold;
    color: #ffc107;
}
.social-icons a {
    font-size: 20px;
    margin-right: 10px;
    color: #aaa;
}
.social-icons a:hover {
    color: #fff;
}
/* pages css  */
.contact-btn {
    width: 226px;
    height: 56px;
    border-radius: 72px;
    padding-top: 14px;
    padding-right: 24px;
    padding-bottom: 14px;
    padding-left: 24px;
    background-color: #c9752d;
    color: white;
    box-shadow: 2px 4px 20px 2px #dfa558;
    border: 0;
}
.contact-btn:hover {
    background-color: #b76e29;
}
@media (max-width: 768px) {
    .getStartedPC {
        display: none !important;
    }
}

/* all articles */
.cat-header {
    text-align: center;
    padding: 3rem;
}

.cat-header h2 {
    font-weight: bold;
    font-size: 5rem;
    color: black;
}

.postImg {
    height: 234px;
    background-size: cover;

    background-position: center;
    background-repeat: no-repeat;
    border-radius: 5px;
}
.cat-link {
    text-decoration: none;
}
.cat-link:hover {
    text-decoration: underline;
}

/* category */
.cat-header {
    text-align: center;
    padding: 3rem;
}

.cat-header h1 {
    font-weight: bold;
    font-size: 5rem;
    color: black;
}

.div-img {
    overflow: hidden;
    position: relative;
}

.div-img .postImg {
    transition: transform 2s;
    height: 200px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.div-img:hover .postImg {
    transform: scale(1.2);
}

.article-category {
    position: absolute;
    background-color: white;
    top: 5%;
    left: 5%;
    border-radius: 15px;
    font-size: 0.8rem;
    padding: 4px;
    display: none;
    z-index: 5;
}

.div-img:hover .article-category {
    display: block;
}

.article-category a,
.card-title {
    text-decoration: none;
}

.article-category a:hover,
.card-title:hover {
    color: var(--link-color);
}
