@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@200;300;400;500;600;700&family=Noto+Sans:wght@400;700&display=swap");

html {
  --primary-color: #cb252b;
  --secondary-color: #143a67;
  --font-Noto: "Noto Sans", sans-serif;
  --font-Dosis: "Dosis", sans-serif;
}

img {
  max-width: 100%;
}

/* custom scrollbar  */

::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #d4d4d4;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* scrollbar end  */

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-Noto);
}

a {
  text-decoration: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

p {
  font-size: 1.2rem;
  color: rgb(83, 83, 83);
  font-weight: 400;
  font-family: var(--font-Noto);
  margin: 1.5rem 0;
}

/* Typography  */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-Noto);
  text-transform: capitalize;
}

h1 {
  font-size: 4rem;
  font-weight: 500;
}

h2 {
  font-size: 3.5rem;
  font-weight: 600;
}

h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
}

.text-blue {
  color: var(--secondary-color);
  transition: color 0.3s ease-in-out;
}

.text-blue:hover {
  color: var(--primary-color);
}

/* page titles for each page  */

.page-section {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.bg-cover {
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}

.overlay {
  position: relative;
}

.overlay::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.6;
}

.page-title {
  position: relative;
  z-index: 999;
}

.breadcrumb-active {
  color: var(--primary-color);
}

/* dividers border  */

.section-title-border {
  position: relative;
  height: 5px;
  width: 30px;
  background: var(--secondary-color);
  border-radius: 10px;
  margin-bottom: 20px !important;

  margin-left: 48%;
}

.section-title-border::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 50%;
  background: var(--primary-color);
  border-radius: 10px;
  right: -60%;
  top: 0;
}

.section-title-border::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 25%;
  background: var(--secondary-color);
  border-radius: 10px;
  right: -100%;
  top: 0;
}

/* social share icons  */

.social-share-icons .bx {
  padding: 10px;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
}

/* social share icons  */

.social-share-icons .bx {
  padding: 10px;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
}

.social-share-icons .bxl-facebook {
  background: #3b5998;
  color: white;
}

.social-share-icons .bxl-linkedin {
  background: #007bb5;
  color: white;
}

.social-share-icons .bxl-whatsapp {
  background: #00b489;
  color: white;
}

.social-share-icons .bxl-twitter {
  background: #55acee;
  color: white;
}

/* top header  */

.container {
  z-index: 99;
}

.top-header {
  background-color: var(--secondary-color);
  min-height: 3.125rem;
  display: flex;
  align-items: center;
}

.top-header i {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.email i {
  margin-left: 1rem;
}

.header-icons i {
  color: var(--secondary-color);
  border-radius: 100px;
  font-size: 1.2rem;
  padding: 3px;
  background-color: #d4dae3;
  transition: background-color 0.3s ease-in-out;
}

.header-icons i:hover {
  background-color: var(--primary-color);
  color: #d4dae3;
  transform: scale(1.2);
  cursor: pointer;
}

/* button  */

.btn {
  padding: 0.5rem 1.3rem;
  background: var(--primary-color);
  color: white;
  font-size: 1.5rem;
  border-radius: 0px;
}

.btn:hover {
  background: white;
  color: var(--secondary-color);
}

/* navigation menu  */
header {
  box-shadow: #5858581c 0px 3px 14px 0px;
  min-height: 80px;
  display: flex;
  align-items: center;
  /* transition: all 1s ease; */
  position: relative;
  z-index: 100000;
  /* overflow-x: hidden; */
  background-color: white;
}

.sticky-menu {
  position: sticky;
  transition: all 0.5s ease;
  top: 0;
  width: 100%;
  min-height: 60px;
}

.sticky-menu img {
  width: 70%;
}

.nav-logo img {
  width: 95%;
}

nav {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
}

.nav-links {
  display: grid;
  place-content: center;
  margin-top: 0.5rem;
}

.nav-links ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.nav-links li {
  padding-left: 1.875rem;
}

.nav-links a {
  color: var(--secondary-color);
  font-size: 1.125rem;
  position: relative;
  transition: all 0.3s ease;
}

.nav-active {
  background-color: var(--primary-color);
  color: white !important;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
}

.nav-links a::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 1px;
  width: 0%;
  height: 3px;
  background-color: var(--primary-color);
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-links a:hover:before,
.nav-links a:active:before,
.nav-links a:focus:before,
.nav-links a.active:before {
  width: 50%;
  visibility: visible;
  color: var(--primary-color);
}

.nav-logo img {
  margin-top: -10px;
}

/* custom dropdown menu  */

.dropbtn {
  background-color: #ffffff;
  color: var(--secondary-color);
  font-size: 16px;
  border: none;
  position: relative;
}

.dropbtn:hover a {
  color: white;
}

.dropdown {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  background: #fff;
  z-index: 999;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--secondary-color);
  min-width: 250px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.dropdown-content a {
  color: rgb(255, 255, 255);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  color: #fff;
  background-color: var(--primary-color);
  z-index: 999;
}

.dropdown:hover .dropdown-content {
  display: block;
  z-index: 999;
}

.dropdown:hover .dropbtn a {
  color: white;
}

.dropdown-content a {
  font-size: 15px;
}

/* custom dropdown menu end */

/* header responsive  */
.nav-mobile {
  display: none;
}

.mobile-nav-icons .bx {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin: 0 0.5rem;
}

.mobile-nav-icons a {
  color: var(--secondary-color);
  font-size: 1rem;
}

.mobile-nav-icons ul {
  margin: 0;
}

/*homepage hero section */
.hero {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 90vh;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.video-container video {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #cb252ab7, #2f2e7ac0);
  z-index: 1;
}

.hero-content {
  z-index: 99;
}

.hero-content h1 {
  font-weight: 600;
  font-size: 8rem;
  text-transform: uppercase;
  letter-spacing: 2rem;
  color: white;
  z-index: 1;
  text-shadow: #00000042 1px 4px 17px;
  margin-left: -5px;
}

.hero-content p {
  color: white;
  letter-spacing: 0.5rem;
  font-size: 2.8rem;
  font-family: var(--font-Dosis);
  text-shadow: #00000042 1px 4px 17px;
}

.hero-content h6 {
  font-size: 1.2rem;
  color: white;
  letter-spacing: 4px;
  font-family: var(--font-Noto);
  font-weight: lighter;
  opacity: 0.8;
}

/* service -section */
.service-section {
  background-color: #edeff2;
  background-image: url("../img/Map.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.service-section h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #3d3d3f;
  font-family: var(--font-Noto);
  background: -webkit-linear-gradient(#cb252a, #2f2e7a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-section p {
  font-weight: 500;
  font-size: 1.2rem;
  font-family: var(--font-Noto);
  text-align: center;
  margin: 0 auto;
  padding: 2.5rem 0;
  color: #3d3d3fbe;
}

.content {
  background: #fff;
  border-radius: 5px;
  padding: 2rem;
  height: 270px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  transition: all 0.5s ease;
  cursor: pointer;
}

.content .image {
  padding: 1rem 0;
}

.content h4 {
  font-size: 1.2rem;
  color: #3d3d3f;
  font-family: var(--font-Noto);
  font-weight: lighter;
  padding-top: 1rem;
}

.hover-advisory {
  width: 100%;
  height: 100%;
  background: url("../img/container3.jpg");
  background-position: center;
  background-size: cover;
  position: absolute;
  /* transition: all .5s ease-in-out; */
  padding: 0.5rem;
  visibility: hidden;
}

.hover-advisory::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to left, #cb252ac5, #2f2e7ac4);
  z-index: 1;
  border-radius: 3px;
}

.content:hover .hover-advisory {
  visibility: visible;
}

.hover-trade {
  width: 100%;
  height: 100%;
  background: url("../img/container2.jpg");
  background-position: center;
  background-size: cover;
  position: absolute;
  /* transition: all .5s ease-in-out; */
  padding: 0.5rem;
  visibility: hidden;
}

.hover-trade::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to left, #cb252ac5, #2f2e7ac4);
  z-index: 1;
  border-radius: 3px;
}

.content:hover .hover-trade {
  visibility: visible;
}

.hover-payment {
  width: 100%;
  height: 100%;
  background: url("../img/unsplash.jpg");
  background-position: center;
  background-size: cover;
  position: absolute;
  /* transition: all .5s ease-in-out; */
  padding: 0.5rem;
  visibility: hidden;
}

.hover-payment::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to left, #cb252ac5, #2f2e7ac4);
  z-index: 1;
  border-radius: 3px;
}

.content:hover .hover-payment {
  visibility: visible;
}

.hover-technology {
  width: 100%;
  height: 100%;
  background: url("../img/clients.jpg");
  background-position: center;
  background-size: cover;
  position: absolute;
  /* transition: all .5s ease-in-out; */
  padding: 0.5rem;
  visibility: hidden;
}

.hover-technology::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to left, #cb252ac5, #2f2e7ac4);
  z-index: 1;
  border-radius: 3px;
}

.content:hover .hover-technology {
  visibility: visible;
}

.hover-text {
  font-family: var(--font-noto);
  position: relative;
  padding: 0.5rem;
  z-index: 99;
}

.hover-text a {
  padding: 10px 25px;
  background: #ff4a52;
  color: #fff;
  display: inline-block;
  text-align: left;
  text-transform: uppercase;
}

.hover-text a:hover {
  background: var(--secondary-color);
}

.technology {
  font-size: 1.1rem !important;
}

/* service -section end */

/* operations  */
.operations {
  position: relative;
  padding: 4rem;
  min-height: 500px;
  display: grid;
  place-content: center;
  background: url("../img/operation-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
}

.operations::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #cb252ae3, #2f2e7adc);
}

.operations h2 {
  text-align: left;
  font-size: 2.75rem;
  line-height: 1.5;
}

.operations h4 {
  text-align: left;
  font-size: 32px;
}

.operations p {
  color: #d4dae3;
  font-size: 1.1rem;
  font-weight: 300;
  margin: 1.8rem 0;
  text-align: left;
  font-family: var(--font-noto);
}

.operations a {
  padding: 10px 25px;
  background: #ff4a52;
  color: #fff;
  transition: 0.4s ease-in-out;
  display: inline-block;
  text-align: left;
  text-transform: uppercase;
}

.operations a:hover {
  background: var(--secondary-color);
}

.operations-item {
  background: #ffffff1f;
  border: 1px solid #ffffff17;
  border-radius: 5px;
  height: 280px;
  text-align: center;
}

.operations-image {
  background-color: #ffffff26;
  padding: 1.2rem;
  border-radius: 100%;
}

.operations-item h4 {
  text-align: center;
  font-family: var(--font-Noto);
}

.operations-item p {
  text-align: center;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 300;
  margin: 0;
  text-align: left;
  font-family: var(--font-noto);
  text-transform: normal;
}

.counter span {
  font-size: 2rem;
  font-weight: 500;
}

@-webkit-keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.rotating-border {
  --border-radius: 106rem;
  --border-size: 0.2rem;
  --border-bg: conic-gradient(#c3373f00, white);
  --padding: 1rem;
  position: relative;
  width: 85px;
  height: 85px;
  overflow: hidden;
  font-size: 2rem;
  padding: calc(var(--padding) + var(--border-size));
  border-radius: 100%;
  display: inline-block;
}

.rotating-border::before {
  content: "";
  display: block;
  background: var(--border-bg);
  width: calc(100% * 1.41421356237);
  padding-bottom: calc(100% * 1.41421356237);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  z-index: -2;
  -webkit-animation: spin 5s linear infinite;
  animation: spin 5s linear infinite;
}

.rotating-border::after {
  content: "";
  position: absolute;
  top: var(--border-size);
  right: var(--border-size);
  bottom: var(--border-size);
  left: var(--border-size);
  background: linear-gradient(to left, #cb252a, #2f2e7a);
  z-index: -1;
  border-radius: 100%;
}

/* Slider */
.our-clients h2 {
  font-size: 2.75rem;
  font-weight: 600;
  color: #3d3d3f;
  font-family: var(--font-Noto);
  background: -webkit-linear-gradient(#cb252a, #2f2e7a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.slick-slide {
  margin: 0px 20px;
}

.slick-slide img {
  max-width: 150px;
  height: 150px;
  object-fit: contain;
  transition: all 0.3s ease-in-out;
}

.slick-slide img:hover {
  cursor: pointer;
  opacity: 0.75;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
  filter: grayscale(1);
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* teem end */

/* blog section  */
/* .blog-section h2 {
    font-size: 2.5rem;
    color: #3D3D3F;
}

.card-text {
    font-size: 1rem;
    padding: 1rem 0;
    margin: 0;
}

.card-title a {
    font-size: 1.5rem;
    color: var(--secondary-color)
}

.card-body a {
    color: #cb252b;
    font-weight: 700;
    font-size: 14px;
}

.media-body i {
    font-size: 1rem;
}

.card-body .section-title-border {
    margin-left: 0;
}

.card {
    border-radius: 0px;
    border: none;
    height: 100%;
}

.card img {
    max-width: 100%;
    object-fit: cover;
    height: 250px;
}

.card-type {
    position: absolute;
    top: 30px;
    left: 30px;
    padding: 3px 10px;
    color: #fff;
    background: var(--primary-color);
    z-index: 1;
}

.media {
    display: flex;
    align-items: flex-start;
    min-height: 139px;
}

.media img{
    width: 250px;
    height: 150px;
}

.media-body {
    flex: 1;
    padding-right: 8px;
}

.media-body span {
    font-size: 14px;
}

.media-body h5 {
    font-size: 20px;
    margin: 0;
    color: var(--secondary-color);
    font-weight: 600;
}

.media-body a {
    color: #cb252b;
    font-weight: 700;
    font-size: 14px;
}

.date {
    border-top: 1px solid #ddd;
}

img.mr-3.post-thumb-sm {
    max-width: 11rem;

    margin: 0;
    margin-right: 10px;
    padding: 0 !important;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

a.page-link {
    color: var(--primary-color);
}

.post-tags {
    display: inline-block;

    background: var(--secondary-color);
    color: white;
    margin: .2rem;
    transition: background-color .3s ease-in-out;
}

.post-tags:hover {
    background-color: var(--primary-color);
    color: white;
} */

.card {
  font-family: var(--font-Noto);
}

img.card-img-top {
  height: 200px;
  border-radius: 0;
}

.card-text {
  font-size: 1rem;
  font-family: var(--font-Noto);
}

.card-title {
  font-size: 1.5rem;
  color: var(--secondary-color);
  font-weight: 600;
}

.card-body a {
  color: #cb252b;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-family: var(--font-Noto);
  font-size: 0.75rem;
  font-weight: 600;
}

.insights h2 {
  font-size: 2.75rem;
  font-weight: 600;
  color: #3d3d3f;
  font-family: var(--font-Noto);
  background: -webkit-linear-gradient(#cb252a, #2f2e7a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: left;
}

.card {
  border-radius: 0px;
  border: none;
  font-family: var(--font-Noto);
  height: 98%;
}

.blog-img {
  height: 100%;
  object-fit: cover;
}

.insights-left {
  margin: 3rem 0;
}

.insights {
  margin: 5rem 0;
}

.card-body {
  flex: 1 1 auto;
  padding: 1.3rem 1rem;
}

.card-body a {
  color: #ff4a52;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-family: var(--font-Noto);
  font-size: 10px;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
}

.card-body a:hover {
  color: white;
  background: #ff4a52;
  padding: 10px;
}

.blog-btn {
  display: flex;
  justify-content: center;
}

.firm-learn-more {
  justify-content: start;
}

.blog-btn a {
  padding: 10px 25px;
  background: #ff4a52;
  color: #fff;
  transition: 0.4s ease-in-out;
  text-align: center;
  text-align: left;
  display: inline-block;
  text-transform: uppercase;
}

.blog-btn a:hover {
  background: var(--secondary-color);
}

/* blog section end */

/* footer section  */
.main-footer {
  background-color: #0d2848;
  font-family: var(--font-Noto);
  position: relative;
}

.main-footer::before {
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0.4;
  top: 0;
  left: 0;
  position: absolute;
  background: url("../img/Map.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.col-lg-4.footer-links {
  padding-left: 10rem;
}

.footers h5 {
  padding-top: 2.5rem;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}

.footers p {
  padding: 0;
  margin: 0;
  font-family: var(--font-Noto);
  color: #fff;
  opacity: 0.75;
  font-size: 14px;
  margin-bottom: 1rem;
}

.footer-links ul li a {
  opacity: 0.75;
}

.footer-links ul li {
  padding-top: 0.5rem;
}

.search-box {
  display: flex;
  column-gap: 1rem;
}

.search-box input {
  width: 60%;
  padding: 13px;
  border-radius: 0px;
}

.search-box button {
  font-size: 1rem;
  background: var(--secondary-color);
  outline: none;
  background: var(--primary-color);
  border: none;
  margin: 0;
  padding: 0 15px;
  text-transform: uppercase;
}

.search-box button:hover {
  color: #fff;
  background: var(--secondary-color);
  border: 1px solid var(--primary-color);
  outline: none;
}

.search-box input {
  border: none;
  outline: none;
  border-radius: 0px;
}

.social-icon {
  justify-content: start;
  color: #fff;
  margin-top: 1rem !important;
}

.social-icon i {
  color: #000;
  padding: 6px;
  background: #fff;
  border-radius: 100%;
  transition: all 0.3s;
  opacity: 0.75;
  font-size: 20px;
}

.social-icon i:hover {
  background: var(--primary-color);
  color: #fff;
}

.social-icon a {
  padding-right: 1rem;
}

.footers ul {
  padding-left: 0;
}

.footers ul a {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
}

.footer-bottom-content {
  justify-content: space-between;
}

.right-content ul {
  margin-bottom: 0;
}

.left-content p {
  color: #fff;
  font-weight: 500;
  font-family: var(--font-Noto);
  opacity: 0.75;
}

.right-content ul li a {
  color: #fff;
  font-weight: 300;
  font-size: 12px;
  padding-right: 2rem;
  opacity: 0.75;
}

/* firm page  */

.firm-purpose p {
  text-align: left;
}

.firm img {
  max-width: 100%;
  height: 350px;
  object-fit: cover;
}

/* responsive  */

@media (max-width: 1390px) {
  html {
    font-size: 13px;
  }

  .hero-content {
    width: 100%;
  }

  .slick-slide img {
    max-width: 120px;
    height: 150px;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
  }

  .col-lg-4.footer-links {
    padding-left: 6.5rem;
  }

  .rotating-border {
    --border-radius: 106rem;
    --border-size: 0.2rem;
    --border-bg: conic-gradient(#c3373f00, white);
    --padding: 1.3rem;
    position: relative;
    width: 85px;
    height: 85px;
    overflow: hidden;
    font-size: 2rem;
    padding: calc(var(--padding) + var(--border-size));
    border-radius: 100%;
    display: inline-block;
  }
}

@media (max-width: 986px) {
  html {
    font-size: 14px;
  }

  header {
    display: block;
  }

  .nav-mobile {
    display: block;
  }

  .nav-desktop {
    display: none;
  }

  .navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0rem;
    color: blue;
    transition: box-shadow 0.15s ease-in-out;
  }

  .navbar-toggler:focus {
    outline: none;
  }

  a.nav-link.active {
    padding: 1rem;
  }

  .navbar-light .navbar-nav .nav-link {
    color: rgb(24 23 61);
    padding: 0.5rem;
  }

  .navbar-light .navbar-nav .nav-link:hover {
    background: var(--primary-color);
    padding: 0.5rem;
    color: white;
  }

  nav.navbar.navbar-light.bg-light.nav-mobile {
    padding: 1.5rem;
  }

  a.navbar-brand img {
    width: 95px !important;
  }

  .hero-content {
    width: 80%;
  }
}

@media (max-width: 762px) {
  .top-header {
    display: none;
  }

  .bg-light {
    display: block;
  }

  nav {
    display: block;
  }

  .top-header-container {
    text-align: center;
    flex-direction: column;
  }

  .hero-content {
    width: 90%;
  }

  .hero-content {
    width: 90%;
  }

  .hero-content h1 {
    font-size: 5rem;
  }

  .hero-content p {
    font-size: 2rem;
  }

  .content {
    margin-bottom: 2rem;
  }

  .slick-slide img {
    max-width: 100px;
    height: 150px;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
  }

  .operations a {
    width: 45%;
    margin-bottom: 2rem;
  }

  .operations-item {
    margin-bottom: 2rem;
  }

  footer {
    text-align: center;
  }

  .social-icon {
    justify-content: center;
  }

  footer .col-md-4 {
    margin: 1rem 0rem;
  }

  .col-lg-4.footer-links {
    padding-left: 0rem;
  }

  .left-content {
    width: 100%;
  }

  .right-content {
    width: 100%;
  }
}

.btn {
  font-size: 16px !important;
}

.phone i,
.email i {
  color: var(--primary-color);
  transition: all 0.5s;
  cursor: pointer;
}

.phone i:hover {
  color: var(--primary-color);
  opacity: 0.8;
}

.text-light {
  transition: all 0.5s;
  backface-visibility: hidden;
}

.text-light:hover {
  transform: scale(1.1);
}

.operation-svg {
  width: 30px;
}
/* searates start */

.empty_page_button{
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 420px);
}
@media (max-width: 1280px) {
  .empty_page_button{
      height: calc(100vh - 366px);
  }
}
@media (max-width: 768px) {
  .empty_page_button{
      height: 100vh;
  }
}
.modal-backdrop {
  background-color: #0000005c !important;
}
/* searates end */
