@font-face {
    font-family: Almarai;
    src: url(../webfonts/Almarai-Regular.ttf);
}

@font-face {
    font-family: Poppins;
    src: url(../webfonts/Poppins-Regular.ttf);
}

* {
    font-family: 'Poppins', sans-serif;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #132235;
    border-radius: 0px !important;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 0px !important;
}

::-webkit-scrollbar-thumb {
    background-color: #ECCFA8;
    outline: none;
    border-radius: 20px !important;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover {
    text-decoration: none;
    color: #132235;
}

button:focus {
    outline: 0;
}

.row {
    margin: 0px;
}

a,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

@media (max-width: 767px) {
    .container,
    .container-fluid {
        padding: 0px 8px;
    }
}

video,
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.navbar-toggler {
    border: none;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.btn:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

body {
    background-color: #fdfdfd;
}

content {
    min-height: 90vh;
    position: relative;
    display: block;
}

.default-btn {
    border: none;
    position: relative;
    display: inline-block;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    background-color: #132235;
    color: #ECCFA8;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 500px;
    opacity: 1;
    padding: 8px 16px;
    border: 1px solid #ECCFA8;
}

.default-btn span {
    position: absolute;
    top: 50%;
    left: 10%;
    display: inline-block;
    width: 0;
    height: 0;
    background-color: #ECCFA8;
    -webkit-transition: width 0.5s ease-in-out,
    height 0.5s ease-in-out;
    transition: width 0.5s ease-in-out,
    height 0.5s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 1;
}

.default-btn:hover {
    color: #132235;
    -webkit-box-shadow: 0px 10px 30px #00000030;
    box-shadow: 0px 10px 30px #00000030;
}

.default-btn:hover span {
    width: 300%;
    height: 600%;
}

.topHeader {
    background-color: #132235;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    min-height: 52px;
}

.topHeader .emergency h6 {
    display: inline-block;
    color: #ffffff;
}

.topHeader .emergency a {
    font-weight: bold;
    color: #ECCFA8;
    letter-spacing: 1px;
}

.topHeader .emergency a i {
    font-size: larger;
}

.socialIcons {
    padding: 0;
    margin: 0;
    list-style: none;
}

.socialIcons a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid #ECCFA8;
    border-radius: 100px;
    margin: 2px;
    color: #ECCFA8;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.socialIcons a:hover {
    background-color: #ECCFA8;
    color: #132235;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}

.mainNav {
    background-color: #132235c5;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.mainNav.sticky-top {
    top: -1px;
}

.mainNav .navbar-brand {
    padding: 0;
}

.mainNav .navbar-brand .logo {
    height: 50px;
    -o-object-fit: contain;
    object-fit: contain;
}

.mainNav .nav-item .nav-link {
    text-transform: capitalize;
    color: #ffffff;
    padding: 8px 12px;
    margin: 2px;
    border-radius: 4px;
    position: relative;
    display: inline-block;
}

@media (max-width: 768px) {
    .mainNav .nav-item .nav-link {
        margin-bottom: 15px;
    }
}

.mainNav .nav-item .nav-link.active, .mainNav .nav-item .nav-link:hover, .mainNav .nav-item .nav-link:focus {
    color: #ECCFA8;
}

.mainNav .dropdown {
    font-size: medium;
    text-align: center;
}

.mainNav .dropdown .dropdown-toggle::after {
    display: none;
}

.mainNav .dropdown .dropdown-menu {
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp !important;
    animation-name: fadeInUp !important;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    background-color: #132235;
    border: 1px solid #ECCFA8;
    padding: 5px;
    left: unset;
    right: 0;
    margin-top: 10px;
}

.mainNav .dropdown .dropdown-menu a {
    color: #ECCFA8;
    border-radius: 2px;
    padding: 8px 12px;
}

.mainNav .dropdown .dropdown-menu a:hover {
    background-color: #ECCFA8;
    color: #132235;
}

.mainNav .userImg {
    width: 36px;
    height: 36px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 100%;
    border: 1px solid #ECCFA8;
}

.animatedNav .topHeader {
    opacity: 0;
    visibility: hidden;
    height: 0px;
    min-height: 0px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.animatedNav .navbar {
    background-color: #132235;
    -webkit-box-shadow: 0px 10px 30px #00000030;
    box-shadow: 0px 10px 30px #00000030;
}

.animatedNav .navbar .nav-item .nav-link {
    color: #ffffff;
}

.animatedNav .navbar .nav-item .nav-link.active, .animatedNav .navbar .nav-item .nav-link:hover, .animatedNav .navbar .nav-item .nav-link:focus {
    color: #ECCFA8;
}

#header {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.swiper {
    padding-bottom: 40px;
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 26px;
    font-family: 'Font Awesome 5 free';
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.swiper-button-prev::after {
    content: "\f053" !important;
}

.swiper-button-next::after {
    content: "\f054" !important;
}

.swiper-pagination {
    width: auto !important;
    left: 50% !important;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #13223500;
    border-radius: 4px;
    padding: 0px 10px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.swiper-pagination .swiper-pagination-bullet {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    width: 20px;
    border-radius: 4px;
    opacity: .5;
    background-color: #ECCFA8;
    margin: 2px !important;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: #ECCFA8;
    width: 40px;
    border-radius: 4px;
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.swiper-button-disabled {
    display: none;
}

.MainSlider {
    position: relative;
}

.MainSlider .MainSlider-container {
    width: 100%;
    height: 100%;
    padding-bottom: 0px;
}

.MainSlider .MainSlider-container .swiper-slide {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100vh;
}

.MainSlider .MainSlider-container .swiper-slide::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #00000063;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .MainSlider .MainSlider-container .swiper-slide {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: 750px;
    }
}

.MainSlider .MainSlider-container .swiper-slide .info {
    position: relative;
    z-index: 2;
    margin-top: 50px;
    padding: 20px 30px;
    max-width: 850px;
    text-align: center;
}

@media (max-width: 768px) {
    .MainSlider .MainSlider-container .swiper-slide .info {
        margin-left: 0px;
    }
}

.MainSlider .MainSlider-container .swiper-slide .info h2 {
    font-size: 30px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 4px 5px 3px #000000cf;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .MainSlider .MainSlider-container .swiper-slide .info h2 {
        font-size: 24px;
        line-height: 40px;
    }
}

.MainSlider .MainSlider-container .swiper-slide .info h1 {
    font-size: 50px;
    overflow: hidden;
    color: #ECCFA8;
    font-weight: bolder;
    text-transform: uppercase;
    text-shadow: 4px 5px 3px #000000cf;
}

@media (max-width: 768px) {
    .MainSlider .MainSlider-container .swiper-slide .info h1 {
        font-size: 40px;
    }
}

.MainSlider .MainSlider-container .swiper-slide .info a {
    margin-top: 30px;
}

.mainSlideItem.swiper-slide-active h2 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInDown !important;
    animation-name: fadeInDown !important;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.mainSlideItem.swiper-slide-active h1 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp !important;
    animation-name: fadeInUp !important;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.mainSlideItem.swiper-slide-active a {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInDown !important;
    animation-name: fadeInDown !important;
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

.title {
    color: #132235;
    margin-bottom: 20px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.title::after {
    content: '';
    width: 95%;
    height: 2px;
    background-color: #ECCFA8;
    position: absolute;
    left: 0;
    bottom: 50%;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
}

.title::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 100px;
    background-color: #ECCFA8;
    position: absolute;
    right: 5%;
    bottom: 50%;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
}

.title a,
.title span {
    background-color: #fdfdfd;
    padding: 20px 30px;
    position: relative;
    z-index: 2;
    border-radius: 100px;
    border: 2px solid #ECCFA8;
    font-weight: bold;
}

@media (max-width: 768px) {
    .title a,
    .title span {
        padding: 15px 20px;
    }
}

.title a {
    font-weight: normal;
    font-size: 14px;
    background-color: #132235;
    color: #ECCFA8;
    padding: 10px 15px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.title a:hover {
    background-color: #ECCFA8;
    color: #132235;
}

.pageTitle {
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    margin: 20px 0;
    position: relative;
}

.pageTitle span {
    padding: 10px 30px;
    border-radius: 100px;
    border: 1px solid #ECCFA8;
    background-color: #ffffff;
    position: relative;
    z-index: 2;
}

.pageTitle::before {
    content: '';
    width: 95%;
    height: 2px;
    background-color: #ECCFA8;
    position: absolute;
    left: 0;
    bottom: 50%;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    z-index: 1;
}

.subTitle {
    color: #292929;
    width: 700px;
    max-width: 100%;
    margin: auto;
    padding: 20px;
}

.aboutUs {
    padding: 50px 0;
}

@media (max-width: 768px) {
    .aboutUs {
        padding: 20px 0;
    }
}

.aboutUs ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.aboutUs ul li {
    margin-bottom: 20px;
    color: #808080;
}

.aboutUs .aboutImg {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    margin: 30px 0;
    position: relative;
}

.aboutUs .aboutImg::before {
    content: '';
    width: 50%;
    height: 2px;
    border-radius: 100px;
    background-color: #ECCFA8;
    position: absolute;
    right: 0;
    bottom: 0;
}

.aboutUs .aboutImg::after {
    content: '';
    height: 50%;
    width: 2px;
    border-radius: 100px;
    background-color: #ECCFA8;
    position: absolute;
    right: 0;
    bottom: 0;
}

.ourFields {
    padding: 50px 0;
    background-image: url(../img/pattern-1.png);
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .ourFields {
        padding: 20px 0;
    }
}

.ourFields .content {
    padding: 40px 30px;
    -webkit-box-shadow: 0px 10px 30px #00000030;
    box-shadow: 0px 10px 30px #00000030;
    border-radius: 20px;
    background-color: #ffffff;
    text-align: center;
}

.ourFields .content .fields {
    border: 1px solid #ECCFA8;
    padding: 20px 10px;
    margin-top: 50px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .ourFields .content .fields {
        margin-top: 20px;
    }
}

.ourFields .content .fields .nav {
    display: block;
    text-align: start;
    border-radius: 4px;
    padding: 5px;
    background-color: #f8fbff;
}

.ourFields .content .fields .nav .nav-link {
    display: block;
    color: #132235;
    cursor: pointer;
    padding: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-bottom: 2px;
}

@media (max-width: 768px) {
    .ourFields .content .fields .nav .nav-link {
        display: inline-block;
        padding: 8px;
    }
}

.ourFields .content .fields .nav .nav-link:last-child {
    margin-bottom: 0px;
}

.ourFields .content .fields .nav .nav-link.active {
    color: #ECCFA8;
    background-color: #132235;
}

.ourFields .content .fields .tab-content {
    text-align: start;
}

.ourFields .content .fields .tab-content img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    margin-bottom: 20px;
    max-height: 300px;
}

.ourFields .content .fields .tab-content ul {
    list-style: none;
    margin: 0;
}

@media (max-width: 768px) {
    .ourFields .content .fields .tab-content ul {
        padding: 0;
    }
}

.ourFields .content .fields .tab-content ul li {
    margin-bottom: 20px;
    color: #808080;
}

.ourFields .content .fields .tab-content a {
    padding: 10px;
    display: block;
    text-align: center;
    color: #c4832e;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .ourFields .content {
        padding: 20px 10px;
    }
}

.counter {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 20px 0;
}

.counter .counterBox {
    background-image: url(../img/pattern-lines.svg), -webkit-gradient(linear, right top, left top, from(#132235), to(#1c3d68));
    background-image: url(../img/pattern-lines.svg), linear-gradient(270deg, #132235, #1c3d68);
    background-size: cover;
    padding: 50px;
    border-radius: 5px;
}

@media (max-width: 400px) {
    .counter .counterBox {
        padding: 20px 10px;
    }
}

.counter .counterBox .counterItem {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.counter .counterBox .counterItem .icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 10px;
}

.counter .counterBox .counterItem .icon i {
    display: inline-block;
    height: 70px;
    width: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 35px;
    background-color: #ffffff40;
    color: #ffffff;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .counter .counterBox .counterItem .icon i {
        height: 40px;
        width: 40px;
        font-size: 20px;
    }
}

.counter .counterBox .counterItem .info {
    display: inline-block;
}

.counter .counterBox .counterItem .info h3 {
    font-size: 36px;
    margin-bottom: 0;
    color: #ffffff;
    font-weight: bold;
}

.counter .counterBox .counterItem .info h3 .sign-icon {
    font-size: 36px;
    position: relative;
}

@media (max-width: 768px) {
    .counter .counterBox .counterItem .info h3 .sign-icon {
        font-size: 20px;
    }
}

.counter .counterBox .counterItem .info p {
    color: #ffffff;
    margin-top: 5px;
}

.counter .counterBox .counterItem .odometer {
    direction: ltr !important;
}

.ourPartners {
    padding: 50px 0;
    background-image: linear-gradient(45deg, #132235, #132235c7), url(../img/s1.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .ourPartners {
        padding: 20px 0;
    }
}

.ourPartners .title {
    color: #ECCFA8;
}

.ourPartners .title span {
    background-color: #132235;
}

.ourPartners .swiper {
    padding: 50px 100px;
    width: 100%;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .ourPartners .swiper {
        padding: 50px 20px;
    }
}

.ourPartners .swiper .swiper-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ourPartners .swiper .swiper-slide {
    height: 100%;
    background-color: #132235;
    -webkit-box-shadow: 5px 5px 20px 20px #132235d2;
    box-shadow: 5px 5px 20px 20px #132235d2;
    border-radius: 12px;
    border: 1px solid #ECCFA8;
}

.ourPartners .swiper .swiper-slide .partner {
    padding: 20px;
    height: 100%;
}

.ourPartners .swiper .swiper-slide .partner img {
    width: 100%;
    max-height: 350px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    border-radius: 12px;
}

.ourPartners .swiper .swiper-slide .partner h2 {
    font-weight: bold;
    color: #ECCFA8;
    margin-bottom: 10px;
}

.ourPartners .swiper .swiper-slide .partner h6 {
    color: #ffffff;
    margin-bottom: 20px;
}

.ourPartners .swiper .swiper-slide .partner ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ourPartners .swiper .swiper-slide .partner ul li {
    margin-bottom: 10px;
    color: #a3a3a3;
}

.ourPartners .swiper .swiper-slide .partner .meeting {
    color: #ECCFA8;
}

.ourPartners .swiper .swiper-slide .partner .meeting a {
    display: block;
    color: #ECCFA8;
}

.homeBlogs {
    padding: 50px 0;
}

@media (max-width: 768px) {
    .homeBlogs {
        padding: 20px 0;
    }
}

.homeBlogs .swiper-slide {
    -webkit-transition: 1s ease-in-out all;
    transition: 1s ease-in-out all;
    position: relative;
}

.homeBlogs .swiper-slide.swiper-slide-active {
    z-index: 3;
}

@media (min-width: 768px) {
    .homeBlogs .swiper-slide.swiper-slide-active {
        width: 650px !important;
    }
}

.homeBlogs .titleTwo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.homeBlogs .titleTwo::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 4px;
    background-color: #ECCFA8;
    -webkit-transition: .6s ease-in-out all;
    transition: .6s ease-in-out all;
    border-radius: 4px;
    z-index: -1;
}

.homeBlogs .titleTwo h4 {
    background-color: #fff;
    padding: 20px 30px;
}

.homeBlogs .titleTwo a {
    background-color: #fff;
}

.homeBlogs .titleTwo a:hover {
    color: #ECCFA8;
}

.homeBlogs .blog {
    background-color: #ffffff;
    margin: 15px;
    -webkit-box-shadow: 0px 10px 20px #00000030;
    box-shadow: 0px 10px 20px #00000030;
    border-radius: 20px;
    position: relative;
    height: 100%;
}

@media (max-width: 768px) {
    .homeBlogs .blog {
        margin: 20px;
    }
}

.homeBlogs .blog .blog-image {
    overflow: hidden;
    position: relative;
    border-radius: 20px 0 0 20px;
}

@media (max-width: 768px) {
    .homeBlogs .blog .blog-image {
        border-radius: 20px 20px 0 0;
    }
}

.homeBlogs .blog .blog-image img {
    width: 100%;
    height: 230px;
    -o-object-fit: cover;
    object-fit: cover;
}

.homeBlogs .blog .blog-content {
    padding: 25px;
    padding-right: 5px;
    position: relative;
}

@media (max-width: 768px) {
    .homeBlogs .blog .blog-content {
        padding-right: 25px;
    }
}

.homeBlogs .blog .blog-content::before {
    content: '';
    width: 65px;
    height: 100%;
    position: absolute;
    left: -30px;
    top: 0;
    -webkit-transform: skewX(10deg);
    transform: skewX(10deg);
    background-color: #ffffff;
    z-index: 1;
}

@media (max-width: 768px) {
    .homeBlogs .blog .blog-content::before {
        display: none;
    }
}

.homeBlogs .blog .blog-content h5 {
    margin-bottom: 10px;
    z-index: 2;
    position: relative;
    font-weight: bold;
}

.homeBlogs .blog .blog-content h5 a {
    color: #ECCFA8;
}

.homeBlogs .blog .blog-content p {
    color: #999;
    max-height: 120px;
    overflow: hidden;
    z-index: 2;
    position: relative;
    font-size: small;
}

.homeBlogs .blog .date {
    position: absolute;
    left: 0px;
    width: auto;
    z-index: 5;
    top: 0;
    padding: 10px 20px;
    background-color: #132235;
    color: #ECCFA8;
    border-radius: 20px 0 20px 0;
    -webkit-box-shadow: -3px 3px 3px #00000070;
    box-shadow: -3px 3px 3px #00000070;
}

.testimonials {
    padding: 30px 0;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 20px 0;
    }
}

.testimonials .testimonialsHead {
    text-align: center;
    font-weight: bold;
    margin-bottom: 50px;
}

.testimonials .testimonialsHead i {
    color: #ECCFA8;
    margin-left: 15px;
}

.testimonials .testimonialsSlider {
    padding: 0;
}

.testimonials .single-item .item-comment {
    border: 1px solid #eeeeee;
    background-color: #eeeeee;
    padding: 30px 20px;
    border-radius: 8px;
    position: relative;
    min-height: 200px;
}

.testimonials .single-item .item-comment p {
    color: #000;
}

.testimonials .single-item .item-comment:before {
    top: 100%;
    right: 20%;
    content: " ";
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    height: 0;
    width: 0;
    position: absolute;
    margin-left: -32px;
    bottom: -20px;
    border-color: #eeeeee #88b7d500 #c2e1f500;
    border-style: solid;
    border-width: 20px 32px 32px 10px;
}

.testimonials .single-item .client-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px 20px;
}

.testimonials .single-item .client-info .client-img-area {
    border: 4px solid #ECCFA8;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.testimonials .single-item .client-info .client-img-area img {
    display: block;
    width: 70px;
    height: 70px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 100%;
}

.testimonials .single-item .client-info .client-details h5 {
    text-transform: capitalize;
    color: #132235;
}

.testimonials .single-item .client-info .client-details p {
    color: #b7b2b2;
}

.mapEarth .section-title {
    text-align: right;
    margin: 0 auto 25px 0;
    max-width: 100%;
}

.mapEarth .section-title h2 {
    padding-right: 0;
}

.mapEarth .worldMap {
    width: 500px;
    height: 500px;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    position: relative;
}

.mapEarth .worldMap .earth {
    position: absolute;
    top: 50%;
    right: 50%;
    width: 80%;
    height: 80%;
    margin: -40%;
    background: #fff url(../img/map.png) 0 50% repeat-x;
    background-size: auto 90%;
    -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0 1em 2em;
    box-shadow: rgba(0, 0, 0, 0.05) 0 1em 2em;
    border-radius: 100%;
    overflow: hidden;
    -webkit-animation: map linear 90s infinite;
    animation: map linear 90s infinite;
}

.mapEarth .worldMap .orbic {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.mapEarth .worldMap .orbic svg {
    width: 100%;
    height: 100%;
    vertical-align: top;
}

.mapEarth .worldMap #orbic_path {
    fill: none;
    stroke: rgba(0, 0, 0, 0.1);
    stroke-linecap: round;
    stroke-width: 4px;
    stroke-dasharray: 1 9;
    -webkit-animation: orbic linear 2s infinite;
    animation: orbic linear 2s infinite;
}

.mapEarth .worldMap #orbic_dots use {
    fill: #fff;
    stroke: rgba(30, 144, 255, 0.25);
    stroke-width: 4;
    -webkit-animation: dots ease 1s infinite alternate;
    animation: dots ease 1s infinite alternate;
}

.mapEarth .worldMap #orbic_dot1 {
    -webkit-transform: translate(50.4%, 29.6%);
    transform: translate(50.4%, 29.6%);
}

.mapEarth .worldMap #orbic_dot2 {
    -webkit-transform: translate(5%, 62.8%);
    transform: translate(5%, 62.8%);
    -webkit-animation-delay: .2s !important;
    animation-delay: .2s !important;
}

.mapEarth .worldMap #orbic_dot3 {
    -webkit-transform: translate(97%, 41%);
    transform: translate(97%, 41%);
    -webkit-animation-delay: .3s !important;
    animation-delay: .3s !important;
}

.mapEarth .worldMap #orbic_dot4 {
    -webkit-transform: translate(50%, 70.2%);
    transform: translate(50%, 70.2%);
    -webkit-animation-delay: .5s !important;
    animation-delay: .5s !important;
}

.mapEarth .worldMap #orbic_dot5 {
    -webkit-transform: translate(31.5%, 51.5%);
    transform: translate(31.5%, 51.5%);
    -webkit-animation-delay: .7s !important;
    animation-delay: .7s !important;
}

.mapEarth .worldMap #orbic_user1 {
    -webkit-transform: translate(1%, 40%) scale(0.66667);
    transform: translate(1%, 40%) scale(0.66667);
}

.mapEarth .worldMap #orbic_user2 {
    -webkit-transform: translate(18%, 64%) scale(0.66667);
    transform: translate(18%, 64%) scale(0.66667);
}

.mapEarth .worldMap #orbic_user3 {
    -webkit-transform: translate(39.5%, 31%) scale(0.66667);
    transform: translate(39.5%, 31%) scale(0.66667);
}

.mapEarth .worldMap #orbic_user4 {
    -webkit-transform: translate(69%, 22%) scale(0.66667);
    transform: translate(69%, 22%) scale(0.66667);
}

.mapEarth .worldMap #orbic_user5 {
    -webkit-transform: translate(75%, 53%) scale(0.66667);
    transform: translate(75%, 53%) scale(0.66667);
}

@-webkit-keyframes map {
    100% {
        background-position: 220% 50%;
    }
}

@keyframes map {
    100% {
        background-position: 220% 50%;
    }
}

@-webkit-keyframes orbic {
    100% {
        stroke-dashoffset: 10;
    }
}

@keyframes orbic {
    100% {
        stroke-dashoffset: 10;
    }
}

@-webkit-keyframes dots {
    100%,
    80% {
        stroke: #1e90ff;
    }
}

@keyframes dots {
    100%,
    80% {
        stroke: #1e90ff;
    }
}

@media only screen and (max-width: 1000px) {
    .mapEarth .worldMap {
        width: 100%;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        position: relative;
    }

    .mapEarth .worldMap .earth {
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        margin: 0;
        background-color: transparent;
        background-size: 100% auto;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-radius: 0;
        -webkit-animation: none;
        animation: none;
    }
}

@media (max-width: 600px) {
    .mapEarth .worldMap {
        height: 300px;
    }
}

.mapEarth .companyInfo {
    margin-top: 30px;
}

.mapEarth .companyInfo ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mapEarth .companyInfo ul li {
    margin-bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mapEarth .companyInfo ul li span {
    min-width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #132235;
    border-radius: 50%;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    color: #132235;
}

.mapEarth .companyInfo ul li:hover span {
    background-color: #132235;
    color: #fff;
}

.mapEarth .companyInfo ul li p {
    font-weight: bold;
    color: #292929;
}

.mapEarth .companyInfo ul li a {
    color: #132235;
    display: block;
    font-weight: normal;
}

.mapEarth .companyTeam {
    margin-bottom: 50px;
}

.mapEarth .companyTeam .team {
    margin: 20px 0px;
    border-bottom: 1px solid #132235;
    padding-bottom: 5px;
}

.mapEarth .companyTeam .team span {
    width: 40px;
    height: 40px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #132235;
    border-radius: 50%;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    color: #132235;
}

.mapEarth .companyTeam .team:hover span {
    background-color: #132235;
    color: #fff;
}

.mapEarth .companyTeam .team h4 {
    display: inline-block;
    margin: 0px 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.contactForm {
    margin: 100px 0;
}

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

.contactForm form {
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 50px 20px 20px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.contactForm form:hover {
    -webkit-box-shadow: 0px 10px 30px #00000030;
    box-shadow: 0px 10px 30px #00000030;
}

.contactForm form label {
    font-size: small;
    font-weight: bold;
    text-transform: uppercase;
}

.contactForm form .form-control {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.contactForm form .form-control:focus {
    border-color: #132235;
}

.contactForm .googleMap {
    height: 100%;
}

.contactForm .googleMap iframe {
    width: 100%;
    min-height: 300px;
    height: 100%;
    border-radius: 8px;
    -webkit-box-shadow: 0px 10px 30px #00000030;
    box-shadow: 0px 10px 30px #00000030;
}

.mainBanner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 170px 30px 120px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-bottom: 20px;
    background-image: linear-gradient(45deg, #13223590, #ECCFA890), url(../img/sky.jpg);
    background-size: cover;
    background-attachment: fixed;
    -webkit-animation: sky 100s infinite;
    animation: sky 100s infinite;
    position: relative;
}

@-webkit-keyframes sky {
    0% {
        background-position: right bottom;
    }
    100% {
        background-position: left top;
    }
}

@keyframes sky {
    0% {
        background-position: right bottom;
    }
    100% {
        background-position: left top;
    }
}

.mainBanner .Back {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #132235;
    color: #ffffff;
    border-radius: 100%;
    margin-right: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 20px;
    border: none;
}

.mainBanner .Back:hover {
    background-color: #292929;
    color: #FFD700;
}

.mainBanner ul {
    margin: 0;
    list-style: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 0;
}

.mainBanner ul li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 10px;
    color: #132235;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.mainBanner ul li a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: #132235;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
    padding-right: 10px;
}

.mainBanner ul li a:hover {
    color: #ECCFA8;
}

.mainBanner ul li a.active {
    color: #ECCFA8;
    cursor: default;
    font-size: larger;
}

.mainBanner ul li::after {
    content: " / ";
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    right: -3px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.mainBanner ul li:last-child:after {
    display: none;
}

@media (max-width: 768px) {
    .mainBanner {
        padding: 175px 15px 45px;
    }

    .mainBanner .Back {
        margin-right: 20px;
    }

    .mainBanner ul li a {
        font-size: 16px;
    }
}

.mainBanner figure {
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0;
}

.mainBanner figure svg {
    width: 100%;
    height: 150px;
}

@media (max-width: 768px) {
    .mainBanner figure svg {
        height: 70px;
    }
}

.form-label {
    font-weight: bold;
    text-transform: capitalize;
    color: #132235;
    font-size: smaller;
}

@media (max-width: 768px) {
    .form-label {
        font-size: 12px;
    }
}

.form-control {
    min-height: 48px;
}

.form-control:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #c4832e;
}

.form-control::-webkit-input-placeholder {
    color: #b4b4b4;
    font-size: 12px;
}

.form-control:-ms-input-placeholder {
    color: #b4b4b4;
    font-size: 12px;
}

.form-control::-ms-input-placeholder {
    color: #b4b4b4;
    font-size: 12px;
}

.form-control::placeholder {
    color: #b4b4b4;
    font-size: 12px;
}

.profilePic {
    width: 200px;
    margin: auto;
}

.profilePic .dropify-wrapper {
    border-radius: 100%;
}

.profilePic .dropify-wrapper img {
    -o-object-fit: cover;
    object-fit: cover;
    left: -6px;
    top: 49.9% !important;
    width: 106%;
    height: 106%;
    max-width: 106% !important;
    max-height: 200px !important;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
}

.account .card {
    padding: 30px;
    margin-bottom: 50px;
    border-radius: 14px;
    -webkit-box-shadow: 0px 10px 30px #00000030;
    box-shadow: 0px 10px 30px #00000030;
}

@media (min-width: 992px) {
    .account .card {
        margin-top: -200px;
    }
}

@media (max-width: 768px) {
    .account .card {
        padding: 30px 10px;
    }
}

.account .card .loginImg {
    height: 200px;
    -o-object-fit: contain;
    object-fit: contain;
    margin: 20px 0 50px;
}

.account .card a {
    color: #c4832e;
}

.account .socialLogin {
    text-align: center;
}

.account .socialLogin .line {
    padding: 10px 20px;
    margin: auto;
    position: relative;
}

.account .socialLogin .line span {
    background-color: #fff;
    z-index: 2;
    position: relative;
    padding: 0px 20px;
}

.account .socialLogin .line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background-color: #666;
    border-radius: 10px;
}

.account .socialLogin .social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 0;
    margin-bottom: 10px;
}

.account .socialLogin .social .loginIcon {
    padding: 10px 16px;
    margin: 0px 5px;
    width: 100%;
    border-radius: 4px;
    color: #fff;
    text-transform: capitalize;
}

.account .socialLogin .social .loginIcon.facebook {
    background-color: #4267B2;
}

.account .socialLogin .social .loginIcon.gmail {
    background-color: #DB4437;
}

.account .socialLogin .social .loginIcon:hover {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
    -webkit-box-shadow: 0px 10px 20px #00000030;
    box-shadow: 0px 10px 20px #00000030;
}

.select2.select2-container {
    display: block;
    width: 100% !important;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.select2.select2-container .select2-selection--single {
    min-height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.select2 .select2-selection__arrow {
    top: 50% !important;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.select2-results__option--selectable {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #132235;
    color: #ECCFA8;
}

.dropify-font-upload:before,
.dropify-wrapper .dropify-message span.file-icon:before {
    content: "\f382";
    font-family: "Font Awesome 5 free";
    font-weight: 100;
    color: #000;
    font-size: 26px;
}

.dropify-wrapper .dropify-message p {
    text-align: center;
    font-size: 12px;
}

.profile .NavBack {
    background-image: linear-gradient(45deg, #13223590, #ECCFA890), url(../img/sky.jpg);
    background-size: cover;
    background-attachment: fixed;
    height: 120px;
    margin-bottom: 50px;
}

.profile .userHeader {
    margin: 20px 0px;
    background-color: #ffffff;
    color: #132235;
    border-radius: 20px;
    -webkit-box-shadow: 0px 10px 30px #00000030;
    box-shadow: 0px 10px 30px #00000030;
    padding: 20px;
}

@media (max-width: 768px) {
    .profile .userHeader {
        padding: 10px;
    }
}

.profile .userHeader .userInfo {
    position: relative;
    margin: 0px 10px;
}

.profile .userHeader .userInfo img {
    width: 100px;
    height: 100px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    border-radius: 100%;
    border: 3px solid #ECCFA8;
}

.profile .userHeader .userInfo span {
    margin: 0px 20px;
    font-size: 18px;
}

.profile .userHeader .userInfo .control {
    position: absolute;
    right: 20px;
    top: 20px;
}

.profile .userHeader .userInfo .control i {
    font-size: 28px;
    color: red;
    cursor: pointer;
}

.profile .userHeader .userInfo .control .switch {
    position: relative;
    width: 50px;
    height: 28px;
    margin: -3px 10px;
}

.profile .userHeader .userInfo .control .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.profile .userHeader .userInfo .control .switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
    margin: 0px !important;
}

.profile .userHeader .userInfo .control .switch .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

.profile .userHeader .userInfo .control .switch input:checked + .slider {
    background-color: #2196F3;
}

.profile .userHeader .userInfo .control .switch input:focus + .slider {
    -webkit-box-shadow: 0 0 1px #2196F3;
    box-shadow: 0 0 1px #2196F3;
}

.profile .userHeader .userInfo .control .switch input:checked + .slider:before {
    -webkit-transform: translateX(22px);
    transform: translateX(22px);
}

@media (max-width: 760px) {
    .profile .userHeader .container {
        padding: 0px !important;
    }

    .profile .userHeader .userInfo {
        padding: 20px 10px;
    }

    .profile .userHeader .userInfo img {
        width: 80px;
        height: 80px;
    }

    .profile .userHeader .userInfo span {
        margin: 0px 10px;
    }
}

.profile .profileNavCol {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 5px;
    border: 1px solid #ccc;
}

.profile .profileNavCol a {
    padding: 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #132235;
    margin: 5px 1px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 4px;
    border: 1px solid #ECCFA8;
    position: relative;
}

.profile .profileNavCol a i {
    margin-left: 5px;
}

.profile .profileNavCol a.active, .profile .profileNavCol a:hover {
    background-color: #132235;
    color: #ECCFA8;
}

@media (max-width: 760px) {
    .profile .profileNavCol a {
        padding: 8px 10px;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        margin: 3px 1px;
        -webkit-box-shadow: 0px 2px 4px 0px #00000020;
        box-shadow: 0px 2px 4px 0px #00000020;
        border-radius: 100px;
        border-bottom: 1px solid #ECCFA8;
    }
}

.profile .profileTitle {
    background-color: #F8F8F8;
    padding: 10px;
    margin-bottom: 20px;
}

.blogsPage .blog {
    border-radius: 10px;
    border: 1px solid #ECCFA8;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #ffffff;
    height: 100%;
}

.blogsPage .blog .date {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #132235;
    color: #ECCFA8;
    border-radius: 10px 0px 10px 0px;
    padding: 10px 20px;
}

.blogsPage .blog .blog-image img {
    height: 250px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -o-object-position: center;
    object-position: center;
}

.blogsPage .blog .blog-content {
    padding: 20px;
}

.blogsPage .blog .blog-content a {
    font-size: 20px;
    color: #132235;
    margin-bottom: 10px;
    display: block;
}

.blogsPage .blog .blog-content p {
    color: #757575;
    max-height: 120px;
    overflow: hidden;
}

.blogsPage .blog:hover {
    -webkit-box-shadow: 0px 10px 30px #00000030;
    box-shadow: 0px 10px 30px #00000030;
}

.blogsPage .blog:hover .blog-image img {
    -o-object-position: top;
    object-position: top;
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
}

.blogsPage .blog:hover .blog-content {
    padding: 20px;
}

.blogsPage .blog:hover .blog-content a {
    color: #c4832e;
}

.blogsPage .blog:hover .blog-content p {
    color: #757575;
}

.pagination {
    margin: 0;
}

.pagination .page-item .page-link {
    color: #132235;
}

.pagination .page-item .page-link:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.pagination .page-item.active .page-link {
    background-color: #132235;
    color: #ECCFA8;
    border-color: #132235;
}

.blogDetails .blog {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .blogDetails .blog {
        padding: 10px;
    }
}

.blogDetails .blog .blog-image {
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .blogDetails .blog .blog-image {
        margin-bottom: 10px;
    }
}

.blogDetails .blog .blog-image img {
    border-radius: 16px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    max-height: 450px;
}

.blogDetails .blog .blog-content {
    padding: 20px;
}

.blogDetails .blog .blog-content ul {
    list-style: none;
    padding: 0px;
    margin: 0;
}

.blogDetails .blog .blog-content ul li {
    margin-bottom: 20px;
    color: #808080;
}

.blogDetails .blog .blog-content .date {
    color: #132235;
    margin-bottom: 20px;
    display: block;
}

.blogDetails .blog .blog-content .blogTitle {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #132235;
    margin-bottom: 20px;
}

.blogDetails .blog .blog-content .share p {
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.careers .subTitle {
    width: 900px;
    text-align: center;
    margin-bottom: 30px;
}

.careers .subTitle span {
    font-weight: bold;
    color: #132235;
    margin-bottom: 10px;
    display: block;
    font-size: large;
}

.careers .type {
    padding: 20px;
    -webkit-box-shadow: 0px 3px 6px #00000030;
    box-shadow: 0px 3px 6px #00000030;
    border-radius: 4px;
    height: 100%;
}

.careers .type ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

@media (max-width: 768px) {
    .careers .type ul {
        padding: 10px;
    }
}

.careers .type ul li {
    margin-bottom: 20px;
    color: #808080;
}

.Jobs {
    position: relative;
    margin: 30px 0px;
}

.Jobs .Job {
    -webkit-box-shadow: 0px 3px 6px #00000030;
    box-shadow: 0px 3px 6px #00000030;
    padding: 20px;
    border-radius: 10px;
    height: 100%;
}

.Jobs .Job .jobImg {
    width: 100%;
    height: 250px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 10px;
}

.Jobs .Job .JobTitle {
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    color: #132235;
    font-size: 22px;
}

.Jobs .Job p {
    color: #777;
    margin-bottom: 15px;
}

.Jobs .Job ul {
    margin-bottom: 10px;
}

.Jobs .Job ul li {
    margin-bottom: 10px;
}

.Jobs .Job a {
    text-align: center;
    display: block;
    margin: 25px 0px 10px;
    text-decoration: underline;
    color: #c4832e;
}

.JobDetails {
    margin: 30px 0px;
    position: relative;
}

.JobDetails .jobTitle {
    font-weight: bold;
    margin-bottom: 20px;
}

.JobDetails .des {
    margin: 20px 0;
}

.JobDetails ul {
    margin-bottom: 20px;
}

.JobDetails ul li {
    margin-bottom: 15px;
}

.JobDetails .joinForm {
    display: none;
    padding: 30px 30px 10px;
    border: 1px dashed #eee;
    background-color: #fbf9f5;
    border-radius: 10px;
    margin-top: 50px;
}

.headLine {
    font-weight: 900;
    font-size: 40px;
    text-align: center;
    color: #132235;
    margin-bottom: 40px;
}

.headLine span {
    color: #c4832e;
    margin-top: 10px;
    display: block;
}

.partnersPage {
    padding: 50px 0;
}

.partnersPage .partner {
    position: relative;
    text-align: center;
    cursor: pointer;
}

.partnersPage .partner .image {
    overflow: hidden;
    margin-bottom: 20px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 3px solid #ECCFA8;
    margin: 0px auto 15px;
}

.partnersPage .partner .image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.partnersPage .partner .image:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.partnersPage .partner h4 {
    font-weight: bold;
    color: #132235;
}

.partnersPage .partner p {
    padding: 10px;
}

.partnerModal [data-bs-dismiss="modal"] {
    cursor: pointer;
}

.partnerModal .modal-content {
    background-color: #132235;
}

.partnerModal .modal-content .modal-header {
    color: #ECCFA8;
    border-bottom-color: #ECCFA8;
}

.partnerModal .modal-content img {
    width: 100%;
    max-height: 350px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    border-radius: 12px;
}

.partnerModal .modal-content h2 {
    font-weight: bold;
    color: #ECCFA8;
    margin-bottom: 10px;
}

.partnerModal .modal-content h6 {
    color: #ffffff;
    margin-bottom: 20px;
}

.partnerModal .modal-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.partnerModal .modal-content ul li {
    margin-bottom: 10px;
    color: #a3a3a3;
}

.partnerModal .modal-content .meeting {
    color: #ECCFA8;
}

.partnerModal .modal-content .meeting a {
    display: block;
    color: #ECCFA8;
}

.fields {
    margin-bottom: 50px;
}

.fields .field {
    padding: 20px;
    border: 1px dashed #ECCFA8;
    display: block;
    position: relative;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.fields .field img {
    width: 100%;
    height: 200px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-bottom: 30px;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 4px;
}

.fields .field h5 {
    color: #132235;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.fields .field:hover {
    -webkit-box-shadow: 0px 10px 30px #00000030;
    box-shadow: 0px 10px 30px #00000030;
    border: 1px solid #ECCFA8;
}

.fields .field:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.fieldDetails {
    margin-bottom: 50px;
}

.fieldDetails .info {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 16px;
}

.fieldDetails .info img {
    border-radius: 16px;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    max-height: 300px;
    margin-bottom: 20px;
}

.fieldDetails .info ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.fieldDetails .info ul li {
    margin-bottom: 20px;
    color: #808080;
}

.request form {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 16px;
}

.case {
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #ECCFA8;
    border-top: 10px solid #ECCFA8;
    background-color: #ffffff;
}

.case .caseTitle {
    padding-bottom: 10px;
    border-bottom: 1px solid #757575;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: capitalize;
}

.case .caseTitle span {
    color: #ECCFA8;
    background-color: #132235;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 14px;
}

.case .caseTitle a {
    color: #132235;
}

.case .type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.case .type span {
    font-weight: bold;
    color: #c4832e;
}

.case .date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.case .date span {
    color: #c4832e;
}

.case .date a {
    display: block;
    color: #c4832e;
    text-align: end;
    text-decoration: underline;
}

.routeNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #ECCFA8;
    border-radius: 20px;
    padding: 10px 30px;
    margin-bottom: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.routeNav .Back {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #132235;
    color: #ffffff;
    border-radius: 100%;
    margin-right: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    font-size: 20px;
    border: none;
}

.routeNav .Back:hover {
    background-color: #292929;
    color: #FFD700;
}

.routeNav .Back .fa-angle-right:before {
    content: "\f104";
}

.routeNav ul {
    margin: 0;
    list-style: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 0;
}

.routeNav ul li {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 10px;
    color: #132235;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.routeNav ul li a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: #132235;
}

.routeNav ul li a:hover {
    color: #292929;
}

.routeNav ul li a.active {
    color: #292929;
    cursor: default;
    font-weight: bold;
}

.routeNav ul li::after {
    content: " / ";
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    right: -3px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.routeNav ul li:last-child:after {
    display: none;
}

@media (max-width: 768px) {
    .routeNav {
        margin: 0px 0px 30px;
        padding: 10px 10px;
    }

    .routeNav .Back {
        margin-right: 20px;
    }

    .routeNav ul li a {
        font-size: 16px;
    }
}

.lawyerInfo {
    background-color: #132235;
    padding: 20px;
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.lawyerInfo .image {
    overflow: hidden;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #ECCFA8;
    margin-right: 20px;
}

.lawyerInfo .image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.lawyerInfo .image:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.lawyerInfo .info {
    color: #ffffff;
}

.lawyerInfo .info .name {
    color: #ECCFA8;
    font-weight: bold;
    margin-bottom: 10px;
}

.lawyerInfo .info .Job {
    margin-bottom: 10px;
}

.profileContent {
    background-color: #fbf9f5;
    border-radius: 8px;
}

.timeLine {
    padding: 10px;
    padding-left: 20px;
    position: relative;
}

.timeLine::before {
    content: '';
    width: 2px;
    height: calc(100% - 50px);
    border-radius: 10px;
    background-color: #ECCFA8;
    position: absolute;
    left: 0;
    top: 40px;
}

.timeLine .court {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 50px;
    border-top: 6px solid #ECCFA8;
    position: relative;
    border: 1px solid #eee;
}

.timeLine .court:last-child {
    margin-bottom: 0;
}

.timeLine .court::before {
    content: '';
    width: 22px;
    height: 20px;
    border-radius: 2px;
    background-color: #ECCFA8;
    position: absolute;
    left: -20.2px;
    top: 20px;
}

.timeLine .court::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #ffffff;
    border-radius: 2px;
    background-color: #ECCFA8;
    position: absolute;
    left: 0px;
    top: 20px;
}

.timeLine .date {
    margin-bottom: 20px;
}

.timeLine .date i {
    color: #ECCFA8;
}

.timeLine img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.timeLine .courtTitle {
    font-weight: bold;
    margin-bottom: 20px;
}

.timeLine ul {
    list-style: none;
    padding: 0px;
    margin: 0;
}

.timeLine ul li {
    margin-bottom: 20px;
    color: #808080;
}

.editProfile {
    padding: 20px;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 10px;
}

.editProfile .head {
    background-color: #ECCFA8;
    color: #132235;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
}

.editProfile .head h5 {
    font-weight: bold;
    text-transform: uppercase;
}

.notifications {
    padding: 10px;
}

.notifications ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.notifications ul .notification {
    padding: 20px;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 3px 6px #00000030;
    box-shadow: 0px 3px 6px #00000030;
    border-radius: 10px;
    margin-bottom: 10px;
}

.notifications ul .notification .notificationTitle {
    font-weight: bold;
    margin-bottom: 10px;
}

.notifications ul .notification p {
    color: #808080;
    margin-bottom: 10px;
}

.notifications ul .notification .date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: small;
}

.notifications ul .notification .date i {
    color: #ECCFA8;
}

.footer {
    background-image: linear-gradient(45deg, #132235, #1c3d68);
    background-size: cover;
    padding: 20px 0;
    -webkit-box-shadow: 0px -10px 20px #13223530;
    box-shadow: 0px -10px 20px #13223530;
    position: relative;
    z-index: 2;
    margin-top: 50px;
}

.footer .logo {
    max-height: 80px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-bottom: 10px;
}

.footer .info {
    color: #b9b9b9;
    margin-bottom: 20px;
    padding-right: 20px;
}

.footer .head {
    font-weight: bold;
    text-transform: uppercase;
    color: #ECCFA8;
    margin-bottom: 30px;
    padding-bottom: 20px;
    position: relative;
}

.footer .head::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 100px;
}

.footer .head::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 10px;
    height: 10px;
    border-radius: 100px;
    background-color: #ffffff;
}

.footer .Links ul {
    padding: 0;
    margin: 0;
}

.footer .Links ul li {
    margin-bottom: 5px;
    display: inline-block;
    min-width: 49%;
    padding: 5px;
}

.footer .Links ul li a {
    color: #ECCFA8;
}

.footer .Links ul li a:hover {
    color: #ffffff;
}

.footer .Links .more {
    margin-bottom: 10px;
}

.footer .Links .more p {
    color: #ffffff;
    margin-bottom: 5px;
}

.footer .Links .more a {
    color: #ECCFA8;
    font-size: small;
}

.footer .Links .more a:hover {
    color: #ffffff;
}

.footer .Copyright {
    padding: 20px 20px 0;
    border-top: 1px solid #ECCFA8;
    text-align: center;
    color: #ffffff;
    font-size: small;
}

.footer .Copyright a {
    color: #ECCFA8;
    font-size: small;
}

.footer .Copyright a:hover {
    color: #ffffff;
}

.footer .Copyright a img {
    height: 20px;
    -o-object-fit: contain;
    object-fit: contain;
    margin: 0px 5px;
}

.spinner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #132235;
    position: fixed;
    width: 100%;
    min-height: 100vh;
    left: 0;
    top: 0;
    z-index: 99999;
}

.spinner .loading {
    position: relative;
    width: 4rem;
    height: 4rem;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 800px;
    perspective: 800px;
}

.spinner .loading .arc {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border-bottom: 3px solid #ECCFA8;
}

.spinner .loading .arc:nth-child(1) {
    -webkit-animation: rotate1 1.15s linear infinite;
    animation: rotate1 1.15s linear infinite;
}

.spinner .loading .arc:nth-child(2) {
    -webkit-animation: rotate2 1.15s linear infinite;
    animation: rotate2 1.15s linear infinite;
}

.spinner .loading .arc:nth-child(3) {
    -webkit-animation: rotate3 1.15s linear infinite;
    animation: rotate3 1.15s linear infinite;
}

.spinner .loading .arc:nth-child(1) {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.spinner .loading .arc:nth-child(2) {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.spinner .loading .arc:nth-child(3) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

@-webkit-keyframes rotate1 {
    from {
        -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0);
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(0);
    }
    to {
        -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(1turn);
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(1turn);
    }
}

@keyframes rotate1 {
    from {
        -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0);
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(0);
    }
    to {
        -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(1turn);
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(1turn);
    }
}

@-webkit-keyframes rotate2 {
    from {
        -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(0);
        transform: rotateX(50deg) rotateY(10deg) rotateZ(0);
    }
    to {
        -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(1turn);
        transform: rotateX(50deg) rotateY(10deg) rotateZ(1turn);
    }
}

@keyframes rotate2 {
    from {
        -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(0);
        transform: rotateX(50deg) rotateY(10deg) rotateZ(0);
    }
    to {
        -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(1turn);
        transform: rotateX(50deg) rotateY(10deg) rotateZ(1turn);
    }
}

@-webkit-keyframes rotate3 {
    from {
        -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(0);
        transform: rotateX(35deg) rotateY(55deg) rotateZ(0);
    }
    to {
        -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(1turn);
        transform: rotateX(35deg) rotateY(55deg) rotateZ(1turn);
    }
}

@keyframes rotate3 {
    from {
        -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(0);
        transform: rotateX(35deg) rotateY(55deg) rotateZ(0);
    }
    to {
        -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(1turn);
        transform: rotateX(35deg) rotateY(55deg) rotateZ(1turn);
    }
}

.aboutImage {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 20px;
    height: 100%;
}

.aboutImage:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #ECCFA8;
    z-index: -1;
    -webkit-animation: border-transform-default-two 10s linear infinite alternate forwards;
    animation: border-transform-default-two 10s linear infinite alternate forwards;
}

.aboutImage img {
    -webkit-animation: border-transform-default 10s linear infinite alternate forwards;
    animation: border-transform-default 10s linear infinite alternate forwards;
    height: 100%;
}

@-webkit-keyframes border-transform-default {
    0%,
    to {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
    }
    14% {
        border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
    }
    28% {
        border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
    }
    42% {
        border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
    }
    56% {
        border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
    }
    70% {
        border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
    }
    84% {
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
    }
}

@keyframes border-transform-default {
    0%,
    to {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
    }
    14% {
        border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
    }
    28% {
        border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
    }
    42% {
        border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
    }
    56% {
        border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
    }
    70% {
        border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
    }
    84% {
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
    }
}

@-webkit-keyframes border-transform-default-two {
    0%,
    to {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
    }
    14% {
        border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
    }
    28% {
        border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
    }
    42% {
        border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
    }
    56% {
        border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
    }
    70% {
        border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
    }
    84% {
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
    }
}

@keyframes border-transform-default-two {
    0%,
    to {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
    }
    14% {
        border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
    }
    28% {
        border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
    }
    42% {
        border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
    }
    56% {
        border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
    }
    70% {
        border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
    }
    84% {
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
    }
}

.noData {
    padding: 20px;
}

.noData img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-bottom: 20px;
}

.noData h1,
.noData h2,
.noData h3,
.noData h4 {
    font-weight: bold;
    margin-bottom: 10px;
}

/* Normal desktop :992px. (Laptop 14") */
@media (min-width: 992px) and (max-width: 1199px) {
    /* Global */
    h1 {
        font-size: 30px !important;
    }

    h2 {
        font-size: 26px !important;
    }

    h3 {
        font-size: 22px !important;
    }

    h4 {
        font-size: 20px !important;
    }

    h5 {
        font-size: 18px !important;
    }

    h6 {
        font-size: 16px !important;
    }

    a,
    p {
        font-size: 14px !important;
    }
}

/* Tablet device :768px. */
@media (min-width: 768px) and (max-width: 991px) {
    /* Global */
    body {
        font-size: 14px !important;
    }

    h1 {
        font-size: 26px !important;
    }

    h2 {
        font-size: 22px !important;
    }

    h3 {
        font-size: 20px !important;
    }

    h4 {
        font-size: 18px !important;
    }

    h5 {
        font-size: 16px !important;
    }

    h6 {
        font-size: 15px !important;
    }

    a,
    p {
        font-size: 14px !important;
    }
}

/* small mobile :320px. */
@media (max-width: 767px) {
    /* Global */
    body {
        font-size: 12px !important;
    }

    h1 {
        font-size: 22px !important;
    }

    h2 {
        font-size: 18px !important;
    }

    h3 {
        font-size: 17px !important;
    }

    h4 {
        font-size: 16px !important;
    }

    h5 {
        font-size: 15px !important;
    }

    h6 {
        font-size: 14px !important;
    }

    a,
    p {
        font-size: 13px !important;
    }
}

/*# sourceMappingURL=styleEN.css.map */


.notificationsCount {
    min-width: 20px;
    height: 20px;
    padding: 5px;
    position: absolute;
    right: 5px;
    top: 5px;
    /*transform: translateY(-50%);*/
    z-index: 2;
    background-color: #ECCFA8;
    color: #132235;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@font-face {
    font-family: Almarai;
    src: url(../webfonts/Almarai-Regular.ttf);
}

.language a {
    font-family: 'Almarai';
    color: #fff;
}