@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

/* font-family: "Manrope", sans-serif;
font-family: "Open Sans", sans-serif; */
/* .login-signup-form .form-grp .phninpt-sd .PhoneInput .PhoneInputInput::placeholder {

  color: #716f6f !important;
}
.PhoneInputInput::placeholder {
  color: #716f6f !important;
} */

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: inherit;
  /* font-family: inherit; */
  outline: 0 !important;
}

html {
  scroll-padding-top: 150px;
  overflow-x: hidden;
}

.lilghtskycolor {
  background-color: #f2faff;
}

section#philanthropistActivities {
  scroll-padding-top: 150ox;
}

body {
  font-size: 18px;
  font-weight: 400;
  color: #101010;
  position: relative;
  font-family: "Open Sans", sans-serif !important;
  scroll-padding-top: 150px;
}

a {
  color: inherit;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

.container-fluid {
  max-width: 1920px;
}

a,
button {
  -webkit-transition: all 0.5s ease-in-out !important;
  transition: all 0.5s ease-in-out !important;
  text-decoration: none !important;
  font-family: "Open Sans", sans-serif !important;
}

ul {
  margin-bottom: 0 !important;
  padding-left: 0 !important;
}

h1 {
  font-family: "Manrope", sans-serif;
}

h2 {
  font-family: "Manrope", sans-serif;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 0;
}

p {
  line-height: 30px;
  font-size: 18px;
  margin-bottom: 0 !important;
}

img {
  max-width: 100%;
}

header,
footer {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  vertical-align: top;
  padding-top: 80px;
  padding-bottom: 80px;
}

section {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  vertical-align: top;
  padding-top: 80px;
  padding-bottom: 90px;
  overflow: hidden;
}

.collapse.show {
  visibility: visible;
}

:active,
:hover,
:focus {
  outline: 0 !important;
  outline-offset: 0;
}

.form-select {
  cursor: pointer;
}

.pt-150 {
  padding-top: 150px;
}

.responsive-d-block {
  display: none;
}

.shadow-container .circleBlur {
  height: 300px;
  width: 300px;
  position: absolute;
  -webkit-animation-name: color-shape-movement;
  -webkit-animation-duration: 12s;
  animation-name: color-shape-movement;
  animation-duration: 12s;
  animation-iteration-count: infinite;
}

@keyframes color-shape-movement {
  0% {
    left: 0px;
    top: 0px;
  }

  25% {
    filter: brightness(0) saturate(100%) invert(86%) sepia(98%) saturate(2164%) hue-rotate(213deg) brightness(108%) contrast(104%);
    left: 500px;
    top: 0px;
  }

  50% {
    filter: brightness(0) saturate(100%) invert(86%) sepia(98%) saturate(2164%) hue-rotate(213deg) brightness(58%) contrast(104%);
    left: 500px;
    top: 300px;
  }

  75% {
    filter: brightness(0) saturate(100%) invert(86%) sepia(98%) saturate(2164%) hue-rotate(213deg) brightness(108%) contrast(104%);
    left: 0px;
    top: 500px;
  }

  100% {
    left: 0px;
    top: 0px;
  }
}

.shadow-container .circleBlur2 {
  height: 300px;
  width: 300px;
  position: absolute;
  -webkit-animation-name: color-shape-movement2;
  -webkit-animation-duration: 12s;
  animation-name: color-shape-movement2;
  animation-duration: 12s;
  animation-iteration-count: infinite;
  right: 200px;
  bottom: 50px;
}

@keyframes color-shape-movement2 {
  0% {
    right: 0px;
    bottom: 0px;
  }

  25% {
    filter: brightness(0) saturate(100%) invert(86%) sepia(98%) saturate(2164%) hue-rotate(213deg) brightness(58%) contrast(104%);
    right: 200;
    bottom: 0px;
  }

  50% {
    filter: brightness(0) saturate(100%) invert(86%) sepia(98%) saturate(2164%) hue-rotate(213deg) brightness(58%) contrast(104%);
    right: 700;
    bottom: 0px;
  }

  75% {
    filter: brightness(0) saturate(100%) invert(86%) sepia(98%) saturate(2164%) hue-rotate(213deg) brightness(108%) contrast(104%);
    right: 0;
    bottom: 300px;
  }

  100% {
    right: 0px;
    bottom: 0px;
  }
}

.shadow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* ============================================================
                         Custom button 
=============================================================*/
.switch-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  gap: 20px;
}

.switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.switch input {
  display: none;
}

.slider {
  position: relative;
  width: 50px;
  height: 24px;
  border-radius: 50px;
  background-color: #0f4a64;
  transition: background-color 0.3s;
}

.slider::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  transition: transform 0.3s;
}

.switch input:checked+.slider {
  background-color: #fdb31f;
}

.switch input:checked+.slider::before {
  transform: translateX(26px);
}

.label-text {
  margin-left: 10px;
  font-size: 20px;
  color: #000;
  user-select: none;
}


.toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}


.toggle-button {
  padding: 10px 20px;
  margin: 0 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  color: #000000;
  transition: background-color 0.3s;
}


.toggle-button span {
  color: #000000;
  position: relative;
  z-index: 1;
}


.toggle-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  transition: transform 0.3s ease;
  color: #000000 !important;
  transform: translateY(-100%);
}


.toggle-button.active {
  background-color: #fdb31f;
  color: black !important;
  border-color: #fdb31f;
}


.toggle-button:hover {
  background-color: #fdb31f;
  color: black !important;
}


.toggle-button:hover span {
  color: black;
}


.toggle-button:hover::before {
  transform: translateY(0);
}


.toggle-button:not(.active) {
  border: 1px solid #fdb31f;
  background-color: transparent;
}

.toggle-button:not(.active):hover::before {
  background-color: #fdb31f;

}

.custombtn::before,
.custombtn::after {
  position: absolute;
  content: "";
}

.custombtn {
  position: relative;
  display: inline-block;
  width: auto;
  height: auto;
  background-color: transparent;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.custombtn span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
  text-align: center;
}

.btn-1::before {
  background-color: #fdb31f;
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
}

.btn-1 span {
  color: #000;
  border: 1px solid #fdb31f;
  transition: 0.2s 0.1s;
  border-radius: 4px;
  background-color: transparent;
}

.btn-1 span:hover {
  color: #fff;
  transition: 0.2s 0.1s;
  border-radius: 4px;
}

.btn-5::before {
  background-color: #fdb31f;
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
}

.btn-5 span {
  color: #000;
  border: 1px solid #fdb31f;
  transition: 0.2s 0.1s;
  border-radius: 4px;
  background-color: transparent;
}

.btn-5 span:hover {
  color: #000000;
  transition: 0.2s 0.1s;
  border-radius: 4px;
}

.btn-2::before {
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
}

.btn-2 span {
  color: #000;
  border: 1px solid #fff;
  transition: 0.2s 0.1s;
  border-radius: 4px;
  background-color: transparent;
}

.btn-2 span:hover {
  color: #fff;
  transition: 0.2s 0.1s;
  border-radius: 4px;
}

.btn-4::before {
  background-color: #023850;
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
}

.btn-4 span {
  color: #fff;
  border: 1px solid #023850;
  transition: 0.2s 0.1s;
  border-radius: 4px;
  background-color: transparent;
}

.btn-4 span:hover {
  color: #023850;
  transition: 0.2s 0.1s;
  border-radius: 4px;
}

.custombtn.hover-filled-slide-down::before {
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border-radius: 4px;
}

.custombtn.hover-filled-slide-down:hover::before {
  height: 0%;
}

.custom-border-btn::before,
.custom-border-btn::after {
  position: absolute;
  content: "";
}

.custom-border-btn {
  position: relative;
  display: inline-block;
  width: auto;
  height: auto;
  background-color: transparent;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.custom-border-btn span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
  text-align: center;
}

.btn-3::before {
  background-color: #fdb31f;
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
}

.btn-3 span {
  background-color: transparent;
  color: #fdb31f;
  border: 1px solid #fdb31f;
  transition: 0.2s 0.1s;
  border-radius: 4px;
}

.btn-3 span:hover {
  color: #fff;
  transition: 0.2s 0.1s;
  border-radius: 4px;
}

.custom-border-btn.hover-filled-slide-down::before {
  height: 0%;
  bottom: 0;
  left: 0;
  right: 0;
}

.custom-border-btn.hover-filled-slide-down:hover::before {
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
}

/* ============================================================
                         Nav area 
=============================================================*/
.header-top {
  padding-bottom: 8px;
  position: relative;
  padding-top: 8px;
  background-color: #154d57;
}

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  /* background: linear-gradient(106.8deg, #023850 2.2%, #1A5A76 80.79%); */
  background-color: transparent;
}

.navbar-area .main-nav .navbar .navbar-nav .nav-item .nav-link.dropdown-toggle::after {
  border: 0;
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  vertical-align: middle;
  line-height: 1;
  margin-top: -3px;
  margin-left: 5px;
}

.mobile-nav.mean-container .common-button {
  position: absolute;
  z-index: 999;
  float: right;
  right: 66px;
  top: 15px;
  border: 1px solid #230707;
  border-radius: 26px;
  color: #230707;
  font-weight: 700;
  padding: 12px 28px;
  text-decoration: none;
}

.mobile-nav.mean-container .common-button:hover {
  background-color: #230707;
  color: #fff;
}

.navbar-area .main-nav .navbar .navbar-nav .nav-item .nav-link.active {
  color: #fd1616;
}

.navbar-area .main-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  padding: 0;
  border-radius: 0;
  background: #fff;
}

.navbar-area .main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item {
  padding: 0;
}

.navbar-area .main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link {
  border-bottom: 1px dashed #f7f7f7;
  background: #3c3c3c;
  font-size: 15px !important;
}

.navbar-area .main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.active,
.navbar-area .main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link:hover {
  color: #726e6e;
  background: #4e4e4e !important;
}

.navbar-area .main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item:last-child .nav-link {
  border-bottom: 0;
}

.main-nav nav .navbar-nav .nav-item .dropdown-toggle::after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f107";
  font-size: 16px;
  line-height: 18px;
  border: 0;
  margin-left: 5px;
  margin-top: 3px;
}

.main-nav nav .navbar-nav .nav-item:hover .dropdown-toggle::after {
  color: #fdb31f;
}

.main-nav nav .navbar-nav .nav-item .dropdown-toggle.active::after {
  color: #154d57;
}

.main-nav nav .navbar-nav .nav-item .dropdown-toggle::before {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #3ba7c2;
  transition: width 0.4s ease-in;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  z-index: 4;
}

.main-nav .mga-mnu nav .navbar-nav .nav-item.dropdown:hover .dropdown-toggle::before {
  width: 100%;
}

.header_bottom .navbar .navbar-brand {
  padding: 0;
}

.header_bottom.sticky .navbar .navbar-brand {
  margin-top: unset;
}

.header_bottom .navbar-brand img {
  width: 180px;
  transition: all 0.3s ease-in-out;
}

.header_bottom.sticky .navbar-brand img {
  width: 170px;
  transition: all 0.3s ease-in-out;
}

.header_bottom.sticky {
  background: linear-gradient(106.8deg, #023850 2.2%, #1a5a76 80.79%);
  -webkit-box-shadow: 0 0 10px rgb(0 0 0 / 20%);
  box-shadow: 0 0 5px rgb(0 0 0 / 20%);
  top: 0;
  width: 100%;
  right: 0;
  z-index: 9999999;
  transition: all 0.5s ease-in-out;
  position: fixed;
}

.header_bottom .navbar {
  padding: 10px 0 !important;
  border-bottom: 1px solid #fff;
}

.header_bottom.sticky .navbar {
  border-bottom: 0;
}

.other-option {
  display: flex;
  align-items: center;
}

.other-option .custombtn {
  margin: 0 0 0 25px;
}

.other-option .login-icon {
  display: inline-block;
  margin-left: 20px;
}

.header-push-button {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.main-nav-top {
  z-index: 9;
  position: relative;
}

.main-nav .navbar-nav {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.main-nav .navbar-nav .nav-item a {
  text-align: left;
  font-size: 16px;
  line-height: 22px;
  text-transform: capitalize;
  color: #fff;
  padding: 5px 0;
  margin: 0 0 0 30px !important;
}

.main-nav .navbar-nav .nav-item:hover a,
.main-nav .navbar-nav .nav-item.active a {
  color: #fdb31f;
}

.main-nav nav .navbar-nav .nav-item a img {
  max-height: 28px;
  width: 22px;
  filter: brightness(0) invert(1);
}

.main-nav nav .navbar-nav .nav-item a:hover img {
  filter: unset;
}

.main-nav .navbar-nav .nav-item a span {
  width: calc(100% - 22px);
  padding-left: 10px;
}

.main-nav nav .navbar-nav .nav-item .nav-link.dropdown-toggle {
  position: relative;
}

.main-nav nav .navbar-nav .nav-item .nav-link:first-child {
  margin-left: 0;
}

.main-nav nav .navbar-nav .nav-item .nav-link:last-child {
  margin-right: 0;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
  font-size: 14px;
  line-height: 16px;
  display: flex;
  align-items: center;
  color: #fff;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a div {
  width: 25px;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a span {
  width: calc(100% - 25px);
}

a.meanmenu-reveal span {
  display: block;
  background: #fff;
  height: 2px;
  margin-top: 8px;
  border-radius: 3px;
  width: 80%;
}

a.meanmenu-reveal span:first-child {
  height: 2px;
  margin-top: 0;
}

a.meanmenu-reveal span:nth-child(2) {
  width: 100%;
  height: 2px;
}

@keyframes animate-width-1 {
  from {
    width: 80%;
  }

  to {
    width: 100%;
  }
}

@keyframes animate-width-2 {
  from {
    width: 100%;
  }

  to {
    width: 70%;
  }
}

@keyframes animate-width-3 {
  from {
    width: 50%;
  }

  to {
    width: 80%;
  }
}

a.meanmenu-reveal span:first-child {
  animation-name: animate-width-1;
  -webkit-animation-name: animate-width-1;
  animation-duration: 2s;
  animation-delay: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

a.meanmenu-reveal span:nth-child(2) {
  animation-name: animate-width-2;
  -webkit-animation-name: animate-width-2;
  animation-duration: 2s;
  animation-delay: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

a.meanmenu-reveal span:last-child {
  animation-name: animate-width-3;
  -webkit-animation-name: animate-width-3;
  animation-duration: 2s;
  animation-delay: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

a.meanmenu-reveal {
  display: block;
  width: 35px;
  height: auto;
  cursor: pointer;
}

.main-nav nav .navbar-nav .nav-item {
  padding: 15px 0;
  position: relative;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu {
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
  background: #0d1028;
  position: absolute;
  top: 80px;
  left: 0;
  width: max-content;
  /* width: 250px; */
  z-index: 99;
  display: block;
  padding-top: 20px;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.main-nav nav .navbar-nav .nav-item:hover ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li {
  padding: 12px 15px;
  line-height: 1;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li strong {
  font-size: 16px;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 0;
  margin: 0 !important;
  display: block;
  color: #09435c;
  background-color: #fff;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover {
  /* color: #000;
  background-color: #fdb31e; */
  color: #e59c0a;
  background-color: transparent;
}

/* ============================================================
                         breadcrumb 
=============================================================*/
.breadcrumb {
  padding: 15px 0 0;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.breadcrumb .breadcrumb-item {
  font-size: 18px;
  line-height: 34px;
  text-align: center;
  text-decoration: none;
}

.breadcrumb .breadcrumb-item a {
  font-size: 18px;
  line-height: 34px;
  text-align: center;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #b7950f;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 18px;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #a199ab;
}

/* ============================================================
                         Home 
=============================================================*/

.home-banner {
  position: relative;
  background: linear-gradient(106.8deg, #023850 2.2%, #1a5a76 80.79%);
  padding: 150px 0 100px;
  overflow: hidden;
}

.home-banner-cnt-area::before {
  display: block;
  content: "";
  position: absolute;
  left: -50px;
  top: 0;
  background: url(../images/home-banner-before-bg.svg) no-repeat;
  width: 120px;
  height: auto;
  aspect-ratio: 1/1;
  background-size: contain;
}

.home-banner-cnt-area::after {
  display: block;
  content: "";
  position: absolute;
  right: -150px;
  top: 0;
  background: url(../images/footer-after-bg.png) no-repeat;
  width: 100px;
  height: auto;
  aspect-ratio: 1.5 / 1.9;
  background-size: contain;
}

.home-banner-cnt-area {
  position: relative;
}

.home-banner-hdng span {
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 5px;
  display: block;
  color: #fdb31f;
}

.home-banner-hdng h1 {
  font-size: 50px;
  line-height: 56px;
  font-weight: 800;
  color: #fdb31f;
  font-family: "Manrope", sans-serif;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.home-banner-hdng h2 {
  font-size: 50px;
  line-height: 56px;
  font-weight: 500;
  margin-bottom: 25px;
  color: #fff;
  font-family: "Manrope", sans-serif;
  text-transform: capitalize;
}

.home-banner-hdng p {
  font-size: 22px;
  line-height: 30px;
  padding-bottom: 15px;
  color: #fff;
}

.home-banner-hdng p strong {
  font-weight: 700;
  color: #fdb31f;
}

.home-banner-review {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

.home-banner-review-bx {
  width: 30%;
  /* padding: 0 30px; */
  position: relative;
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  text-align: center;
  padding: 5px 0 30px;
}

.banner-review-stars {
  position: relative;
  top: -15px;
}

.banner-review-stars img {
  margin: 0 auto;
}

.banner-review-stars::before {
  display: inline-block;
  content: "";
  width: calc((100% - 120px) / 2);
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 10px;
}

.banner-review-stars::after {
  display: inline-block;
  content: "";
  width: calc((100% - 120px) / 2);
  height: 1px;
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 10px;
}

.banner-review-platform-img {
  display: flex;
  justify-content: center;
  align-items: end;
  height: 55px;
  margin-bottom: 10px;
}

.banner-review-platform-img img {
  max-height: 100%;
}

.banner-review-platform-name {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: -8px;
  width: 100%;
}

.banner-review-platform-name span {
  font-size: 14px;
  line-height: 19px;
  font-weight: 600;
  color: #fff;
  position: relative;
  display: block;
}

.banner-review-platform-name span::before {
  display: inline-block;
  content: "";
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: -1px;
  top: 10px;
}

.banner-review-platform-name span::after {
  display: inline-block;
  content: "";
  height: 1px;
  background-color: #fff;
  position: absolute;
  right: -1px;
  top: 10px;
}

.home-banner-review-bx:nth-child(1) .banner-review-platform-name span::before,
.home-banner-review-bx:nth-child(1) .banner-review-platform-name span::after {
  width: calc((100% - 160px) / 2);
}

.home-banner-review-bx:nth-child(2) .banner-review-platform-name span::before,
.home-banner-review-bx:nth-child(2) .banner-review-platform-name span::after {
  width: calc((100% - 90px) / 2);
}

.home-banner-review-bx:nth-child(3) .banner-review-platform-name span::before,
.home-banner-review-bx:nth-child(3) .banner-review-platform-name span::after {
  width: calc((100% - 100px) / 2);
}

.home-banner-review-bx h6 {
  font-size: 14px;
  line-height: 19px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.home-banner-review-bx p {
  font-size: 14px;
  line-height: 19px;
  color: #fff;
}

.home-banner-review-bx p strong {
  font-weight: 700;
}

.home-banner-form {
  padding-left: 40px;
}

.home-banner-form h4 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #fff;
  font-family: "Manrope", sans-serif;
  text-transform: capitalize;
}

.home-banner-form .form-group {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 6px;
  min-height: 56px;
  padding: 0 15px;
}

.home-banner-form .form-group.form-group-textarea {
  align-items: baseline;
}

.home-banner-form .form-group.form-group-textarea {
  padding: 0 15px 15px;
}

.home-banner-form .form-group.form-group-number {
  align-items: center;
}

.home-banner-form .form-select {
  background-position: right 0 center;
}

.home-banner-form .btn-group {
  align-items: center;
}

.home-banner-form .btn-group .btn-sd {
  background-color: transparent;
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  font-size: 18px;
  line-height: 22px;
  color: #fff;
  text-align: center;
  border-radius: 34px;
  overflow: hidden;
  cursor: pointer;
  transition: all 300ms linear;
}

.home-banner-form .btn-group .btn-sd.active {
  background-color: #fdb31f;
  color: #000;
}

.form-group-icon {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
}

.form-group-form {
  width: calc(100% - 20px);
  display: flex;
  align-items: center;
  padding-left: 5px;
}

.form-group-form .css-b62m3t-container {
  width: 100%;
}

.form-group-form .rc-time-picker-clear {
  top: 18px;
}

.form-group-form .rc-time-picker-clear-icon:after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00d";
  font-size: 16px;
  line-height: 20px;
  height: 20px;
  width: 20px;
}

.form-group-form .css-13cymwt-control,
.form-group-form .css-t3ipsp-control,
.form-group-form .css-t3ipsp-control:hover {
  border-color: unset;
  border: 0;
  background-color: transparent;
  box-shadow: unset;
}

.form-group-form .css-hlgwow {
  padding: 0;
}

.form-group-form .css-19bb58m {
  padding: 0;
  margin: 0;
}

.form-group-form .css-1u9des2-indicatorSeparator {
  width: 0;
}

.form-group-form input {
  width: auto;
}

.home-banner-form .form-group-form .phninpt-sd input {
  width: 44px;
}

.home-banner-form .form-group-form .phninpt-sd input::placeholder {
  color: #716f6f !important;
}

/* .form-grp .phninpt-sd input::placeholder {
  color: #716f6f !important;
} */
.home-banner-form .form-group.date-form-group-sd input {
  padding: 0;
}

.home-banner-form .form-group.date-form-group-sd .css-10o2lyd-MuiStack-root {
  padding: 0;
  width: 100%;
}

.home-banner-form .form-group.date-form-group-sd .css-1ll44ll-MuiOutlinedInput-notchedOutline {
  top: 0;
  border-width: 0;
  min-width: 100%;
  border-color: transparent;
}

.home-banner-form .form-group.date-form-group-sd .MuiFormControl-root {
  min-width: 100%;
  width: 100%;
}

.home-banner-form .form-group.date-form-group-sd .css-oeq6yz-MuiButtonBase-root-MuiIconButton-root {
  padding: 0;
}

.home-banner-form .form-group.date-form-group-sd .MuiSvgIcon-root {
  width: 20px;
  height: 20px;
}

.home-banner-form .form-group.date-form-group-sd fieldset.MuiOutlinedInput-notchedOutline {
  border: 0;
}

.home-banner-form .form-group.date-form-group-sd .form-group-form {
  display: block;
}

.home-banner-form .form-group.date-form-group-sd .form-group-form .MuiStack-root {
  padding: 0;
}

.home-banner-form .form-group.date-form-group-sd .form-group-form .ButtonBase-root {
  padding: 0;
}

.MuiDialogActions-root .MuiButtonBase-root {
  background-color: #fdb31f !important;
  color: #000 !important;
}

.MuiMultiSectionDigitalClockSection-item.Mui-selected {
  background-color: #023850 !important;
  color: #fff !important;
}

.MuiMultiSectionDigitalClockSection-item:hover {
  background-color: #0238501f !important;
}

.MuiMultiSectionDigitalClockSection-item.Mui-selected:hover {
  background-color: #023850 !important;
  color: #fff !important;
}

.MuiMultiSectionDigitalClock-root ::-webkit-scrollbar-track {
  border-radius: 10px !important;
  background-color: #d9d9d9 !important;
}

.MuiMultiSectionDigitalClock-root ::-webkit-scrollbar {
  width: 5px !important;
  height: 15px !important;
}

.MuiMultiSectionDigitalClock-root ::-webkit-scrollbar-thumb {
  border-radius: 10px !important;
  background-color: #fdb31f !important;
}

.MuiPickersDay-today {
  border-color: #023850 !important;
}

.MuiPickersDay-root.Mui-selected {
  color: #000 !important;
  background-color: #fdb31e !important;
}

.MuiPickersYear-yearButton.Mui-selected {
  color: #000 !important;
  background-color: #fdb31e !important;
}

.home-banner-form .form-group input,
.home-banner-form .form-group select {
  width: 100%;
  font-size: 16px;
  line-height: 22px;
  color: #716f6f;
  padding: 15px 0;
  border-radius: 6px;
  border: 1px solid #fff;
  height: 54px;
}

.home-banner-form .form-group input:focus {
  box-shadow: unset;
}

.home-banner-form .form-group textarea {
  width: 100%;
  height: 100px;
  font-size: 16px;
  line-height: 22px;
  color: #716f6f;
  padding: 15px 0;
  border-radius: 6px;
  border: 1px solid #fff;
}

.home-banner-form .form-group .form-group-form span {
  font-size: 16px;
  line-height: 1;
  color: #716f6f;
  white-space: nowrap;
}

.home-banner-form .form-group select:focus {
  box-shadow: unset;
}

.class-link {
  color: #333333;
  text-decoration: none;
}

.class-link:hover {
  color: #ffbb00;
}

/* From here you can start to copy */

.calendar {
  padding: 8px;
  background: #ffffff;
  border-radius: 4px;
  font-size: 18px;
  border: 1px solid #333333;
  box-shadow: 0px 20px 40px rgba(59, 60, 56, 0.05);
}

.ui-datepicker {
  background: #ffffff;
  border-radius: 15px;
}

.ui-datepicker-header {
  height: 50px;
  line-height: 50px;
  color: #ffffff;
  background: #31639c;
  margin-bottom: 10px;
}

.ui-datepicker-prev,
.ui-datepicker-next {
  width: 20px;
  height: 20px;
  text-indent: 9999px;
  border-radius: 100%;
  cursor: pointer;
  overflow: hidden;
  margin-top: 12px;
}

.ui-datepicker-prev {
  float: left;
  margin-left: 12px;
}

.ui-datepicker-prev:after {
  transform: rotate(45deg);
  margin: -43px 0px 0px 8px;
}

.ui-datepicker-next {
  float: right;
  margin-right: 12px;
}

.ui-datepicker-next:after {
  transform: rotate(-135deg);
  margin: -43px 0px 0px 6px;
}

.ui-datepicker-prev:after,
.ui-datepicker-next:after {
  content: "";
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

.ui-datepicker-prev:hover,
.ui-datepicker-next:hover,
.ui-datepicker-prev:hover:after,
.ui-datepicker-next:hover:after {
  border-color: #333333;
}

.ui-datepicker-title {
  text-align: center;
  font-size: 25px;
}

.ui-datepicker-calendar {
  width: 100%;
  text-align: center;
}

.ui-datepicker-calendar thead tr th span {
  display: block;
  width: 40px;
  color: #31639c;
  margin-bottom: 5px;
  font-size: 18px;
}

.ui-state-default {
  display: block;
  text-decoration: none;
  color: #333333;
  line-height: 40px;
  font-size: 16px;
}

.ui-state-default:hover {
  color: #ffffff;
  background: #31639c;
  border-radius: 50px;
  transition: all 0.25s cubic-bezier(0.7, -0.12, 0.2, 1.12);
}

.ui-state-highlight {
  color: #ffffff;
  background-color: #31639c;
  border-radius: 50px;
}

.ui-state-active {
  color: #ffffff;
  background-color: #31639c;
  border-radius: 50px;
}

.ui-datepicker-unselectable .ui-state-default {
  color: #eee;
  border: 2px solid transparent;
}

.numberstyle-qty input {
  position: relative;
  display: block;
  float: left;
  height: 40px;
  padding: 0;
  margin: 0;
  border: 0px;
  text-align: center;
  line-height: 40px;
  outline: 0;
  box-shadow: 0px;
}

.numberstyle-qty .qty-btn {
  display: block;
  font-size: 22px;
  padding: 0;
  margin: 0;
  border: 0px;
  cursor: pointer;
  text-align: center;
  z-index: 2;
  outline: none;
  box-shadow: unset;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: all 250ms ease;
  width: 31px;
  height: 31px;
  line-height: 31px;
  border-radius: 6px;
}

.numberstyle-qty .qty-btn.qty-add {
  position: absolute;
  right: 10px;
  top: 12px;
  background-color: #023850;
  color: #fff;
}

.numberstyle-qty .qty-btn.qty-rem {
  position: absolute;
  right: 45px;
  top: 12px;
  background-color: #f4f4f4;
  color: #000;
}

.numberstyle-qty .qty-btn.disabled {
  cursor: default;
  color: rgba(116, 116, 116, 0.5);
}

.numberstyle-qty input {
  width: 25px !important;
}

.numberstyle-qty input:focus {
  outline: 0;
  box-shadow: 0px;
}

.numberstyle-qty input[type="number"]::-webkit-inner-spin-button,
.numberstyle-qty input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.numberstyle-qty input[type="number"] {
  padding: 0 !important;
  height: auto;
}

.file-input-area {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.file-input-area-attachment {
  position: absolute;
  bottom: 0px;
  margin-bottom: 10px;
}

/* .file-input {
  float: right;
  margin-top: 10px;
} */
.file-input__input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.file-input__label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: #fff;
  font-size: 16px;
}

.file-input__label img {
  height: 18px;
  margin-right: 10px;
}

.form-group-last {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-group-last .form-check-label {
  font-size: 15px;
  color: #fff;
  cursor: pointer;
}

.form-group-last .form-check-input:checked {
  background-color: #fdb31e;
  border-color: #fdb31e;
}

.form-check-input:focus {
  box-shadow: unset;
}

.form-check .form-check-input {
  cursor: pointer;
}

.form-group-radio {
  display: flex;
  align-items: center;
  /* width: max-content; */
  width: 100%;
  justify-content: center;
}

.form-group-radio [type="radio"]:checked,
.form-group-radio [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
  visibility: hidden;
}

.form-group-radio .checkbox-tools:checked+label,
.form-group-radio .checkbox-tools:not(:checked)+label {
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  font-size: 18px;
  line-height: 22px;
  color: #fff;
  /* margin: 0 auto;
  margin-right: 10px; */
  margin: 0;
  text-align: center;
  border-radius: 34px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}

.form-group-radio .checkbox-tools:not(:checked)+label {
  background-color: transparent;
}

.form-group-radio .checkbox-tools:checked+label {
  background-color: #fdb31f;
  color: #000;
}

.form-group-radio .checkbox-tools:checked+label::before,
.form-group-radio .checkbox-tools:not(:checked)+label::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background-image: linear-gradient(298deg, var(--red), var(--yellow));
  z-index: -1;
}

.form-group-radio .checkbox-tools:checked+label .uil,
.form-group-radio .checkbox-tools:not(:checked)+label .uil {
  font-size: 24px;
  line-height: 24px;
  display: block;
  padding-bottom: 10px;
}

.assignment-type-info-wrapper {
  position: relative;
  /* padding: 0 0 0 15px; */
  padding: 0 30px;
}

.real-experts-bx .assignment-type-info-wrapper img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(43%) saturate(1599%) hue-rotate(164deg) brightness(100%) contrast(99%);
}

.assignment-type-info-tooltip {
  display: none;
  flex-direction: column;
  background: grey;
  color: #fff;
  padding: 10px;
  background: #d2d2d2 0 0 no-repeat padding-box;
  width: 315px;
  position: absolute;
  z-index: 9999;
  top: auto;
  bottom: 32px;
  left: -231px;
  /* box-shadow: 1px 1px 3px 0 rgba(35, 36, 36, 0.368627451); */
}

.assignment-type-info-tooltip p {
  font-size: 12px;
  line-height: 20px;
  color: #000;
}

.assignment-type-info-tooltip p strong {
  font-weight: 600;
}

.assignment-type-info-tooltip:after {
  content: "";
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #d2d2d2;
  position: absolute;
  right: 37px;
  bottom: -9px;
}

.assignment-type-info-wrapper img:hover~.assignment-type-info-tooltip {
  display: flex;
}

.main-hdng {
  position: relative;
  margin-bottom: 50px;
}

.main-hdng p {
  font-size: 22px;
  line-height: 28px;
  color: #131313;
  padding-top: 15px;
}

.main-hdng h2 {
  font-size: 45px;
  line-height: 55px;
  font-weight: 800;
  color: #023850;
  text-transform: capitalize;
  text-wrap: balance;
  margin-bottom: 0;
}

.main-hdng h2 span {
  display: inline-block;
}

.main-hdng h4 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  color: #023850;
  text-transform: capitalize;
}

.assignment-writers-area {
  background-color: #eef2f6;
}

.assignment-writers-bx {
  position: relative;
  border: 1px solid #c8c8c8;
  border-radius: 12px;
  background-color: #fff;
}

.assignment-writers-area .owl-carousel .owl-item img {
  width: auto;
}

.rv img {
  width: 18px !important;
}

.assignment-writers-area .owl-carousel .owl-item {
  padding-bottom: 130px;
}

.assignment-writers-area .owl-theme .owl-nav {
  margin: 0;
}

.assignment-writers-area .owl-theme .owl-nav [class*="owl-"] {
  margin: 0;
  padding: 0;
  position: absolute;
  bottom: 0;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background: transparent;
  border: 1px solid #023850;
}

.assignment-writers-area .owl-theme .owl-nav [class*="owl-"]:hover {
  background: #023850;
  border: 1px solid #023850;
}

.assignment-writers-area .owl-theme .owl-nav [class*="owl-"]:hover img {
  filter: brightness(0) saturate(100%) invert(81%) sepia(61%) saturate(2491%) hue-rotate(342deg) brightness(102%) contrast(98%);
}

.assignment-writers-area .owl-theme .owl-nav .owl-next {
  right: 0;
}

.assignment-writers-area .owl-theme .owl-nav .owl-prev {
  right: 100px;
}

.writers-rating {
  position: absolute;
  right: 30px;
  top: -1px;
}

.writers-rating-bx {
  width: 43px;
  height: 43px;
  background-color: #023850;
  position: relative;
  text-align: center;
  padding: 7px 0;
}

.writers-rating-bx span {
  font-size: 14px;
  line-height: 19px;
  font-weight: 700;
  color: #fdb31f;
  display: block;
  position: relative;
  z-index: 2;
}

.writers-rating-bx img {
  margin: 0 auto 3px;
  position: relative;
  z-index: 2;
}

.writers-rating-bx::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: url(../images/rating-before.svg) no-repeat;
  width: 43px;
  height: 67px;
}

.assignment-writers-bx-bottom {
  border-top: 1px solid #c8c8c8;
  padding: 15px;
}

.assignment-writers-bx-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-border-btn {
  width: 110px;
}

.assignment-writers-bx-bottom-left {
  display: flex;
  align-items: center;
  width: calc(100% - 110px);
  padding-right: 30px;
}

.writer-img {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  overflow: hidden;
}

.writer-img img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: cover;
  object-position: top center;
}

.writer-designation {
  width: calc(100% - 50px);
  padding-left: 10px;
}

.writer-designation h6 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #131313;
  margin-bottom: 2px;
}

.writer-designation p {
  font-size: 14px;
  line-height: 19px;
  color: #023850;
}

.assignment-writers-bx-top {
  padding: 15px;
  display: flex;
  align-items: center;
}

.subject-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(2, 56, 80, 0.1);
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.subject-icon img {
  max-width: 60%;
  max-height: 60%;
}

.subject-name {
  width: calc(100% - 36px);
  padding-left: 10px;
}

.subject-name {
  font-size: 22px;
  line-height: 30px;
  color: #023850;
  font-weight: 600;
}

.assignment-writers-bx-middle {
  padding: 15px;
}

.writer-details p {
  font-size: 16px;
  line-height: 22px;
  color: #131313;
}

.rv-cp {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
}

.rv-cp span {
  font-size: 14px;
  line-height: 1;
  color: #023850;
}

.rv-cp span strong {
  font-weight: 700;
}

.rv {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cp {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-calculator-area {
  margin-bottom: -150px;
  padding: 0;
  position: relative;
  z-index: 3;
  overflow: visible;
}

.pricing-calculator-bx {
  background: linear-gradient(122.95deg, #023850 6.99%, #1a5a76 76.19%);
  border-radius: 40px;
  padding: 50px;
  border-bottom: 5px solid #fdb31f;
  overflow: visible;
  position: relative;
}

.pricing-calculator-bx::after {
  display: block;
  content: "";
  position: absolute;
  bottom: -15px;
  right: 0;
  z-index: 1;
  background: url(../images/price-calculator-after-bg.svg) no-repeat;
  aspect-ratio: 1.3/1.9;
  width: 100px;
  height: auto;
  border-radius: 0 0 60px 0;
}

.pricing-calculator-bx::before {
  display: block;
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  z-index: 1;
  background: url(../images/price-calculator-before-bg.svg) no-repeat;
  aspect-ratio: 1/1;
  width: 120px;
  height: auto;
  background-size: contain;
  border-radius: 0 0 0 60px;
}

.pricing-calculator-bx .main-hdng {
  margin-bottom: 30px;
}

.pricing-calculator-bx .main-hdng h2 {
  color: #fdb31f;
}

.pricing-calculator-area form .form-group.form-group-datepicker {
  position: relative;
}

.pricing-calculator-area form .form-group.form-group-datepicker .form-group-icon {
  position: absolute;
  right: 15px;
  top: 17px;
  padding: 0;
}

.pricing-calculator-area form label {
  display: block;
  font-size: 19px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
  width: 100%;
}

.pricing-calculator-area form input,
.pricing-calculator-area form select {
  width: 100%;
  background-color: #fff;
  border: 1px solid #fff;
  padding: 15px;
  border-radius: 6px;
  font-size: 16px;
  line-height: 22px;
  color: #21566d;
}

.pricing-calculator-area form input::placeholder {
  font-size: 16px;
  line-height: 22px;
  color: #21566d;
}

.pricing-calculator-area form .form-text {
  font-size: 12px;
  line-height: 15px;
  color: #fff;
}

.pricing-calculator-area form .form-select {
  background-image: url(../images/select-down-arrow.svg);
  background-repeat: no-repeat;
  cursor: pointer;
  background-size: 16px;
}

/* .pricing-calculator-area form input[type="date"] {
  background-image: url(../images/datepicker-ico.svg); 
  background-repeat: no-repeat;
  cursor: pointer; 
  background-size: 16px;
} */
.pricing-calculator-area form input:focus,
.pricing-calculator-area form select:focus {
  border-color: #fdb31e;
  box-shadow: unset;
}

.calculate-bx {
  border: 1px dashed #ffffff;
  border-radius: 23px;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.calculate-bx-value h3 {
  font-size: 34px;
  line-height: 45px;
  color: #fff;
  font-weight: 800;
  font-family: "Manrope", sans-serif;
  text-align: center;
}

.calculate-bx-value h6 {
  font-size: 12px;
  line-height: 16px;
  color: #fff;
  text-align: center;
}

.review-area {
  background-color: #023850;
  padding-top: 230px;
  position: relative;
}

.review-area::before {
  display: block;
  content: "";
  position: absolute;
  left: 5%;
  top: 30%;
  background: url(../images/review-area-before-bg.svg) no-repeat;
  width: 120px;
  height: auto;
  aspect-ratio: 1/1;
  background-size: contain;
}

.review-bx-area::before {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  top: 100px;
  background: url(../images/review-area-after-bg.svg) no-repeat;
  width: 160px;
  height: auto;
  aspect-ratio: 1/1;
  background-size: contain;
}

.review-area .main-hdng h2 {
  color: #fff;
}

.review-area .main-hdng p {
  color: #fdb31f;
}

.review-bx-area {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  justify-content: space-between;
}

.review-bx-area::after {
  display: block;
  content: "";
  position: absolute;
  left: 20px;
  bottom: -60px;
  background: url(../images/footer-after-bg.png) no-repeat;
  width: 100px;
  height: auto;
  aspect-ratio: 1.3 / 1.9;
  background-size: contain;
}

.review-bx {
  position: relative;
  z-index: 2;
  width: 31%;
  background-color: #eeeef52e;
  border-radius: 18px;
  margin: 10px 10px;
  padding: 20px 20px 100px 20px;
  /* border-right: 1px solid #c3c3c3; */
}

.calculation {
  font-size: 16px;
  line-height: 1;
  color: #716f6f;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 5px 5px;
  border: 1px solid;
  border-radius: 10px;
  margin: 0px 6px;
  position: relative;
  left: 12px;
  background-color: #fdb31fac;
}

.calculation span {
  color: black !important;
}

.minimal-padding {
  padding: 5px;
}

.review-bx:last-child {
  border-right: 0;
}

.reviewviewdetails-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.reviewviewdetails-btn:hover img {
  filter: brightness(0) saturate(100%) invert(81%) sepia(61%) saturate(2491%) hue-rotate(342deg) brightness(102%) contrast(98%);
}

.review-text p {
  font-size: 16px;
  line-height: 22px;
  color: #fff;
}

.review-date {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.review-date span {
  font-size: 14px;
  line-height: 19px;
  color: #fff;
}

.reviewer-details-bx {
  position: relative;
  width: max-content;
  padding-right: 80px;
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ffffff;
}

.reviewer-details-bx::before {
  display: block;
  content: "";
  width: 60px;
  height: 1px;
  background-color: #fdb31f;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.reviewer-img {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  overflow: hidden;
  margin-bottom: 15px;
}

.reviewer-img img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
}

.reviewer-details h6 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.reviewer-details p {
  font-size: 14px;
  line-height: 19px;
  color: #fff;
}

.reviewer-company {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviewer-company h6 {
  font-size: 20px;
  line-height: 27px;
  font-weight: 600;
  color: #fff;
}

.reviewer-company img {
  max-height: 23px;
}

.reviewer-rating {
  margin: 10px 0 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviewer-rating span {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.reviewer-rating span img {
  max-width: 80%;
  max-height: 80%;
  position: relative;
}

/* .reviewer-rating span::before {
  display: block;
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #D9D9D9;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
} */
.reviewer-rating.bad-review span {
  background-color: red;
}

.reviewer-rating.average-review span {
  background-color: #fdb31f;
}

.reviewer-rating.good-review span {
  background-color: #12cf6c;
}

.business-success-area .main-hdng {
  margin-bottom: 0;
}

.business-success-area .main-hdng p {
  color: #fdb31f;
}

.business-success-bx {
  text-align: center;
}

.business-success-bx-img {
  width: 100px;
  height: 100px;
  background-color: #eef2f6;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto 15px;
}

.business-success-bx-img::before {
  display: block;
  content: "";
  width: 39px;
  height: 39px;
  border-radius: 100%;
  background-color: #fdb31f;
  position: absolute;
}

.business-success-area .row>*:nth-child(1) .business-success-bx-img::before {
  top: 48px;
  right: 18px;
}

.business-success-area .row>*:nth-child(2) .business-success-bx-img::before {
  top: 22px;
  right: 18px;
}

.business-success-area .row>*:nth-child(3) .business-success-bx-img::before {
  top: 48px;
  right: 20px;
}

.business-success-area .row>*:nth-child(4) .business-success-bx-img::before {
  top: 14px;
  right: 44px;
}

.business-success-bx-img img {
  max-width: 60%;
  max-height: 60%;
  position: relative;
}

.business-success-bx-text h3 {
  font-size: 35px;
  line-height: 45px;
  color: #023850;
  font-weight: 800;
  margin-bottom: 5px;
  font-family: "Manrope", sans-serif;
}

.business-success-bx-text h6 {
  font-size: 19px;
  line-height: 27px;
  color: #131313;
  text-transform: capitalize;
}

.help-features-area {
  background: linear-gradient(0deg, #023850, #023850), linear-gradient(106.8deg, #023850 2.2%, #004361 80.79%);
  position: relative;
}

.help-features-area .main-hdng {
  margin-bottom: 60px;
}

.help-features-area .main-hdng h2 {
  color: #fff;
}

.help-features-area .main-hdng p {
  color: #fdb31f;
}

.help-features-bx {
  background-color: transparent;
  border: 1px solid #ffffff;
  padding: 30px 40px 50px;
  border-radius: 12px;
  text-align: center;
  height: 100%;
  transition: all 0.5s ease-in-out;
  position: relative;
}

.help-features-bx span {
  background: transparent;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 30px;
  transition: all 0.5s ease-in-out;
  position: relative;
}

.help-features-bx span img {
  max-width: 60%;
  max-height: 60%;
  filter: brightness(0) saturate(100%) invert(79%) sepia(21%) saturate(2525%) hue-rotate(341deg) brightness(101%) contrast(98%);
}

.help-features-bx span::before {
  display: block;
  content: "";
  background-color: rgba(255, 255, 255, 0.3);
  width: 39px;
  height: 39px;
  border-radius: 100%;
  position: absolute;
  transition: all 0.5s ease-in-out;
}

.help-features-area .row>*:nth-child(1) .help-features-bx span::before {
  top: 18px;
  right: 8px;
}

.help-features-area .row>*:nth-child(2) .help-features-bx span::before {
  top: 40px;
  right: 14px;
}

.help-features-area .row>*:nth-child(3) .help-features-bx span::before {
  top: 50px;
  right: 20px;
}

.help-features-area .row>*:nth-child(4) .help-features-bx span::before {
  top: 50px;
  right: 28px;
}

.help-features-area .row>*:nth-child(5) .help-features-bx span::before {
  top: 20px;
  right: 48px;
}

.help-features-area .row>*:nth-child(6) .help-features-bx span::before {
  top: 21px;
  right: 17px;
}

.help-features-area .btn-group {
  width: 100%;
  justify-content: center;
  margin-top: 50px;
}

.help-features-area .btn-group .btn-2 span {
  min-width: 180px;
}

.help-features-bx h5 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  transition: all 0.5s ease-in-out;
}

.help-features-bx p {
  font-size: 16px;
  line-height: 24px;

  color: #b1cfdd;
  transition: all 0.5s ease-in-out;
}

.help-features-bx:hover {
  background-color: #fff;
  border: 1px solid #ffffff;
}

.help-features-bx:hover span {
  background-color: #fdb31f;
}

.help-features-bx:hover span img {
  filter: brightness(0) saturate(100%) invert(16%) sepia(62%) saturate(847%) hue-rotate(158deg) brightness(99%) contrast(102%);
}

.help-features-bx:hover span::before {
  background-color: rgba(255, 255, 255, 1);
}

.help-features-bx:hover h5,
.help-features-bx:hover p {
  color: #023850;
}

.benefits-assignment-area {
  background-color: #eef2f6;
}

.benefits-assignment-area .main-hdng {
  margin-bottom: 0;
  background: #eef2f6;
  padding-bottom: 50px;
  z-index: 2;
}

.benefits-assignment-bx-cnt {
  background-color: #eef2f6;
  padding: 20px 0;
}

.benefits-assignment-bx-area {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.benefits-assignment-img-area {
  width: 600px;
  height: 600px;
  border-radius: 100%;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: -100px;
  border: 1px dashed #02385080;
}

.benefits-assignment-img {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  width: 60%;
  height: 60%;
  border-radius: 100%;
  border: 1px dashed #02385080;
  display: flex;
  justify-content: center;
}

.benefits-assignment-img img {
  max-width: 75%;
  max-height: 75%;
  margin-top: 20px;
}

.benefits-assignment-bx {
  width: 50%;
  padding-top: 75px;
  position: relative;
}

.benefits-assignment-bx.essay-help-bx {
  padding-right: 20%;
}

.benefits-assignment-bx.coursework-help-bx {
  padding-left: 20%;
}

.benefits-assignment-bx.homework-help-bx {
  padding-right: 10%;
  padding-left: 10%;
}

.benefits-assignment-bx-img {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #023850;
  position: relative;
}

.benefits-assignment-bx-img::before {
  display: block;
  content: "";
  width: 39px;
  height: 39px;
  border-radius: 100%;
  background-color: #17607e;
  position: absolute;
}

.benefits-assignment-bx.essay-help-bx .benefits-assignment-bx-img::before {
  right: 10px;
  bottom: 15px;
}

.benefits-assignment-bx.coursework-help-bx .benefits-assignment-bx-img::before {
  left: 10px;
  bottom: 10px;
}

.benefits-assignment-bx.homework-help-bx .benefits-assignment-bx-img::before {
  right: 10px;
  bottom: 25px;
}

.benefits-assignment-bx-img img {
  max-width: 60%;
  max-height: 60%;
  position: relative;
}

.benefits-assignment-bx-cnt p {
  font-size: 16px;
  line-height: 22px;
  color: #023850;
}

.benefits-assignment-bx-cnt h5 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  color: #023850;
  margin-bottom: 10px;
}

.gethelp-area .main-hdng {
  margin-bottom: 70px;
}

.gethelp-area .btn-group {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}

.gethelp-area .btn-group .btn-1 span {
  min-width: 180px;
}

.gethelp-area .btn-group .btn-1 span:hover {
  color: #000;
}

.gethelp-bx-area {
  display: flex;
  position: relative;
}

.gethelp-line {
  position: absolute;
  top: 55px;
  left: 15%;
  right: 15%;
}

.gethelp-line img {
  max-width: 100%;
}

.gethelp-bx {
  position: relative;
  text-align: center;
  width: 33.33%;
  padding: 30px;
  transition: all 0.5s ease-in-out;
}

.gethelp-bx-number {
  font-size: 70px;
  line-height: 80px;
  color: #023850;
  font-weight: 800;
  position: absolute;
  top: 0;
  left: 35%;
  transform: translateX(-50%);
  font-family: "Manrope", sans-serif;
}

.gethelp-bx-img {
  width: 165px;
  height: 165px;
  border-radius: 100%;
  background-color: #fff7e8;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 30px;
  transition: all 0.5s ease-in-out;
}

.gethelp-bx-img img {
  max-width: 50%;
  max-height: 50%;
}

.gethelp-bx:hover .gethelp-bx-img {
  background-color: #fff;
  box-shadow: 0px 4px 30px 0px #001a251a;
}

.gethelp-bx-text h5 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  color: #023850;
  margin-bottom: 10px;
}

.gethelp-bx-text p {
  font-size: 16px;
  line-height: 22px;

  color: #131313;
}

.faqarea {
  position: relative;
}

.faqarea .sectionheading {
  margin-bottom: 50px;
}

.faqarea .sectionheading::before {
  left: 50%;
  transform: translateX(-50%);
}

.faqarea .accordion .accordion-item {
  /* margin-bottom: 20px; */
  background-color: transparent;
  border: none;
  /* width: 48%; */
  /* margin-left: 22px; */
  padding: 10px;
  width: 50%;
}

.accordion-row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.faqarea .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faqarea .accordion .accordion-item .accordion-button {
  background-color: unset;
  box-shadow: none;
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  text-align: left;
  color: #023850;
  padding: 25px 80px 25px 50px;
  background-color: #eef2f6;
  border-radius: 12px;
}

.faqarea .accordion-item:first-of-type>.accordion-header .accordion-button {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.faqarea .accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

.faqarea .accordion .accordion-item .accordion-body {
  font-size: 16px;
  line-height: 26px;
  margin-top: -1px;
  text-align: left;
  color: #fff;
  padding: 0 100px 30px 50px;
  border-radius: 0 0 12px 12px;
  background-color: #023850;
}

.faqarea .accordion .accordion-item .accordion-button::after {
  display: none;
}

.blog-vertical-bx-img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4.1/3.4;
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.blog-vertical-bx-img img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-vertical-bx-img::before {
  aspect-ratio: 4.1/3.4;
  display: block;
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 20px;
  z-index: 2;
}

.blog-vertical-bx-text a {
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  color: #023850;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-vertical-bx-text a:hover {
  color: #fdb31f;
}

.blog-bx-calender {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-bx-calender span {
  font-size: 14px;
  line-height: 19px;

  color: #131313;
}

.blog-horizontal-bx {
  display: flex;
  align-items: center;
}

.blog-horizontal-bx-img {
  width: 30%;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1.3/1.3;
  position: relative;
  z-index: 1;
}

.blog-horizontal-bx-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.blog-horizontal-bx-img::before {
  aspect-ratio: 1.3/1.3;
  display: block;
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  z-index: 2;
}

.blog-horizontal-bx-text {
  width: 70%;
  padding-left: 15px;
}

.blog-horizontal-bx-text a {
  font-size: 19px;
  line-height: 26px;
  font-weight: 600;
  color: #023850;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-horizontal-bx-text a:hover {
  color: #fdb31f;
}

.blog-horizontal-bx-area .blog-horizontal-bx {
  margin-bottom: 20px;
}

.blog-horizontal-bx-area .blog-horizontal-bx:last-child {
  margin-bottom: 0;
}

.herosection-subpage.about-us .bannerimage {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 50%;
  height: 100%;
  /* background-image: url(../images/about-banner-bg.png);
  background-repeat: no-repeat;
  background-size: 100%; */
  content: "";
  z-index: 2;
  mix-blend-mode: multiply;
  background-position: right bottom;
  object-fit: cover;
}

.faqarea .accordion .accordion-button.collapsed:before {
  content: "\f067";
}

.faqarea .accordion .accordion-button:before {
  font-family: FontAwesome;
  content: "\f068";
  width: 50px;
  height: 50px;
  line-height: 50px;
  box-shadow: 0px 10px 40px 0px #0a2f341a;
  background: #023850;
  color: #fdb31f;
  border-radius: 50%;
  text-align: center;
  font-size: 22px;
  position: absolute;
  transform: translateY(-50%);
  right: 15px;
  top: 50%;
}

.faqarea .accordion .accordion-button:not(.collapsed):before {
  background: #fdb31f;
  color: #023850;
}

.faqarea .accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: #023850;
  color: #fdb31f;
  border-radius: 12px 12px 0 0;
}

/* ============================================================
                         Footer 
=============================================================*/

.acfooter {
  position: relative;
  padding: 70px 0 0;
  background: linear-gradient(106.8deg, #023850 2.2%, #1a5a76 80.79%);
}

.circle-blur-img {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  max-width: 50%;
  max-height: 100%;
}

.circle-blur-img img {
  width: 100%;
  height: 100%;
}

.circle-blur-img-2 {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 30%;
  max-height: 100%;
}

.circle-blur-img-2 img {
  width: 100%;
  height: 100%;
}

.footer-polka-dot {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 200px;
}

.acfooter::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 120px;
  background: url(../images/footer-before-bg.png) no-repeat;
  width: 100px;
  height: auto;
  aspect-ratio: 1.5/1.9;
  background-size: contain;
}

.acfooter::after {
  display: block;
  content: "";
  position: absolute;
  right: 5%;
  top: 170px;
  background: url(../images/footer-after-bg.png) no-repeat;
  width: 100px;
  height: auto;
  aspect-ratio: 1.5/1.9;
  background-size: contain;
}

.footertitle {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 27px;
  text-align: left;
  color: #fdb31f;
  position: relative;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.acfooter .addlink li:hover {
  padding-left: 42px;
}

.footerlinks ul li {
  position: relative;
  text-align: left;
  transition: 0.2s ease-in-out;
}

.acfooter .custombtn:hover span {
  color: #fff;
}

.footerlinks ul {
  list-style: none;
}

.footerlinks ul li a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  line-height: 22px;

  margin-bottom: 10px;
}

.footerlinks .custombtn {
  margin: 20px 0;
}

.footerlinks ul li:hover {
  padding-left: 5px;
}

.acfooter .addlink li .circleIcon {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffff;
  background-color: #3ba7c2;
  transition: 0.5s ease-in-out;
  position: absolute;
  left: 0;
  top: -6px;
}

.acfooter .addlink li {
  padding-left: 40px;
}

.acfooter .addlink li .circleIcon i {
  font-size: 14px;
}

.acfooter .addlink li a:hover .circleIcon {
  background-color: #fff;
  color: #01bdb2;
}

.social ul li {
  margin-bottom: 0;
}

.acfooter .addlink li a {
  text-decoration: none;
}

.footerlinks ul.addlink {
  gap: 15px 0;
  list-style: none;
  padding-left: 0;
}

.footerlinks ul.addlink li a {
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  word-break: break-word;
}

.footerlinks ul.addlink li a:hover {
  color: #c79637;
}

.footer-bottom {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  border-top: 1px solid #ffffff;
  padding: 25px 0;
  color: #fff;
  font-size: 14px;
  margin: 40px 0 0;
}

.footer-bottom span {
  font-size: 14px;
  line-height: 22px;
  color: #fdb31f;
}

.footer-bottom span a {
  color: #fdb31f;
}

#footerlinks span:nth-child(1) {
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid #fdb31f;
}

/* .footer-bottom span:nth-child(3) {
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid #fdb31f;
} */
.footer-bottom .social-link a {
  color: white !important;
  transition: 0.5s ease-in-out;
}

.social-link img {
  width: 100px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.footer-bottom .social-link a:hover {
  color: #fdb31f !important;
  transition: 0.5s ease-in-out;
}

.social ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.social ul li a {
  color: #fff;
  font-size: 20px;
  transition: 0.5s ease-in-out;
}

.social ul li a:hover {
  color: #fdb31f;
  transition: 0.5s ease-in-out;
}

.footerlinks.special-menu ul {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
}

.footerlinks.special-menu ul li {
  width: 45%;
}

.acfooter-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 15px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.acfooter .copyrights {
  position: relative;
  z-index: 2;
}

/* ============================================================
                         Inner banner 
=============================================================*/

.breadcrumb-wrapper {
  display: inline-block;
  vertical-align: top;
  background-color: #fff;
  border-radius: 80px;
  font-size: 15px;
  padding: 8px;
  z-index: 3;
  position: relative;
}

.breadcrumb-wrapper ul {
  padding-left: 0;
}

.breadcrumb-wrapper li {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  list-style-type: none;
}

.breadcrumb-wrapper a {
  padding: 5px 14px;
  position: relative;
  text-decoration: none;
  text-transform: capitalize;
}

.breadcrumb-wrapper a img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

.breadcrumb-wrapper li:after {
  content: ">";
}

.breadcrumb-wrapper li:last-child:after {
  display: none;
}

/* ============================================================
                         Login / Sign up modal 
=============================================================*/

.login-signup-modal .modal-body {
  padding: 0;
}

.login-signup-modal .modal-content {
  background-color: transparent;
  border-radius: 10px;
}

.login-signup-area {
  display: flex;
  position: relative;
}

.login-signup-logo {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  width: 80px;
  height: 80px;
  border: 3px solid #fdb31f;
  border-radius: 100%;
  background-color: #023850;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.login-signup-logo img {
  max-width: 70%;
  max-height: 70%;
}

.login-area {
  width: 50%;
  background: #fff;
  padding: 50px 70px 100px 50px;
  border-radius: 10px 0 0 10px;
}

.signup-area {
  background: linear-gradient(106.8deg, #023850 2.2%, #1a5a76 80.79%);
  padding: 50px 50px 100px 70px;
  width: 50%;
  border-radius: 0 10px 10px 0;
  position: relative;
}

.login-signup-hdng {
  margin-bottom: 30px;
}

.login-signup-hdng p {
  font-size: 22px;
  line-height: 30px;
  color: #131313;
  padding-top: 10px;
}

.login-signup-hdng h2 {
  font-size: 50px;
  line-height: 56px;
  font-weight: 800;
  color: #023850;
  font-family: "Manrope", sans-serif;
}

.signup-area .login-signup-hdng p {
  color: #fff;
}

.signup-area .login-signup-hdng h2 {
  color: #fdb31f;
}

.login-signup-form .form-grp {
  position: relative;
  margin-bottom: 30px;
}

.login-signup-form .form-grp .form-grp-icon {
  position: absolute;
  right: 10px;
  top: 2px;
}

.login-signup-form .form-grp input {
  width: 100%;
  border: 0;
  background-color: transparent;
  border-bottom: 1px solid #023850;
  padding: 0 40px 12px 0;
  font-size: 16px;
  line-height: 22px;
  color: #716f6f;
  transition: all 0.5s ease-in-out;
}

.login-signup-form .form-grp input:focus {
  border-bottom: 1px solid #fdb31f;
  transition: all 0.5s ease-in-out;
}

.login-signup-form .frgt-psswrd .frgt-psswrd-btn {
  font-size: 16px;
  line-height: 22px;
  color: #023850;
  margin-bottom: 20px;
  display: block;
}

.login-signup-form .frgt-psswrd .frgt-psswrd-btn:hover {
  color: #fdb31f;
}

.login-signup-form form .btn-group .btn-1 {
  min-width: 150px;
}

.login-signup-form form .btn-group .btn-1 span:hover {
  color: #000;
}

.login-signup-form form .btn-group {
  width: 100%;
  justify-content: end;
}

.signup-area .login-signup-form .form-grp input {
  border-bottom: 1px solid #fff;
  color: #c8c8c8;
}


/* .signup-area .login-signup-form .form-grp input::placeholder {
  color: #716f6f !important;
} */
.signup-area .form-grp input:focus {
  border-bottom: 1px solid #fdb31f;
}

.signup-area .login-signup-form .form-grp .form-grp-icon img {
  filter: brightness(0) invert(1);
  max-width: 19px;
}

.signup-area .login-signup-form form .btn-group .btn-1 span:hover {
  color: #fff;
}

.signup-progress {
  display: flex;
  align-items: center;
  position: absolute;
  left: 70px;
  bottom: 30px;
}

.signup-progress-step {
  display: flex;
  align-items: center;
}

.signup-progress-circle {
  width: 16px;
  height: 16px;
  border: 2px solid #fdb31f;
  background-color: transparent;
  border-radius: 100%;
  margin-right: 5px;
  /* cursor: pointer; */
}

.signup-progress-count {
  font-size: 12px;
  line-height: 1;
  color: #fff;
  margin-right: 10px;
  display: none;
}

.signup-progress-step.active .signup-progress-circle {
  background-color: #fdb31f;
}

.signup-progress-step.active .signup-progress-count {
  display: block;
}

.dp-update {
  width: 130px;
  height: 130px;
  border-radius: 100%;
  background-color: #ffffff33;
  margin-bottom: 30px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .dp-update img {
  width: 60%;
  height: 60%;
} */
.dp-upload-ico {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background-color: #fff;
  position: absolute;
  right: -10px;
  bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.signup-area .login-signup-form .frgt-psswrd .frgt-psswrd-btn {
  color: #fff;
  font-weight: 700;
}

.signup-area .login-signup-form .frgt-psswrd .frgt-psswrd-btn:hover {
  color: #fdb31f;
}

.otp-form-group input::-webkit-outer-spin-button,
.otp-form-group input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.otp-form-group input[type="number"] {
  -moz-appearance: textfield;
}

.otp-form-group {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.otp-form-group input {
  font-size: 50px;
  line-height: 55px;
  padding: 0 10px 12px;
  color: #fdb31f;
  font-weight: 800;
  font-family: "Manrope", sans-serif;
  width: 20%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #fff;
  text-align: center;
}

.login_otp_field {
  width: calc(100% / 4) !important;
}

.login-signup-area-responsive {
  background: linear-gradient(106.8deg, #023850 2.2%, #1a5a76 80.79%);
  padding: 50px 50px 0;
  border-radius: 10px;
}

.login-signup-area-responsive .nav-pills {
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px !important;
}

.login-signup-area-responsive .nav-pills .nav-link {
  font-size: 16px;
  background-color: transparent;
  border-radius: 0;
  padding: 0 0 10px;
  border-bottom: 1px solid transparent;
  color: #fff;
}

.login-signup-area-responsive .nav-pills .nav-link.active,
.login-signup-area-responsive .nav-pills .show>.nav-link {
  border-bottom: 1px solid #fdb31f;
  color: #fdb31f;
  background-color: transparent;
}

.login-signup-area-responsive .login-area,
.login-signup-area-responsive .signup-area {
  padding: 0 0 100px;
  width: 100%;
  background: transparent;
  border-radius: 0;
}

.login-signup-area-responsive .login-area .login-signup-form .form-grp input {
  border-bottom: 1px solid #fff;
  color: #c8c8c8;
}

.login-signup-area-responsive .login-area .login-signup-hdng h2 {
  color: #fdb31f;
}

.login-signup-area-responsive .login-area .login-signup-hdng p {
  color: #fff;
}

.login-signup-area-responsive .login-area .login-signup-form .form-grp .form-grp-icon img {
  filter: brightness(0) invert(1);
}

.login-signup-area-responsive .login-area .login-signup-form .frgt-psswrd .frgt-psswrd-btn {
  color: #fff;
}

.login-signup-area-responsive .signup-progress {
  left: 0;
}

/* ============================================================
                         profile page 
=============================================================*/
.inner-banner {
  padding: 150px 0;
  background: linear-gradient(106.8deg, #023850 2.2%, #1a5a76 80.79%);
  position: relative;
}

.inner-banner-hdng h1 {
  font-size: 50px;
  line-height: 56px;
  margin-bottom: 10px;
  font-weight: 800;
  color: #fdb31f;
  font-family: "Manrope", sans-serif;
}

.inner-banner-hdng h1 span {
  font-weight: 500;
  color: #fff;
}

.inner-banner-hdng p {
  font-size: 22px;
  line-height: 30px;
  color: #fff;
}

.who-i-am-area {
  background-color: #eef2f6;
}

.who-i-am {
  position: relative;
  padding: 0 0 60px;
  margin-top: -60px;
}

.who-i-am-img {
  width: 330px;
  height: 330px;
  border-radius: 100%;
  /* overflow: hidden; */
  /* position: absolute;
  left: 0;
  top: -75px; */
  position: relative;
  background: #fff;
}

.who-i-am-img img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
}

.who-i-am-img .who-i-am-img-lg {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: cover;
}

.instagram-ico {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  border: 2px solid #fdb31f;
  background-color: #023850;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 30px;
  right: 0;
}

.instagram-ico img {
  max-width: 50%;
  max-height: 50%;
  border-radius: 0;
}

.profile-hdng h2 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #023850;
  font-family: "Manrope", sans-serif;
}

.profile-hdng p {
  font-size: 16px;
  line-height: 26px;
  color: #131313;
}

.profile-details .form-group .profile-data {
  display: flex;
  justify-content: space-between;
}

.profile-details .form-group input::placeholder {
  color: #a7a7a7;
}

.profile-details .form-group input,
.profile-details .form-group .form-select {
  font-size: 16px;
  line-height: 22px;
  padding: 15px;
  color: #131313;
  width: 100%;
  border-radius: 6px;
  border: 1px solid #e6e6e6;
  background: #fff;
}

.profile-details .select__placeholder {
  font-size: 16px;
  line-height: 22px;
  color: #a7a7a7;
}

.profile-details .form-group input:focus {
  border: 1px solid #023850;
}

.profile-details .form-group .form-select:focus {
  box-shadow: unset;
}

.edit-profile-btn {
  width: 60px;
  height: 53px;
  background-color: #023850;
  border: 1px solid #023850;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.edit-profile-btn img {
  max-width: 50%;
  max-height: 50%;
}

.profile-details .form-group label {
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  color: #131313;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.who-i-live {
  padding: 60px 0;
}

.who-i-do-area {
  padding: 60px 0;
  background-color: #eef2f6;
}

.course-bx-area {
  display: flex;
  flex-wrap: wrap;
  row-gap: 40px;
}

.course-bx {
  width: 10%;
  padding: 0 5px;
}

.course-bx-img {
  width: 70px;
  height: 70px;
  border-radius: 6px;
  border: 1px solid #e6e6e6;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
}

.course-bx.selected .course-bx-img {
  background-color: #023850;
}

.course-bx .course-bx-img img {
  max-width: 60%;
  max-height: 60%;
  filter: brightness(0) saturate(100%) invert(0%) sepia(90%) saturate(7500%) hue-rotate(60deg) brightness(88%) contrast(112%);
}

.course-bx.selected .course-bx-img img {
  filter: brightness(0) saturate(100%) invert(80%) sepia(38%) saturate(1078%) hue-rotate(336deg) brightness(96%) contrast(108%);
}

.course-bx h6 {
  font-size: 16px;
  line-height: 22px;
  color: #131313;
  text-align: center;
}

.connect-me-area {
  padding: 60px 0 100px;
}

.phn-area input::-webkit-outer-spin-button,
.phn-area input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.phn-area input[type="number"] {
  -moz-appearance: textfield;
}

.phn-area {
  display: flex;
  justify-content: space-between;
}

.phn-area .form-select {
  width: 110px !important;
  background: url(../images/select-down-arrow.svg) !important;
  background-repeat: no-repeat !important;
  cursor: pointer;
  background-position: right 8px center !important;
  padding-right: 25px !important;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.phn-area input {
  width: calc(100% - 130px) !important;
}

.connect-me-area .btn-group .btn-1 span:hover {
  color: #000;
}

.connect-me-area .btn-group {
  margin-top: 50px;
}

/* ============================================================
                         about page 
=============================================================*/

.inner-banner .home-banner-review {
  margin-top: 0;
}

#reviewPricing::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(106.8deg, #023850 2.2%, #1a5a76 80.79%);
  position: absolute;
  transform: translateY(-50%);
  top: 100%;
}

.inner-banner.about-inner-banner {
  padding: 150px 0 80px;
}

.pricing-calculator-area-aboutusPg.pricing-calculator-area {
  margin-bottom: 0;
  margin-top: 50px;
}

.pricing-calculator-area-aboutusPg.pricing-calculator-area::before {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fdb31f;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

.pricing-calculator-area-aboutusPg .pricing-calculator-bx {
  background: #fdb31f;
  border-bottom: 5px solid #fdb31f;
}

.pricing-calculator-area-aboutusPg.pricing-calculator-area form input,
.pricing-calculator-area-aboutusPg.pricing-calculator-area form select {
  border: 1px solid #023850;
}

.pricing-calculator-area-aboutusPg .calculate-bx {
  border: 1px dashed #023850;
}

.pricing-calculator-area-aboutusPg.pricing-calculator-area form .form-text,
.pricing-calculator-area-aboutusPg.pricing-calculator-area .calculate-bx-value h3,
.pricing-calculator-area-aboutusPg.pricing-calculator-area .calculate-bx-value h6,
.pricing-calculator-area-aboutusPg.pricing-calculator-area form label,
.pricing-calculator-area-aboutusPg .main-hdng h2 {
  color: #023850;
}

/* .pricing-calculator-area form input::-webkit-outer-spin-button,
.pricing-calculator-area form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
} */
/* .pricing-calculator-area form input[type=number] {
  -moz-appearance: textfield;
} */
/* .pricing-calculator-area input[type=number]::-webkit-inner-spin-button, 
.pricing-calculator-area input[type=number]::-webkit-outer-spin-button {  
   opacity: 1;
   height: auto;
} */
.blog-area {
  margin-bottom: -400px;
  position: relative;
  z-index: 9;
}

.blog-bx {
  padding: 40px;
  background-color: #eef2f6;
  border-radius: 35px;
  display: flex;
}

.blog-bx-left {
  aspect-ratio: 1 / 0.65;
  width: 55%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  /* aspect-ratio: 4.7 / 3.8; */
}

.blog-bx-left img {
  width: 100%;
  /* height: 100%; */
  aspect-ratio: 1 / 0.65;
  border-radius: 34px;
  object-fit: cover;
}

.blog-bx-left::before {
  display: block;
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  /* height: 100%; */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 34px;
  aspect-ratio: 1 / 0.65;
}

.blog-bx-left-txt {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  border-radius: 0 0 34px 34px;
  padding: 25px 35px;
  background: rgba(0, 0, 0, 0.5);
}

.blog-bx-left-txt a {
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-bx-left-txt a:hover {
  color: #fdb31f;
}

.blog-bx-left-txt .blog-bx-calender img {
  aspect-ratio: unset;
  border-radius: 0;
  width: 15px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(228deg) brightness(102%) contrast(101%);
}

.blog-bx-left-txt .blog-bx-calender span {
  color: #fff;
}

.ripple-block {
  position: absolute;
  width: 6em;
  height: 6em;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: 3;
}

.fa-play-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3em;
  color: #fff;
  transition: color 1500ms ease;
}

.ripple-block.extra-small-ripple-block {
  width: 4em;
  height: 4em;
}

.ripple-block.extra-small-ripple-block .fa-play-circle {
  font-size: 2em;
}

.ripple-block.extra-small-ripple-block .ripple {
  width: 4em;
  height: 4em;
}

.ripple-block.small-ripple-block {
  width: 5em;
  height: 5em;
}

.ripple-block.small-ripple-block .fa-play-circle {
  font-size: 2.5em;
}

.ripple-block.small-ripple-block .ripple {
  width: 5em;
  height: 5em;
}

.ripple-block.big-ripple-block {
  width: 7em;
  height: 7em;
}

.ripple-block.big-ripple-block .fa-play-circle {
  font-size: 3.5em;
}

.ripple-block.big-ripple-block .ripple {
  width: 7em;
  height: 7em;
}

.ripple-block:hover .fa-play-circle,
.ripple-block:active .fa-play-circle,
.ripple-block:focus .fa-play-circle {
  color: #fdb31f;
}

.ripple {
  position: absolute;
  width: 6em;
  height: 6em;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: ripple 5s ease-in-out infinite;
  transition: background 1500ms ease;
}

.ripple-block:hover .ripple,
.ripple-block:active .ripple,
.ripple-block:focus .ripple {
  background: rgba(68, 119, 119, 0.1);
}

@media (prefers-reduced-motion) {
  .fa-play-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1em;
    color: white;
  }

  .ripple-block .ripple {
    animation: none;
    display: none;
  }
}

.ripple-block .ripple-1 {
  animation-delay: 0s;
}

.ripple-block .ripple-2 {
  animation-delay: 1.6666666667s;
}

.ripple-block .ripple-3 {
  animation-delay: 3.3333333333s;
}

@keyframes ripple {
  0% {
    transform: scale(0.2);
    opacity: 0;
  }

  50% {
    opacity: 0.9;
  }

  100% {
    transform: scale(24em);
    opacity: 0;
  }
}

.blog-bx-right {
  width: 45%;
  padding-left: 40px;
}

.blog-bx-right-single {
  display: flex;
  border-bottom: 1px solid #d0d0d0;
  margin-bottom: 25px;
  padding-bottom: 25px;
  align-items: center;
}

.blog-bx-right .blog-bx-right-single:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}

.blog-bx-right-img {
  width: 40%;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 2/1.1;
  position: relative;
  z-index: 1;
}

.blog-bx-right-img img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.blog-bx-right-img::before {
  aspect-ratio: 2/1.1;
  display: block;
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 12px;
  z-index: 2;
}

.blog-bx-right-cnt {
  width: 60%;
  padding-left: 15px;
}

.blog-bx-right-cnt a {
  font-size: 19px;
  line-height: 26px;
  font-weight: 600;
  color: #023850;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-bx-right-cnt a:hover {
  color: #fdb31e;
}

.review-area.review-area-aboutusPg {
  padding-top: 400px;
  overflow: visible;
}

.leading-advantages-area {
  padding-bottom: 0;
}

.leading-advantages-bx-img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background-color: #eef2f6;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 25px;
}

.leading-advantages-bx-img img {
  max-width: 50%;
  max-height: 50%;
  position: relative;
}

.leading-advantages-bx-img::before {
  display: block;
  content: "";
  width: 39px;
  height: 39px;
  border-radius: 100%;
  background-color: #fff;
  position: absolute;
  right: 15px;
  bottom: 20px;
}

.leading-advantages-bx-area {
  display: flex;
  flex-wrap: wrap;
}

.leading-advantages-bx {
  width: 33.33%;
  padding: 0 30px;
  border-right: 1px solid #c3c3c3;
}

.leading-advantages-bx-area .leading-advantages-bx:nth-child(1),
.leading-advantages-bx-area .leading-advantages-bx:nth-child(4),
.leading-advantages-bx-area .leading-advantages-bx:nth-child(7),
.leading-advantages-bx-area .leading-advantages-bx:nth-child(10) {
  width: 32%;
  padding: 0 30px 0 0;
  border-right: 1px solid #c3c3c3;
}

.leading-advantages-bx-area .leading-advantages-bx:nth-child(2),
.leading-advantages-bx-area .leading-advantages-bx:nth-child(5),
.leading-advantages-bx-area .leading-advantages-bx:nth-child(8),
.leading-advantages-bx-area .leading-advantages-bx:nth-child(11) {
  width: 34%;
  padding: 0 30px;
  border-right: 1px solid #c3c3c3;
}

.leading-advantages-bx-area .leading-advantages-bx:nth-child(3),
.leading-advantages-bx-area .leading-advantages-bx:nth-child(6),
.leading-advantages-bx-area .leading-advantages-bx:nth-child(9),
.leading-advantages-bx-area .leading-advantages-bx:nth-child(12) {
  width: 32%;
  padding: 0 0 0 30px;
  border-right: 0;
}

.leading-advantages-bx-cnt h5 {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 10px;
  color: #023850;
  font-weight: 700;
}

.leading-advantages-bx-cnt p {
  font-size: 16px;
  line-height: 22px;
  padding-bottom: 80px;
  color: #131313;
}

.help-service-area {
  background-color: #eef2f6;
}

.help-service-img-area {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}

.help-service-img {
  width: 300px;
  height: 300px;
  border-radius: 100%;
  border: 1px dashed #02385080;
  display: flex;
  justify-content: center;
  align-items: center;
}

.help-service-img img {
  max-width: 75%;
  max-height: 75%;
}

.help-service-cnt {
  padding-right: 50px;
}

.help-service-cnt h4 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 30px;
  font-weight: 700;
  color: #023850;
}

.help-service-cnt p {
  font-size: 16px;
  line-height: 26px;
  padding-bottom: 20px;
  color: #131313;
}

.help-service-cnt .btn-group {
  margin-top: 20px;
}

.help-service-cnt .btn-group .btn-1 span {
  min-width: 180px;
}

.help-service-txt ul {
  list-style: none;
  padding-left: 70px !important;
}

.help-service-txt ul li {
  display: block;
  padding-bottom: 50px;
  position: relative;
  z-index: 3;
}

.help-service-txt ul li:last-child {
  padding-bottom: 0;
}

.help-service-txt ul li::before {
  display: block;
  content: "";
  width: 30px;
  height: 30px;
  background: #fdb31f;
  border: 5px solid #023850;
  border-radius: 100%;
  position: absolute;
  left: -55px;
  top: 0;
  z-index: 2;
}

.help-service-txt ul li::after {
  display: block;
  content: "";
  border-left: 1px dashed #b1b1b1;
  position: absolute;
  left: -40px;
  top: 0;
  bottom: 0;
  height: 100%;
  z-index: 1;
}

.help-service-txt ul li:last-child::after {
  display: none;
}

.help-service-txt ul li h5 {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #023850;
}

.help-service-txt ul li p {
  font-size: 16px;
  line-height: 24px;
  color: #131313;
}

.help-service-cnt .btn-group .btn-1 span:hover {
  color: #000;
}

.trust-service-bx-area {
  display: flex;
  flex-wrap: wrap;
}

.trust-service-bx {
  width: 25%;
  padding: 30px 10px 110px;
  position: relative;
}

.trust-service-bx-single {
  border: 1px solid #023850;
  border-radius: 12px;
  padding: 30px 30px 50px;
  height: 100%;
}

.trust-service-bx-area .trust-service-bx:nth-child(1) .trust-service-bx-single {
  background-color: #023850;
}

.trust-service-bx-area .trust-service-bx:nth-child(2) .trust-service-bx-single {
  background-color: #174360;
}

.trust-service-bx-area .trust-service-bx:nth-child(3) .trust-service-bx-single {
  background-color: #163341;
}

.trust-service-bx-area .trust-service-bx:nth-child(4) .trust-service-bx-single {
  background-color: #163341;
}

.trust-service-bx-single-img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background-color: #eef2f6;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.trust-service-bx-single-img img {
  max-width: 50%;
  max-height: 50%;
  position: relative;
  filter: brightness(0) saturate(100%) invert(16%) sepia(13%) saturate(5414%) hue-rotate(164deg) brightness(99%) contrast(99%);
}

.trust-service-bx-single-img::before {
  display: block;
  content: "";
  width: 39px;
  height: 39px;
  border-radius: 100%;
  background-color: #fdb31f;
  position: absolute;
  right: 15px;
  bottom: 20px;
}

.trust-service-bx-single-cnt h5 {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.trust-service-bx-single-cnt p {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  text-align: center;
}

.trust-service-bx-after {
  text-align: center;
  position: relative;
  z-index: 2;
}

.trust-service-bx-after::after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #c8c8c8;
  position: absolute;
  right: -10px;
  transform: translateY(-50%);
  top: 50%;
  z-index: 1;
}

.trust-service-bx-after::before {
  display: block;
  content: "";
  width: 1px;
  height: 14px;
  background-color: #c8c8c8;
  position: absolute;
  z-index: 1;
}

.trust-service-bx-area .trust-service-bx:nth-child(1) .trust-service-bx-after::before {
  left: calc(50% - 55px);
  top: 26px;
}

.trust-service-bx-area .trust-service-bx:nth-child(2) .trust-service-bx-after::before,
.trust-service-bx-area .trust-service-bx:nth-child(3) .trust-service-bx-after::before {
  display: none;
}

.trust-service-bx-area .trust-service-bx:nth-child(4) .trust-service-bx-after::before {
  left: unset;
  top: 26px;
  right: calc(50% - 55px);
}

.trust-service-img {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 40%;
  left: 50%;
  z-index: 2;
}

.trust-service-bx-after-img-bg {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.trust-service-bx-area .trust-service-bx:nth-child(1) .trust-service-bx-after::after {
  width: 70%;
}

.trust-service-bx-area .trust-service-bx:nth-child(4) .trust-service-bx-after::after {
  width: 70%;
  left: -10px;
}

.trust-service-bx-after-area {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}

/* ============================================================
                         Blog page 
=============================================================*/

.blog-articles-bx {
  display: flex;
  flex-wrap: wrap;
}

.blog-articles-left-bx {
  width: 25%;
}

.blog-articles-right-bx {
  width: 75%;
  padding-left: 20px;
}

.blog-articles-left-bx-hdng {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 40px;
  padding: 15px 20px;
  border-radius: 12px;
  font-weight: 700;
  color: #fff;
  background-color: #023850;
  text-transform: capitalize;
}

.related-categories-area ul {
  margin-bottom: 30px !important;
  list-style: none;
}

.related-categories-area ul li {
  display: block;
  position: relative;
  padding-bottom: 20px;
  padding-left: 45px;
  line-height: 1;
}

.related-categories-area ul li:last-child {
  padding-bottom: 0;
}

.related-categories-area ul li::after {
  display: block;
  content: "";
  border-left: 1px dashed #e6e6e6;
  position: absolute;
  left: 15px;
  top: 4px;
  bottom: 0;
  height: 100%;
  z-index: 1;
}

.related-categories-area ul li:last-child::after {
  display: none;
}

.related-categories-area ul li::before {
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  background: #fdb31f;
  border: 2px solid #023850;
  border-radius: 100%;
  position: absolute;
  left: 10px;
  top: 3px;
  z-index: 2;
}

.related-categories-area ul li a {
  font-size: 16px;
  line-height: 20px;
  color: #023850;
}

.related-categories-area ul li a:hover {
  color: #fdb31f;
}

/* ============================================================
                Service - Write My paper page 
=============================================================*/

.faqarea-2 .accordion-item {
  background-color: transparent;
  border: 0;
  margin-bottom: 2px;
}

.faqarea-2 .accordion-item:first-of-type {
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
}

.faqarea-2 .accordion-button {
  padding: 25px 90px 25px 50px;
  font-size: 22px;
  line-height: 30px;
  color: #000;
  font-weight: 600;
  background-color: #eef2f6;
}

.faqarea-2 .accordion-button:focus {
  border-color: #eef2f6;
  box-shadow: unset;
}

.faqarea-2 .accordion-button::after {
  display: none;
}

.faqarea-2 .accordion .accordion-button.collapsed:before {
  content: "\f067";
}

.faqarea-2 .accordion .accordion-button:before {
  font-family: FontAwesome;
  content: "\f068";
  width: 50px;
  height: 50px;
  line-height: 50px;
  box-shadow: 0px 10px 40px 0px #0a2f341a;
  background: #023850;
  color: #fdb31f;
  border-radius: 50%;
  text-align: center;
  font-size: 22px;
  position: absolute;
  transform: translateY(-50%);
  right: 25px;
  top: 50%;
}

.faqarea-2 .accordion .accordion-button:not(.collapsed):before {
  background: #fdb31f;
  color: #023850;
}

.faqarea-2 .accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: #023850;
  color: #fdb31f;
  border-radius: 12px 12px 0 0;
}

.faqarea-2 .accordion-button:not(.collapsed) {
  color: #fdb31f;
  background-color: #023850;
  box-shadow: unset;
}

.faqarea-2 .accordion-item:first-of-type .accordion-button,
.faqarea-2 .accordion-item:first-of-type>.accordion-header .accordion-button {
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
}

.faqarea-2 .accordion-item:last-of-type .accordion-button.collapsed,
.faqarea-2 .accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
  border-bottom-right-radius: 36px;
  border-bottom-left-radius: 36px;
}

.faqarea-2 .accordion-body {
  padding: 30px 50px 0;
}

.faqarea-2 .accordion-body p {
  font-size: 16px;
  line-height: 24px;
  color: #131313;
  padding-bottom: 15px;
}

.faqarea-2 .accordion-body ul li {
  font-size: 16px;
  line-height: 24px;
  color: #131313;
  margin-bottom: 10px;
}

.faqarea-2-cnt-top {
  margin-bottom: 20px;
}

.faqarea-2-cnt-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.faqarea-2-cnt-bottom-left {
  width: 55%;
  padding-bottom: 40px;
}

.faqarea-2-cnt-bottom-right {
  width: 45%;
  padding-left: 50px;
}

.faqarea-2-cnt-bottom-left .btn-group {
  margin-top: 20px;
}

.faqarea-2-cnt-bottom-left .btn-group .custombtn {
  min-width: 180px;
}

.faqarea-2-cnt-bottom-left .btn-group .custombtn span:hover {
  color: #000;
}

.faqarea-2-cnt-bottom-left table {
  margin-bottom: 30px;
}

.faqarea-2-cnt-bottom-left table td {
  font-size: 16px;
  line-height: 22px;
  color: #131313;
  padding: 12px 25px;
}

/* ============================================================
                Experts page 
=============================================================*/

.white-bg {
  background-color: #fff !important;
}

.gray-bg {
  background-color: #eef2f6 !important;
}

.trust-service-area-expertsPg .trust-service-bx {
  padding-bottom: 0;
}

.best-assignments-expert-area {
  background-color: #eef2f6;
  padding-bottom: 400px;
  margin-bottom: -400px;
}

.best-assignments-expert-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 10px;
}

.best-assignments-expert-filter-bx {
  width: 30%;
  padding: 0 20px;
}

.best-assignments-expert-filter-bx .form-select {
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  font-size: 16px;
  line-height: 22px;
  padding: 15px;
  cursor: pointer;
  color: #131313;
}

.best-assignments-expert-filter-bx .form-select:focus {
  border: 1px solid #e6e6e6;
  box-shadow: unset;
}

.best-assignments-expert-details {
  background-color: #fff;
  border-radius: 12px;
}

.best-assignments-expert-details-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0px 4px 30px 0px #001a251a;
  padding: 10px 30px;
  border-radius: 0 0 12px 12px;
}

.best-assignments-expert-details-bottom .rv-cp {
  margin: 0;
}

.best-assignments-expert-details-bottom .btn-1 {
  min-width: 140px;
}

.best-assignments-expert-details-bottom .btn-1 span:hover {
  color: #000;
}

.best-assignments-expert-details-top {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  border-radius: 12px 12px 0 0;
  background-color: #fff;
}

.baedt-left {
  width: 25%;
  display: flex;
  padding: 30px 0 30px 30px;
}

.baedt-left-img {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  overflow: hidden;
}

.baedt-left-img img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: cover;
}

.baedt-left-cnt {
  width: calc(100% - 120px);
  padding-left: 30px;
  padding-top: 10px;
}

.baedt-left-cnt h6 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #131313;
}

.baedt-left-cnt p {
  font-size: 14px;
  line-height: 20px;
  color: #023850;
}

.baedt-left-cnt .assignment-writers-bx-top {
  padding: 0;
}

.baedt-left-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 5px 0 10px;
}

.baedt-left-rating span {
  font-size: 14px;
  line-height: 19px;
  font-weight: 700;
  color: #fdb31f;
}

.baedt-middle {
  width: 40%;
  padding: 40px 30px 30px;
}

.baedt-middle p {
  font-size: 16px;
  line-height: 22px;
  color: #131313;
}

.baedt-right {
  width: 35%;
  padding: 10px;
}

.baedt-right-bx {
  background-color: #eef2f6;
  border-radius: 12px;
  padding: 20px 20px 25px;
}

.baedt-right-bx h5 {
  font-size: 22px;
  line-height: 30px;
  color: #023850;
  font-weight: 600;
}

.baedt-right-bx p {
  font-size: 16px;
  line-height: 22px;
  color: #131313;
}

.baedt-right-bx .baedt-left-rating {
  margin: 10px 0;
}

.baedt-right-bx .baedt-left-rating img {
  width: auto;
}

.baedt-right .owl-carousel .owl-item {
  padding-top: 36px;
}

.baedt-right .owl-theme .owl-nav {
  margin: 0;
}

.baedt-right .owl-theme .owl-nav [class*="owl-"] {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  background: #eef2f6;
  font-size: 14px;
  color: #000000;
}

.baedt-right .owl-theme .owl-nav [class*="owl-"]:hover {
  background: #fdb31f;
  color: #000000;
}

.baedt-right .owl-theme .owl-nav .owl-next {
  right: 0;
}

.baedt-right .owl-theme .owl-nav .owl-prev {
  right: 32px;
}

.assignment-writers-bx-area {
  position: relative;
  padding-top: 100px;
}

.assignment-writers-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 0;
  top: -30px;
  right: 0;
}

.assignment-writers-filters .assignment-writers-filters-left {
  width: calc(100% - 230px);
}

.assignment-writers-filters .assignment-writers-filters-left .form-select {
  font-size: 16px;
  line-height: 22px;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  padding: 20px;
}

.assignment-writers-filters .assignment-writers-filters-left .form-select:focus {
  border: 1px solid #e6e6e6;
  box-shadow: unset;
}

.assignment-writers-filters .btn-group {
  width: 200px;
}

.assignment-writers-filters .btn-group .btn-1 {
  width: 100%;
}

.assignment-writers-filters .btn-group .btn-1 {
  background-color: #fff;
}

.assignment-writers-filters .btn-group .btn-1 span {
  padding: 20px;
}

.assignment-writers-filters .btn-group .btn-1 span:hover {
  color: #000;
}

.assignment-writers-area-expertsPg {
  padding-top: 0;
  overflow: visible;
}

.inner-banner.experts-inner-banner {
  padding: 150px 0 110px;
}

/* ============================================================
                      Reviews page 
=============================================================*/
.reviews-bx-area {
  position: relative;
  padding-top: 80px;
}

.reviews-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 0;
  top: -30px;
  right: 0;
}

.reviews-filters .reviews-filters-left,
.reviews-filters .reviews-filters-right {
  width: 49%;
}

.reviews-filters .reviews-filters-left .form-select,
.reviews-filters .reviews-filters-right .form-select {
  font-size: 16px;
  line-height: 22px;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  padding: 20px;
  color: #21566d;
}

.reviews-filters .reviews-filters-left .form-select:focus,
.reviews-filters .reviews-filters-right .form-select:focus {
  border: 1px solid #e6e6e6;
  box-shadow: unset;
}

.review-area-reviewsPg {
  padding: 0 0 65px;
  overflow: visible;
}

.review-single-bx {
  padding: 20px;
  background-color: #fff;
  border: 1px solid #c8c8c8;
  border-radius: 12px;
  display: inline-block;
  width: 100%;
  margin-bottom: 25px;
}

.review-single-bx-area ul {
  column-count: 3;
  -moz-column-gap: 40px;
  -webkit-column-gap: 40px;
  column-gap: 40px;
}

.accordion-body .faqarea-2-cnt p {
  font-size: 16px;
  line-height: 22px;
  color: #131313;
  padding-bottom: 25px;
}

.accordion-body .faqarea-2-cnt p:last-child {
  padding-bottom: 40px;
}

.ico-txt {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.ico-txt span {
  font-size: 14px;
  line-height: 19px;
  color: #023850;
  width: calc(100% - 22px);
}

.ico-txt span strong {
  font-weight: 700;
}

.ico-txt-img {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
}

.ico-txt-img img {
  max-width: 70%;
}

.review-single-bx h5 {
  font-size: 22px;
  line-height: 30px;
  color: #023850;
  font-weight: 600;
}

.review-single-bx p {
  font-size: 16px;
  line-height: 22px;
  padding: 25px 0;
  color: #131313;
}

/* ============================================================
                    Submit New Assignment
=============================================================*/
.real-experts-bx {
  padding: 50px;
  box-shadow: 0px 4px 30px 0px #001a251a;
  background-color: #fff;
  border-radius: 10px;
}

.real-experts-bx .btn-1 span:hover {
  color: #000;
}

.real-experts-bx .home-banner-form {
  padding-left: 0;
}

.real-experts-bx .home-banner-form .form-group {
  border: 1px solid #c8c8c8;
}

.real-experts-bx .form-group-radio .checkbox-tools:checked+label,
.real-experts-bx .form-group-radio .checkbox-tools:not(:checked)+label {
  color: #023850;
  margin: 0;
}

.real-experts-bx .form-group-radio {
  width: 100%;
  justify-content: center;
}

.real-experts-bx .form-group-radio .checkbox-tools:checked+label,
.real-experts-bx .form-group-radio .checkbox-tools:not(:checked)+label {
  margin: 0;
}

.real-experts-bx .file-input__label {
  color: #023850;
}

.real-experts-bx .form-group-last .form-check-label {
  color: #023850;
}

.real-experts-area {
  overflow: visible;
  position: relative;
  padding: 0;
}

.real-experts-bx {
  margin-bottom: -100px;
}

.sna-inner-banner {
  margin-bottom: -60px;
}

.why-prefer-bx-img {
  width: 160px;
  height: 160px;
  border-radius: 100%;
  background-color: #fff;
  box-shadow: 0px 4px 30px 0px #001a251a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.why-prefer-bx-img img {
  max-width: 50%;
  max-height: 50%;
}

.why-prefer-bx h5 {
  font-size: 22px;
  line-height: 30px;
  color: #023850;
  font-weight: 600;
  text-align: center;
}

.why-prefer-bx-area {
  display: flex;
}

.why-prefer-bx {
  width: 20%;
  padding: 0 15px;
}

.why-prefer-area {
  background-color: #eef2f6;
  padding: 170px 0 400px;
  margin-bottom: -400px;
}

.trust-service-area-referencingPg {
  padding-bottom: 400px;
  margin-bottom: -400px;
}

/* ============================================================
                    Referencing
=============================================================*/

.referencing-top-bx-img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background-color: #fdb31f;
  margin: 0 auto 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.referencing-top-bx-img img {
  max-width: 50%;
  max-height: 50%;
  position: relative;
}

.referencing-top-bx-img::before {
  display: block;
  content: "";
  width: 39px;
  height: 39px;
  border-radius: 100%;
  background-color: #fff;
  position: absolute;
  right: 15px;
  bottom: 20px;
}

.referencing-top-bx h5 {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 40px;
  font-weight: 700;
  color: #023850;
  text-align: center;
}

.referencing-top-bx {
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #c8c8c8;
  background-color: #fff;
  height: 100%;
}

.referencing-top-bx .btn-group {
  width: 100%;
  justify-content: center;
}

/* ============================================================
                            Dashboard
=============================================================*/

.inner-banner.dashboard-inner-banner {
  padding: 150px 0 60px;
}

.dashboard-header-area {
  background-color: #fdb31f;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-header-left-area {
  width: 60%;
}

.dashboard-header-right-area {
  width: 40%;
  display: flex;
  justify-content: end;
}

.dashboard-header-left-area ul {
  list-style: none;
}

.dashboard-header-left-area ul li {
  display: inline-block;
  margin-right: 40px;
  padding: 30px 0;
  position: relative;
  transition: all 0.5s ease-in-out;
}

.dashboard-header-left-area ul li::after {
  display: none;
  content: "";
  width: 100%;
  height: 4px;
  background-color: #023850;
  border-radius: 20px 20px 0 0;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.5s ease-in-out;
}

.dashboard-header-left-area ul li::before {
  display: none;
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: #023850;
  height: 6px;
  width: 6px;
  border-radius: 1px;
  transition: all 0.5s ease-in-out;
}

.dashboard-header-left-area ul li.active::after,
.dashboard-header-left-area ul li.active::before {
  display: block;
}

.dashboard-header-left-area ul li:hover::after,
.dashboard-header-left-area ul li:hover::before {
  display: block;
  transition: all 0.5s ease-in-out;
}

.dashboard-header-left-area ul li:last-child {
  margin-right: 0;
}

.dashboard-header-left-area ul li a {
  display: flex;
  align-items: center;
}

.dashboard-header-left-area ul li a span {
  font-size: 14px;
  line-height: 19px;
  padding-left: 10px;
  font-weight: 600;
  color: #023850;
  text-transform: capitalize;
}

.dashboard-header-left-area ul li ul {
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  width: 170px;
}

.dashboard-header-left-area ul li ul li {
  margin: 0;
  padding: 0;
  width: 100%;
}

.dashboard-header-left-area ul li ul li a {
  font-size: 14px;
  line-height: 19px;
  color: #023850;
  display: block;
  padding: 15px;
  background-color: #fff;
}

.dashboard-header-left-area ul li ul li:hover a,
.dashboard-header-left-area ul li ul li.activepage a {
  background-color: #eef2f6;
}

.dashboard-header-left-area ul li ul li:hover::after,
.dashboard-header-left-area ul li ul li:hover::before {
  display: none;
}

.dashboard-header-left-area ul li.hasChild ul {
  position: absolute;
  top: 120%;
  left: 0;
  z-index: 99;
  display: block;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 30px 0px #001a251a;
}

.dashboard-header-left-area ul li.hasChild:hover ul {
  top: 105%;
  left: 0;
  z-index: 99;
  display: block;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.all-orders-area table {
  border-radius: 12px;
  overflow: hidden;
  border-collapse: collapse;
  width: 100%;
  margin: 0;
}

.all-orders-area table th {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  background-color: #023850;
  color: #fff;
  text-transform: uppercase;
  padding: 15px;
  white-space: nowrap;
}

.all-orders-area table td {
  font-size: 15px;
  line-height: 21px;
  color: #023850;
  border: 0;
  padding: 15px;
  white-space: nowrap;
  vertical-align: middle;
}

.btn.btn-warning {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  line-height: 1;
  border-radius: 4px;
  padding: 10px 15px;
  color: #023850;
  background-color: #fdb31f;
  border: 1px solid #fdb31f;
}

.btn.btn-warning:hover {
  background-color: transparent;
  border: 1px solid #fdb31f;
}

.btn.btn-warning img {
  height: 14px;
}

.all-orders-area .table-striped>tbody>tr:nth-of-type(odd)>* {
  --bs-table-accent-bg: #eef2f6;
  color: #023850;
}

.tablerounededCorner {
  border: 1px solid #c8c8c8;
  background-color: #fff;
  border-radius: 12px;
}

.all-orders-right-area .custombtn {
  margin-bottom: 20px;
  width: 100%;
}

.all-orders-right-area .custombtn:last-child {
  margin-bottom: 0;
}

.all-orders-right-area .btn-1 span:hover {
  color: #000;
}

.all-orders-right-area .btn-1 span,
.all-orders-right-area .btn-4 span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
}

.all-orders-right-area .btn-1 span i {
  font-size: 20px;
}

.all-orders-right-area .btn-4 span i {
  color: #fdb31f;
  font-size: 20px;
}

.all-orders-right-area .btn-4 span:hover i {
  color: #023850;
}

.all-orders-area {
  padding-top: 50px;
}

.notification-ico {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 2px solid #023850;
  margin-right: 20px;
  transition: all 0.3s ease-in-out;
}

.notification-ico:hover {
  background-color: #023850;
  border: 1px solid #023850;
  transition: all 0.3s ease-in-out;
}

.notification-ico img {
  max-width: 60%;
  max-height: 70%;
  transition: all 0.3s ease-in-out;
}

.notification-ico:hover img {
  filter: brightness(0) saturate(100%) invert(67%) sepia(97%) saturate(561%) hue-rotate(341deg) brightness(103%) contrast(102%);
  transition: all 0.3s ease-in-out;
}

.dashboard-header-right {
  display: flex;
  align-items: center;
}

.dashboard-header-right-right {
  width: calc(100% - 40px);
  padding-left: 20px;
  border-left: 1px solid #fff;
  display: flex;
  align-items: center;
  gap: 15px;
}

.dp-dashboard-txt h6 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #131313;
  text-align: right;
  margin-bottom: 0;
}

.dp-dashboard-txt p {
  font-size: 14px;
  line-height: 19px;
  color: #023850;
  text-align: right;
}

.dp-dashboard-img {
  width: 43px;
  height: 43px;
  border-radius: 100%;
  overflow: hidden;
  display: block;
}

.dp-dashboard-img img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: cover;
}

.main-hdng h2 span img {
  width: 50px;
}

.dashboard-middle-area {
  overflow: visible;
}

.ai-img {
  position: absolute;
  right: 50px;
  bottom: 20px;
}

.what-ai-bx {
  background-color: #eef2f6;
  border-radius: 35px;
  padding: 30px 50px 80px;
  position: relative;
  margin-bottom: 30px;
}

.what-ai-bx h3 {
  font-size: 39px;
  line-height: 50px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #023850;
}

.what-ai-bx p {
  font-size: 22px;
  line-height: 30px;
  color: #131313;
}

.what-ai-bx-bottom h5 {
  font-size: 22px;
  line-height: 30px;
  color: #023850;
  font-weight: 600;
}

.what-ai-bx-bottom p {
  font-size: 16px;
  line-height: 22px;
  padding-top: 10px;
  color: #131313;
}

.what-ai-bx-ul h6 {
  font-size: 16px;
  line-height: 22px;
  margin-top: 30px;
  font-weight: 700;
  color: #131313;
}

.what-ai-bx-ul {
  margin-bottom: 20px;
}

.what-ai-bx-ul p {
  font-size: 16px;
  line-height: 22px;
  color: #131313;
}

.what-ai-bx-ul ul {
  list-style: none;
  margin-top: 20px;
  margin-bottom: 10px !important;
}

.what-ai-bx-ul ul li {
  font-size: 16px;
  line-height: 22px;
  color: #131313;
  padding-left: 20px;
  position: relative;
  padding-bottom: 10px;
}

.what-ai-bx-ul ul li::before {
  display: inline-block;
  content: "";
  width: 13px;
  height: 13px;
  background-color: #fdb31f;
  border: 2px solid #023850;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 4px;
}

.amazing-features-bx {
  padding: 25px 30px;
  width: 100%;
  border-radius: 12px;
  background-color: #eef2f6;
  display: flex;
  align-items: center;
}

.amazing-features-bx-img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background-color: #ffffff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amazing-features-bx-img img {
  max-width: 60%;
  max-height: 60%;
  position: relative;
}

.amazing-features-bx-img::before {
  display: block;
  content: "";
  width: 39px;
  height: 39px;
  border-radius: 100%;
  background-color: #fdb31f;
  position: absolute;
}

.amazing-features-bx-img::before {
  right: 20px;
  bottom: 20px;
}

.amazing-features-bx-txt {
  width: calc(100% - 100px);
  padding-left: 20px;
}

.amazing-features-bx-txt h5 {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #023850;
}

.amazing-features-bx-txt p {
  font-size: 16px;
  line-height: 22px;
  color: #131313;
}

.dashboard-top-area .main-hdng p {
  color: #023850;
  padding-top: 30px;
}

.react-multi-carousel-item {
  padding: 0 10px 130px;
}

.assignment-writers-area .react-multiple-carousel__arrow.react-multiple-carousel__arrow--left::before {
  background: url(../images/left-arrow.svg) no-repeat center;
  content: "" !important;
  width: 30px;
  height: 18px;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.assignment-writers-area .react-multiple-carousel__arrow.react-multiple-carousel__arrow--right::before {
  background: url(../images/right-arrow.svg) no-repeat center;
  content: "" !important;
  width: 30px;
  height: 18px;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.assignment-writers-area .react-multiple-carousel__arrow {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background: transparent;
  border: 1px solid #023850;
  bottom: 0;
  z-index: 99;
}

.assignment-writers-area .react-multiple-carousel__arrow.react-multiple-carousel__arrow--right {
  right: 0;
}

.assignment-writers-area .react-multiple-carousel__arrow.react-multiple-carousel__arrow--left {
  right: 95px;
  left: auto;
}

.assignment-writers-area .react-multiple-carousel__arrow:hover {
  background: #023850;
  border: 1px solid #023850;
}

.assignment-writers-area .react-multiple-carousel__arrow:hover::before {
  filter: brightness(0) saturate(100%) invert(81%) sepia(61%) saturate(2491%) hue-rotate(342deg) brightness(102%) contrast(98%);
}

.faqarea-2-cnt-bottom.faqarea-2-cnt-bottom-sd {
  align-items: start;
}

.trust-service-area-dashboardPg .trust-service-bx-single-cnt p {
  max-height: 260px;
  overflow-y: auto;
  padding: 0 20px;
}

/* scrollbar css */
.trust-service-area-dashboardPg .trust-service-bx-single-cnt ::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #131313;
}

.trust-service-area-dashboardPg .trust-service-bx-single-cnt ::-webkit-scrollbar {
  width: 2px;
  height: 5px;
}

.trust-service-area-dashboardPg .trust-service-bx-single-cnt ::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #fdb31f;
}

.trust-service-area-dashboardPg .trust-service-bx-single {
  padding: 30px 0 100px;
  position: relative;
}

.trust-service-area-dashboardPg .trust-service-bx-single-cnt {
  padding: 0 10px;
}

.trust-service-area-dashboardPg .trust-service-bx-single-cnt h5 {
  padding: 0 20px;
}

.btn-link {
  font-size: 16px;
  line-height: 22px;
  color: #fdb31f;
  font-weight: 600;
  text-transform: uppercase;
}

.btn-link:hover,
.btn-link:focus {
  color: #fff !important;
}

.trust-service-area-dashboardPg .trust-service-bx-single .btn-link {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.avail-expert-help-area {
  background-color: #eef2f6;
  padding: 300px 0 100px;
}

.gethelp-dashboard-area {
  background-color: #eef2f6;
  padding: 300px 0 100px;
}

.avail-expert-help-cnt-area {
  padding-left: 20px;
}

.avail-expert-help-cnt p {
  font-size: 16px;
  line-height: 22px;
  color: #131313;
  padding-bottom: 20px;
}

.avail-expert-help-area .main-hdng {
  margin-bottom: 30px;
}

.avail-expert-help-cnt .btn-group {
  margin-top: 20px;
}

.avail-expert-help-cnt .btn-group .btn-1 span:hover {
  color: #000;
}

.dashboard-service-top-area {
  padding: 50px 0;
  margin-bottom: -250px;
  position: relative;
}

.dashboard-service-top-bx {
  padding: 50px 40px 40px;
  background-color: #fff;
  box-shadow: 0px 4px 30px 0px #001a251a;
  border-radius: 12px;
}

.dashboard-service-top-bx-right h5 {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 5px;
  font-weight: 600;
  color: #023850;
}

.dashboard-service-top-bx-right p {
  font-size: 16px;
  line-height: 22px;
  color: #131313;
  padding-bottom: 30px;
}

.dashboard-service-top-bx-right-bottom {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  position: relative;
  margin-top: 15px;
}

.dashboard-service-top-bx-right-bottom::before {
  display: block;
  content: "";
  border: 1px dashed #fdb31f;
  height: 1px;
  width: calc(100% - 100px);
  position: absolute;
  left: 50px;
  right: 50px;
  top: 28px;
}

.dstbrb-single {
  position: relative;
}

.dstbrb-single h4 {
  width: 58px;
  height: 58px;
  font-size: 30px;
  line-height: 1;
  background-color: #fff7e8;
  border-radius: 100%;
  color: #023850;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
}

.dstbrb-single span {
  font-size: 16px;
  line-height: 22px;
  color: #131313;
  display: block;
  text-align: center;
}

.dashboard-service-top-bx .home-banner-form .form-group {
  border: 1px solid #c8c8c8;
}

.dashboard-service-top-bx .home-banner-form {
  padding-left: 0;
  padding-right: 30px;
}

.dashboard-form {
  padding-right: 30px;
}

.dashboard-service-top-bx .home-banner-form .file-input__label {
  color: #023850;
}

.dashboard-service-top-bx .home-banner-form .file-input__label img {
  filter: brightness(0) saturate(100%) invert(17%) sepia(94%) saturate(665%) hue-rotate(161deg) brightness(89%) contrast(101%);
}

.dashboard-service-top-bx .home-banner-form .file-input {
  float: left;
  margin-top: 0;
}

.dashboard-service-top-bx .home-banner-form .form-group-last {
  margin-top: 30px;
}

.dashboard-service-top-bx .home-banner-form .btn-1 span:hover {
  color: #000;
}

.dashboard-service-top-bx .home-banner-form .form-group textarea {
  height: 400px;
}

ul.normal-ul {
  list-style: disc;
  padding-left: 30px !important;
  margin-bottom: 30px !important;
}

ul.normal-ul li {
  font-size: 16px;
  line-height: 30px;
}

.load-6 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.letter {
  float: left;
  font-size: 16px;
  line-height: 22px;
  color: #131313;
}

.load-6 .letter {
  animation-name: loadingF;
  animation-duration: 1.6s;
  animation-iteration-count: infinite;
  animation-direction: linear;
}

.l-1 {
  animation-delay: 0.48s;
}

.l-2 {
  animation-delay: 0.6s;
}

.l-3 {
  animation-delay: 0.72s;
}

.l-4 {
  animation-delay: 0.84s;
}

.l-5 {
  animation-delay: 0.96s;
}

.l-6 {
  animation-delay: 1.08s;
}

.l-7 {
  animation-delay: 1.2s;
}

.l-8 {
  animation-delay: 1.32s;
}

.l-9 {
  animation-delay: 1.44s;
}

.l-10 {
  animation-delay: 1.56s;
}

@keyframes loadingF {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.dashboard-form p {
  font-size: 16px;
  line-height: 22px;
  color: #131313;
  padding-bottom: 10px;
}

.dashboard-form .input-with-btn {
  display: flex;
  justify-content: space-between;
}

.dashboard-form .input-with-btn input {
  padding: 10px 15px;
  border-radius: 6px;
  border: 1px solid #c8c8c8;
  width: 100%;
}

.dashboard-form .input-with-btn .btn-group {
  padding-left: 20px;
}

.dashboard-form .input-with-btn .btn-group .btn-1 span {
  white-space: nowrap;
}

.dashboard-form .btn-group .btn-1 span:hover {
  color: #000;
}

.note-txt {
  font-size: 16px;
  line-height: 22px;
  color: #131313;
  padding-top: 10px;
}

.dashboard-form h5 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  color: #023850;
  margin-bottom: 10px;
}

.dashboard-form textarea {
  height: 350px;
  padding: 10px 15px;
  border-radius: 6px;
  border: 1px solid #c8c8c8;
  width: 100%;
  resize: none;
}

.faqarea-3-cnt-bottom-sd h6 {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 5px;
  font-weight: 700;
  color: #131313;
}

.faqarea-3-cnt-bottom-sd p {
  padding-bottom: 25px !important;
}

textarea {
  resize: none !important;
}

.dashboard-textarea {
  position: relative;
}

.dashboard-textarea-top-text {
  font-size: 16px;
  line-height: 22px;
  color: #131313;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 15%;
  text-align: center;
  width: 90%;
}

.dashboard-textarea-bottom-text {
  font-size: 16px;
  line-height: 22px;
  color: #131313;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 15%;
  text-align: center;
  width: 90%;
}

.dashboard-form-2 .btn-group {
  width: 100%;
  justify-content: center;
  margin-top: 50px;
}

.modes-selection-area {
  display: flex;
  align-items: baseline;
  margin-bottom: 30px;
}

.modes-selection-area span {
  width: 100px;
  font-size: 16px;
  line-height: 22px;
  color: #131313;
  font-weight: 700;
}

.modes-selection-area ul {
  width: calc(100% - 100px);
}

.modes-selection-area ul li {
  padding-right: 30px;
  display: inline-block;
}

.modes-selection-area ul li:last-child {
  padding-right: 0;
}

.modes-selection-area ul li a {
  font-size: 16px;
  line-height: 22px;
  color: #929191;
}

.modes-selection-area ul li a:hover,
.modes-selection-area ul li a.selected {
  color: #131313;
}

.gethelp-dashboard-area .gethelp-bx {
  width: 25%;
  padding: 30px 15px 0;
}

.small-text {
  font-size: 15px;
  line-height: 20px;
  margin-top: 10px;
  color: #023850;
}

.dstbr-single-2 {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.dstbr-single-2:last-child {
  margin-bottom: 0;
}

.dstbr-single-2-img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff7e8;
}

.dstbr-single-2-img img {
  max-width: 60%;
  max-height: 60%;
}

.dstbr-single-2-txt {
  font-size: 16px;
  line-height: 24px;
  width: calc(100% - 100px);
  padding-left: 20px;
  color: #131313;
}

.order-inner-banner.inner-banner {
  padding: 150px 0 80px;
}

.order-placed-bx {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0px 4px 30px 0px #001a251a;
}

.order-placed-bx-middle {
  width: 110px;
  height: 110px;
  border-radius: 100%;
  background-color: #eef2f6;
  border: 6px solid #fff;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-placed-bx-middle img {
  max-width: 60%;
  max-height: 60%;
}

.order-placed-bx-left {
  width: 50%;
  background: linear-gradient(106.8deg, #023850 2.2%, #1a5a76 80.79%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.order-placed-bx-left img {
  max-width: 80%;
  max-height: 80%;
}

.order-placed-bx-right {
  width: 50%;
  padding: 50px 50px 50px 80px;
  display: flex;
  align-items: center;
}

.ordr-id {
  font-size: 14px;
  line-height: 18px;
  padding: 10px 20px;
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #023850;
}

.order-placed-bx-right-area h4 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 30px;
  color: #023850;
  font-weight: 700;
}

.order-placed-bx-right-area p {
  font-size: 22px;
  line-height: 30px;
  color: #131313;
}

.order-placed-bx-right-area .btn-group {
  margin-top: 50px;
}

.order-placed-bx-right-area .btn-group .btn-1 {
  min-width: 150px;
}

.order-placed-bx-right-area .btn-group .btn-1 span:hover {
  color: #000;
}

.order-placed-area {
  padding-bottom: 20px;
}

.assignment-writers-filters .assignment-writers-filters-left .srch-frm input[type="search"] {
  font-size: 16px;
  line-height: 22px;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  padding: 20px 20px 20px 40px;
  width: 100%;
  color: #131313;
}

.srch-frm {
  position: relative;
  width: 100%;
}

.assignment-writers-filters .assignment-writers-filters-left .srch-frm::before {
  width: 14px;
  height: 14px;
  display: block;
  content: "";
  background: url(../images/srch-ico.svg) no-repeat;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 15px;
  z-index: 1;
  aspect-ratio: 1/1;
}

.sample-bx-area {
  display: flex;
}

.sample-bx {
  width: 33.33%;
  border-right: 1px solid #c3c3c3;
  padding: 50px 30px;
}

.sample-bx:last-child {
  border-right: 0;
}

.sample-bx-single {
  margin-bottom: 40px;
}

.sample-bx .sample-bx-single:last-child {
  margin-bottom: 0;
}

.sample-bx-single h5 {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #023850;
}

.sample-bx-single ul li {
  display: block;
  padding-bottom: 10px;
}

.sample-bx-single ul li:last-child {
  padding-bottom: 0;
}

.sample-bx-single ul li a {
  font-size: 16px;
  line-height: 26px;
  color: #007ab1;
}

.sample-bx-single ul li a:hover {
  text-decoration: underline !important;
}

.mentor-tab-area {
  padding: 270px 0 370px;
  margin-bottom: -400px;
  background-color: #eef2f6;
}

.stars {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-bottom: 20px;
}

.stars span {
  font-size: 22px;
  line-height: 30px;
  color: #fff;
  padding-left: 10px;
}

.mentor-dtls {
  background-color: #023850;
  padding: 10px 0;
}

.mentor-dtls ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.mentor-dtls ul li {
  display: flex;
  align-items: center;
}

.mentor-dtls ul li img {
  width: 15px;
}

.mentor-dtls ul li span {
  font-size: 14px;
  line-height: 1;
  color: #fff;
  padding-left: 5px;
  width: calc(100% - 15px);
}

.mentor-dtls ul li span strong {
  font-weight: 700;
}

.real-experts-area.real-experts-area-2 {
  padding-top: 60px;
}

.real-experts-area.real-experts-area-2 .real-experts-bx {
  margin-bottom: -200px;
}

.mentor-tab-area .nav-tabs {
  column-gap: 60px;
  border: 0;
}

.mentor-tab-area .nav-tabs .nav-link {
  font-size: 40px;
  line-height: 50px;
  background-color: transparent;
  border: 0;
  color: #023850;
  font-family: "Manrope", sans-serif;
  padding: 0;
}

.mentor-tab-area .nav-tabs .nav-link.active {
  background-color: transparent;
  border: 0;
  color: #023850;
  font-weight: 700;
}

.co-bx {
  padding: 25px;
  background-color: #fff;
  box-shadow: 0px 4px 30px 0px #001a251a;
  border-radius: 12px;
  margin-top: 40px;
  overflow: hidden;
  position: relative;
}

.co-bx-top h5 {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 10px;
  color: #023850;
  font-weight: 600;
}

.co-bx-top p {
  font-size: 16px;
  line-height: 22px;
  color: #131313;
}

.co-bx-bottom {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.co-bx-bottom .btn-1 span:hover {
  color: #000;
}

.co-bx-bottom-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.co-bx-bottom-right-single {
  display: flex;
  align-items: center;
}

.co-bx-bottom-right-single img {
  width: 16px;
}

.co-bx-bottom-right-single span {
  width: calc(100% - 16px);
  font-size: 14px;
  line-height: 1;
  padding-left: 5px;
}

.co-bx-bottom-right-single span strong {
  font-weight: 700;
}

.co-bx-bottom-2 {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.usr-bx {
  display: flex;
  align-items: center;
  justify-content: center;
}

.usr-bx span {
  font-size: 14px;
  line-height: 18px;
  width: calc(100% - 36px);
  padding-left: 10px;
  color: #023850;
}

.usr-bx-img {
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background-color: #eef2f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.usr-bx-img img {
  max-width: 60%;
  max-height: 60%;
}

.co-bx-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  background-color: #023850;
  border-radius: 0 12px 0 0;
  position: absolute;
  top: 0;
  right: 0;
  padding: 12px 15px;
}

.co-bx-rating span {
  font-size: 14px;
  line-height: 18px;
  color: #fff;
}

.co-bx-rating span strong {
  font-weight: 700;
}

.mentor-answer-area ol {
  list-style: auto;
  padding-left: 24px;
}

.mentor-answer-area li {
  margin-bottom: 15px;
  font-size: 22px;
  line-height: 30px;
  color: #131313;
}

.mentor-answer-area h4 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #023850;
  font-family: "Manrope", sans-serif;
}

.mentor-answer-area h5 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 15px;
  color: #023850;
}

.mentor-answer-area p {
  font-size: 22px;
  line-height: 30px;
  padding-bottom: 20px;
  color: #131313;
}

.preorder-bx {
  border-radius: 4px;
  background-color: #eef2f6;
  width: 100%;
  margin-top: 25px;
}

.preorder-bx-left {
  padding: 30px 40px 40px;
}

.preorder-bx-left .custombtn span:hover {
  color: #000;
}

.preorder-bx-left h2 {
  font-size: 39px;
  line-height: 50px;
  margin-bottom: 25px;
  font-weight: 700;
  color: #023850;
  text-transform: capitalize;
}

.preorder-bx-left p {
  font-size: 22px;
  line-height: 30px;
  padding-bottom: 25px;
  color: #131313;
}

.preorder-bx-right {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.preorder-bx-right-circle {
  width: 215px;
  height: 215px;
  border-radius: 100%;
  background-color: #023850;
  position: absolute;
  right: 40px;
  top: 50px;
  z-index: 2;
}

.prebook-img {
  position: absolute;
  right: 20px;
  top: 0;
  z-index: 3;
  max-height: 90%;
}

.prev-order {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #023850;
}

.order-details-bx {
  margin-top: 25px;
}

.order-details-bx-top {
  background-color: #fdb31f;
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 10px 25px;
}

.order-details-bx-top-left {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  color: #023850;
}

.order-details-bx-top-right {
  font-size: 14px;
  line-height: 1;
  color: #023850;
}

.order-details-bx-top-left strong {
  font-weight: 700;
}

.order-details-bx-bottom {
  background-color: #eef2f6;
  border-radius: 0 0 4px 4px;
  padding: 20px 25px 30px;
}

.odbb-hdng {
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #023850;
  text-transform: capitalize;
  margin-top: 20px;
}

.order-details-bx-bottom table {
  margin-bottom: 0px;
}

.order-details-bx-bottom table tr td {
  font-size: 15px;
  line-height: 20px;
  vertical-align: top;
  color: #023850;
  padding: 0 10px 10px 0;
  white-space: normal;
}

.order-details-bx-bottom table tr td:last-child {
  padding-right: 0;
}

.attach {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 20px;
  color: #023850;
  word-wrap: break-word;
  word-break: break-word;
}

.attach img {
  width: 15px;
  filter: brightness(0) saturate(100%) invert(16%) sepia(37%) saturate(1735%) hue-rotate(163deg) brightness(98%) contrast(99%);
}

.when-no-order .preorder-bx-right-circle {
  width: 140px;
  height: 140px;
  border-radius: 100%;
  background-color: #023850;
  position: absolute;
  right: 60px;
}

/* ============================================================
                    Blog details page start 
=============================================================*/

.blogarea-blogdetailspg {
  margin-bottom: -400px;
  padding-bottom: 400px;
}

.blog-details-banner {
  margin-bottom: 40px;
  aspect-ratio: 13.2/6;
  position: relative;
  z-index: 1;
  border-radius: 36px;
}

.blog-details-banner::before {
  aspect-ratio: 13.2/6;
  display: block;
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 36px;
  z-index: 2;
}

.blog-details-banner img {
  border-radius: 36px;
  aspect-ratio: 13.2/6;
  width: 100%;
  object-fit: cover;
}

.blogdetails-area {
  margin-top: -270px;
  padding-bottom: 80px;
  overflow: visible;
  position: relative;
}

.inner-banner.blogdetails-inner-banner {
  padding-bottom: 320px;
}

.blogdetails-content p {
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 25px;
  color: #131313;
}

.blogdetails-content .d-flex p b {
  white-space: nowrap;
  padding-right: 10px;
}

.blogdetails-content ul li {
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 5px;
  color: #131313;
  padding-left: 30px;
  position: relative;
}

.blogdetails-content ul li::before {
  display: block;
  content: "";
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  font-size: 13px;
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 100%;
  text-align: center;
  color: #023850;
  background-color: #fdb31f;
}

.blogdetails-content h6 {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
  color: #131313;
  font-weight: 700;
}

.blogdetails-area .main-hdng {
  margin-bottom: 30px;
}

.blogdetails-content h5 {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 20px;
  color: #023850;
}

.blogdetails-content h4 {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 20px;
  color: #023850;
}

.blogdetails-content table {
  margin-bottom: 25px;
}

.blogdetails-content table tr {
  border-color: #e6e6e6;
}

.blogdetails-content table thead th {
  font-size: 16px;
  line-height: 22px;
  padding: 12px 20px;
  color: #131313;
  font-weight: 700;
  background-color: #eef2f6;
  border-color: #e6e6e6;
  vertical-align: middle;
}

.blogdetails-content table tbody td {
  font-size: 16px;
  line-height: 22px;
  padding: 12px 20px;
  color: #131313;
  background-color: transparent;
  border-color: #e6e6e6;
  vertical-align: middle;
}

/* ============================================================
                    Blog details page end
=============================================================*/

.inner-banner.profile-inner-banner {
  padding: 150px 0 100px;
}

/* ============================================================
                    Contact us page start
=============================================================*/
.cntcus-sec {
  background-color: #eef2f6;
  padding-bottom: 400px;
  margin-bottom: -400px;
}

.cntcus-map {
  margin-top: 80px;
}

.cntcus-map iframe {
  height: 400px;
  width: 100%;
  border-radius: 20px;
}

.cntcus-hdng {
  margin-bottom: 15px;
}

.cntcus-hdng h4 {
  font-size: 30px;
  line-height: 40px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: #023850;
  margin-bottom: 0;
}

.cntcus-hdng-2 {
  margin-bottom: 5px;
}

.cntcus-hdng-2 h5 {
  font-size: 22px;
  line-height: 30px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #023850;
  margin-bottom: 0;
}

.cntcus-dtls-top {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #d9d9d9;
}

.cntcus-dtls-txt p {
  font-size: 16px;
  line-height: 24px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #131313;
}

.cntcus-dtls-txt a {
  font-size: 22px;
  line-height: 26px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #023850;
  display: block;
  margin-top: 10px;
  word-wrap: break-word;
  word-break: break-word;
}

.cntcus-dtls-area {
  padding-left: 30px;
}

.home-banner-form.cntcus-form {
  padding-left: 0;
}

.home-banner-form.cntcus-form .form-group {
  border: 1px solid #c8c8c8;
}

.cntcus-form .btn-1 span:hover {
  color: #000;
}

.cntcus-form .btn-1 span {
  padding: 15px 50px;
}

.password-show {
  font-size: 18px;
  cursor: pointer;
  color: #023850;
}

.signup-area .password-show {
  color: #fff;
}

.text-errr {
  font-size: 14px;
  margin-top: 5px;
  display: block;
  color: red;
}

.login-signup-area-responsive .login-area .login-signup-form .form-grp .form-grp-icon .password-show {
  color: #fff;
}

.pagination.pagination-sdnew {
  justify-content: end;
  margin-top: 60px;
}

.pagination.pagination-sdnew2 {
  margin-top: 40px;
}

.pagination.pagination-sdnew .page-item .page-link {
  background-color: #eef2f6;
  color: #023850;
  font-weight: 500;
}

.pagination.pagination-sdnew li .page-link {
  color: #023850;
  font-weight: 500;
}

.pagination.pagination-sdnew .page-item .page-link:hover,
.pagination.pagination-sdnew li.page-item .page-link:focus {
  border: 1px solid #1a5976;
  background-color: #1a5976;
  color: #fff;
}

.pagination.pagination-sdnew li.active>.page-link,
.pagination.pagination-sdnew .page-item .page-link.active {
  color: #000;
  background-color: #fdb31e;
  border-color: #fdb31e;
}

.pagination.pagination-sdnew li .page-link:hover,
.pagination.pagination-sdnew li .page-link:focus {
  color: #000;
  background-color: #fdb31e;
  border-color: #023850;
  box-shadow: unset;
}

.pagination.pagination-sdnew .page-item:first-child .page-link {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.pagination.pagination-sdnew .page-item:last-child .page-link {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.form-grp-newsd {
  display: flex;
  flex-wrap: wrap;
}

.form-grp-newsd .PhoneInput.phninpt-sd input {
  padding: 0;
  border: 0;
}

.login-signup-form .form-grp.form-grp-newsd input.phone_number-sd {
  width: calc(100% - 95px);
}

.form-grp-newsd .PhoneInput.phninpt-sd {
  border-bottom: 1px solid #fff;
  width: 95px;
  padding-bottom: 10px;
}

.form-grp-newsd .PhoneInputCountrySelect:focus+.PhoneInputCountryIcon--border,
.form-grp-newsd .PhoneInputCountryIcon--border {
  box-shadow: 0 0 0 1px #fdb31e, inset 0 0 0 1px #fcb31c;
}

.form-grp-newsd .PhoneInputCountrySelectArrow {
  border-color: #fdb321;
  opacity: 0.7;
}

.form-grp-newsd .PhoneInput.phninpt-sd .PhoneInputCountry .PhoneInputInternationalIconGlobe,
.form-grp-newsd .PhoneInput.phninpt-sd .PhoneInputCountry .PhoneInputInternationalIconPhone {
  filter: brightness(0) invert(1);
}

.other-option .dp-dashboard-img {
  display: inline-block;
  margin-left: 20px;
}

.dropdown-btn-sd {
  padding-left: 5px;
}

.dropdown-btn-sd .dropdown-item {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 12px 15px;
  display: block;
  color: #09435c;
  background-color: #fff;
}

.dropdown-btn-sd .dropdown-item:hover {
  color: #000;
  background-color: #fdb31e;
}

.dropdown-btn-sd .dropdown-menu {
  box-shadow: 0px 4px 30px 0px #001a251a;
  background: #fff;
  border-radius: 0;
  border: 1px solid #fff;
  padding: 0;
  min-width: 150px;
}

.other-option .dropdown-btn-sd .dropdown-menu {
  /* bottom: -85px; */
  right: 0;
  /* top: unset; */
  left: unset;
  top: calc(100% + 10px);
}

.other-option .dropdown-btn-sd {
  position: relative;
  padding: 0;
  display: flex;
}

.dp-update-label {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  border-radius: 100%;
  overflow: hidden;
}

.dp-update-dp {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu.dropdown-megamenu {
  display: flex;
  width: max-content;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li.dropdown-submegamenu {
  padding: 12px 20px;
}

.dp-upload-ico.dp-upload-ico-profilePg {
  width: 35px;
  height: 35px;
  right: 35px;
  bottom: 35px;
  background: #fcb31c;
}

.who-i-am.profile-who-i-am .profile-details {
  margin-bottom: -5px;
}

.profile_pic_sdnew {
  width: 100%;
  height: 100%;
  position: relative;
}

.home-banner-form .form-group .react-date-picker__inputGroup input,
.home-banner-form .form-group .react-time-picker__inputGroup input {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  height: auto;
}

.home-banner-form .form-group .react-date-picker.form-control,
.home-banner-form .form-group .react-time-picker.form-control {
  padding: 0;
  border: 0;
}

.home-banner-form .form-group .react-date-picker__wrapper,
.home-banner-form .form-group .react-time-picker__wrapper {
  border: 0;
}

.uplded-file-sd {
  /* display: flex;
  align-items: center;
  justify-content: space-between; */
  background: #01afff94;
  color: #fff;
  /* max-width: 70%; */
  border-radius: 5px;
  padding: 5px 10px;
  /* margin-top: 10px; */
  display: block;
  font-size: 14px;
}

/* .uplded-file-sd span {
  font-size: 14px;
  padding: 5px 10px;
  height: 32px;
  display: -webkit-box; 
  -webkit-line-clamp: 1; 
  -webkit-box-orient: vertical; 
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: calc(100% - 25px);
  overflow: hidden;
  width: calc(100% - 25px);
} */
/* .uplded-file-sd .crss-sd {
  background: #fdb32196;
  height: 32px;
  width: 25px;
  text-align: center;
  line-height: 32px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
} */

.view-attachment-modal .modal-footer .btn-1 span:hover {
  color: #000;
}

.view-attachment-modal .modal-header {
  align-items: center;
  justify-content: space-between;
}

.view-attachment-modal .modal-header h4 {
  font-size: 25px;
  line-height: 30px;
  font-weight: 800;
  color: #023850;
  text-transform: capitalize;
  margin: 0;
}

.modal-sd-close {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fdb31f;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
}

.modal-sd-close button {
  opacity: 1;
}

.modal-sd-close button:focus {
  box-shadow: unset;
  border: 0;
}

.attachment-bx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
}

.attachment-bx-area .attachment-bx:last-child {
  padding-bottom: 0;
}

.attachment-bx-right {
  width: 26px;
  height: 26px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  border: 1px solid #023850;
  background-color: transparent;
  color: #023850;
}

.attachment-bx-right:hover {
  border: 1px solid #023850;
  background-color: #023850;
  color: #fff;
}

.attachment-bx-left {
  width: calc(100% - 30px);
  padding-right: 30px;
  display: flex;
  align-items: center;
  color: #023850;
}

.attachment-bx-left span {
  padding-left: 10px;
  font-size: 16px;
  line-height: 20px;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
}

.range-slider {
  position: relative;
}

.range-slider-line {
  height: 4px;
  border-radius: 6px;
  width: 100%;
  background-color: #d9d9d9;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 5px;
}

.range-slider-circle-area {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.range-slider-circle {
  width: 14px;
  height: 14px;
  border-radius: 100%;
  background-color: #d9d9d9;
  transition: all 0.3s ease-in-out;
}

.range-slider-circle-cnt {
  position: relative;
  width: 95px;
  height: 40px;
  background: #023850;
  border-radius: 6px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

.range-slider-circle-bx.selected .range-slider-circle {
  background-color: #023850;
  transition: all 0.3s ease-in-out;
}

.range-slider-circle-bx.selected .range-slider-circle-cnt {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.range-slider-circle-cnt::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 50%;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top-color: #023850;
  border-bottom: 0;
  transform: translateX(-50%);
}

.range-slider-circle-bx {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
}

.swal2-confirm {
  background-color: #023850 !important;
  border: 1px solid #023850 !important;
  color: #fff !important;
}

.swal2-confirm:hover {
  background-color: transparent !important;
  border: 1px solid #023850 !important;
  color: #023850 !important;
  background-image: unset !important;
}

.swal2-cancel {
  background-color: #fdb31f !important;
  border: 1px solid #fdb31f !important;
  color: #000 !important;
}

.swal2-cancel:hover {
  background-color: transparent !important;
  border: 1px solid #fdb31f !important;
  color: #000 !important;
  background-image: unset !important;
}

.swal2-title {
  font-size: 30px;
  line-height: 35px;
  font-weight: 800;
  color: #023850;
}

.pricing-calculator-area .pricing-calculator-bx .css-b62m3t-container {
  width: 100%;
}

.pricing-calculator-area .pricing-calculator-bx .css-t3ipsp-control,
.pricing-calculator-area .pricing-calculator-bx .css-t3ipsp-control:hover {
  border-color: unset;
  border: 0;
  background-color: #fff;
  box-shadow: 0 0 0 1px #fdb31e;
  padding: 8px 7px;
}

.pricing-calculator-area .pricing-calculator-bx .css-13cymwt-control {
  background-color: #fff;
  border: 1px solid #fff;
  padding: 8px 7px;
  border-radius: 6px;
  font-size: 16px;
  line-height: 22px;
  color: #21566d;
}

.pricing-calculator-area .pricing-calculator-bx .css-1u9des2-indicatorSeparator {
  width: 0;
}

.pricing-calculator-area-aboutusPg .pricing-calculator-bx .css-t3ipsp-control,
.pricing-calculator-area-aboutusPg .pricing-calculator-bx .css-t3ipsp-control:hover {
  border-color: unset;
  border: 0;
  background-color: #fff;
  box-shadow: 0 0 0 1px #023850;
  padding: 8px 7px;
}

.pricing-calculator-area-aboutusPg .pricing-calculator-bx .css-13cymwt-control {
  background-color: #fff;
  border: 1px solid #023850;
  padding: 8px 7px;
  border-radius: 6px;
  font-size: 16px;
  line-height: 22px;
  color: #21566d;
}

.profile-details .css-b62m3t-container {
  width: 100%;
}

.profile-details .css-t3ipsp-control,
.profile-details .css-t3ipsp-control:hover {
  border-color: transparent;
  border: 1px solid;
  background-color: #fff;
  box-shadow: 0 0 0 1px transparent;
  padding: 8px 7px;
}

.profile-details .css-13cymwt-control {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  padding: 8px 7px;
  border-radius: 6px;
  font-size: 16px;
  line-height: 22px;
  color: #21566d;
}

.profile-details .css-1u9des2-indicatorSeparator {
  width: 0;
}

.profile-details .phn-area .css-b62m3t-container {
  width: 175px;
}

.phn-area {
  gap: 10px;
}

.select__option.css-d7l1ni-option {
  background-color: #fdb31eb0;
  padding: 8px 12px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: #000;
  word-wrap: break-word;
  word-break: break-word;
}

.select__option.css-10wo9uf-option {
  padding: 8px 12px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: #023850;
  word-wrap: break-word;
  word-break: break-word;
}

.select__option.css-tr4s17-option {
  background-color: #fdb31e;
  padding: 8px 12px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: default;
  color: #000;
}

.select__menu.css-uxdlwi-menu ::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #d9d9d9;
}

.select__menu.css-uxdlwi-menu ::-webkit-scrollbar {
  width: 5px;
  height: 15px;
}

.select__menu.css-uxdlwi-menu ::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #023850;
}

.range-slider-mobile [type="radio"]:checked,
.range-slider-mobile [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.range-slider-mobile [type="radio"]:checked+label,
.range-slider-mobile [type="radio"]:not(:checked)+label {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  color: #000;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  display: inline-block;
}

.range-slider-mobile [type="radio"]:checked+label:before,
.range-slider-mobile [type="radio"]:not(:checked)+label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff;
}

.range-slider-mobile [type="radio"]:checked+label:after,
.range-slider-mobile [type="radio"]:not(:checked)+label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #fdb31f;
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.range-slider-mobile [type="radio"]:not(:checked)+label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.range-slider-mobile [type="radio"]:checked+label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.main-hdng.main-hdng-newsd p {
  font-size: 18px;
  line-height: 22px;
}

.no-orders-sdnew {
  padding: 20px 15px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
}

.sample-ans-sd .main-hdng {
  margin-bottom: 0;
}

.sample-ans-sd .btn-group.btn-group-andsd {
  justify-content: end;
  margin-bottom: 0;
  width: 100%;
}

.sample-ans-sd .btn-group.btn-group-andsd .btn-1 span:hover {
  color: #000;
}

.page-item.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.sd-not-found {
  text-align: center;
}

.sd-not-found img {
  margin: 0 auto;
  width: 100px;
}

.sd-not-found h4 {
  font-weight: 700;
  margin: 30px 0 30px;
  color: #023850;
}

.sd-not-found .btn-1 span:hover {
  color: #000;
}

.review-single-bx-position-relative {
  position: relative;
  height: 100%;
  padding-bottom: 40px;
  margin: 0;
}

.ico-txt-position-absolute {
  position: absolute;
  left: 20px;
  bottom: 20px;
  margin: 0;
}

.reviews-filters .css-b62m3t-container {
  width: 100%;
}

.reviews-filters .css-t3ipsp-control,
.reviews-filters .css-t3ipsp-control:hover {
  border-color: unset;
  border: 0;
  background-color: #fff;
  box-shadow: 0 0 0 1px #fdb31e;
  padding: 8px 7px;
}

.reviews-filters .css-13cymwt-control {
  background-color: #fff;
  border: 1px solid #fff;
  padding: 8px 7px;
  border-radius: 6px;
  font-size: 16px;
  line-height: 22px;
  color: #21566d;
}

.reviews-filters .css-1u9des2-indicatorSeparator {
  width: 0;
}

.reviews-filters .css-t3ipsp-control,
.reviews-filters .css-t3ipsp-control:hover {
  border-color: unset;
  border: 0;
  background-color: #fff;
  box-shadow: 0 0 0 1px #023850;
  padding: 13px;
  font-size: 16px;
  line-height: 22px;
  color: #21566d;
}

.reviews-filters .css-13cymwt-control {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  padding: 13px;
  font-size: 16px;
  line-height: 22px;
  color: #21566d;
}

.coming-soon-image img {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  max-width: 700px;
}

.modal-sa .btn-close.btn-close-sa {
  background-color: #fdb31f;
  opacity: 1;
  border-radius: 0 5px 0 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  height: 30px;
  z-index: 2;
}

.modal-sa .modal-body .btn-1 span:hover {
  color: #000;
}

.modal-sa .modal-body h3 {
  font-size: 35px;
  line-height: 45px;
  font-weight: 800;
  color: #023850;
  text-transform: capitalize;
  text-wrap: balance;
  margin-bottom: 10px;
  font-family: "Manrope", sans-serif;
}

.modal-sa .modal-body p {
  padding-bottom: 20px;
}

.modal-sa .modal-body {
  padding: 40px;
}

.wrng-ico {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  margin: 0 auto 20px;
  border: 2px solid orange;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: orange;
}

.white-text {
  color: #11a1e1;
}

.ean-bx {
  color: #023850;
  font-size: 15px;
  line-height: 1;
  margin-top: 10px;
  padding-left: 16px;
  position: relative;
}

.ean-bx::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #02b602;
  display: block;
  content: "";
}

.online-icon {
  color: #023850;
  font-size: 15px;
  line-height: 1;
  margin-top: 10px;
  padding-left: 16px;
  position: relative;
}

.online-icon::before {
  position: absolute;
  bottom: 9px;
  left: 34px;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #02b602;
  display: block;
  content: "";
}

.home-banner .ean-bx {
  color: #fff;
}

.home-banner .ean-bx::before {
  background-color: #02b602;
}

.dp-upload-ico img {
  width: 50%;
  height: 50%;
  border-radius: 0;
}

.flex-wrap-wrap {
  flex-wrap: wrap;
}

.faqarea-2 .accordion .accordion-item:not(:first-of-type) .accordion-button:not(.collapsed) {
  border-radius: 0;
}

.real-experts-bx .home-banner-form .form-group.date-form-group-sd {
  border: 0 !important;
}

.modal-header-login-close {
  position: absolute;
  z-index: 1;
  top: 5px;
  color: white;
  right: 5px;
  border: none !important;
}

.modal-header-login-close .btn-close {
  background-color: #efefef;
  width: 15px;
  height: 15px;
  background-size: 15px;
}

.apply-btn-area {
  padding: 2px;
}

.apply-btn-area .btn-1 span:hover {
  color: #000;
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.video-modal .modal-content-video {
  position: relative;
  background-color: transparent;
  /* padding: 20px; */
  border-radius: 8px;
  /* max-width: 90vw;
  max-height: 90vh; */
  width: auto;
  height: auto;
  justify-content: center;
  align-items: center;
}

.video-modal .close-button {
  position: absolute;
  top: -13px;
  right: -13px;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  color: #000;
  transition: all 0.3s ease;
}

.video-modal .close-button:hover {
  background: #fdb31e;
}

.video-modal .modal-content-video iframe {
  max-width: 100%;
  /* max-height: calc(90vh - 40px); */
  width: 800px;
  /* height: 450px; */
  border-radius: 8px;
  aspect-ratio: 16 / 9;
}

a.white-blue,
a.white-blue:hover {
  color: #11a1e1;
}

.review-area.review-area-aboutusPg.active {
  padding-top: 80px;
  margin-top: 80px;
}

.payment-dtls-bx {
  padding: 20px;
  background-color: #fff;
  border: 1px solid #c8c8c8;
  border-radius: 12px;
  width: 100%;
  height: 100%;
}

.payment-dtls-bx tr th {
  font-size: 14px;
  line-height: 20px;
  vertical-align: top;
  color: #023850;
  padding: 0 20px 10px 0;
  word-wrap: break-word;
  word-break: break-word;
  white-space: nowrap;
}

.payment-dtls-bx tr td {
  font-size: 14px;
  line-height: 20px;
  vertical-align: top;
  color: #023850;
  padding: 0 0 10px 0;
  word-wrap: break-word;
  word-break: break-word;
}

.payment-dtls-bx tr:last-child th,
.payment-dtls-bx tr:last-child td {
  padding-bottom: 0;
}

.posd-area {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.posd-area .btn-1 span {
  padding: 20px 25px;
}

.posd-area .btn-1 span:hover {
  color: #000;
}

table td.text-center button {
  margin: 0 auto;
}

.privacypage-container {
  margin: 60px 0 0 0;
}

.privacypage-container h3 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  color: #023850;
  margin-bottom: 10px;
}

.related-topic-box {
  background-color: #FFF;
  border-radius: 10px;
  box-shadow: 0px 4px 30px 0px #001a251a;
  margin-bottom: 20px;
}

.related-topic-box ul {
  margin-bottom: 30px !important;
  list-style: none;
}

.related-topic-box ul li {
  display: block;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 45px;
  line-height: 1.3em;
}

.related-topic-box ul li::before {
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  background: #fdb31f;
  border: 2px solid #023850;
  border-radius: 100%;
  position: absolute;
  left: 10px;
  top: 14px;
  z-index: 2;
}

.related-topic-box ul li::after {
  display: block;
  content: "";
  border-left: 1px dashed #e6e6e6;
  position: absolute;
  left: 15px;
  top: 4px;
  bottom: 0;
  height: 100%;
  z-index: 1;
}

.related-topic-box h4 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 30px;
  font-weight: 700;
  color: #023850;
}

.related-topic-box a {
  color: #000;
}

.related-topic-box a:hover {
  color: #004361;
}

.free-samples-manleft-wrapper h4 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 30px;
  font-weight: 700;
  color: #023850;
}

.free-samples-manleft-wrapper p {
  font-size: 16px;
  line-height: 26px;
  padding-bottom: 20px;
  color: #131313;
}

.responsive-table-wrapper {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  overflow-x: auto;
}

.responsive-table-wrapper table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  border-color: #004361;
  border-width: 1px;
  border-style: solid;
  margin-bottom: 20px;
}

.responsive-table-wrapper table th,
.responsive-table-wrapper table td {
  padding: 8px 15px;
  border: 1px solid #004361;
}

.responsive-table-wrapper table th {
  background-color: #004361;
  color: #FFF;
}

.back-link span {
  border: 0;
  color: #023850 !important;
  padding: 5px 0;
}

.back-link:hover span {
  color: #000 !important;
}

.footerpg h5 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
  color: #023850;
  text-transform: capitalize;
  margin-top: 10px;
  margin-bottom: 15px;
}

.footerpg h5:first-child {
  margin-top: 0;
}

.footerpg p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #000;
  padding-bottom: 10px;
}

.footerpg ul li {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #000;
  padding-bottom: 10px;
  padding-left: 15px;
  position: relative;
}

.footerpg ul {
  padding-left: 25px !important;
}

.footerpg ul li::before {
  display: block;
  content: '';
  background-color: #000;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 10px;
}

.paymentbox-wrappert-cont {
  background-color: #eef2f6;
  border-radius: 15px;
  display: inline-block;
  vertical-align: top;
  width: 100%;
}

.main-hdng h2 a {
  font-weight: 700;
  color: #023850;
}

.free-samples-manleft-wrapper .co-bx-top p {
  padding-bottom: 0;
}

/* .login-signup-form .phninpt-sd.PhoneInput .PhoneInputCountry {
  margin-right: 0;
  border-bottom: 1px solid #fff;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 2px;
} */
.login-signup-form .phninpt-sd .PhoneInputCountry {
  margin-right: 0;
  border-bottom: 1px solid #fff;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 2px;
}

.login-signup-form .PhoneInputCountrySelect:focus+.PhoneInputCountryIcon--border,
.login-signup-form .PhoneInputCountryIcon--border {
  box-shadow: 0 0 0 1px #fdb31e, inset 0 0 0 1px #fcb31c;
}

.login-signup-form .PhoneInputCountrySelectArrow {
  border-color: #fdb321;
  opacity: 0.7;
}

.login-signup-form .PhoneInput.phninpt-sd .PhoneInputCountry .PhoneInputInternationalIconGlobe,
.login-signup-form .PhoneInput.phninpt-sd .PhoneInputCountry .PhoneInputInternationalIconPhone {
  filter: brightness(0) invert(1);
}

.react-tel-input .selected-flag:hover,
.react-tel-input .selected-flag:focus {
  background-color: transparent !important;
}

.react-tel-input .selected-flag {
  width: 30px !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.react-tel-input .selected-flag .arrow {
  border-top: 4px solid #fdb31f !important;
}

.home-banner-form .form-group .react-tel-input .selected-flag .arrow {
  border-top: 4px solid #555 !important;
}

.react-tel-input .selected-flag .arrow.up {
  border-bottom: 4px solid transparent !important;
}

.react-tel-input .flag-dropdown.open .selected-flag {
  background: transparent !important;
}

.login-signup-form .form-grp .form-control:focus {
  box-shadow: unset;
}

.festive-modal .festive-img {
  border-radius: 10px 0 0 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.festive-modal .login-area {
  border-radius: 10px 0 0 10px;
  position: relative;
}

.festive-modal .signup-area {
  border-radius: 0 10px 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 50px 50px 70px;
}

.festive-modal .modal-content {
  border-radius: 15px;
}

.festive-hdng {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 33px;
  padding: 25px;
  position: absolute;
  transform: translateY(-50%);
  left: 50px;
  right: 50px;
  top: 50%;
  font-size: 54px;
  line-height: 56px;
  font-weight: 800;
  color: #fff;
  font-family: "Manrope", sans-serif;
}

.cc-bx {
  background-color: #1A5A76;
  padding: 10px 20px;
  border-radius: 8px;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  width: max-content;
  margin-bottom: 40px;
}

.cc-bx strong {
  letter-spacing: 2px;
  font-weight: 700;
  color: #FDB31F;
}

.festive-modal .signup-area h4 {
  font-family: "Open Sans", sans-serif;
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  margin: 50px 0;
}

.festive-modal .signup-area h3 {
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  line-height: 1;
  text-transform: capitalize;
}

.festive-modal .signup-area h3 strong {
  font-weight: 800;
  color: #FDB31F;
  text-transform: uppercase;
}

.festive-modal .signup-area .custombtn {
  width: max-content;
}

.ant-modal-close {
  background: linear-gradient(106.8deg, #023850 2.2%, #1a5a76 80.79%) !important;
  color: #FFF;
}

.ant-modal-close svg {
  filter: invert(1) brightness(200);
  opacity: 1;
}


.onloading-modal-left {
  background: linear-gradient(106.8deg, #023850 2.2%, #1a5a76 80.79%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
  padding: 30px;
  color: #fff;
  border-radius: 8px;
}

.onloading-modal-left .onloadingmodal-logo {
  width: 100px;
  margin-bottom: 20px;
  display: inline-block;
  vertical-align: top;
}

.onloading-modal-left h2 {
  font-size: 50px;
  line-height: 55px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
}

.onloading-modal-left h2 span {
  font-weight: 700;
  color: #fdb31f;
  font-size: 100px;
  text-transform: uppercase;
  line-height: 120px;
}