*{
    outline: none !important;
    border: none;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    background-color: #fffbf5;
    position: fixed;
    width: 100%;
    padding: 30px 7%;
    z-index: 5;
}
a {
    text-decoration: none !important;
}

@media all and (max-width: 640px) {
    header {
        padding: 25px 7%;
    }
}

header h1 a {
    display: block;
    width: 80px;
}

@media all and (max-width: 1080px) {
    header h1 a {
        width: 70px;
    }
}

@media all and (max-width: 980px) {
    header h1 a {
        width: 60px;
    }
}

header nav ul {
    display: flex;
    gap: 40px;
}

@media all and (max-width: 980px) {
    header nav ul {
        gap: 30px;
    }
}

@media all and (max-width: 768px) {
    header nav ul {
        display: none;
    }
}

header nav ul li {
    position: relative;
}

header nav ul li a {
    font-size: 18px;
}

@media all and (max-width: 1080px) {
    header nav ul li a {
        font-size: 17px;
    }
}

@media all and (max-width: 980px) {
    header nav ul li a {
        font-size: 16px;
    }
}

@media all and (max-width: 980px) {
    header nav ul li a {
        font-size: 15px;
    }
}

header nav ul li::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 10px;
    background-color: #434343;
    bottom: 0;
    transition: 0.25s;
    left: 0;
}

header nav ul li:hover::after {
    width: 100%;
}

.rightHead {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rightHead button.contactUs {
    border: 1px solid #303030;
    padding: 12px 32px;
    font-size: 16px;
    transition: 0.5s;
}
.rightHead button.contactUs:hover {
    background-color: #303030;
    color: #ffffff;
}

@media all and (max-width: 1280px) {
    .rightHead button.contactUs {
        padding: 8px 20px;
    }
}

@media all and (max-width: 1080px) {
    .rightHead button.contactUs {
        font-size: 15px;
    }
}

@media all and (max-width: 980px) {
    .rightHead button.contactUs {
        padding: 6px 10px;
        font-size: 14px;
    }
}

#hamburger {
    display: none;
    cursor: pointer;
}

@media all and (max-width: 768px) {
    #hamburger {
        display: block;
    }
    .mobile{
        /* display: none; */
        margin-right: -30px;
    }
    .rightHead button.contactUs {
        display: none;
    }
}

#responsive-navbar {
    position: fixed;
    /* right: -100vw; */
    left: 0;
    top: 0;
    width: 100vw;
    /* height: 100vh; */
    background-color: #1a1919;
    transition: all 0.4s ease-in-out;
    opacity: 0;
    z-index: 10;
    pointer-events: none;
}

#responsive-navbar .close {
    width: 15px;
    display: block;
}

#responsive-navbar.active {
    /* right: 0; */
    pointer-events: unset;
    opacity: 1;
}

#responsive-navbar .modalTop {
    display: flex;
    justify-content: space-between;
    padding: 25px 7%;
    align-items: center;
    
}

#responsive-navbar .modalTop .whiteLogo {
    width: 60px;
    display: block;
}
#responsive-navbar .modalItems {
    display: flex;
    width: 200vw;
    /* justify-content: space-between; */
    padding: 2% 7.5%;
    transition: all 0.4s ease-in-out;
}
#responsive-navbar .modalItems.procedure{
    transform: translateX(-100vw);
}
#responsive-navbar .modalItems .leftModal {
    width: 100vw;
    margin-right: 90px;
    display: flex;
    flex-direction: column;
}
@media all and (max-width: 624px) {
    #responsive-navbar .modalItems .leftModal {
        margin-right: 65px;
    }
    #responsive-navbar .modalItems .rightModal ul li span {
        width: 8px !important;

    }
    #responsive-navbar .modalItems .rightModal ul li:first-child {
        gap: 12px !important;
    }
    #responsive-navbar .modalItems .rightModal ul li:first-child a {
        font-size: 18px !important;
    }
}

#responsive-navbar .modalItems .leftModal ul li {
    padding: 20px 0;
    border-bottom: 1px solid #2a2a29;
}
#responsive-navbar .modalItems .leftModal ul li:nth-child(4) {
    display: flex;
    justify-content: space-between;
}
#responsive-navbar .modalItems .leftModal ul li #procedure {
    cursor: pointer;
}
#responsive-navbar .modalItems .leftModal ul li a,#procedure {
    color: #f5f3f1;
    font-family: "SatoshiRegular";
    font-size: 16px;
}
#responsive-navbar .modalItems .rightModal {
    width: 100vw;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}
#responsive-navbar .modalItems .rightModal ul li {
    padding: 20px 0;
    border-bottom: 1px solid #2a2a29;
}
#responsive-navbar .modalItems .rightModal ul li .rightModalHead {
    cursor: pointer;
}
#responsive-navbar .modalItems .rightModal ul li a,.rightModalHead {
    color: #dbd9d8;
    font-family: "SatoshiRegular";
    font-size: 16px;
}
#responsive-navbar .modalItems .rightModal ul li:first-child {
    display: flex;
    /* justify-content: space-between; */
    gap: 20px;
    align-items: center;
}
#responsive-navbar .modalItems .rightModal ul li:first-child a {
    font-size: 24px;
}
#responsive-navbar .modalTop .close {
    width: 24px;
    display: block;
    cursor: pointer;
}

@media all and (max-width: 640px) {
    #responsive-navbar .modalItems .leftModal ul li {
        padding: 15px 0;
    }
    #responsive-navbar .modalItems .rightModal ul li {
        padding: 15px 0;
    }
    #responsive-navbar .modalTop .whiteLogo {
        width: 50px;
    }
}

#spotlight {
    background-image: url("assets/images/spotlight-background.png");
    margin: 0 4%;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 80px 0;
    background-position: center;
}

@media all and (max-width: 980px) {
    #spotlight {
        padding: 60px 0;
    }
}

@media all and (max-width: 640px) {
    #spotlight {
        padding: 50px 0;
    }
}

#spotlight .container {
    padding-top: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

@media all and (max-width: 980px) {
    #spotlight .container {
        justify-content: center;
    }
}

@media all and (max-width: 980px) {
    #spotlight .container {
        padding-top: 80px;
    }
}

@media all and (max-width: 640px) {
    #spotlight .container {
        padding-top: 60px;
    }
}

#spotlight .container .left {
    width: 55%;
}

@media all and (max-width: 980px) {
    #spotlight .container .left {
        width: 100%;
    }
}

#spotlight .container .left .miniTitle {
    font-size: 25px;
    color: #757473;
    font-family: "SatoshiRegular";
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

@media all and (max-width: 1280px) {
    #spotlight .container .left .miniTitle {
        margin-bottom: 30px;
        font-size: 23px;
    }
}

@media all and (max-width: 1080px) {
    #spotlight .container .left .miniTitle {
        font-size: 21px;
        margin-bottom: 25px;
    }
}

@media all and (max-width: 980px) {
    #spotlight .container .left .miniTitle {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

#spotlight .container .left .miniTitle span {
    font-family: "SatoshiMedium";
    color: #757473;
}

#spotlight .container .left .miniTitle span.line {
    content: "";
    width: 70px;
    height: 1.5px;
    background-color: #b69a69;
    margin-left: 15px;
}

@media all and (max-width: 1280px) {
    #spotlight .container .left .miniTitle span.line {
        width: 60px;
    }
}

@media all and (max-width: 1080px) {
    #spotlight .container .left .miniTitle span.line {
        width: 40px;
        margin-left: 10px;
    }
}

@media all and (max-width: 980px) {
    #spotlight .container .left .miniTitle span.line {
        width: 25px;
        margin-left: 10px;
    }
}

#spotlight .container .left h2 {
    color: #1a1919;
    font-family: "SatoshiMedium";
    font-size: 50px;
    margin-bottom: 40px;
}

@media all and (max-width: 1280px) {
    #spotlight .container .left h2 {
        font-size: 45px;
    }
}

@media all and (max-width: 1080px) {
    #spotlight .container .left h2 {
        font-size: 40px;
        margin-bottom: 30px;
    }
}

@media all and (max-width: 980px) {
    #spotlight .container .left h2 {
        font-size: 35px;
        margin-bottom: 20px;
    }
}

#spotlight .container .left h2 span {
    color: #d1ae71;
}

#spotlight .container .left .description {
    color: #2a2a29;
    font-size: 20px;
    line-height: 29px;
    margin-bottom: 0;
}

@media all and (max-width: 1280px) {
    #spotlight .container .left .description {
        font-size: 18px;
    }
}

@media all and (max-width: 1080px) {
    #spotlight .container .left .description {
        font-size: 17px;
        line-height: 26px;
    }
}

@media all and (max-width: 980px) {
    #spotlight .container .left .description {
        line-height: 24px;
    }
}

#spotlight .container .left button.schedule {
    border: 1px solid #2a2a29;
    background-color: #2a2a29;
    color: #fffbf5;
    padding: 15px 18px;
    text-align: center;
    width: 260px;
    margin: 52px 0;
    transition: 0.25s;
}

@media all and (max-width: 1280px) {
    #spotlight .container .left button.schedule {
        margin: 40px 0;
        padding: 15px 10px;
        
    }
}

@media all and (max-width: 1080px) {
    #spotlight .container .left button.schedule {
        width: 200px;
        padding: 10px;
        margin: 25px 0;
        width: 225px;
        font-size: 14px;
    }
}

@media all and (max-width: 980px) {
    #spotlight .container .left button.schedule {
        /* width: 200px; */
        padding: 10px 7px;
        margin: 25px 0;
    }
}

#spotlight .container .left button.schedule .whileHovering {
    color: #2a2a29;
    display: none;
}

#spotlight .container .left button.schedule:hover {
    border: 1px solid #2a2a29;
    background-color: transparent;
}

#spotlight .container .left button.schedule:hover .withoutHover {
    display: none;
}

#spotlight .container .left button.schedule:hover .whileHovering {
    display: block;
}

#spotlight .container .left ul {
    display: flex;
    gap: 25px;
}

@media all and (max-width: 1280px) {
    #spotlight .container .left ul {
        gap: 22px;
    }
}

@media all and (max-width: 1080px) {
    #spotlight .container .left ul {
        gap: 20px;
    }
}

@media all and (max-width: 980px) {
    #spotlight .container .left ul {
        gap: 15px;
    }
}

#spotlight .container .left ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

@media all and (max-width: 1280px) {
    #spotlight .container .left ul li {
        font-size: 14px;
        gap: 6px;
    }
}

@media all and (max-width: 980px) {
    #spotlight .container .left ul li {
        gap: 5px;
    }
}

#spotlight .container .left ul li span {
    width: 22px;
}

@media all and (max-width: 1280px) {
    #spotlight .container .left ul li span {
        width: 20px;
    }
}

#spotlight .container .right {
    width: 35%;
}

@media all and (max-width: 980px) {
    #spotlight .container .right {
        /* width: 60%;
        margin-top: 50px; */
        display: none;
    }
}

@media all and (max-width: 980px) {
    #spotlight .container .right {
        margin-top: 40px;
    }
}

@media all and (max-width: 640px) {
    #spotlight .container .left .miniTitle {
        font-size: 17px;
    }
    #spotlight .container .left h2 {
        font-size: 30px;
    }
    #spotlight .container .left .description {
        font-size: 15px;
    }
    #spotlight .container .left ul {
        gap: 20px;
        flex-direction: column;
    }
    #spotlight .container .left ul li {
        gap: 2px;
    }
    #spotlight .container .right {
        width: 80%;
    }
}

@media all and (max-width: 640px) {
    header h1 a {
        width: 50px;
    }
    #spotlight .container .left ul {
        font-size: 25px;
        gap: 15px;
    }
    #spotlight .container {
        padding: 60px 0 0 0 ;
    }
    #spotlight .container .left .schedule {
        margin: 20px 0;
    }
}

@media all and (max-width: 480px) {
    #spotlight .container .left h2 {
        font-size: 25px;
    }
    #spotlight .container .left .description {
        font-size: 14px;
    }
    #spotlight .container .right {
        margin-top: 25px;
    }
}
#aboutUs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 0;
}
#aboutUs .left {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#aboutUs .left span {
    display: block;
    width: 270px;
}
#aboutUs .right {
    width: 50%;
}
#aboutUs .right .miniTitle {
    font-size: 25px;
    color: #757575;
    font-family: "SatoshiRegular";
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}
#aboutUs .right .miniTitle span.line {
    content: "";
    width: 70px;
    height: 1.5px;
    background-color: #f0cf96;
    margin-left: 15px;
}
#aboutUs .right h3 {
    color: #1a1919;
    font-family: "SatoshiMedium";
    font-size: 50px;
    margin-bottom: 40px;
}
#aboutUs .right h3 span {
    color: #d1ae71;
}

#aboutUs .right .description {
    color: #2a2a29;
    font-size: 20px;
    line-height: 29px;
    margin-bottom: 50px;
}
#aboutUs .right .description span {
    font-family: "SatoshiBold";
}
#aboutUs .right .count {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

#aboutUs .right .count .border {
    position: relative;
    padding: 0 10%;
    border: none !important;
}

#aboutUs .right .count .border::after {
    content: "";
    width: 1px;
    height: 15px;
    background-color: #e1ceac;
    display: flex;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(-50%, -50%);
}
#aboutUs .right .count .border::before {
    content: "";
    width: 1px;
    height: 15px;
    background-color: #e1ceac;
    display: flex;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
}
#aboutUs .right .count .card {
    z-index: -1;
    border: none;
}

#aboutUs .right .count .card .number {
    font-size: 25px;
    font-family: "SatoshiMedium";
}
#aboutUs .right .count .card .title {
    color: #636363;
    margin-top: 5px;
}
@media all and (max-width: 1280px) {
    #aboutUs .right .miniTitle {
        margin-bottom: 30px;
        font-size: 23px;
    }
    #aboutUs .right h3 {
        font-size: 45px;
    }
    #aboutUs .right .description {
        font-size: 18px;
    }
}
@media all and (max-width: 1080px) {
    #aboutUs {
        padding: 80px 0;
    }
    #aboutUs .left span {
        width: 230px;
    }
    #aboutUs .right .miniTitle {
        font-size: 18px;
        margin-bottom: 25px;
    }
    #aboutUs .right .miniTitle span.line {
        width: 40px;
        margin-left: 10px;
    }
    #aboutUs .right h3 {
        font-size: 40px;
        margin-bottom: 20px;
    }
    #aboutUs .right .description {
        font-size: 17px;
        line-height: 26px;
        margin-bottom: 40px;
    }
    #aboutUs .right .count .card .number {
        font-size: 20px;
    }
    #aboutUs .right .count .card .title {
        font-size: 14px;
    }
    #aboutUs .right .count .border {
        padding: 0 6%;
        
    }
}
@media all and (max-width: 980px) {
    #aboutUs {
        flex-wrap: wrap;
        justify-content: center;
    }
    #aboutUs .left {
        width: 100%;
    }
    #aboutUs .right {
        width: 100%;
        margin-top: 30px;
    }
    #aboutUs .right .description {
        line-height: 24px;
        margin-bottom: 25px;
    }
    #aboutUs .right .count .border {
        padding: 0 14%;
    }
    #aboutUs .right .miniTitle span.line {
        width: 25px;
        margin-left: 10px;
    }
}

@media all and (max-width: 768px) {
    #aboutUs .right h3 {
        font-size: 35px;
    }
}

@media all and (max-width: 680px) {
    #aboutUs .right .count .border {
        padding: 20px 0;
        margin: 20px 0;
    }
    #aboutUs .right .count .border::before, #aboutUs .right .count .border::after{
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        transform: none ;
    }
    #aboutUs .right .count .border::after{
        bottom: 0;
        top: unset;
    }
}
@media all and (max-width: 640px) {
    #aboutUs {
        padding: 50px 0 38px;
    }
    #aboutUs .left span {
        width: 180px;
    }
    #aboutUs .right .miniTitle {
        margin-bottom: 20px;
    }
    #aboutUs .right h3 {
        font-size: 30px;
    }
    #aboutUs .right .description {
        font-size: 15px;
    }
    #aboutUs .right .count .border {
        /* padding: 0 10%; */
    }
    #aboutUs .right .count .card .number {
        font-size: 17px;
    }
    #aboutUs .right .count .card .title {
        margin-top: 2px;
    }
    #aboutUs .right .count{
        flex-wrap: wrap;
    }
    #aboutUs .right .count .card.border{

    }
    #aboutUs .right .count .card {
        width: 100%;
    }
}
@media all and (max-width: 580px) {
    #aboutUs .right .count .border {
        /* padding: 0 8%; */
    }
}
@media all and (max-width: 480px) {
    #aboutUs .right .count .border {
        /* padding: 0 6%; */
    }
    #aboutUs .right h3 {
        font-size: 25px;
    }
    #aboutUs .right .description {
        font-size: 14px;
    }
    #aboutUs .left span {
        width: 150px;
    }
}

#topRated {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 0;
    border-top: 1px solid #d7d7d7;
    flex-wrap: wrap;
}
#topRated .left {
    width: 44%;
}
#topRated > .right {
    width: 50%;
}
#topRated > .right h3 {
    color: #1a1919;
    font-family: "SatoshiMedium";
    font-size: 50px;
    margin-bottom: 40px;
}
#topRated > .right h3 span {
    color: #d1ae71;
}
#topRated > .right .details .name {
    font-family: "SatoshiMedium";
    font-size: 32px;
    color: #d1ae71;
}
#topRated > .right .details .qualification {
    font-family: "SatoshiMedium";
    color: #2a2a29;
    width: 35%;
    font-size: 16px;
    margin-top: 5px;
    margin-bottom: 40px;
}

#topRated > .right .details ul li {
    display: flex;
    /* flex-wrap: wrap; */
    align-items: flex-start;
    margin-bottom: 18px;
    font-size: 17px;
}
#topRated > .right .details ul li .right{
    flex: 1;
}
#topRated > .right .details ul li .right *{
    display: contents;
}
#topRated > .right .details ul li .right span {
    font-family: SatoshiBold;
    /* display: inline-flex; */
}
#topRated > .right .details ul li .arrow {
    width: 12px;
    margin-right: 15px;
    display: flex;
    margin: 4px 15px 0 0;
}

@media all and (max-width: 1280px) {
    #topRated > .right h3 {
        font-size: 40px;
    }
    #topRated > .right .details .name {
        font-size: 28px;
    }
    #topRated > .right .details .qualification {
        width: 50%;
        font-size: 15px;
        margin-bottom: 25px;
    }
    #topRated > .right .details ul li {
        font-size: 16px;
        margin-bottom: 10px;
    }
}

@media all and (max-width: 1080px) {
    #topRated {
        padding: 80px 0;
    }
    #topRated > .right h3 {
        font-size: 40px;
        margin-bottom: 20px;
    }
    #topRated > .right .details .name {
        font-size: 26px;
    }
    #topRated > .right .details .qualification {
        font-size: 15px;
        margin-bottom: 20px;
    }
    #topRated > .right .details ul li {
        font-size: 15px;
        margin-bottom: 10px;
    }
}
@media all and (max-width: 980px) {
    #topRated {
        justify-content: center;
        padding: 80px 0;
    }
    #topRated .left {
        width: 50%;
    }
    #topRated > .right {
        width: 100%;
        margin-top: 30px;
    }
    #topRated > .right .details .name {
        font-size: 22px;
    }
    #topRated > .right .details .qualification {
        width: 40%;
    }
}
@media all and (max-width: 768px) {
    #topRated > .right h3 {
        font-size: 35px;
    }
    #topRated > .right .details .qualification {
        width: 50%;
    }
}

@media all and (max-width: 640px) {
    #topRated {
        padding: 50px 0;
    }
    #topRated > .right h3 {
        font-size: 30px;
    }
    #topRated > .right .details .name {
        font-size: 22px;
    }
    #topRated > .right .details .qualification {
        font-size: 14px;
        margin-bottom: 20px;
        width: 70%;
    }
}
@media all and (max-width: 480px) {
    #topRated .left {
        width: 80%;
    }
    #topRated > .right h3 {
        font-size: 25px;
    }
    #topRated > .right .details .name {
        font-size: 20px;
    }
}

#solutions {
    background-color: #1a1919;
    padding: 100px 0;
}
#solutions .container{
    padding: 0;
}
#solutions .container .top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
#solutions .container .top h5 {
    color: #fffbf5;
    font-family: "SatoshiMedium";
    font-size: 50px;
    margin-bottom: 40px;
    width: 35%;
}
#solutions .container .top h5 span {
    color: #f0cf96;
}
#solutions .container .top .services {
    width: 50%;
}
#solutions .container .top .services h6 {
    color: #fffbf5;
    font-size: 30px;
    border-bottom: 1px solid #f0cf96;
    width: 40%;
    padding-bottom: 5px;
    margin-bottom: 25px;
    font-family: "SatoshiMedium";
}
#solutions .container .top .services .description {
    color: #dbd9d8;
    width: 70%;
    font-size: 20px;
}

#solutions .container .bottom {
    display: flex;
    align-items: center;
    flex-direction: column;
}

#solutions .container .bottom .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
#solutions .container .bottom .card {
    padding: 40px;
    transition: 0.5s;
    cursor: default;
    background-color: transparent;
    border: none;
}
#solutions .container .bottom .card:hover {
    background-color: #2a2a29;
}
#solutions .container .bottom .rightBorder {
    border-right: 1px solid #464646;
}
#solutions .container .bottom .bottomBorder {
    border-bottom: 1px solid #464646;
}
#solutions .container .bottom .card .cardTop {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
#solutions .container .bottom .card .cardTop .icon {
    width: 38px;
}
#solutions .container .bottom .card .cardTop .title {
    color: #f0cf96;
    font-size: 26px;
}
#solutions .container .bottom .card .description {
    color: #fffbf5;
    font-size: 18px;
    margin-bottom: 20px;
}
#solutions .container .bottom .card a {
    display: flex;
    align-items: center;
    color: #fceccf;
    gap: 10px;
    font-size: 16px;
    position: relative;
    width: max-content;
    padding-bottom: 2px;
}
#solutions .container .bottom .card a::after {
    content: "";
    height: 1px;
    width: 100%;
    background-color: #d1ae71;
    position: absolute;
    bottom: 0;
    opacity: 0;
    transition: 0.5s;
}
#solutions .container .bottom .card a:hover::after {
    opacity: 1;
}
#solutions .container .bottom .card a span {
    width: 12px;
}
#solutions .container .bottom .viewAll {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    margin-top: 60px;
    transition: 0.5s;
    width: max-content;
}
#solutions .container .bottom .viewAll:hover {
    gap: 15px;
}
#solutions .container .bottom .viewAll span {
    width: 20px;
}

@media all and (max-width: 1368px) {
    #solutions .container .bottom .card {
        padding: 30px;
    }
}
@media all and (max-width: 1297px) {
    #solutions .container .bottom .card {
        padding: 25px;
    }
}
@media all and (max-width: 1263px) {
    #solutions .container .bottom .card .cardTop .title {
        font-size: 23px;
    }
    #solutions .container .bottom .card .cardTop .icon {
        width: 30px;
    }
    #solutions .container .bottom .card .description {
        font-size: 16px;
    }
    #solutions .container .bottom .card a {
        gap: 12px;
        font-size: 15px;
    }
    #solutions .container .bottom .card a span {
        width: 12px;
    }
}
@media all and (max-width: 1280px) {
    #solutions .container .top {
        margin-bottom: 30px;
    }
    #solutions .container .top h5 {
        font-size: 40px;
    }
    #solutions .container .top .services {
    }
    #solutions .container .top .services h6 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    #solutions .container .top .services .description {
        font-size: 18px;
        width: 80%;
    }
    #solutions .container .bottom .viewAll {
        margin-top: 40px;
        font-size: 15px;
    }
    #solutions .container .bottom .viewAll span {
        width: 16px;
    }
}
@media all and (max-width: 1130px) {
    #solutions .container .bottom .card .cardTop .icon {
        width: 25px;
    }
    #solutions .container .bottom .card .cardTop .title {
        font-size: 20px;
    }
    #solutions .container .bottom .card .description {
        font-size: 15px;
    }
}
@media all and (max-width: 1080px) {
    #solutions .container .top h5 {
        font-size: 40px;
        margin-bottom: 30px;
    }
}
@media all and (max-width: 980px) {
    #Solutions {
        padding: 80px 0;
    }
    #solutions .container .top {
        flex-wrap: wrap;
    }
    #solutions .container .top h5 {
        width: 100%;
    }
    #solutions .container .top .services {
        width: 100%;
    }
    #solutions .container .bottom .cards {
        grid-template-columns: repeat(2, 1fr);
    }
    #solutions .container .bottom .cards .card {
        border: 1px solid #464646;
    }
}
@media all and (max-width: 768px) {
    #solutions .container .top h5 {
        font-size: 35px;
    }
    #solutions .container .top .services h6 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    #solutions .container .top .services .description {
        font-size: 16px;
    }
    #solutions .container .bottom .cards .card {
        padding: 25px 20px;
    }
}
@media all and (max-width: 640px) {
    #solutions {
        padding: 50px 0;
    }
    #solutions .container .top h5 {
        font-size: 30px;
        margin-bottom: 20px;
    }
    #solutions .container .top .services .description {
        font-size: 15px;
    }
    #solutions .container .bottom .cards {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media all and (max-width: 480px) {
    #solutions .container .top h5 {
        font-size: 25px;
    }
    #solutions .container .top .services h6 {
        font-size: 19px;
    }
    #solutions .container .top .services .description {
        font-size: 14px;
    }
    #solutions .container .bottom .card .cardTop .icon {
        width: 20px;
    }
    #solutions .container .bottom .card .cardTop .title {
        font-size: 20px;
    }
    #solutions .container .bottom .card .description {
        font-size: 14px;
    }
    #solutions .container .bottom .card a {
        font-size: 14px;
        gap: 5px;
    }
    #solutions .container .bottom .card a span {
        width: 10px;
    }
    #solutions .container .bottom .viewAll {
        margin-top: 28px;
        font-size: 14px;
        gap: 5px;
    }
    #solutions .container .bottom .viewAll span {
        width: 13px;
    }
}

.floatingContact {
    position: fixed;
    right: -200px;
    width: 275px;
    background-color: #ffffffb2;
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 10px 12px;
    transition: 0.75s;
    cursor: pointer;
    z-index: 2;
}
.whatsapp {
    bottom: 35%;
}
.saudi {
    bottom: 25%;
}
.qatar {
    bottom: 15%;
}
.floatingContact:hover {
    right: 0;
}
.floatingContact .icon {
    width: 40px;
}
.floatingContact .number {
    font-size: 18px;
    font-family: "SatoshiMedium";
    margin-bottom: 0;
}

@media all and (max-width: 1080px) {
    .floatingContact .icon {
        width: 30px;
    }
    .floatingContact {
        width: 220px;
        right: -160px;
    }
    .floatingContact .number {
        font-size: 16px;
    }
}
