@import url(styles.css);

/* Start Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

@font-face {
    font-family: 'Verdana';
    src: url('../fonts/Verdana.ttf');
}

@font-face {
    font-family: 'Verdana-Bold';
    src: url('../fonts/Verdana-Bold.ttf');
}

@font-face {
    font-family: 'bahij';
    src: url('../fonts/bahij_helvetica_neue_roman.ttf');
}

/* End Fonts */

:root {
    --main-color: #347BBD;
    --sec-color: #0F2245;
    --dark-color: #021424;
    --bg-color: #F8F8F8;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #000;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:hover {
    text-decoration: none;
    color: var(--sec-color);
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:focus {
    text-decoration: none;
    /* color: inherit; */
}

button,
button:hover {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

body {
    padding: 0;
    margin: 0;
    font-family: 'Verdana';
    background: #fff;
    text-align: start;
}

section,
footer {
    overflow: hidden;
    position: relative;
}

p {
    margin: 0;
    font-size: 15px;
    line-height: 25px;
}

ul {
    padding: 0;
    margin: 0;
    display: block;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

li {
    display: block;
    list-style: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

iframe {
    width: 100%;
    height: 100%;
}

.padding {
    padding: 0 !important;
}

img {
    max-width: 100%;
}

input,
button,
input:focus,
button:focus,
input:active,
button:active,
button:hover,
textarea:active,
textarea:focus,
select,
select:active,
select:focus {
    outline: none !important;
}

textarea {
    resize: none;
}

main {
    /* overflow: hidden; */
    /* position: relative; */
    /* min-height: 100vh; */
}

.owl-carousel {
    direction: ltr;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: capitalize;
}

/* Start Sidebar */

.cursor {
    opacity: 0;
    transition: all .5s;
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    padding: 30px;
    padding-top: 30.1px;
    padding-bottom: 53.1px;
    z-index: -1;
    opacity: 0;
    transition: all .3s;
    background: var(--dark-color);
    visibility: hidden;
    /* transform: scaleY(0) translateY(-100%); */
    right: -100%;
}

.menu-backdrop {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -10;
    opacity: 0;
    transition: all .3s;
}

.mobile-menu .menu-box {
    position: relative;
    z-index: 2;
    height: calc(100% - 18%);
    /* display: flex; */
    /* align-items: center; */
    /* -webkit-align-items: center; */
}

.mobile-menu .menu-box .navigation li {
    margin: 0 0 30px;
    /* text-align: center; */
}

.mobile-menu .menu-box .navigation li a {
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #f0f0f0;
}

.menu-right {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 37px;
}

body.mobile-menu-visible .mobile-menu {
    right: 0;
    opacity: 1;
    z-index: 999999;
    visibility: visible;
    /* transform: none; */
}

/* End Sidebar */

/* Start Header */

.header-med .head-inner ul {
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    /* margin-top: 27px; */
    gap: 40px;
}

header.sticky {
    position: absolute;
    z-index: 9;
    left: 0;
    right: 0;
    padding: 34px 0;
    /* background: #0000001A; */
    /* overflow: hidden; */
    top: 0;
}

.header-med .head-inner .logo a {
    display: block;
    max-width: 63px;
}

.close-btn {
    color: #fff;
    display: table;
    margin: 0 0 30px;
    margin-inline-start: auto;
    font-size: 18px;
    cursor: pointer;
    width: 40.37px;
    height: 40.37px;
    border-radius: 50%;
    border: 0.47px solid #FFFFFF;
    line-height: 40.37px;
    text-align: center;
}

.menu-right .mobile-nav-toggler .lines {
    display: block;
    width: 53px;
    overflow: hidden;
}

.menu-right .mobile-nav-toggler .lines i {
    display: block;
    width: 53px;
    height: 4px;
    margin: 6.5px 0;
    transition: all .5s;
    position: relative;
    overflow: hidden;
}

.menu-right .mobile-nav-toggler .lines ::after,
.menu-right .mobile-nav-toggler .lines ::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: #fff;
    transition: all .5s;
    top: 0;
}

.menu-right .mobile-nav-toggler .lines ::after {
    transform: translateX(-50px);
    transition: all .3s;
}

.menu-right .mobile-nav-toggler:hover .lines ::after {
    transform: none;
}

.menu-right .mobile-nav-toggler:hover .lines ::before {
    transform: translateX(50px);
}

.menu-right .mobile-nav-toggler .lines .line2::after {
    transition: all .5s;
}

.menu-right .mobile-nav-toggler .lines .line3::after {
    transition: all .7s;
}

.menu-right .mobile-nav-toggler .lines i:nth-child(1),
.menu-right .mobile-nav-toggler .lines i:nth-child(3) {
    width: 25px;
}

.menu-right .mobile-nav-toggler .lines i:nth-child(1) {
    margin-inline-start: auto;
}

.lang-h {
    color: #FFFFFF;
    font-family: 'bahij';
    font-size: 16px;
    font-weight: 400;
    line-height: 25.66px;
}

.overlay-img {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.overlay-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.navbar-collapse {
    /* display: flex; */
    flex-wrap: wrap;
    justify-content: space-between;
    /* max-height: 100%; */
    /* overflow-y: auto; */
}

.navbar-collapse .navigation {
    width: 50%;
    flex: 0 0 auto;
}

.mobile-menu .menu-box .navigation li a:hover {
    color: #fff;
    text-decoration: underline;
}

.mobile-menu .menu-box .navigation li:last-child {
    margin: 0;
}

.mobile-menu .menu-box .menu-outer {
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
}

.flex-h {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.logo a {
    display: block;
    text-align: center;
}

.logo a img {
    max-height: 277.78px;
}

header .flex-h {
    margin-top: 84px;
}

.header-med .head-inner ul li a {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 19.45px;
    text-decoration: none;
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    padding: 20px 0;
}


.head-inner {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    -webkit-align-items: center;
}

.logo-h {
    max-width: 167.16px;
    width: 100%;
    margin-inline-end: 47px;
}

.logo-h a {
    display: block;
    width: 100%;
}

.header-med .head-inner ul li {
    position: relative;
}

.header-med .head-inner ul li.current-menu-item a,
.header-med .head-inner ul li a:hover,
.header-med .head-inner ul li .sub-menu li a:hover {
    color: var(--main-color);
}

.header-med .head-inner ul li.menu-item-has-children>a::after {
    content: "\f107";
    font-family: 'Font Awesome 6 Pro';
    margin-inline-start: 5px;
    transition: all .4s;
    position: relative;
    display: inline-block;
}

.header-med .head-inner ul li .sub-menu {
    min-width: 276px;
    position: absolute;
    top: 100%;
    right: 0;
    display: block;
    background: #fff;
    box-shadow: 0px 4.39px 39.47px 0px #4F4F4F1F;
    border-radius: 8px;
    padding: 17px;
    visibility: hidden;
    z-index: 99;
    transform: scale(1, 0);
    transform-origin: 0 0;
    transition: all 0.3s ease-out 0s;
    margin: 0;
}

.header-med .head-inner ul li .sub-menu li a {
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
    padding: 11px 0;
    display: block;
    color: var(--dark-color);
    border-bottom: 1px solid #F2F2F2;
}

.header-med .head-inner ul li .sub-menu li:first-child a {
    padding-top: 0;
}

.header-med .head-inner ul li .sub-menu li:last-child a {
    padding-bottom: 0;
    border: none;
}

.header-med .head-inner ul li:hover .sub-menu {
    transform: scale(1, 1);
    opacity: 1;
    visibility: visible;
}

.header-med .head-inner ul li.menu-item-has-children>a:hover::after {
    transform: rotate(180deg);
}

.head-inner .menu-left {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 39px;
    margin-inline-start: auto;
}

.lang-h:hover {
    color: #fff;
}

.mobile-nav-toggler .lines {
    display: block;
    width: 35px;
    overflow: hidden;
}

.mobile-nav-toggler .lines i {
    display: block;
    width: 53px;
    height: 4px;
    margin: 6.5px 0;
    transition: all .5s;
    position: relative;
    overflow: hidden;
}

.mobile-nav-toggler .lines ::after,
.mobile-nav-toggler .lines ::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--main-color);
    transition: all .5s;
    top: 0;
}

.mobile-nav-toggler .lines ::after {
    transform: translateX(-50px);
    transition: all .3s;
}

.mobile-nav-toggler:hover .lines ::after {
    transform: none;
}

.mobile-nav-toggler:hover .lines ::before {
    transform: translateX(50px);
}

.mobile-nav-toggler .lines .line2::after {
    transition: all .5s;
}

.mobile-nav-toggler .lines .line3::after {
    transition: all .7s;
}

.mobile-nav-toggler .lines i:nth-child(1),
.mobile-nav-toggler .lines i:nth-child(3) {
    width: 25px;
}

.mobile-nav-toggler .lines i:nth-child(1) {
    margin-inline-start: auto;
}

.item.res-menu {
    display: none;
}

body.mobile-menu-visible {
    overflow: hidden;
}

.btn-mobile {
    margin-top: 30px;
}

.btn {
    outline: none;
    position: relative;
    border: 1px transparent solid;
    padding: 18px 27px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    min-width: 237.19px;
    background: var(--main-color);
    min-height: 55px;
    border-radius: 50px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Verdana-Bold';
    font-size: 18px;
    line-height: 21.88px;
    box-shadow: none !important;
}

.btn:hover {
    cursor: pointer
}

.btn:hover:before {
    opacity: 1;
    transform: translate(0, 0);
}

.btn:before {
    content: attr(data-hover);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translate(0, -100%);
    transition: all .3s ease-in-out;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    color: var(--main-color);
}

.btn span {
    /* text-transform: uppercase; */
    /* letter-spacing: 3px; */
    /* font-weight: 800; */
    /* font-size: .8em; */
    transition: all .3s ease-in-out;
}

.btn:hover span {
    opacity: 0;
    transform: translate(0, 100%);
}

header .btn {
    font-size: 15px;
    line-height: 18.23px;
}

/* End Header */

/* Start Banner-h */

.banner-h .row {
    padding: 291px 0 213px;
    min-height: 768px;
    height: 100%;
}

.btn:hover, .btn-check:focus+.btn-success, .btn-success:focus {
    color: var(--main-color);
    background: transparent;
    border-color: var(--main-color);
}

.lang-h u {
    text-decoration: none;
}

.banner-block {
    position: relative;
    height: 100%;
}

.banner-block .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #4E74B9;
    z-index: -3;
    mix-blend-mode: color;
}

.banner-block .overlay-img {
    background: var(--dark-color);
}

.banner-block .overlay-img img {
    opacity: 0.1;
    mix-blend-mode: luminosity;
    position: relative;
    /* z-index: 3; */
}

.banner-block .text-banner {
    max-width: 625px;
    margin: 0 auto;
    text-align: center;
}

.banner-block .text-banner h1 {
    font-family: 'Verdana-Bold';
    font-size: 51.51px;
    color: #fff;
    line-height: 72.3px;
    margin-bottom: 63px;
    transition: all .4s ease-in-out;
    transform: translateY(-100%);
    opacity: 0;
    transition-delay: .3s;
}

.btn-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-align-items: center;
    gap: 15.88px;
    /* transition-delay: .4s; */
}

.playIcon {
    width: 48.72px;
    height: 48.72px;
}

.playIcon i {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 0.62px solid #646464;
    color: #fff;
    font-size: 13.13px;
    font-weight: 900;
    line-height: 22.15px;
    transition: all .4s;
}

.playIcon i:hover {
    background: #fff;
    color: var(--main-color);
    border-color: var(--main-color);
}

.banner-h .slick-dots {
    bottom: 75px;
}

.banner-h .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}

.banner-h .slick-dots li button {
    width: 9.56px;
    height: 9.56px;
    background: #D9D9D9;
    border-radius: 50%;
    margin: 0 3px;
}

.banner-h .slick-dots li button::before {
    display: none;
}

.banner-h .slick-dots li.slick-active button {
    background: var(--main-color);
}

.text-banner .btn-flex {
    transition: all .4s ease-in-out;
    transform: translateY(100%);
    opacity: 0;
    transition-delay: .4s;
}

.slick-active .banner-block .text-banner h1,
.slick-active .banner-block .text-banner .btn-flex {
    transform: none;
    opacity: 1;
}

/* End Banner-h */

/* Start About-h */

.about-h {
    padding: 131px 0 103px;
}

.about-h .row {
    align-items: center;
    -webkit-align-items: center;
}

.text-about h3 {
    font-family: 'Verdana-Bold';
    font-size: 36px;
    color: var(--main-color);
    line-height: 43.75px;
    margin-bottom: 16px;
    /* text-transform: capitalize; */
}

.text-about p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #303030;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 13px;
}

.img-about {
    position: relative;
    margin-inline-end: 67px;
    height: 412.13px;
}

.img-about .about-counter {
    position: absolute;
    bottom: 62px;
    width: 245.23px;
    background: #fff;
    border-radius: 50px;
    padding: 7px 11px;
    display: flex;
    justify-content: end;
    z-index: 3;
}

.img-about .img-inner {
    width: 434.83px;
    margin-inline-start: auto;
    height: 412.13px;
    position: relative;
    /* overflow: hidden; */
}

.img-about .img-inner .img,
.img-about .img-inner .img a {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    display: block;
}

.img-about .img-inner .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .6;
}

.img-about .img-inner .img {
    background: #102E4A;
}

.img-about .img-inner .img a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #347BBD;
    opacity: 0.6;
    mix-blend-mode: color;
}

.img-about .img-inner .img a {
    /* opacity: .6; */
    /* background: #D9D9D9; */
}

.img-about .img-inner .img a::before {
    content: "\f04b";
    position: absolute;
    inset: 0;
    z-index: 3;
    margin: auto;
    width: 65.36px;
    height: 62px;
    border-radius: 50%;
    background: rgb(52 123 189 / 80%);
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    font-family: 'Font Awesome 6 Pro';
    font-weight: bold;
    color: #fff;
    font-size: 20px;
}

.img-about .img-inner .circel {
    position: absolute;
    border: 2px var(--main-color) dashed;
    border-radius: 50%;
    width: 457.38px;
    height: 433.5px;
    left: 0;
    top: 0;
    margin: -31px -19px;
    z-index: -1;
    animation: rotation 50s linear infinite;
}

.img-about .about-counter .counter-in {
    display: inline-flex;
    border-radius: 50px;
    background: var(--main-color);
    padding: 0 18px;
    padding-inline-start: 8px;
    align-items: center;
    -webkit-align-items: center;
    min-width: 207.82px;
}

.img-about .about-counter .counter-in .counter-item {
    margin: 0;
    font-family: 'Verdana-Bold';
    font-size: 48px;
    color: #fff;
    line-height: 58.34px;
}

.counter-item {
    direction: ltr;
}

.img-about .about-counter .counter-in .text-counter {
    padding-inline-start: 10px;
    text-align: center;
}

.img-about .about-counter .counter-in .text-counter h4 {
    font-family: 'Verdana-Bold';
    font-size: 25.08px;
    color: #fff;
    line-height: 30.48px;
    margin-bottom: 0;
    text-transform: uppercase;
    height: 30px;
}

.img-about .about-counter .counter-in .text-counter span {
    font-family: Verdana;
    font-size: 10.68px;
    font-weight: 700;
    line-height: 12.98px;
    letter-spacing: 0.12em;
    color: #FFFFFF;
    text-transform: uppercase;
    display: block;
}

@keyframes rotation {
    from {
        transform: rotate(-360deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* End About-h */

/* Start Services-h */

.services-h {
    padding: 100px 0;
    background: var(--bg-color);
}

.title {
    margin-bottom: 35px;
}

.title.title-center {
    text-align: center;
    margin-bottom: 50px;
}

.title h3 {
    font-family: 'Verdana-Bold';
    font-size: 36px;
    color: var(--main-color);
    line-height: 43.75px;
    margin: 0;
}

.serv-block {
    height: calc(100% - 20px);
    margin: 10px 0;
    border: 1px solid #F1F1F1;
    padding: 40px 20px 30px;
    text-align: center;
    background: #FFFFFF;
    border-radius: 10px;
    transition: all .4s;
    overflow: hidden;
}

.link-block {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.serv-block .icon {
    width: 80.12px;
    height: 76px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all .4s;
}

.serv-block .icon img {
    max-width: 55.5px;
    max-height: 50px;
    object-fit: contain;
    object-position: center;
}

.serv-block .details h3 {
    font-family: 'Verdana-Bold';
    font-size: 21px;
    color: var(--main-color);
    line-height: 30px;
    margin: 0;
    transition: all .4s;
}

.serv-block::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #347BBD 0%, #4DA3F2 100%);
    transition: all .4s;
    opacity: 0;
}

.serv-block .details {
    position: relative;
    z-index: 2;
    /* transition: all .4s; */
}

.serv-block:hover {
    box-shadow: 0px 5px 15px 0px #0000000F;
}

.serv-block:hover::after {
    opacity: 1;
}

.serv-block:hover .details h3 {
    color: #FFFFFF;
}

.btn-center {
    text-align: center;
    margin-top: 50px;
}

/* End Services-h */

/* Start Work-h */

.work-h {
    padding: 93px 0 130px;
}

.work-inners {
    position: relative;
    max-width: 865.7px;
    margin: 0 auto;
}

.work-inners .all-items {
    position: relative;
    /* max-width: 780px; */
    /* margin: 0 auto; */
    /* height: 780px; */
    width: 975.7px;
    height: 663px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    left: -12%;
}

.work-inners .all-items .item {
    position: absolute;
}

.work-inners .all-items .item:nth-child(1) {
    top: -110px;
    right: 0;
    left: 0;
    width: 466.21px;
    height: 352.92px;
    margin: 0 auto;
}

.work-inners .all-items .item:nth-child(2) {
    width: 328.28px;
    height: 367.25px;
    right: 22px;
    top: 0;
}

.work-inners .all-items .item:nth-child(3) {
    width: 350.46px;
    height: 362.25px;
    right: 65px;
    bottom: -75px;
}

.work-inners .all-items .item:nth-child(4) {
    width: 408.04px;
    height: 294.85px;
    bottom: -50px;
    left: 165px;
}

.work-inners .all-items .item:nth-child(5) {
    width: 362.18px;
    height: 424.41px;
    left: 63px;
    top: 71px;
}

.work-inners .all-items .item .bg-item {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.work-inners .all-items .item .bg-item svg,
.work-inners .all-items .item .bg-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.work-inners .all-items .item .work-block {
    padding: 50px;
    text-align: center;
}

.work-inners .all-items .item .work-block .icon {
    width: 77.23px;
    height: 77.23px;
    line-height: 77.23px;
    margin: 0 auto 32px;
}

.work-inners .all-items .item .work-block .icon img {
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.work-inners .all-items .item .work-block .details h3 {
    font-family: 'Verdana-Bold';
    font-size: 23.27px;
    line-height: 22.16px;
    color: #fff;
    margin: 0;
}

.work-inners .all-items .item .work-block .details h3 strong {
    font-family: 'Bebas Neue';
    font-size: 37.48px;
    font-weight: 400;
    line-height: 44.97px;
    /* margin-inline-end: 2px; */
}

.work-inners .all-items .item .work-block .details span {
    color: #fff;
    font-size: 16.65px;
    font-weight: 400;
    line-height: 26.87px;
    display: block;
    max-width: 193px;
    margin: 0 auto;
}

.all-work .circel {
    width: 662.91px;
    height: 662.91px;
    margin: auto;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    border: 67.17px solid #C3D8EC;
    z-index: -1;
    border-radius: 50%;
    text-align: center;
    left: auto;
    margin-inline-end: 124px;
}

.all-work .circel h2 {
    max-width: 250.6px;
    margin: 0 auto;
    font-family: 'Verdana-Bold';
    font-size: 25.29px;
    color: var(--main-color);
    line-height: 30.74px;
    margin: 0;
}

.all-work {
    margin-top: 180px;
}

.work-inners .all-items .item:nth-child(1) .work-block {
    padding: 48px;
}

.work-inners .all-items .item:nth-child(2) .work-block {
    padding: 95px 40px;
}

.work-inners .all-items .item:nth-child(3) .work-block {
    padding: 44px 25px;
    /* padding-inline-end: 69px; */
}

.work-inners .all-items .item:nth-child(3) .bg-item {
    /* display: none; */
    /* top: -33px; */
    /* bottom: 0; */
    /* height: 100%; */
}

.work-inners .all-items .item:nth-child(5) .work-block {
    padding: 50px;
    padding-top: 104px;
    padding-inline-start: 20px;
}

.work-inners .all-items .item:nth-child(4) .bg-item img {
    /* object-fit: fill; */
}

.work-inners .all-items .item:nth-child(4) .work-block .details span {
    max-width: 243px;
}

.work-inners .all-items .item:nth-child(4) .work-block {
    /* transform: rotate(5deg); */
    padding-inline-start: 100px;
    padding-top: 40px;
}

/* End Work-h */

/* Start Counter-h */

.counter-h {
    background: var(--bg-color);
    padding: 100px 0;
}

.count-block {
    text-align: center;
    margin: 10px 0 0;
    background: #FFFFFF;
    height: calc(100% - 10px);
    border-radius: 10px;
    padding: 46px;
    position: relative;
    transition: all .4s;
    overflow: hidden;
}

.count-block .counter-item {
    font-family: 'Verdana-Bold';
    font-size: 60px;
    color: var(--main-color);
    line-height: 72.92px;
    margin: 0;
    position: relative;
    transition: all .4s;
    z-index: 3;
}

.count-block h3~span {
    color: #000;
    font-size: 19px;
    font-weight: 400;
    line-height: 23.09px;
    text-transform: capitalize;
    position: relative;
    transition: all .4s;
    z-index: 3;
}

.count-block::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #347BBD 0%, #4DA3F2 100%);
    transition: all .4s;
    opacity: 0;
}

.count-block:hover::after {
    opacity: 1;
}

.count-block:hover .counter-item,
.count-block:hover .counter-item~span {
    color: #fff;
}

/* End Counter-h */

/* Start Footer */

.footer-top {
    background: linear-gradient(0deg, #021326, #021326),
        radial-gradient(141.42% 141.42% at 100% 100%, #3A233F 0%, rgba(0, 0, 0, 0) 24.59%),
        radial-gradient(50% 50% at 0% 100%, #271D3B 0%, rgba(0, 0, 0, 0) 62.59%);
    padding: 80px 0 55px;
}

.logo-f {
    display: block;
    max-width: 255.04px;
}

.logo-f img {
    width: 100%;
}

.s-h {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    flex-wrap: wrap;
    margin-top: 21px;
    gap: 14px;
}

.s-h a {
    width: 43.44px;
    height: 41.21px;
    display: block;
}

.s-h a i {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    color: #fff;
    background: #07213F;
    border-radius: 50%;
    font-size: 16.48px;
    color: var(--main-color);
}

.foot-block h3 {
    font-family: 'Verdana-Bold';
    font-size: 20px;
    color: #FFF;
    line-height: 18.72px;
    margin-bottom: 30px;
}

.links-f ul li {
    display: list-item;
    list-style: disc;
    /* color: #fff; */
    /* font-size: 16px; */
}

.links-f ul li,
.links-f ul li a {
    font-size: 16px;
    color: #fff;
    line-height: 19.45px;
}

.links-f ul {
    padding-inline-start: 20px;
}

.links-f ul li a {
    display: inline-block;
    margin-bottom: 15px;
}

.links-f ul li a:hover,
.info-f a:hover {
    color: var(--main-color);
}

.info-f a {
    display: flex;
    margin-bottom: 19px;
    color: #fff;
    gap: 6px;
    font-size: 15.75px;
    font-weight: 400;
    line-height: 27.3px;
    max-width: 277.52px;
}

.info-f a .icon {}

.info-f a u {
    display: block;
    direction: ltr;
    text-decoration: none;
}

.foot-block h3 {
    font-family: 'Verdana-Bold';
    font-size: 20px;
    color: #FFF;
    line-height: 18.72px;
    margin-bottom: 30px;
}

.links-f ul li {
    display: list-item;
    list-style: disc;
    /* color: #fff; */
    /* font-size: 16px; */
}

.links-f ul li,
.links-f ul li a {
    font-size: 16px;
    color: #fff;
    line-height: 19.45px;
}

.links-f ul {
    padding-inline-start: 20px;
}

.links-f ul li a {
    display: inline-block;
    margin-bottom: 15px;
}

.links-f ul li a:hover,
.info-f a:hover {
    color: var(--main-color);
}

.info-f a {
    display: flex;
    margin-bottom: 19px;
    color: #fff;
    gap: 6px;
    font-size: 15.75px;
    font-weight: 400;
    line-height: 27.3px;
    max-width: 277.52px;
}

.info-f a u {
    display: block;
    direction: ltr;
    text-decoration: none;
}

.footer-bottom .row {
    align-items: center;
    -webkit-align-items: center;
}

.copy-right p {
    color: #000;
    font-size: 15.75px;
    font-weight: 400;
    line-height: 27.3px;
}

.foot-info-details ul {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.foot-info-details ul li {
    font-size: 16px;
    font-weight: 400;
    line-height: 27.3px;
    color: #021326;
}

.foot-info-details ul li strong {
    font-family: 'Verdana-Bold';
}

.ryad-logo {
    float: right;
    display: inline-block;
}

.home-slider {
    margin: 0 !important;
}

/* End Footer */

/* Start Breadcrumb-h */

.breadcrumb-h {
    padding: 200px 0 80px;
}

.breadcrumb-h .overlay-img {
    background: var(--dark-color);
}

.breadcrumb-h .overlay-img img {
    opacity: 0.18;
}

.text-bread h1 {
    margin: 0;
    font-family: 'Verdana-Bold';
    font-size: 47.58px;
    color: #fff;
    line-height: 66.79px;
}

/* End Breadcrumb-h */

/* Start About-page */

.about-page .text-about p {
    display: block;
}

.about-more .item:nth-child(1),
.about-more .item:nth-child(3) {
    width: 35%;
}

.about-more .item:nth-child(2) {
    width: 30%;
}

.about-more .item:nth-child(1) {
    padding-inline-start: 0;
}

.about-block {
    background: #F6F6F6;
    border-radius: 40px;
    padding: 53px 18px;
    height: 100%;
}

.about-block .title-block {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.about-block .title-block .icon {
    color: var(--main-color);
    font-size: 37.24px;
    font-weight: 400;
    line-height: 0;
}

.about-block .title-block h3 {
    width: calc(100% - 49.24px);
    margin: 0;
    font-family: 'Verdana-Bold';
    font-size: 35px;
    color: #000;
    line-height: 53.9px;
}

.about-block p {
    color: #303030;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.about-more::before,
.about-more::after {
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
    z-index: -1;
    background: #F6F6F6;
    width: 34vw;
}

.about-more::before {
    left: 0;
}

.about-more::after {
    right: 0;
}

.radi-h {
    padding: 94px 0 100px;
}

.title p {
    max-width: 903.21px;
    color: #303030;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    margin-top: 32px;
}

.title.title-center p {
    margin: 32px auto 0;
}

.radi-h::before {
    content: "";
    position: absolute;
    left: 0;
    /* top: 0; */
    bottom: 46px;
    width: 10%;
    margin: auto 0;
    height: 67.2%;
    background: url(../images/dots.svg);
}

.serv-block.radi-block {
    border: 1px solid #F1F1F1;
    box-shadow: 0px 0px 13px 0px #00000012;
}

.about-h2 {
    padding: 100px 0;
    background: #F6F6F6;
}

.img-about2 {
    max-width: 502px;
    margin-inline-start: auto;
    overflow: hidden;
    height: 289.14px;
    border-radius: 30px;
}

.img-about2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-h2 .row {
    align-items: center;
    -webkit-align-items: center;
}

.about-h2 .text-about p {
    display: block;
    color: #818498;
    font-size: 19.26px;
    font-weight: 400;
    line-height: 33.3px;
    letter-spacing: -0.02em;
}

.partners-h {
    padding: 93px 0 100px;
}

.part-block {
    height: 150px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    overflow: hidden;
    border: 1px solid #E6E6E6;
    justify-content: center;
    border-radius: 10px;
}

.partners-slider .item {
    padding: 0 13px;
}

.part-block .img img {
    max-height: 119px;
    max-width: 118.05px;
    object-fit: contain;
    object-position: center;
}

.all-partners .slick-arrow {
    width: 75px;
    height: 74px;
    border-radius: 50%;
    background: var(--dark-color);
    z-index: 2;
    opacity: 1;
}

.all-partners .slick-arrow::before {
    font-family: 'Font Awesome 6 Pro';
    opacity: 1;
    font-size: 26.75px;
    font-weight: 900;
    line-height: 46.82px;
}

.all-partners .slick-arrow.slick-disabled {
    background: #C2C2C2;
}

.partners-h .partners-slider {
    max-width: 1100px;
    margin: 0 auto;
}

.all-partners .slick-arrow.slick-prev {
    left: -10%;
}

.all-partners .slick-arrow.slick-next {
    right: -10%;
}

/* End About-page */

/* Start Services-page */

.body-inner {
    padding: 100px 0;
    background: linear-gradient(180deg, #F7FCFF 0%, #FFFFFF 49.2%);
}

.all-pages {
    text-align: center;
    margin-top: 50px;
}

.all-pages .pagination {
    display: inline-flex;
}

.all-pages .pagination .page-item .page-link {
    width: 29px;
    height: 27px;
    padding: 0;
    display: flex;
    -webkit-align-items: center;
    justify-content: center;
    margin: 0 2.5px;
    border: 1px solid #E8E8E8;
    color: #131313;
    font-size: 12.82px;
    font-weight: 400;
    line-height: 15.74px;
    letter-spacing: -0.02em;
    background: transparent;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.all-pages .pagination .page-item.active .page-link, .all-pages .pagination .page-item .page-link.active, .all-pages .pagination .page-item .page-link:hover {
    border-color: var(--main-color);
    color: var(--main-color);
}

/* End Services-page */

/* Start Single-service */

.text-serv h3 {
    font-family: 'Verdana-Bold';
    font-size: 37.58px;
    color: #000;
    line-height: 66.79px;
    margin-bottom: 19px;
}

.text-serv p {
    color: #818498;
    font-size: 19.26px;
    font-weight: 400;
    line-height: 33.3px;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
}

.text-serv p:last-child {
    margin-bottom: 0;
}

.imgs-serv .big-img {
    height: 578.02px;
    overflow: hidden;
    border-radius: 30px;
    margin-bottom: 26px;
}

.imgs-serv .big-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.imgs-serv .small-img {
    height: 65.14px;
    overflow: hidden;
    border-radius: 9.49px;
}

.imgs-serv .small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-single-nav .slick-list,
.slider-artical-nav .slick-list {
    margin-left: -7px;
    margin-right: -7px;
}

.slider-single-nav .item,
.slider-artical-nav .item {
    padding: 0 7px;
}

/* End Single-service */

/* Start Articals-page */

.artical-block {
    display: block;
    border: 0.96px solid #E1EAFB;
    background: #F5F9FF;
    height: calc(100% - 32px);
    margin: 16px 0;
    border-radius: 15.42px;
    padding: 3px;
}

.artical-block .img {
    height: 219.79px;
    overflow: hidden;
    border-radius: 15.42px 15.42px 0 0;
}

.artical-block .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.artical-block .details {
    padding: 15px 12px;
}

.artical-block .details span {
    display: inline-flex;
    border-radius: 15.42px;
    background: #EBECF5;
    padding: 3px 7px;
    color: #000;
    font-size: 13.5px;
    font-weight: 400;
    line-height: 16.4px;
}

.artical-block .details h3 {
    margin: 7px 0;
    font-size: 24px;
    font-weight: 400;
    line-height: 29.17px;
    color: #000;
    transition: all .4s;
}

.artical-block .details p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.artical-block .details .artical-user {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 15.42px;
    margin-top: 39px;
}

.artical-block .details .artical-user .img-user {
    width: 46.27px;
    height: 46.27px;
    overflow: hidden;
    border-radius: 50%;
}

.artical-block .details .artical-user .img-user img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.artical-block .details .artical-user .details-user {
    width: calc(100% - 61.27px);
}

.artical-block .details .artical-user .details-user h4 {
    color: #4E74B9;
    font-size: 15.42px;
    font-weight: 400;
    line-height: 23.14px;
    margin-bottom: 0.96px;
}

.artical-block .details .artical-user .details-user h6 {
    margin: 0;
    color: #697586;
    font-size: 15.42px;
    font-weight: 400;
    line-height: 23.14px;
}

.artical-block:hover .details h3 {
    color: var(--main-color);
}

/* End Articals-page */

/* Start Single-artical */

.imgs-artical .big-img {
    height: 599.2px;
    border-radius: 40px;
}

.imgs-artical .small-img {
    height: 68.61px;
    border-radius: 10px;
}

.single-artical-inner .text-serv {
    margin: 42px auto 0;
    max-width: 962.95px;
}

/* End Single-artical */

/* Start Career-page */

.career-block h2 {
    font-family: 'Verdana-Bold';
    font-size: 30px;
    color: #272525;
    line-height: 56px;
    margin-bottom: 29.5px;
}

.career-form {
    box-shadow: 0px 4px 24px 0px #0000000F;
    background: #fff;
    padding: 29px 22px;
    border-radius: 6px;
}

.career-form .form-group {
    margin-bottom: 14px;
}

.career-form .form-group:last-child {
    margin: 0;
}

.career-form .form-group label, .career-form .form-group-h label {
    margin-bottom: 17px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #000;
    text-transform: capitalize;
}

.career-form .form-group .form-control {
    border: 1px solid #D8D6DE;
    height: 38px;
    border-radius: 5px;
    padding: 0 15px;
    transition: all .4s;
    color: #000;
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
}

.career-form .form-group .form-control::placeholder {
    color: #B9B9C3;
}

.career-form .form-group .form-control:focus {
    box-shadow: none !important;
    border-color: var(--main-color);
}

.career-form .form-group .file-upload-group.form-control {
    position: relative;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
}

.career-form .form-group .file-upload-group.form-control .file-uploadH {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0;
}

.career-form .form-group .file-upload-group.form-control .for-sm-input-file {
    margin: 0;
    font-size: 12px;
    line-height: 24px;
}

.career-form .form-group .btn {
    margin-top: 18px;
    min-width: 130.67px;
    min-height: 37px;
    padding: 10px;
    font-size: 14px;
    line-height: 17.01px;
    letter-spacing: 0.4000000059604645px;
    text-align: center;
}

.all-job .accordion-item {
    box-shadow: 0px 20px 36px 0px #CBE5FE2E;
    border-radius: 16px;
    /* overflow: hidden; */
    margin-bottom: 16px;
    border: none;
    background: #fff;
}

.all-job .accordion-item .accordion-button {
    border: 1px transparent solid;
    border-bottom: 0;
    border-radius: 16px 16px 0 0 !important;
    padding: 21px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: space-between;
    transition: none;
    box-shadow: none !important;
}

.all-job .accordion-item .accordion-button h3 {
    margin: 0;
    font-family: 'Verdana-Bold';
    font-size: 20px;
    color: #272525;
    line-height: 32px;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.all-job .accordion-item .accordion-button::after {
    content: "\2b";
    background: var(--main-color);
    margin: 0;
    margin-inline-start: auto;
    width: 38px;
    height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    font-family: 'Font Awesome 6 Pro';
}

.all-job .accordion-item .accordion-button:not(.collapsed)::after {
    content: "\58";
}

.all-job .accordion-item .accordion-button:not(.collapsed) {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border-color: var(--main-color);
}

.all-job .accordion-item .accordion-collapse {
    border: 1px var(--main-color) solid;
    border-top: 0;
    border-radius: 0 0 16px 16px;
    padding: 0 20px 20px;
}

.career-block h2.accordion-header {
    margin: 0;
}

.all-job .accordion-item .accordion-body {
    padding: 12px 0 0;
    border-top: 1px solid #CBE5FE;
}

.all-job .accordion-item .accordion-body p {
    color: #585856;
    font-size: 16px;
    line-height: 26px;
}

form {
    direction: ltr;
}

/* End Career-page */

/* Start Contact-page */

.contact-info {
    box-shadow: 5.57px 2.78px 24.13px 0px #0000000D;
    background: #FFFFFF;
    border-radius: 11.86px;
    padding: 28px;
    margin-bottom: 35px;
}

.contact-info .item {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    margin-bottom: 10px;
    gap: 12px;
}

.contact-info .item .icon {
    width: 55.67px;
    height: 56.6px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    background: #F8FBFF;
    border-radius: 50%;
}

.contact-info .item .details {
    display: flex;
    width: calc(100% - 67.67px);
    align-items: center;
    -webkit-align-items: center;
}

.contact-info .item .details h4 {
    margin: 0;
    color: var(--main-color);
    font-size: 16.7px;
    font-weight: 400;
    line-height: 20.3px;
    margin-inline-end: 28px;
    /* margin-top: 17px; */
}

.contact-info .item .details p,
.contact-info .item .details p a {
    color: #2D2D2D;
    font-size: 13.92px;
    line-height: 20.41px;
}

.contact-info .item .details p {
    /* margin-top: 17px; */
}

.contact-info .item .details u {
    display: block;
    direction: ltr;
    text-decoration: none;
}

.contact-map {
    height: 246.82px;
    overflow: hidden;
    border-radius: 21.86px;
}

.career-form .form-group textarea.form-control {
    height: 113px;
    padding: 15px;
}

/* End Contact-page */

/* Start Quotation-page */

.reqeust-inner.career-form.multi-step-form {
    box-shadow: none;
    padding: 0;
    background: transparent;
    border-radius: 0;
    max-width: 713px;
    margin: 0 auto;
}

.multi-step-form .steps button:last-child {
    justify-content: end;
}

.reqeust-inner.career-form.multi-step-form form {
    background: #FFFFFF;
    box-shadow: 0px 4px 24px 0px #0000000F;
    padding: 47px 22px;
    border-radius: 6px;
}

.multi-step-form .form-group {
    margin-bottom: 16px;
}

.career-form .form-group .form-control.form-control.niceSelect {
    color: #000;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
}

.career-form .form-group .form-control.form-control.niceSelect::after {
    left: auto;
    right: 15px;
    top: 0;
    bottom: 0;
    align-items: center;
    -webkit-align-items: center;
    display: flex;
    font-size: 12px;
    color: #282831;
}

.multi-step-form .form-group h3 {
    padding: 31px 0 0;
    margin: 31px 0;
    border-top: 1px solid #E4E4E4;
    font-family: 'Verdana-Bold';
    font-size: 16px;
    color: #000;
    line-height: 24px;
}

.multi-step-form .form-group .choose-input span ,
.multi-step-form .form-group-h .choose-input span {
    position: relative;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-inline-end: 19px;
    display: inline-flex;
    align-items: center;
    -webkit-align-items: center;
}

.multi-step-form .form-group .choose-input span input ,
.multi-step-form .form-group-h .choose-input span input {
    /* width: 13.56px; */
    /* height: 13.56px; */
    accent-color: var(--main-color);
    margin-inline-end: 10px;
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 4;
    cursor: pointer;
    margin: 0;
}

.multi-step-form .form-group .choose-input span i ,
.multi-step-form .form-group-h .choose-input span i {
    font-style: normal;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-transform: capitalize;
    position: relative;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 10px;
}

.multi-step-form .form-group .choose-input span i::before ,
.multi-step-form .form-group-h .choose-input span i::before {
    content: "";
    position: relative;
    left: 0;
    top: 0;
    width: 13.56px;
    height: 13.56px;
    border: 1px solid #B9B9C3;
    border-radius: 50%;
    transition: all .4s;
}

.multi-step-form .form-group .choose-input span input:checked~i::before ,
.multi-step-form .form-group-h .choose-input span input:checked~i::before {
    border: 3px #fff solid;
    background: var(--main-color);
    box-shadow: 0 0 0 1px #B9B9C3;
}

.choose-input {
    margin-bottom: 32px;
}

.multi-step-form .form-group button.btn span {
    opacity: 1;
    transform: none;
}

.multi-step-form .form-group button.btn {
    gap: 8px;
}

.btn-border {
    border: 1px var(--main-color) solid !important;
    background: transparent;
    color: var(--main-color);
}

.btn-prev.btn-border {
    flex-direction: row-reverse;
}

.btns-flex {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    gap: 16px;
}

.form-group-h span.error-text {
    display: none !important;
}

.multi-step-form .form-group-h .choose-input .error-text + i::before {
    border-color: red;
}

.multi-step-form .form-group-h .choose-input .error-text + i {
    color: red;
}

.banner-h .item {
    height: auto;
}

.banner-h .slick-track {
    display: flex;
}

.about-block .text-block {
    max-height: 230px;
    overflow: hidden;
    overflow-y: auto;
    padding-inline-end: 10px;
}

.about-block .text-block::-webkit-scrollbar {
    width: 3px;
}

.about-block .text-block::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.about-block .text-block::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    outline: none;
}

.serv-block.radi-block .icon {
    width: 80.12px;
    height: 89.52px;
}

.serv-block.radi-block .icon img {
    max-width: 100%;
    max-height: 100%;
}

@media (min-width: 992px){
.choose-items {
    display: flex;
    flex-wrap: wrap;
}

.choose-items .item {
    width: 33.33%;
    flex: 0 0 auto;
}
}
.btn-check:active+.btn-success, .btn-check:checked+.btn-success, .btn-success.active, .btn-success:active, .show>.btn-success.dropdown-toggle {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.info-f a.email-h u {
    text-decoration: underline;
}

.about-block ol {
    padding: 0;
    padding-inline-start: 20px;
}

.about-block ol li {
    margin: 10px 0;
    display: list-item;
    list-style: inherit;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

.rad-slider .item {
    padding: 10px;
    height: auto;
}

.rad-slider .slick-track {
    display: flex;
}

.whatsappIcon {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 5;
    margin: 18px;
    border: 0.88px solid #DADADA;
    width: 53px;
    height: 52px;
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #61FD7D 0%, #2BB826 100%);
    border-radius: 8px;
    color: #fff !important;
    font-size: 22px;
}

.fa-classic, .fa-light, .fa-regular, .fa-solid, .fa-thin, .fal, .far, .fas, .fat {
    /*font-family: "Font Awesome 6 Pro" !important;*/
}
/* End Quotation-page */