@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;
  font-family: "Almarai";
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
  direction: rtl;
}

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

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

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

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

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

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;
  box-shadow: none !important;
}

.btn:focus {
  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: #06222f;
  color: #F49526;
  transition: all 0.3s ease-in-out;
  border-radius: 500px;
  opacity: 1;
  padding: 8px 16px;
  border: 1px solid #F49526;
}
.default-btn span {
  position: absolute;
  top: 50%;
  right: 10%;
  display: inline-block;
  width: 0;
  height: 0;
  background-color: #F49526;
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  transform: translate(50%, -50%);
  z-index: -1;
  opacity: 1;
}
.default-btn:hover {
  color: #06222f;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1882352941);
}
.default-btn:hover span {
  width: 300%;
  height: 600%;
}

.topHeader {
  background-color: #06222f;
  text-align: center;
  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: #F49526;
  letter-spacing: 1px;
}
.topHeader .emergency a i {
  font-size: larger;
}

.socialIcons {
  padding: 0;
  margin: 0;
  list-style: none;
}
.socialIcons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #F49526;
  border-radius: 100px;
  margin: 2px;
  color: #F49526;
  transition: all 0.3s ease-in-out;
}
.socialIcons a:hover {
  background-color: #F49526;
  color: #06222f;
  transform: translateY(-3px);
}

header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 1024;
  transition: background 0.3s ease-in-out;
  background-color: transparent;
}
@media screen and (max-width: 1200px) {
  header {
    background-color: #ffffff;
  }
}
header nav {
  width: min(100% - 48px, 1360px);
  display: flex;
  justify-content: space-between;
  margin: auto;
  padding: 16px 0;
  gap: 8px;
}
header nav .logo {
  margin: auto 0;
}
header nav .logo img {
  height: 50px;
  transition: all 0.3s ease-in-out;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1200px) {
  header nav .logo img {
    height: 40px;
  }
}
header nav .navMenu {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s ease-in-out;
  align-items: center;
}
header nav .navMenu .navLink {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  color: #ffffff;
  min-width: 72px;
  justify-content: center;
  text-transform: capitalize;
  gap: 4px;
}
header nav .navMenu .navLink.active, header nav .navMenu .navLink:hover {
  color: #F49526;
}
header nav .navMenu .navLink.lang {
  margin-right: auto;
}
header nav .navMenu .navLink:first-child {
  margin-right: auto;
}
@media (max-width: 1200px) {
  header nav .navMenu {
    position: fixed;
    z-index: -1;
    right: -100%;
    top: 0px;
    width: 100%;
    height: 100vh;
    padding: 100px 20px 40px;
    flex-direction: column;
    justify-content: start;
    background-color: #292929;
    align-items: start;
  }
  header nav .navMenu .navLink {
    text-align: center;
    justify-content: center;
  }
  header nav .navMenu .navLink.lang {
    margin-right: unset !important;
  }
  header nav .navMenu .navLink:first-child {
    margin-right: unset !important;
  }
}
header nav .navMenu.active {
  right: 0;
}
header nav .navBtn {
  margin: auto 0;
  position: relative;
  min-width: 24px;
  height: 24px;
  padding: 5px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}
header nav .navBtn span {
  position: absolute;
  right: 0;
  display: block;
  width: 24px;
  height: 2px;
  background-color: #F49526;
  margin: 4px 0;
  transition: all 0.3s ease-in-out;
}
header nav .navBtn span:first-child {
  top: 0;
}
header nav .navBtn span:nth-child(2) {
  width: 10px;
  top: 7px;
}
header nav .navBtn span:nth-child(3) {
  width: 16px;
  bottom: 0;
}
header nav .navBtn:not(.active):hover span:first-child {
  width: 16px;
}
header nav .navBtn:not(.active):hover span:nth-child(2) {
  width: 20px;
}
header nav .navBtn.active span:first-child {
  transform: rotate(45deg);
  top: 8px;
  width: 20px;
}
header nav .navBtn.active span:nth-child(2) {
  width: 0;
  opacity: 0;
}
header nav .navBtn.active span:last-child {
  transform: rotate(-45deg);
  top: 8px;
  width: 20px;
}
@media (min-width: 1200px) {
  header nav .navBtn {
    display: none;
  }
}
header .drobDown {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .drobDown .linksBtn {
  position: relative;
  display: flex;
  gap: 6px;
  align-items: baseline;
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  min-width: 30px;
  width: -moz-fit-content;
  width: fit-content;
  color: #ffffff;
}
header .drobDown .linksBtn i {
  color: #06222f;
}
header .drobDown .linksMenu {
  position: absolute;
  right: 0;
  top: calc(100% + 100px);
  z-index: 2;
  background-color: #ffffff;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  min-width: 100%;
  width: -moz-max-content;
  width: max-content;
  box-shadow: -1px 2px 8px 0px rgba(0, 0, 0, 0.062745098);
}
header .drobDown .linksMenu a {
  color: #292929;
  font-size: 14px;
}
header .drobDown .linksMenu .main {
  position: relative;
  cursor: pointer;
}
header .drobDown .linksMenu .main .sub {
  position: absolute;
  right: calc(100% + 28px);
  top: calc(100% + 8px);
  z-index: 2;
  background-color: #ffffff;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  min-width: 100%;
  width: -moz-max-content;
  width: max-content;
  box-shadow: -1px 2px 8px 0px rgba(0, 0, 0, 0.062745098);
}
header .drobDown .linksMenu .main .sub.show {
  top: 0;
  opacity: 1;
  visibility: visible;
}
header .drobDown .linksMenu.show {
  top: calc(100% + 8px);
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 1200px) {
  .headerAnimate {
    padding: 0 5px;
    background-color: #ffffff;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.062745098);
  }
  .headerAnimate .logo {
    padding: 5px;
  }
  .headerAnimate .navMenu .navLink {
    color: #292929;
  }
}
.swiper {
  padding-bottom: 40px;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 500px;
  border: 1px solid transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  font-weight: lighter;
}
@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";
  transition: all 0.3s ease-in-out;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  border: 1px solid #ffffff;
}

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

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

.swiper-pagination {
  width: auto !important;
  right: 50% !important;
  transform: translateX(50%);
  background-color: rgba(19, 34, 53, 0);
  border-radius: 4px;
  padding: 0px 10px;
  transition: all 0.3s ease-in-out;
}
.swiper-pagination .swiper-pagination-bullet {
  transition: all 0.3s ease-in-out;
  width: 20px;
  border-radius: 4px;
  opacity: 0.5;
  background-color: #F49526;
  margin: 2px !important;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #F49526;
  width: 40px;
  border-radius: 4px;
  opacity: 1;
  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: flex;
  justify-content: start;
  align-items: center;
  height: 80vh;
}
.MainSlider .MainSlider-container .swiper-slide::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5647058824);
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .MainSlider .MainSlider-container .swiper-slide {
    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;
  margin-right: 100px;
}
@media (max-width: 768px) {
  .MainSlider .MainSlider-container .swiper-slide .info {
    margin-right: 0px;
  }
}
.MainSlider .MainSlider-container .swiper-slide .info h2 {
  font-size: 25px;
  font-weight: bold;
  color: #ffffff;
  text-transform: capitalize;
  text-shadow: 3px 2px 3px rgba(0, 0, 0, 0.2509803922);
  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: #ffffff;
  font-weight: bolder;
  text-transform: uppercase;
  text-shadow: 3px 2px 3px rgba(0, 0, 0, 0.2509803922);
}
@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 {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInDown !important;
  animation-delay: 0.5s;
}
.mainSlideItem.swiper-slide-active h1 {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInUp !important;
  animation-delay: 1s;
}
.mainSlideItem.swiper-slide-active a {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-name: fadeInright !important;
  animation-delay: 1.5s;
}

.title {
  color: #06222f;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.title::after {
  content: "";
  width: 95%;
  height: 2px;
  background-color: #F49526;
  position: absolute;
  right: 0;
  bottom: 50%;
  transform: translateY(50%);
}
.title::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 100px;
  background-color: #F49526;
  position: absolute;
  left: 5%;
  bottom: 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 #F49526;
  font-weight: bold;
}
@media (max-width: 768px) {
  .title a,
  .title span {
    padding: 15px 20px;
  }
}
.title a {
  font-weight: normal;
  font-size: 14px;
  background-color: #06222f;
  color: #F49526;
  padding: 10px 15px;
  transition: all 0.3s ease-in-out;
}
.title a:hover {
  background-color: #F49526;
  color: #06222f;
}

.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 #F49526;
  background-color: #ffffff;
  position: relative;
  z-index: 2;
}
.pageTitle::before {
  content: "";
  width: 95%;
  height: 2px;
  background-color: #F49526;
  position: absolute;
  right: 0;
  bottom: 50%;
  transform: translateY(50%);
  z-index: 1;
}

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

.aboutUs {
  padding: 30px 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: #F49526;
  position: absolute;
  left: 0;
  bottom: 0;
}
.aboutUs .aboutImg::after {
  content: "";
  height: 50%;
  width: 2px;
  border-radius: 100px;
  background-color: #F49526;
  position: absolute;
  left: 0;
  bottom: 0;
}

.ourFields {
  padding: 50px 0;
  background-image: url(../img/pattern-1.png);
  background-size: contain;
  background-position: bottom left;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .ourFields {
    padding: 20px 0;
  }
}
.ourFields .content {
  padding: 40px 30px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1882352941);
  border-radius: 20px;
  background-color: #ffffff;
  text-align: center;
}
.ourFields .content .fields {
  border: 1px solid #F49526;
  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: #06222f;
  cursor: pointer;
  padding: 10px;
  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: #F49526;
  background-color: #06222f;
}
.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;
  }
}

.companyPartners {
  padding-top: 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0), rgba(244, 149, 38, 0.1882352941)), url(../img/why-choose-bg.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}
.companyPartners .swiper-slide {
  width: auto;
}
.companyPartners .partnerLogo {
  height: 150px;
  padding: 10px;
}
.companyPartners .partnerLogo img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.ourProducts {
  padding: 50px 0;
  background-image: url(../img/pattern-1.png);
  background-size: contain;
  background-position: bottom left;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .ourProducts {
    padding: 20px 0;
  }
}
.ourProducts .content {
  padding: 40px 30px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1882352941);
  border-radius: 20px;
  background-color: #ffffff;
  text-align: center;
}
@media (max-width: 768px) {
  .ourProducts .content {
    padding: 20px 10px;
  }
}

.product {
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 10px;
  height: 100%;
  text-align: center;
}
.product .productImg {
  display: block;
  margin-bottom: 16px;
  border-radius: 10px;
  height: 200px;
}
.product .productImg img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product .productTitle {
  color: #F49526;
  font-weight: bold;
  font-size: large;
  margin-bottom: 8px;
  display: block;
}
.product .productDesc {
  font-size: small;
  color: #666;
  margin-bottom: 10px;
}
.product .more {
  text-transform: uppercase;
  color: #00ADEF;
  text-decoration: underline;
  font-size: small;
}

.counter {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 20px 0;
}
.counter .counterBox {
  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: flex;
  align-items: center;
}
.counter .counterBox .counterItem .icon {
  display: inline-flex;
  padding: 10px;
}
.counter .counterBox .counterItem .icon i {
  display: inline-block;
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  background-color: rgba(255, 255, 255, 0.2509803922);
  color: #ffffff;
  text-align: center;
  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, rgba(19, 34, 53, 0.7803921569)), 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: #F49526;
}
.ourPartners .title span {
  background-color: #06222f;
}
.ourPartners .swiper {
  padding: 50px 100px;
  width: 100%;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .ourPartners .swiper {
    padding: 50px 20px;
  }
}
.ourPartners .swiper .swiper-wrapper {
  align-items: center;
}
.ourPartners .swiper .swiper-slide {
  height: 100%;
  background-color: #06222f;
  box-shadow: 5px 5px 20px 20px rgba(19, 34, 53, 0.8235294118);
  border-radius: 12px;
  border: 1px solid #F49526;
}
.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: #F49526;
  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: #F49526;
}
.ourPartners .swiper .swiper-slide .partner .meeting a {
  display: block;
  color: #F49526;
}

.homeBlogs {
  padding: 70px 0;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0), rgba(244, 149, 38, 0.1882352941)), url(../img/why-choose-bg.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .homeBlogs {
    padding: 20px 0;
  }
}
.homeBlogs .swiper-slide {
  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: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.homeBlogs .titleTwo::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 100%;
  height: 4px;
  background-color: #F49526;
  transition: 0.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: #F49526;
}
.homeBlogs .blog {
  background-color: #ffffff;
  margin: 15px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1882352941);
  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-left: 5px;
  position: relative;
}
@media (max-width: 768px) {
  .homeBlogs .blog .blog-content {
    padding-left: 25px;
  }
}
.homeBlogs .blog .blog-content::before {
  content: "";
  width: 65px;
  height: 100%;
  position: absolute;
  right: -30px;
  top: 0;
  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: #F49526;
}
.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;
  right: 0px;
  width: auto;
  z-index: 5;
  top: 0;
  padding: 10px 20px;
  background-color: #06222f;
  color: #ffffff;
  border-radius: 20px 0 20px 0;
  box-shadow: -3px 3px 3px rgba(0, 0, 0, 0.4392156863);
}

.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: #F49526;
  margin-right: 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%;
  left: 20%;
  content: " ";
  transform: scaleX(-1);
  height: 0;
  width: 0;
  position: absolute;
  margin-right: -32px;
  bottom: -20px;
  border-color: #eeeeee rgba(136, 183, 213, 0) rgba(194, 225, 245, 0);
  border-style: solid;
  border-width: 20px 32px 32px 10px;
}
.testimonials .single-item .client-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px;
}
.testimonials .single-item .client-info .client-img-area {
  border: 4px solid #F49526;
  border-radius: 50%;
  display: flex;
  justify-content: 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: #06222f;
}
.testimonials .single-item .client-info .client-details p {
  color: #b7b2b2;
}

.mapEarth .section-title {
  text-align: left;
  margin: 0 auto 25px 0;
  max-width: 100%;
}
.mapEarth .section-title h2 {
  padding-left: 0;
}
.mapEarth .worldMap {
  width: 500px;
  height: 500px;
  order: 2;
  position: relative;
}
.mapEarth .worldMap .earth {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  margin: -40%;
  background: #fff url(../img/map.png) 0 50% repeat-x;
  background-size: auto 90%;
  box-shadow: rgba(0, 0, 0, 0.05) 0 1em 2em;
  border-radius: 100%;
  overflow: hidden;
  animation: map linear 90s infinite;
}
.mapEarth .worldMap .orbic {
  position: absolute;
  top: 0;
  left: 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;
  animation: orbic linear 2s infinite;
}
.mapEarth .worldMap #orbic_dots use {
  fill: #fff;
  stroke: rgba(30, 144, 255, 0.25);
  stroke-width: 4;
  animation: dots ease 1s infinite alternate;
}
.mapEarth .worldMap #orbic_dot1 {
  transform: translate(50.4%, 29.6%);
}
.mapEarth .worldMap #orbic_dot2 {
  transform: translate(5%, 62.8%);
  animation-delay: 0.2s !important;
}
.mapEarth .worldMap #orbic_dot3 {
  transform: translate(97%, 41%);
  animation-delay: 0.3s !important;
}
.mapEarth .worldMap #orbic_dot4 {
  transform: translate(50%, 70.2%);
  animation-delay: 0.5s !important;
}
.mapEarth .worldMap #orbic_dot5 {
  transform: translate(31.5%, 51.5%);
  animation-delay: 0.7s !important;
}
.mapEarth .worldMap #orbic_user1 {
  transform: translate(1%, 40%) scale(0.666667);
}
.mapEarth .worldMap #orbic_user2 {
  transform: translate(18%, 64%) scale(0.666667);
}
.mapEarth .worldMap #orbic_user3 {
  transform: translate(39.5%, 31%) scale(0.666667);
}
.mapEarth .worldMap #orbic_user4 {
  transform: translate(69%, 22%) scale(0.666667);
}
.mapEarth .worldMap #orbic_user5 {
  transform: translate(75%, 53%) scale(0.666667);
}
@keyframes map {
  100% {
    background-position: 220% 50%;
  }
}
@keyframes orbic {
  100% {
    stroke-dashoffset: 10;
  }
}
@keyframes dots {
  100%, 80% {
    stroke: #1e90ff;
  }
}
@media only screen and (max-width: 1000px) {
  .mapEarth .worldMap {
    width: 100%;
    order: 2;
    position: relative;
  }
  .mapEarth .worldMap .earth {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: transparent;
    background-size: 100% auto;
    box-shadow: none;
    border-radius: 0;
    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: flex;
  align-items: center;
}
.mapEarth .companyInfo ul li span {
  min-width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #06222f;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
  color: #06222f;
}
.mapEarth .companyInfo ul li:hover span {
  background-color: #06222f;
  color: #fff;
}
.mapEarth .companyInfo ul li p {
  font-weight: bold;
  color: #292929;
}
.mapEarth .companyInfo ul li a {
  color: #06222f;
  display: block;
  font-weight: normal;
}
.mapEarth .companyTeam {
  margin-bottom: 50px;
}
.mapEarth .companyTeam .team {
  margin: 20px 0px;
  border-bottom: 1px solid #06222f;
  padding-bottom: 5px;
}
.mapEarth .companyTeam .team span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #06222f;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
  color: #06222f;
}
.mapEarth .companyTeam .team:hover span {
  background-color: #06222f;
  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;
  transition: all 0.3s ease-in-out;
}
.contactForm form:hover {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1882352941);
}
.contactForm form label {
  font-size: small;
  font-weight: bold;
  text-transform: uppercase;
}
.contactForm form .form-control {
  box-shadow: none !important;
}
.contactForm form .form-control:focus {
  border-color: #06222f;
}
.contactForm .googleMap {
  height: 100%;
}
.contactForm .googleMap iframe {
  width: 100%;
  min-height: 300px;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1882352941);
}

.mainBanner {
  display: flex;
  align-items: center;
  padding: 170px 30px 120px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 20px;
  background-image: linear-gradient(45deg, rgba(19, 34, 53, 0.5647058824), rgba(236, 207, 168, 0.5647058824)), url(../img/sky.jpg);
  background-size: cover;
  background-attachment: fixed;
  animation: sky 100s infinite;
  position: relative;
}
@keyframes sky {
  0% {
    background-position: left bottom;
  }
  100% {
    background-position: right top;
  }
}
.mainBanner .Back {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #06222f;
  color: #ffffff;
  border-radius: 100%;
  margin-left: 30px;
  transition: all 0.3s ease-in-out;
  font-size: 20px;
  border: none;
  transform: scaleX(-1);
}
.mainBanner .Back:hover {
  background-color: #292929;
  color: #ffd700;
}
.mainBanner ul {
  margin: 0;
  list-style: none;
  transition: all 0.3s ease-in-out;
  padding: 0;
}
.mainBanner ul li {
  display: inline-flex;
  padding: 10px;
  color: #06222f;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.mainBanner ul li a {
  transition: all 0.3s ease-in-out;
  color: #06222f;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 18px;
  padding-left: 10px;
}
.mainBanner ul li a:hover {
  color: #ffffff;
}
.mainBanner ul li a.active {
  color: #ffffff;
  cursor: default;
  font-size: larger;
}
.mainBanner ul li::after {
  content: " / ";
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  left: -3px;
  top: 50%;
  transform: translateY(-50%);
}
.mainBanner ul li:last-child:after {
  display: none;
}
@media (max-width: 768px) {
  .mainBanner {
    padding: 175px 15px 45px;
  }
  .mainBanner .Back {
    margin-left: 20px;
  }
  .mainBanner ul li a {
    font-size: 16px;
  }
}
.mainBanner figure {
  width: 100%;
  position: absolute;
  bottom: 0px;
  right: 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: #06222f;
  font-size: smaller;
}
@media (max-width: 768px) {
  .form-label {
    font-size: 12px;
  }
}

.form-control {
  min-height: 48px;
}
.form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #c4832e;
}
.form-control::-moz-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;
  right: -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;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1882352941);
}
@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;
  right: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background-color: #666;
  border-radius: 10px;
}
.account .socialLogin .social {
  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 {
  transform: translateY(-2px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1882352941);
}

.select2.select2-container {
  display: block;
  width: 100% !important;
  transition: all 0.3s ease-in-out;
}
.select2.select2-container .select2-selection--single {
  min-height: 48px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.select2 .select2-selection__arrow {
  top: 50% !important;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}

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

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #06222f;
  color: #F49526;
}

.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, rgba(19, 34, 53, 0.5647058824), rgba(236, 207, 168, 0.5647058824)), url(../img/sky.jpg);
  background-size: cover;
  background-attachment: fixed;
  height: 120px;
  margin-bottom: 50px;
}
.profile .userHeader {
  margin: 20px 0px;
  background-color: #ffffff;
  color: #06222f;
  border-radius: 20px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1882352941);
  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 #F49526;
}
.profile .userHeader .userInfo span {
  margin: 0px 20px;
  font-size: 18px;
}
.profile .userHeader .userInfo .control {
  position: absolute;
  left: 20px;
  top: 20px;
}
.profile .userHeader .userInfo .control i {
  font-size: 28px;
  color: rgb(255, 0, 0);
  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;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
  margin: 0px !important;
}
.profile .userHeader .userInfo .control .switch .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  right: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
.profile .userHeader .userInfo .control .switch input:checked + .slider {
  background-color: #2196f3;
}
.profile .userHeader .userInfo .control .switch input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}
.profile .userHeader .userInfo .control .switch input:checked + .slider:before {
  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: flex;
  align-items: center;
  color: #06222f;
  margin: 5px 1px;
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
  border: 1px solid #F49526;
}
.profile .profileNavCol a i {
  margin-right: 5px;
}
.profile .profileNavCol a.active, .profile .profileNavCol a:hover {
  background-color: #06222f;
  color: #F49526;
}
@media (max-width: 760px) {
  .profile .profileNavCol a {
    padding: 8px 10px;
    display: inline-flex;
    margin: 3px 1px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1254901961);
    border-radius: 100px;
    border-bottom: 1px solid #F49526;
  }
}
.profile .profileTitle {
  background-color: #f8f8f8;
  padding: 10px;
  margin-bottom: 20px;
}

.blogsPage .blog {
  border-radius: 10px;
  border: 1px solid #F49526;
  position: relative;
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
  height: 100%;
}
.blogsPage .blog .date {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #06222f;
  color: #F49526;
  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;
  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: #06222f;
  margin-bottom: 10px;
  display: block;
}
.blogsPage .blog .blog-content p {
  color: #757575;
  max-height: 120px;
  overflow: hidden;
}
.blogsPage .blog:hover {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1882352941);
}
.blogsPage .blog:hover .blog-image img {
  -o-object-position: top;
     object-position: top;
  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: #06222f;
}
.pagination .page-item .page-link:focus {
  box-shadow: none;
}
.pagination .page-item.active .page-link {
  background-color: #06222f;
  color: #F49526;
  border-color: #06222f;
}

.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: #06222f;
  margin-bottom: 20px;
  display: block;
}
.blogDetails .blog .blog-content .blogTitle {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #06222f;
  margin-bottom: 20px;
}
.blogDetails .blog .blog-content .share p {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.productDetails .productInfo {
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .productDetails .productInfo {
    padding: 10px;
  }
}
.productDetails .productInfo .product-image {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .productDetails .productInfo .product-image {
    margin-bottom: 10px;
  }
}
.productDetails .productInfo .product-image img {
  border-radius: 16px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 400px;
}
.productDetails .productInfo .product-content {
  padding: 20px;
}
.productDetails .productInfo .product-content ul {
  list-style: none;
  padding: 0px;
  margin: 0;
}
.productDetails .productInfo .product-content ul li {
  margin-bottom: 20px;
  color: #808080;
}
.productDetails .productInfo .product-content .date {
  color: #06222f;
  margin-bottom: 20px;
  display: block;
}
.productDetails .productInfo .product-content .productTitle {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #06222f;
  margin-bottom: 20px;
}
.productDetails .productInfo .product-content .share p {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.suppliers {
  padding: 50px 0;
}
.suppliers .supplier {
  padding: 20px;
  border-radius: 8px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  border: 1px solid #eee;
  height: 100%;
}
.suppliers .supplier img {
  width: 100%;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 10px;
  padding: 20px;
}
.suppliers .supplier h4 {
  font-weight: bold;
  font-size: large;
  color: #F49526;
  margin-bottom: 10px;
}
.suppliers .supplier p {
  font-size: small;
  color: #777;
}
.suppliers .supplier:hover {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1882352941);
}

.careers .subTitle {
  width: 900px;
  text-align: center;
  margin-bottom: 30px;
}
.careers .subTitle span {
  font-weight: bold;
  color: #06222f;
  margin-bottom: 10px;
  display: block;
  font-size: large;
}
.careers .type {
  padding: 20px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1882352941);
  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 {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1882352941);
  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: #06222f;
  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: #06222f;
  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 #F49526;
  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;
  transition: all 0.3s ease-in-out;
}
.partnersPage .partner .image:hover img {
  transform: scale(1.1);
}
.partnersPage .partner h4 {
  font-weight: bold;
  color: #06222f;
}
.partnersPage .partner p {
  padding: 10px;
}

.partnerModal [data-bs-dismiss=modal] {
  cursor: pointer;
}
.partnerModal .modal-content {
  background-color: #06222f;
}
.partnerModal .modal-content .modal-header {
  color: #F49526;
  border-bottom-color: #F49526;
}
.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: #F49526;
  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: #F49526;
}
.partnerModal .modal-content .meeting a {
  display: block;
  color: #F49526;
}

.fields {
  margin-bottom: 50px;
}
.fields .field {
  padding: 20px;
  border: 1px dashed #F49526;
  display: block;
  position: relative;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.fields .field img {
  width: 100%;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 30px;
  filter: grayscale(1);
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
}
.fields .field h5 {
  color: #132235;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.fields .field:hover {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1882352941);
  border: 1px solid #F49526;
}
.fields .field:hover img {
  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 #F49526;
  border-top: 10px solid #F49526;
  background-color: #ffffff;
}
.case .caseTitle {
  padding-bottom: 10px;
  border-bottom: 1px solid #757575;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: capitalize;
}
.case .caseTitle span {
  color: #F49526;
  background-color: #06222f;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 14px;
}
.case .caseTitle a {
  color: #06222f;
}
.case .type {
  display: flex;
  align-items: center;
  text-transform: capitalize;
  margin-bottom: 15px;
}
.case .type span {
  font-weight: bold;
  color: #c4832e;
}
.case .date {
  display: flex;
  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: flex;
  align-items: center;
  background-color: #F49526;
  border-radius: 20px;
  padding: 10px 30px;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.routeNav .Back {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #06222f;
  color: #ffffff;
  border-radius: 100%;
  margin-left: 30px;
  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;
  transition: all 0.3s ease-in-out;
  padding: 0;
}
.routeNav ul li {
  display: inline-flex;
  padding: 10px;
  color: #06222f;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.routeNav ul li a {
  transition: all 0.3s ease-in-out;
  color: #06222f;
}
.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;
  left: -3px;
  top: 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-left: 20px;
  }
  .routeNav ul li a {
    font-size: 16px;
  }
}

.lawyerInfo {
  background-color: #06222f;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
}
.lawyerInfo .image {
  overflow: hidden;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #F49526;
  margin-left: 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;
  transition: all 0.3s ease-in-out;
}
.lawyerInfo .image:hover img {
  transform: scale(1.1);
}
.lawyerInfo .info {
  color: #ffffff;
}
.lawyerInfo .info .name {
  color: #F49526;
  font-weight: bold;
  margin-bottom: 10px;
}
.lawyerInfo .info .Job {
  margin-bottom: 10px;
}

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

.timeLine {
  padding: 10px;
  padding-right: 20px;
  position: relative;
}
.timeLine::before {
  content: "";
  width: 2px;
  height: calc(100% - 50px);
  border-radius: 10px;
  background-color: #F49526;
  position: absolute;
  right: 0;
  top: 40px;
}
.timeLine .court {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 50px;
  border-top: 6px solid #F49526;
  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: #F49526;
  position: absolute;
  right: -20.2px;
  top: 20px;
}
.timeLine .court::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #ffffff;
  border-radius: 2px;
  background-color: #F49526;
  position: absolute;
  right: 0px;
  top: 20px;
}
.timeLine .date {
  margin-bottom: 20px;
}
.timeLine .date i {
  color: #F49526;
}
.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: #F49526;
  color: #06222f;
  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;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1882352941);
  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: flex;
  font-size: small;
}
.notifications ul .notification .date i {
  color: #F49526;
}

.footer {
  background-image: linear-gradient(45deg, #d1d1d1, #ffffff);
  background-size: cover;
  padding: 20px 0;
  position: relative;
  z-index: 2;
}
.footer .logo {
  max-height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 10px;
}
.footer .info {
  color: #131313;
  margin-bottom: 20px;
  padding-left: 20px;
}
.footer .head {
  font-weight: bold;
  text-transform: uppercase;
  color: #F49526;
  margin-bottom: 30px;
  padding-bottom: 20px;
  position: relative;
}
.footer .head::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 2px;
  background-color: #292929;
  border-radius: 100px;
}
.footer .head::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  width: 10px;
  height: 10px;
  border-radius: 100px;
  background-color: #292929;
}
.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: #292929;
}
.footer .Links ul li a:hover {
  color: #00ADEF;
}
.footer .Links .more {
  margin-bottom: 10px;
}
.footer .Links .more p {
  color: #00ADEF;
  margin-bottom: 5px;
}
.footer .Links .more a {
  color: #292929;
  font-size: small;
}
.footer .Links .more a:hover {
  color: #00ADEF;
}
.footer .Copyright {
  padding: 20px 20px 0;
  border-top: 1px solid #F49526;
  text-align: center;
  color: #292929;
  font-size: small;
}
.footer .Copyright a {
  color: #F49526;
  font-size: small;
}
.footer .Copyright a:hover {
  color: #292929;
}
.footer .Copyright a img {
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0px 5px;
}

.missionVision {
  padding: 30px 0;
}
.missionVision .row {
  border-radius: 16px;
  margin: 40px 0;
}
@media (max-width: 768px) {
  .missionVision .row {
    background-color: #fff;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1882352941);
    margin: 20px 0;
  }
}
.missionVision .aboutImg {
  height: 300px;
}
.missionVision .aboutImg img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.missionVision h4 {
  font-weight: bold;
  text-transform: uppercase;
  margin: 10px;
  color: #F49526;
}
.missionVision ul {
  list-style: none;
  padding: 20px;
  margin: 0;
}
.missionVision ul li {
  margin-bottom: 20px;
  color: #808080;
}

.spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #06222f;
  position: fixed;
  width: 100%;
  min-height: 100vh;
  right: 0;
  top: 0;
  z-index: 99999;
}
.spinner .loading {
  position: relative;
  width: 4rem;
  height: 4rem;
  transform-style: preserve-3d;
  perspective: 800px;
}
.spinner .loading .arc {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border-bottom: 3px solid #F49526;
}
.spinner .loading .arc:nth-child(1) {
  animation: rotate1 1.15s linear infinite;
}
.spinner .loading .arc:nth-child(2) {
  animation: rotate2 1.15s linear infinite;
}
.spinner .loading .arc:nth-child(3) {
  animation: rotate3 1.15s linear infinite;
}
.spinner .loading .arc:nth-child(1) {
  animation-delay: -0.8s;
}
.spinner .loading .arc:nth-child(2) {
  animation-delay: -0.4s;
}
.spinner .loading .arc:nth-child(3) {
  animation-delay: 0s;
}
@keyframes rotate1 {
  from {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0);
  }
  to {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(1turn);
  }
}
@keyframes rotate2 {
  from {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0);
  }
  to {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(1turn);
  }
}
@keyframes rotate3 {
  from {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0);
  }
  to {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(1turn);
  }
}

.categoriesPage {
  padding: 100px 0;
}
.categoriesPage .nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .categoriesPage .nav {
    flex-direction: row;
  }
}
.categoriesPage .nav .nav-link {
  background-color: #f3f3f3;
  border: none;
  padding: 12px 32px;
  min-height: 120px;
  color: #777;
  text-transform: capitalize;
  position: relative;
  isolation: isolate;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  min-width: 150px;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .categoriesPage .nav .nav-link {
    flex: 1;
  }
}
.categoriesPage .nav .nav-link span {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 0px;
  transition: all 0.3s ease-in-out;
  z-index: -1;
  background-size: auto 120px;
  opacity: 0;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .categoriesPage .nav .nav-link span {
    height: 100%;
    width: 0px;
  }
}
.categoriesPage .nav .nav-link span::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.6235294118);
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 12px;
}
.categoriesPage .nav .nav-link::after {
  content: "";
  background-color: #F49526;
  z-index: -2;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  bottom: 50%;
  transform: translate(-100%, 50%) rotate(45deg) scale(0.1);
  display: flex;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
@media (max-width: 768px) {
  .categoriesPage .nav .nav-link::after {
    left: 50%;
    bottom: 0%;
    transform: translate(-100%, 50%) rotate(45deg) scale(0.1);
  }
}
.categoriesPage .nav .nav-link.active::after {
  transform: translate(-50%, 50%) rotate(45deg);
  opacity: 1;
}
.categoriesPage .nav .nav-link.active, .categoriesPage .nav .nav-link:hover {
  color: #fff;
}
.categoriesPage .nav .nav-link.active span, .categoriesPage .nav .nav-link:hover span {
  height: 100%;
  opacity: 1;
}
@media (max-width: 768px) {
  .categoriesPage .nav .nav-link.active span, .categoriesPage .nav .nav-link:hover span {
    width: 100%;
  }
}
.categoriesPage .tab-content {
  flex: 1;
  padding: 12px;
  background-color: #eee;
  height: 100%;
  border-radius: 12px;
}
.categoriesPage .sub {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
  text-align: center;
  font-weight: bold;
  text-transform: capitalize;
  color: #131313;
  border-radius: 12px;
  height: 100%;
}
.categoriesPage .sub img {
  width: 100%;
  aspect-ratio: 2/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  min-height: 100px;
}

.aboutImage {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 20px;
  height: 100%;
}
.aboutImage:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: #F49526;
  z-index: -1;
  animation: border-transform-default-two 10s linear infinite alternate forwards;
}
.aboutImage img {
  animation: border-transform-default 10s linear infinite alternate forwards;
  height: 100%;
}

@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-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: 50px 0;
}
.noData img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 400px;
}

/* 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=style.css.map */