@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    font-family: 'Nunito', 'Tajawal', sans-serif;
}

a{
    color: #4054b2;
    text-decoration: none;
}
.boxed-image{
    object-fit: cover;
    aspect-ratio: 1 / 1;
    object-position: center;
}

#main-content{
    margin-top: -150px
}

@media (max-width: 992px) {
    #main-content{
        margin-top: -100px
    }
}

@media (max-width: 768px) {
    #main-content{
        margin-top: -70px
    }
}

.header-title{
    font-size: 2rem !important;
}

@media (min-width: 992px) {
    .header-title {
        font-size: 4rem !important;
    }
}
.grid-box{
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
}

/**/
.pointer{
    cursor: pointer;
}

iframe, video{
    max-width: 100%;
    border: 1px solid #ccc;
}


.percent-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: #fff;
    position: relative;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #095c92;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #2d4095;
}