@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Inter:wght@100..900&display=swap");
/*---------------------------
** Global style
---------------------------*/

:root{
  --app-orange: #f28716
}
.fixed-header{
  background-color: #000;
}
.__SH38ejsw2{
    color: rgb(29, 46, 59);
  font-family: "Caveat", handwriting;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 98%;
  font-size: 40px;
}
.mybtn1 {
  font-size: 22px;
  /* text-transform: uppercase; */
  font-weight: 600;
  min-width: 180px;
  /* height: 66px; */
  /* line-height: 66px; */
  text-align: center;
  display: inline-block;
  color: #fff;
  border: 0px;
  cursor: pointer;
  background: #f28716;
  transition: 0.3s;
  overflow: hidden;
  position: relative;
  z-index: 9;
  padding: 21px 40px;
  border-radius: 6px;
}
.__SHuS93vSKD2u1{
  align-items: self-start;
  margin-bottom: 14px;
}
.__SHuS93vSKD2u1 i{
  margin-right: 10px;
  color: var(--app-orange);
}
.__SHuS93vSKD2u1 span{
  top: -6px;
  position: relative;
}
.newmybtn3{
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  width: 180px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  display: inline-block;
  color: #fff;
  border: 0px;
  cursor: pointer;
  background:#f28716;
  transition: 0.3s;
  overflow: hidden;
  position: relative;
  margin-top: 20px;
}

.mybtn1::after {
  /* position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 490%;
  width: 180%;
  background: #f28716;
  transform: translateX(-120%) translateY(-25%) rotate(45deg);
  transition-duration: 0.3s;
  transition-timing-function: linear;
  transition-delay: 0.2s; */
}
.mybtn1::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 490%;
  width: 180%;
  background: #3fa249;
  transform: translateX(-140%) translateY(-25%) rotate(45deg);
  transition-duration: 0.1s;
  transition-timing-function: linear;
  transition-delay: 0s;
  z-index: 2;
}
.mybtn1:hover {
  color: #fff;
}
.mybtn1:hover::after {
  transform: translateX(-41%) translateY(-25%) rotate(45deg);
  transition-duration: 0.3s;
  transition-timing-function: linear;
  transition-delay: 0s;
}
.mybtn1:hover::before {
  transform: translateX(-50%) translateY(-25%) rotate(45deg);
  transition-duration: 0.3s;
  transition-timing-function: linear;
  transition-delay: 0.2s;
}
.mybtn1 span {
  position: inherit;
  z-index: 9;
}

.newmybtn3::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 490%;
  width: 180%;
  background: #f28716;
  transform: translateX(-120%) translateY(-25%) rotate(45deg);
  transition-duration: 0.3s;
  transition-timing-function: linear;
  transition-delay: 0.2s;
}
.newmybtn3::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 490%;
  width: 180%;
  background: #3fa249;
  transform: translateX(-140%) translateY(-25%) rotate(45deg);
  transition-duration: 0.3s;
  transition-timing-function: linear;
  transition-delay: 0s;
  z-index: 2;
}
.newmybtn3:hover {
  color: #fff;
}
.newmybtn3:hover::after {
  transform: translateX(-41%) translateY(-25%) rotate(45deg);
  transition-duration: 0.3s;
  transition-timing-function: linear;
  transition-delay: 0s;
}
.newmybtn3:hover::before {
  transform: translateX(-50%) translateY(-25%) rotate(45deg);
  transition-duration: 0.3s;
  transition-timing-function: linear;
  transition-delay: 0.2s;
}
.newmybtn3 span {
  position: inherit;
  z-index: 9;
}

.mybtn2 {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  width: 160px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  display: inline-block;
  color: #fff;
  border: 0px;
  cursor: pointer;
  background: rgba(212, 63, 141, 0.2);
  color: #000;
  transition: 0.3s;
  overflow: hidden;
  position: relative;
  z-index: 9;
}
.mybtn2::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 490%;
  width: 180%;
  background: #0250c5;
  transform: translateX(-120%) translateY(-25%) rotate(45deg);
  transition-duration: 0.3s;
  transition-timing-function: linear;
  transition-delay: 0.2s;
}
.mybtn2::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 490%;
  width: 180%;
  background: #d43f8d;
  transform: translateX(-140%) translateY(-25%) rotate(45deg);
  transition-duration: 0.3s;
  transition-timing-function: linear;
  transition-delay: 0s;
  z-index: 2;
}
.mybtn2:hover span {
  color: #fff !important;
}
.mybtn2:hover::after {
  transform: translateX(-41%) translateY(-25%) rotate(45deg);
  transition-duration: 0.3s;
  transition-timing-function: linear;
  transition-delay: 0s;
}
.mybtn2:hover::before {
  transform: translateX(-50%) translateY(-25%) rotate(45deg);
  transition-duration: 0.3s;
  transition-timing-function: linear;
  transition-delay: 0.2s;
}
.grid{
  display: grid;
}
.grid-cols-2{
  grid-template-columns: 1fr 1fr;
}
.gap-4{
  column-gap: 10px;
}
.mybtn2 span {
  position: inherit;
  z-index: 9;
}

.mybtn3 {
  padding: 10px 30px;
  background: #fff;
  border-radius: 4px;
  font-size: 16px;
  display: inline-block;
  border: 1px solid transparent;
  position: relative;
  text-transform: uppercase;
  z-index: 3;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.4s;
  cursor: pointer;
  outline: none !important;
  overflow: hidden;
}

.mybtn3 span {
  position: relative;
  font-weight: 500;
  z-index: 6;
  transition-delay: 0s;
}

.mybtn3:before,
.mybtn3:after {
  content: "";
  width: 0;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  transition: width 0.4s;
  z-index: 1;
  opacity: 0.4;
}

.mybtn3:after {
  transition-delay: 0s;
  background: #fff;
  opacity: 1;
}

.mybtn3:hover:before,
.mybtn3:hover:after {
  width: 100%;
}

.mybtn3:hover:after {
  transition-delay: 0.2s;
}

.mybtn3:hover span {
  transition-delay: 0.2s;
}
.__LDb27dgbN38SN23{
  color: #fff;
  border: 1px solid var(--app-orange);
  border-radius: 40px;
  margin-left: 15px;
  transition: 0.3s ease-in all;
  background-color: #f2871630;
}
.__LDb27dgbN38SN23:hover{
  background-color: var(--app-orange) !important;
  color: #fff !important;
}
.register__HIS9{
  background-color: var(--app-orange) !important;
}
.mybtn-bg {
  background: #EA384D;
  border-color: #EA384D;
  color: #fff;
}

.mybtn-bg span {
  color: #fff;
}

.mybtn-bg:hover span {
  color: #EA384D;
}

.mybtn-light {
  background: #fff;
}

.mybtn-light:before,
.mybtn-light:after {
  background: #EA384D;
}

.mybtn-light:hover span {
  color: #fff !important;
}

.mybtn-light span {
  color: #EA384D;
}

.mybtn-bord {
  background: transparent;
  border: 1px solid #EA384D;
}

.mybtn-bord:before,
.mybtn-bord:after {
  background: #EA384D;
}

.mybtn-bord:hover {
  border-color: #EA384D;
}

.mybtn-bord:hover span {
  color: #fff;
}
@keyframes shapeani1 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes shapeani2 {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes shapeani3 {
  0% {
    transform: translateY(15px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(15px);
  }
}
@keyframes b-shadow {
  0% {
    box-shadow: 0px 0px 0px 20px rgba(59, 38, 219, 0.1), 0px 0px 0px 40px rgba(59, 38, 219, 0.1), 0px 0px 0px 60px rgba(59, 38, 219, 0.1), 0px 0px 0px 80px rgba(59, 38, 219, 0.1), 0px 0px 0px 100px rgba(59, 38, 219, 0.1);
  }
  50% {
    box-shadow: 0px 0px 0px 50px rgba(59, 38, 219, 0.1), 0px 0px 0px 75px rgba(59, 38, 219, 0.1), 0px 0px 0px 100px rgba(59, 38, 219, 0.1), 0px 0px 0px 125px rgba(59, 38, 219, 0.1), 0px 0px 0px 150px rgba(59, 38, 219, 0.1);
  }
  100% {
    box-shadow: 0px 0px 0px 20px rgba(59, 38, 219, 0.1), 0px 0px 0px 40px rgba(59, 38, 219, 0.1), 0px 0px 0px 60px rgba(59, 38, 219, 0.1), 0px 0px 0px 80px rgba(59, 38, 219, 0.1), 0px 0px 0px 100px rgba(59, 38, 219, 0.1);
  }
}
.owl-carousel .owl-item img {
  width: auto;
  display: inline-block;
}

.mix {
  display: none;
}

.remove-col-padding {
  padding: 0;
}

.navbar-light .navbar-toggler {
  border: 0px;
  
}
.navbar-light .navbar-toggler:focus {
  outline: 0px;
}


.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 0.4rem;
  padding-left: 0.4rem;
}

.bottomtotop i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: fixed;
  font-size: 14px;
  text-align: center;
  background-color: var(--app-orange);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transform: rotate(-90deg);
  bottom: 15px;
  right: 15px;
  box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: all linear 0.3s;
}

.br-10 {
  border-radius: 10px;
}

.section-title {
  text-align: center;
  margin-bottom: 56px;
}
.section-title.extra .title {
  margin-bottom: 24px;
}
.section-title.white .subtitle {
  color: #fff;
}
.section-title.white .title {
  color: #fff;
}
.section-title.white p {
  color: rgba(255, 255, 255, 0.7);
}
.section-title .title {
  margin-bottom: 13px;
}
.section-title .title span {
  background-image: linear-gradient(55deg, rgba(253, 110, 0, 0.5), rgba(26, 243, 66,1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title p {
  max-width: 650px;
  margin: 0 auto;
}
.section-title.darkbg .title {
  color: #fff;
}
.section-title.darkbg .title span {
  color: #fff;
}
.section-title.darkbg p {
  color: rgba(255, 255, 255, 0.95);
}
.form-error-message{
  color: #dc3545 !important;
  font-size: 13px;
  font-weight: 500;
}
.background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #F7F8FC;
  z-index: -9999;
}

.input-field {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  border-radius: 3px;
  color: #6d6d6d;
  margin-bottom: 20px;
}
.input-field::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #6d6d6d;
}
.input-field:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #6d6d6d;
}
.input-field::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #6d6d6d;
}
.input-field:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #6d6d6d;
}
.__MuHS37hUSDk312o input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #6d6d6d;
}
.__MuHS37hUSDk312o input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #6d6d6d;
}
.__MuHS37hUSDk312o input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #6d6d6d;
}
.__MuHS37hUSDk312o input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #6d6d6d;
}
.input-field.borderd {
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.input-field.borderd:focus {
  border: 1px solid #d43f8d;
}
.input-field.textarea {
  min-height: 140px;
  padding: 15px 20px;
  resize: none;
}
.input-field.error {
  border: 1px solid #0250c5;
}
.input-field.error::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #0250c5;
}
.input-field.error:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #0250c5;
}
.input-field.error::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #0250c5;
}
.input-field.error:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #0250c5;
}
.input-field.error:focus {
  border-color: #0250c5;
}

.email-success {
  display: block;
  width: 100%;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.3);
    opacity: 0;
  }
}
/*-------------------------
    Preloader Css
---------------------------*/
.preloader-inner {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  /* background: #3d073d; */
  background: #ffffff;
  /* background-image: linear-gradient(55deg, rgba(253, 110, 0, 1), rgb(12 202 47)); */
  justify-content: center;
}
.preloader-inner .cancel-preloader {
  position: absolute;
  bottom: 30px;
  right: 30px;
}
.preloader-inner .cancel-preloader a {
  background-color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  color: #0250c5;
  width: 200px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 30px;
  display: block;
  transition: all 0.3s ease-in;
}
.preloader-inner .cancel-preloader a:hover {
  background-color: #00aeff;
  color: #fff;
}

.cube-folding {
  width: 50px;
  height: 50px;
  display: inline-block;
  transform: rotate(45deg);
  font-size: 0;
}

.cube-folding span {
  position: relative;
  width: 25px;
  height: 25px;
  transform: scale(1.1);
  display: inline-block;
}

.cube-folding span::before {
  content: "";
  background-color: #c90808;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 25px;
  height: 25px;
  transform-origin: 100% 100%;
  animation: folding 2.5s infinite linear both;
}

.cube-folding .leaf2 {
  transform: rotateZ(90deg) scale(1.1);
}

.cube-folding .leaf2::before {
  animation-delay: 0.3s;
  background-color: #ffc107;
}

.cube-folding .leaf3 {
  transform: rotateZ(270deg) scale(1.1);
}

.cube-folding .leaf3::before {
  animation-delay: 0.9s;
  background-color: #000000;
}

.cube-folding .leaf4 {
  transform: rotateZ(180deg) scale(1.1);
}

.cube-folding .leaf4::before {
  animation-delay: 0.6s;
  background-color: #26cb10;
}
@keyframes folding {
  0%, 10% {
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
.cube-wrapper {
  position: fixed;
  left: 50%;
  top: 50%;
  margin-top: -50px;
  margin-left: -50px;
  width: 100px;
  height: 100px;
  text-align: center;
}

.cube-wrapper:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  margin: auto;
  width: 90px;
  height: 6px;
  background-color: rgba(0, 0, 0, 0.1);
  filter: blur(2px);
  border-radius: 100%;
  z-index: 1;
  animation: shadow 0.5s ease infinite alternate;
}

.cube-wrapper .loading {
  font-size: 20px;
  letter-spacing: 0.1em;
  display: block;
  color: rgb(0, 0, 0);
  position: relative;
  top: 25px;
  z-index: 2;
  animation: text 0.5s ease infinite alternate;
  text-transform: uppercase;
  left: -20px;
  font-weight: 600;
  letter-spacing: 3px;
}
@keyframes text {
  100% {
    top: 35px;
  }
}
@keyframes shadow {
  100% {
    bottom: -18px;
    width: 100px;
  }
}

/* Action Preloader */
#actionPreloader{
  display: none;
}
.action_preloader-inner {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  /* background: #3d073d; */
  background: #ffffffb4;
  /* background-image: linear-gradient(55deg, rgba(253, 110, 0, 1), rgb(12 202 47)); */
  justify-content: center;
}
.action_preloader-inner .cancel-preloader {
  position: absolute;
  bottom: 30px;
  right: 30px;
}
.preaction_preloader-inner .cancel-preloader a {
  background-color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  color: #0250c5;
  width: 200px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 30px;
  display: block;
  transition: all 0.3s ease-in;
}
.action_preloader-inner .cancel-preloader a:hover {
  background-color: #00aeff;
  color: #fff;
}


/* Action Preloader */


.navigation.innerpage {
  background: #fff;
  border-bottom: 0px;
}

/* Breadcrumb Area Start */
.breadcrumb-area {
  padding: 119px 0px 66px;
  position: relative;
  overflow: hidden;
  /* background-image: linear-gradient(55deg, rgba(253, 110, 0, 1), rgba(26, 243, 66,1)); */
  background: #1e1e1e;
}
.breadcrumb-area .title {
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  margin-bottom: 11px;
  color: #fff;
}
.breadcrumb-area .title.extra-padding {
  margin-bottom: 24px;
}
.breadcrumb-area .breadcrumb-list {
  margin: 0px;
  padding: 0px;
}
.breadcrumb-area .breadcrumb-list li {
  display: inline-block;
}
.breadcrumb-area .breadcrumb-list li span {
  margin: 0px 7px;
  color: #fff;
}
.breadcrumb-area .breadcrumb-list li a {
  font-size: 16px;
  transition: all 0.3s ease-in;
  color: #fff;
}
.breadcrumb-area .breadcrumb-list li a:hover {
  color: #f1f1f1;
}
.breadcrumb-area .breadcrumb-list li a.active {
  color: #f1f1f1;
}

.curve {
  position: absolute;
  z-index: 7;
}
.curve.curve-bottom {
  left: 0;
  bottom: -1px;
  width: 100%;
}
.curve.curve-bottom:after, .curve.curve-bottom:before {
  bottom: 0;
}
.curve.curve-top {
  left: 0;
  top: -1px;
  width: 100%;
}
.curve.curve-top:after, .curve.curve-top:before {
  top: 0;
  border-top: 80px solid #fff;
  border-bottom: 0;
}
.curve.curve-top:after {
  border-left: 70vw solid transparent;
}
.curve.curve-top:before {
  border-right: 30vw solid transparent;
}
.curve:after, .curve:before {
  content: "";
  width: 0;
  height: 0;
  border-bottom: 80px solid #fff;
  position: absolute;
}
.curve:after {
  right: 0;
  border-left: 30vw solid transparent;
}
.curve:before {
  left: 0;
  border-right: 70vw solid transparent;
}

.google_map_wrapper {
  border: 10px solid #fff;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.08);
}

/*====================
** Normalize
====================*/
html {
 
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-family: "Inter", sans-serif;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  margin: 0;
  color: #555;
}

.__title{
  font-family: "Inter", sans-serif;
    font-weight: 900;
    letter-spacing: -0.05rem;
    line-height: 120%;
    font-size: 2.3rem;
    text-align: center;
    color: rgb(29, 46, 59);
}
.howItWorks{
  padding: 4em 0;
}
.relative{
  position: relative;
}
.__SkvoivjSK{
  position: absolute;
    top: 31px;
    right: -4px;
    background: #ff9b00;
    color: #fff;
    border: 0px;
    outline: navajowhite;
    padding: 6px 12px;
    border-radius: 3px;
    font-size: 14px;
    transition: 0.5s ease-in all;
    -ms-transition: 0.5s ease-in all;
    -moz-transition: 0.5s ease-in all;
}
.__SJNSv823vcl{
  background-color: #F7F9FF;
  flex-direction: row;
  gap: 5em;
  padding-bottom: 50px;
  padding-top: 50px;
  width: 100%;
  border-radius: 8px;
  padding-left: 60px;
  padding-right: 60px;
  box-shadow: 0px 0px 30px 0px rgba(0, 44, 122, 0.13);
}
.__Sj298KW2W2end{
  color: var(--app-orange);
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 140%;
    text-align: left;
}
.__SBjd398gfbqku{
  color: var(--app-orange);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 140%;
    text-align: left;
}
h1 {
  font-size: 60px;
  line-height: 1.086d6d6d33;
}

h2 {
  font-size: 52px;
  line-height: 1.4444444444;
}

h3 {
  font-size: 26px;
  line-height: 1.086d6d6d33;
}

h4 {
  font-size: 22px;
  line-height: 1.2380952381;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #242424;
}


a {
  color: #242424;
  text-decoration: none;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
}

a i {
  padding: 0 2px;
}

img {
  max-width: 100%;
}

li {
  list-style: none;
}

ul {
  padding-left: 0px;
}

/*input and button type focus outline disable*/
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=number]:focus,
textarea:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus,
select:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #ddd;
}

/**
 * 5.0 - Alignments
 */
.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto 1.75em;
}

/*---------------------------
** Main Menu  Area Start
---------------------------*/
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.navigation.stiky-nav {
  background: #1e1e1e;
  border-bottom: 0px;
  border-bottom: 0px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
}
.navigation.stiky-nav .navbar .navbar-brand img {
  filter: unset;
}
.navigation.stiky-nav .navbar #mainmenu ul .nav-item .nav-link {
  color: rgb(255, 255, 255);
}
.navigation.stiky-nav .navbar #mainmenu ul .nav-item .nav-link::before {
  background-image: linear-gradient(55deg, rgba(253, 110, 0, 0.5), rgba(26, 243, 66,1));
}
.navigation.stiky-nav .navbar #mainmenu ul .nav-item .nav-link:hover::before, .navigation.stiky-nav .navbar #mainmenu ul .nav-item .nav-link.active::before {
  background-image: linear-gradient(55deg, rgba(253, 110, 0, 0.5), rgba(26, 243, 66,1));
}
.navigation .navbar {
  padding: 0px 0px 0px;
}
.navigation .navbar .navbar-brand {
  font-size: 30px;
  line-height: 50px;
  font-weight: 700;
  padding: 0px;
  margin-top: -2px;
  text-transform: uppercase;
  color: #242424; 
}

/* span .navbar-toggle */
.navigation .navbar .navbar-brand img {
  max-width: 200px;
  /* filter: brightness(0) invert(1); */
}
.navigation .navbar #mainmenu ul .nav-item .nav-link {
  color: #fff;
  position: relative;
  padding: 25px 10px 25px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
}
.navigation .navbar #mainmenu ul .nav-item .nav-link::before {
  position: absolute;
  content: " ";
  width: 3px;
  height: 3px;
  left: 50%;
  border-radius: 50px;
  bottom: 0;
  opacity: 0;
  transform: translateX(-50%);
  background: #fff;
  transition: 0.5s;
}
.navigation .navbar #mainmenu ul .nav-item .nav-link:hover::before, .navigation .navbar #mainmenu ul .nav-item .nav-link.active::before {
  position: absolute;
  content: " ";
  width: 70%;
  height: 3px;
  left: 50%;
  transform: translate(-50%);
  bottom: 0px;
  opacity: 1;
  background: #fff;
}
.navigation .navbar #mainmenu ul .nav-item.dropdown:hover .dropdown-menu {
  display: block;
  padding: 0px;
  margin-top: 0px;
  border: 0px;
  border-radius: 0px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.06);
}
.navigation .navbar #mainmenu ul .nav-item.dropdown:hover .dropdown-menu .dropdown-item {
  background: #fff;
  padding: 8px 15px;
  font-size: 15px;
  line-height: 25px;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in;
}
.navigation .navbar #mainmenu ul .nav-item.dropdown:hover .dropdown-menu .dropdown-item i {
  font-size: 13px;
  margin-right: 4px;
}
.navigation .navbar #mainmenu ul .nav-item.dropdown:hover .dropdown-menu .dropdown-item:hover {
  background: #d43f8d;
  color: #fff;
}
.navigation .navbar #mainmenu ul .nav-item.dropdown:hover .dropdown-menu .dropdown-item:last-child {
  border-bottom: 0px;
}

/*---------------------------
** Main Menu Area End
---------------------------*/
/*-----------------------------
** Hero Area Start
------------------------------*/
.hero-area {
  position: relative;
  padding: 200px 0px 229px;
  background: url(/images/expertnaire-landing-img.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right ,rgba(9, 5, 1, 0.697), rgba(0, 0, 0, 0.5)); 
  /* background: linear-gradient(to right, rgb(12 11 10 / 68%), rgb(243 166 26 / 58%));  */
  z-index: 1; 
}

.left-content {
  position: relative;
  z-index: 2;
}
.img {
  position: relative;
  z-index: 2;
  display: none;
}
.hero-area .title{
color: white;
}
.hero-area .bgimg {
  position: absolute;
  bottom: 0%;
  width: auto;
}
.hero-area .left-content .content .title {
  font-size: 70px;
  color: #fff;
  font-weight: 900;
  line-height: 78px;
}
.hero-area .left-content .content .subtitle {
  font-size: 36px;
  line-height: 37px;
  color: #ffff;
  margin-top: 26px;
  font-family: "Caveat", cursive;
  font-optical-sizing: auto;
  /* font-weight: <weight>; */
  font-style: normal;
}
.hero-area .left-content .content .links {
  margin-top: 42px;
  padding-right: 15px;
}
.hero-area .left-content .content .links a {
  margin-left: 0px;
}
.hero-area .right-img {
  text-align: center;
  position: relative;
}

.hero-area .right-img .img {
  position: absolute;
  top: -95px;
  left: 50%;
  max-width: 400px;
  width: auto;
  animation: shapeani3 5s linear infinite;
  /* margin-left: 180px; */
}

/*---------------------------
** About Area Start
---------------------------*/
.about {
  padding: 110px 0px 120px;
  position: relative;
  background-image: url(/images/circle.png), url(/images/rectangle.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: 21%;
  background-position: -14% 156px, 110% -14%;
}
.about .left-shape2 {
  position: absolute;
  bottom: 0px;
  left: -20px;
  top: 200px;
  z-index: -9;
}
.about .box {
  text-align: center;
  background: #F7F9FF;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease-in;
}
.about .box::after {
  position: absolute;
  content: "";
  bottom: 0px;
  left: 0px;
  height: 4px;
  width: 0%;
  background-color: var(--app-orange);
  transition: all 0.3s ease-in;
}
.about .box .inner-box {
  width: 100%;
  position: relative;
  z-index: 99;
  padding: 27px 25px 35px;
  transition: 0.3s ease-in;
}
.about .box .inner-box .icon {
  font-size: 55px;
}
.about .box .inner-box .icon i {
  background-color: black;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in;
}
.about .box .inner-box .title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  color: #242424;
  margin: 9px 0px 22px;
  transition: all 0.3s ease-in;
}
.about .box .inner-box .text {
  margin-bottom: 0px;
  transition: all 0.3s ease-in;
}
.about .box:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0px 20px 20px 2px rgba(0, 0, 0, 0.1);
}
.about .box:hover::after {
  width: 100%;
}

/*---------------------------
** We are best Area Start
---------------------------*/
.whaybest {
  position: relative;
  padding: 110px 0px 83px;
  background: #F7F9FF;
}
.whaybest .row-one {
  margin-bottom: 55px;
}
.whaybest .info .info-title {
  text-align: left;
  margin-bottom: 23px;
  display: block;
}
.whaybest .info .info-title span {
  background-image: linear-gradient(55deg, rgba(253, 110, 0, 0.5), rgba(26, 243, 66, 0.5));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.whaybest .about-img {
  text-align: center;
  padding: 0px 10px;
  align-self: center;
  width: 100%;
}
.whaybest .about-img img {
  width: 100%;
  animation: shapeani3 5s linear infinite;
  border-top-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
}
.whaybest .feature-list {
  padding-left: 0px;
  margin-top: 59px;
  display: flex;
  flex-wrap: wrap;
  
}
/* Added another class under the feature list to remove the flex */
.feature-list-2{
  display: inline-block;
 
}

.whaybest .feature-list li {
  max-width: 50%;
  flex: 50%;
  padding-left: 15px;
  padding-right: 15px;
  list-style: none;
  cursor: pointer;
  margin-bottom: 8px;
}
.whaybest .feature-list li:last-child {
  margin-bottom: 0px;
}
.whaybest .feature-list li .icon {
  margin-bottom: 14px;
}
.whaybest .feature-list li .icon i {
  background-color: var(--app-orange);
  /* background-image: linear-gradient(55deg,rgba(253, 131, 0, 1), rgba(26, 243, 66, 1));*/
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 55px;
  line-height: 65px;
}
.card-img-top{
  height: 12em;
  object-fit: cover;
}
.__Bts8o3vSJh2{
  margin-bottom: 0px;
  font-weight: 500;
}
.__Bts8o3vSJh2 a:hover{
  color: var(--app-orange);
}
.__Nys873gSOg1H:hover{
  color: var(--app-orange)
}
.product__card{
  padding-top: 0.75rem;
  padding-bottom: 0.5rem;
}
.whaybest .feature-list li .content {
  flex: 1;
}

.whaybest.feature-list li .content .btn{
  margin-top: 42px;
  padding-right: 15px;

}


.whaybest .feature-list li .content h4 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 5px;
}
.whaybest .feature-list li .content p {
  font-size: 16px;
  line-height: 26px;
  width: 100%;
}
.whaybest .feature-list li:hover .icon::after {
  border-color: #d43f8d;
  animation: shapeani2 10s linear infinite;
}

/*---------------------------

/*-----------------------------
** Pricing Area Start
------------------------------*/
.pricing {
  padding: 110px 0px 120px;
  position: relative;
}
.pricing .product-slider .item .single-product {
  background: rgba(2, 80, 197, 0.05);
  text-align: center;
}
.pricing .product-slider .item .single-product .img {
  text-align: center;
  background: rgba(212, 63, 141, 0.2);
  padding: 30px 30px 24px;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.pricing .product-slider .item .single-product .img .links {
  display: inline-block;
  position: absolute;
  top: 101%;
  left: 0;
  text-align: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease-in;
  opacity: 0;
}
.pricing .product-slider .item .single-product .img .links .mybtn1 {
  background: rgba(255, 255, 255, 0.8);
  color: #000;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s linear;
}
.pricing .product-slider .item .single-product .img .links .mybtn1:hover {
  color: #fff;
}
.pricing .product-slider .item .single-product .content {
  padding: 25px 27px;
}

.pricing .product-slider .item .single-product .content .title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 800;
  margin-bottom: 0px;
}
.pricing .product-slider .item .single-product .content .price {
  margin-bottom: 0px;
}
.pricing .product-slider .item .single-product .content .price .new-price {
  display: inline-block;
  font-size: 18px;
  line-height: 36px;
  font-weight: 700;
  background-color: #000;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 7px;
  letter-spacing: -1px;
  margin-bottom: 5px;
}
.pricing .product-slider .item .single-product .content .price small {
  font-size: 18px;
  font-weight: 700;
  color: #888;
  display: inline-block;
}
.pricing .product-slider .item .single-product:hover .img .links {
  top: 0px;
  opacity: 1;
}
.pricing .product-slider .owl-controls .owl-nav {
  display: none;
}
.container .viewlinks{
  width: 100%;
  text-align: center;
  margin-top: 50px;
}

 

/*-----------------------------
** Pricing Area end
------------------------------*/

/* ----------Product Section Start -------------*/
.product-section{
  max-width:100%;
  margin: 3rem 3rem ;
  display: grid;
  grid-template-columns: auto auto auto auto ;
  align-items: center;
  background-color: rgba(198, 194, 194, 0.1);
}

.product-section  .product-item {
  margin-right: 1rem;
  margin-left: 1rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
  height: 31rem;
  padding: 0rem 0rem 2rem 0rem;
  text-align: center;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 1rem 1rem 2rem 0rem rgb(163, 163, 163);
}

.buy-btn{
  color: white;
  margin: auto;
}

.product-section  .product-item img{
  width: 95%;
  height: 7rem;
  margin: 0rem 0.5rem;
 
}

.product-section  .product-item .card-content{
  width: 90%;
  margin: 0.7rem;
  text-align: center;

}

.product-section  .product-item .card-content h1{
  font-size: 1rem ;
  margin-top: 1.5rem;
  padding: 0.5rem 1rem;
  font-weight: 700;
}

.product-section  .product-item .card-content p{
  width: 100%;
  margin: 0.5rem 0rem;
  padding: 0rem 1rem;
  text-align: left;
  font-size: 14px;
}

.product-section  .product-item .card-content h4{
  margin: 1rem 0rem;
  font-size: 1rem;
}

.product-section  .product-item .card-content  .btns{
  margin-top: 2rem;
}


/* ------- Product Section End*/
/*---------------------------
** Testimonial Area Start
---------------------------*/
.testimonial-area {
  padding: 110px 0px 120px;
  position: relative;
  background: #F7F9FF;
}
.testimonial-area .section-title {
  margin-bottom: 0px;
}

.testimonial-area .testimonial-slider .owl-stage-outer {
  overflow: hidden;
}
.testimonial-area .testimonial-slider .client {
  margin: 65px 30px 65px;
  padding: 85px 30px 27px;
  text-align: center;
  position: relative;
  background: #fff;
  box-shadow: 0px 0px 28px 2px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in;
}

.testimonial-area .testimonial-slider .client .client-say {
  margin-bottom: 19px;
}
.testimonial-area .testimonial-slider .client .client-name {
  color: #242424;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 0px;
  text-transform: uppercase;
}
.testimonial-area .testimonial-slider .client .client-name a {
  color: #242424;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  text-transform: capitalize;
}
.testimonial-area .testimonial-slider .client .designation {
  color: #555;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0px;
}
.testimonial-area .testimonial-slider .owl-controls {
  display: block;
  text-align: center;
  margin-top: -24px;
  position: relative;
  z-index: 91;
}
.testimonial-area .testimonial-slider .owl-controls .owl-nav {
  display: inline-block;
}
.testimonial-area .testimonial-slider .owl-controls .owl-nav div {
  width: 40px;
  height: 40px;
  display: inline-block;
  line-height: 41px;
  text-align: center;
  margin: 0px 5px;
  border-radius: 50%;
  font-size: 22px;
  transition: all 0.3s ease-in;
  background: rgba(2, 80, 197, 0.07);
  color: #242424;
}
.testimonial-area .testimonial-slider .owl-controls .owl-nav div:hover {
  background: var(--app-orange);
  color: #fff;
}

/*---------------------------
** Testimonial Area End
---------------------------*/
/*-----------------------------
** FAQ Area Start
------------------------------*/
.faq {
  padding: 110px 0px 100px;
  position: relative;
  background: #F7F9FF;
}
.faq .right-shape {
  position: absolute;
  right: 0;
  top: 350px;
}
.faq .accordion .panel {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
}
.faq .accordion .panel::after {
  position: absolute;
  content: " ";
  top: 0;
  left: 0;
  height: 100%;
  width: 4px;
  background-image: linear-gradient(55deg,rgba(253, 110, 0, 1), rgba(26, 243, 66, 1));
}
.faq .accordion .panel .panel-body {
  padding: 4px 20px 7px;
}

/* An anchor tag for redirection in FAQ 2 */
.faq .accordion .panel .panel-body a{
color: #000;
text-decoration: none;
color: var(--app-orange);
}

.faq .accordion .panel .panel-body a:hover{
  color: red;
}


.faq .accordion .panel-title {
  display: block;
  width: 100%;
  background: #fff;
  padding: 15px 40px 15px 20px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0px;
  color: #242424;
  position: relative;
  border-radius: 3px;
  cursor: pointer;
}
.faq .accordion .panel-title::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 100%;
  border-radius: 3px 0px 0px 3px;
  right: 0;
  top: 0;
  text-align: center;
}
.faq .accordion .panel-title::before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  text-align: center;
  z-index: 1;
  font-size: 12px;
  transition: 0.3s ease-in;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  line-height: 22px;
  border-radius: 50%;
  color: #555;
  margin-right: 10px;
}
.faq .accordion .panel-title[aria-expanded=true]::before {
  font-family: "Font Awesome 5 Free";
  content: "";
}

.faq .faq-img {
  max-width: 1200px;
  max-height: 490px;
}

/*-----------------------------
** Contact Area Start
------------------------------*/
.contact {
  padding: 110px 0px 90px;
  position: relative;
}
.contact .info-box {
  background: #fff;
  margin-bottom: 30px;
  padding: 30px 30px 22px;
  position: relative;
  cursor: pointer;
  text-align: center;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.08);
}
.contact .info-box .left {
  margin-bottom: 25px;
}
.contact .info-box .left .icon {
  font-size: 30px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  text-align: center;
  line-height: 70px;
  display: inline-block;
  position: relative;
}
.contact .info-box .left .icon::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px dashed #d1d1d1;
  animation: shapeani2 10s linear infinite;
}
.contact .info-box .left .icon i {
  background-color: var(--app-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact .info-box .right {
  text-align: center;
}

.contact .info-box:hover .left .icon::after {
  border: 1px dashed rgba(253, 110, 0, 0.5), rgba(26, 243, 66, 0.5);
}
.contact .contact-form-wrapper {
  background: #fff;
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.08);
  padding: 40px 25px 40px;
  transition: 0.3s ease-in;
}
.contact .contact-form-wrapper .section-title {
  margin-bottom: 48px;
}
.contact .contact-form-wrapper #contact-form textarea {
  margin-bottom: 9px;
}
.contact .contact-form-wrapper #contact-form .mybtn1 {
  margin-top: 7px;
  background:  #f28716;
  color: #ffffff;
  transition: 0.3s;
}
.contact .contact-form-wrapper #contact-form .mybtn1:hover {
  color: #fff;
}
.contact .google_map_wrapper {
  padding: 0px !important;
}
.contact .google_map_wrapper iframe {
  width: 100% !important;
  height: 405px !important;
  margin: 0px;
  padding: 0px;
}

/*-----------------------------
** Contact Area End
------------------------------*/

/* Subscription Area start-------- */

.subscribe-section {
  padding: 94px 0px 100px;
  background: url("/images/map.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.subscribe-section .newsletter-form-area {
  position: relative;
  text-align: center;
}
.subscribe-section .newsletter-form-area input {
  width: 100%;
  height: 60px;
  border-radius: 50px;
  border: 1px solid rgba(212, 63, 141, 0.1);
  padding: 0px 30px;
  background: none;
  color: #242424;
  background: #fff;
  box-shadow: 0px 0px 28px 2px rgba(0, 0, 0, 0.1);
}
.subscribe-section .newsletter-form-area button {
  position: absolute;
  top: 5px;
  right: 5px;
  width: auto;
  height: 50px;
  border-radius: 50px;
  border: 0px;
  color: #fff;
  font-size: 16px;
  padding: 0px 25px;
  background-color: var(--app-orange);
  transition: all 0.3s ease-in;
}
.subscribe-section .newsletter-form-area button c span {
  margin-right: 5px;
}
.subscribe-section .newsletter-form-area button:hover {
  background-color: #3fa249;
}
.subscribe-section .newsletter-form-area button:focus {
  outline: 0px;
}

/* Subscription Area end-------- */
/* -----------------------------
 Footer Area Start
------------------------------*/
.footer {
  overflow: hidden;
  position: relative;
  padding: 12px 0px 0px;
  background: #081826;
  background-repeat: no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #081826; 
  z-index: 1; 
}
.footer .footer-info-area {
  text-align: center;
  position: relative;
  z-index: 10;
}
.footer .footer-info-area .footer-logo {
  margin-bottom: 40px;
  display: block;
   width: 200px;
  margin: auto;
  border-radius: 0.5rem;
}
.footer .footer-info-area .footer-logo .logo-link {
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  text-transform: uppercase;
}
.footer .footer-info-area .footer-logo img {
  max-width: 150px;
}
.footer .footer-info-area .text {
  margin-bottom: 24px;
  margin-top: 30px;
}

.footer .footer-items a{
  padding-left: 1rem;
  color: rgb(236,246,246) !important;

}
 /*Added a transition for footer anchor  */
.footer .footer-items a:hover{
color: var(--app-orange);
}

.footer .fotter-social-links {
  text-align: center;
  margin-top: 35px;
  position: relative;
  z-index: 10;
}
.footer .fotter-social-links ul {
  padding-left: 0px;
  margin-left: 0px;
}
.footer .fotter-social-links ul li {
  display: inline-block;
}
.footer .fotter-social-links ul li a {
  font-size: 14px;
  width: 35px;
  height: 35px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  margin: 0px 3px;
  color: #fff;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease-in;
}
.footer .fotter-social-links ul li a.facebook {
  background: #0069f7;
  border-color: #0069f7;
}
.footer .fotter-social-links ul li a.twitter {
  background: #00c6f7;
  border-color: #00c6f7;
}
.footer .fotter-social-links ul li a.linkedin {
  background: #007bb5;
  border-color: #007bb5;
}

.footer .fotter-social-links ul li a.google {
  background: #d1062c;
  border-color: #d1062c;
}
.footer .copy-bg {
  padding: 20px 0px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  margin-top: 4px;
  position: relative;
  z-index: 10;
  
}
.footer .copy-bg p {
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 0px;
  color: whitesmoke;
}
.footer .copy-bg a {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 0px;
  transition: 0.3s ease-in;
}
.footer .copy-bg a:hover {
  color: var(--app-orange);
}

.footer-widget .title {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  color: white;
}
.footer-widget ul {
  padding-left: 0px;
  margin-bottom: 0px;
}
.footer-widget ul li {
  list-style: none;
}
.footer-widget ul li a {
  color: white;
  transition: all 0.3s ease-in;
}
.footer-widget ul li a:hover {
  color: var(--app-orange);
}
.footer-widget ul li i {
  font-size: 14px;
  margin-right: 4px;
}

.support-link-widget .title,
.use-full-link-widget .title {
  margin-bottom: 11px;
}
.support-link-widget .link-list li,
.use-full-link-widget .link-list li {
  border-bottom: 2px dotted rgba(0, 0, 0, 0.3);
  padding: 9px 0;
  display: block;
}
.support-link-widget .link-list li:last-child,
.use-full-link-widget .link-list li:last-child {
  border-bottom: 0px;
}

.twitter-widget .title {
  margin-bottom: 19px;
}
.twitter-widget .content i {
  color: #00c6f7;
  font-size: 16px;
  margin-right: 5px;
  display: inline-block;
}
.twitter-widget .content p {
  margin-bottom: 0px;
  display: inline-block;
}
.twitter-widget .content a {
  display: block;
  color: #0069f7;
  font-style: italic;
  margin-top: 8px;
}
.twitter-widget .owl-controls {
  display: block;
  text-align: center;
}
.twitter-widget .owl-controls .owl-nav {
  position: absolute;
  z-index: 9999;
  bottom: -57px;
  left: 0;
  display: inline-block;
}
.twitter-widget .owl-controls .owl-nav div {
  font-size: 0px;
  position: relative;
  width: 35px;
  height: 35px;
  display: inline-block;
}
.twitter-widget .owl-controls .owl-nav div.owl-next {
  margin-left: 15px;
}
.twitter-widget .owl-controls .owl-nav div.owl-next::after {
  position: absolute;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  line-height: 35px;
  color: #fff;
  border-radius: 50%;
  background: #fff;
  background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
}
.twitter-widget .owl-controls .owl-nav div.owl-prev {
  margin-left: 0px;
}
.twitter-widget .owl-controls .owl-nav div.owl-prev::after {
  position: absolute;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 14px;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  line-height: 35px;
  color: #fff;
  border-radius: 50%;
  background: #fff;
  background-image: linear-gradient(55deg, #0250c5 0%, #d43f8d 100%);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
}

/*-----------------------------
** Footer Area End
------------------------------*/
/*-----------------------------
** Index-2 Area Start
------------------------------*/
.index2 .hero-area {
  padding: 185px 0px 118px;
  overflow: visible;
}
.index2 .hero-area .curve:before {
  border-right: 50vw solid transparent;
}
.index2 .hero-area .curve:after {
  border-left: 50vw solid transparent;
}
.index2 .hero-area .curve:after, .index2 .hero-area .curve:before {
  border-bottom: 300px solid #fff;
}
.index2 .hero-area .right-img .img {
  position: absolute;
  top: 50px;
  left: auto;
  right: 30px;
  max-width: 600px;
  width: auto;
  z-index: 9;
}
.index2 .whaybest .about-img {
  padding: 0px;
}
.index2 .feature .feature-circle {
  display: none;
}
.index2 .dealofweek .deal-slider-area .content .left-area {
  text-align: center;
  padding: 0px 0px;
}
.index2 .pricing .product-slider .item .single-product .img {
  height: 250px;
  display: flex;
}
.index2 .pricing .product-slider .item .single-product .img img {
  align-self: center;
}
.index2 .pricing .product-slider .item .single-product .img {
  background: rgba(212, 63, 141, 0.1);
}


/* Signin Area Start */
.auth {
  padding: 120px 0px 120px;
}
.auth .sign-form {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  padding: 33px 30px 40px;
}
.auth .sign-form .heading {
  text-align: center;
  margin-bottom: 26px;
}
.auth .sign-form .heading .title {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  margin-bottom: 0px;
}
.auth .sign-form .heading .subtitle {
  font-size: 16px;
  line-height: 26px;
}
.auth .sign-form .form-control {
  margin-bottom: 15px;
  height: 50px;
  padding: 0px 20px;
  font-size: 14px;
}
.auth .sign-form .custom-checkbox {
  margin-top: 25px;
  font-size: 14px;
  line-height: 24px;
}
.auth .sign-form .custom-checkbox .custom-control-label a {
  color: #0250c5;
}
.auth .sign-form .base-btn1 {
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0px;
  border-radius: 4px;
  margin-top: 27px;
  margin-bottom: 25px;
}
.auth .sign-form .reg-text {
  font-size: 14px;
}
.auth .sign-form .reg-text a {
  font-weight: 600;
  transition: all 0.3s ease-in;
}
.auth .sign-form .reg-text a:hover {
  color: #0250c5;
}
.discount-amount{
  margin-top: 0px;
  font-size: 22px;
  color: #54ba14;
  margin-bottom: 16px;
}
.bigbtn {
  width: 100%;
  background: #0250c5;
  border: 0px;
  cursor: pointer;
  color: #fff;
  padding: 9px 20px;
  border-radius: 3px;
  box-shadow: 2px 2px 15px 0px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease-in;
}
.bigbtn:hover {
  background: #d43f8d;
}

.h-100v {
  height: 100vh !important;
}

/* Signin Area End */



.checkout {
  background-color: white;
  display: flex;
  width: 60%;
  height: 88vh;
  margin-top: 10%;
  margin-left: 13%;
  margin: auto;
  margin-top: 2%;
  border-radius: 10px;
}
button {
  cursor: pointer;
}
.orderSummary{
  width: 50%;
}
.customerinfo {
  width: 50%;
  padding: 25px;
}
.info-box {
  margin-top: 20px;
}
.info-box-p {
  margin-bottom: 12px;
  font-size: 14px;
}
.text-area {
  width: 100%;
  border-radius: 2px;
}
.info-box-b {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 20px;
}
.info-box .text {
  padding-top: 7px;
  padding-bottom: 7px;
  width: 100%;
  background-color: white;
  outline: none;
  border: none;
  border-bottom: 2px solid rgba(128, 128, 128, 0.291);
  height: 18px;
  margin-bottom: 6px;
  transition: 0.3s ease all;
  -ms-transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
}
.info-box .text:focus{
  border: 0px;
  border-bottom: 2px solid var(--app-orange);
}
.payment {
  margin-top: 20px;
  margin-bottom: 20px;
  width: 63%;
}
.e-transfer {
  width: 100px;
  height: 30px;
  background-color: white;
  border: 1px solid rgba(255, 166, 0, 0.466);
}
.bank {
  color: var(--app-orange);
  padding-right: 2px;
}
.online {
  width: 100px;
  height: 30px;
  margin-left: 10%;
  background-color: white;
  border: 1px solid rgba(255, 166, 0, 0.863);
}

.__ScbeoSj227D9eh2__Sv181 {
  width: 100%;
  margin-top: 30px;
  padding: 15px 0;
  border-radius: 4px;
  outline: none;
  background-color: var(--app-orange);
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: aliceblue;
}
.checkoutlogo{
  text-align: center;
  margin-top: 20px;
}
.checkoutlogo img{
  width: 200px;
}

.ordersummary {
  background-color: #F4F5FA;
  width: 50%;
  border-radius: 12px;
  height: 98%;
  margin-top: 5px;
  margin-left: 6px;
}

.price {
  /* background-color: aqua; */
  text-align: center;
  border-bottom: 1px solid rgb(214, 207, 207);
  margin-top: 20%;
  margin-right: 20px;
  margin-left: 20px;
  padding-bottom: 20px;
}

.price .price-head {
  font-size: 15px;
  color: rgb(122 122 122);
    font-weight: 500;
  padding-bottom: 10px;
  padding-top: 10px;
}
.customer-p{
  color: rgb(122 122 122);
  font-weight: 500;
  margin-top: 0px;
}
.price-amount {
  padding-bottom: 10px;
  font-size: 2em;
  margin-bottom: 0px;
}
.secure-payment {
  font-size: 10px;
  font-weight: 200;
  padding-bottom: 30px;
}

.summary {
  margin-top: 5%;
  margin-bottom: 30%;
  border-bottom: 1px solid rgb(214, 207, 207);
  margin-right: 20px;
  margin-left: 20px;
}
.order-head {
  font-size: 14px;
  color: rgb(82, 97, 111);  
  margin-bottom: 10px;
  font-weight: 500;
}

.item-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.item-price {
  float: right;
  margin-top: -20px;
  font-size: 12px;
  font-weight: 300;
  margin-right: 10px;
}

.item-qty {
  font-size: 18px;
  margin-left: 10px;
  font-weight: 300;
  padding-bottom: 30px;
}
.item-qty1 {
  float: right;
  margin-top: -45px;
  font-size: 12px;
  font-weight: 300;
  margin-right: 10px;
}

.total {
  padding-top: 30px;
  margin-top: 30px;
  margin-right: 20px;
  margin-left: 20px;
}
.total-head {
  font-size: 18px;
  font-weight: 700;
  margin-left: 10px;
}
.total-price {
  float: right;
  font-size: 18px;
  font-weight: 700;
  margin-right: 10px;
}
.__dUS2Yt38SK2j {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}



.custom-radio input 
{
  display: none;
}

.radio-btn 
{
  width: 100%;
  border: 3px solid transparent;
  display: inline-block;
  border-radius: 10px;
  position: relative;
  text-align: center;
  box-shadow: 0 0 20px #c3c3c367;
  cursor: pointer;
}

.radio-btn > i {
  color: #ffffff;
  background-color: #FFDAE9;
  font-size: 20px;
  position: absolute;
  left: 50%;
  border-radius: 50px;
  padding: 3px;
  transition: 0.5s;
  pointer-events: none;
  opacity: 0;
}

.radio-btn .hobbies-icon 
{
  width: 100%;
}
.radio-btn .hobbies-icon img
{
  display:block;
  width:100%;
  margin-bottom:20px;
  
}
.radio-btn .hobbies-icon i 
{
  color: var(--app-orange);
  line-height: 80px;
  font-size: 60px;
}

.radio-btn .hobbies-icon h3 
{
  color: #555;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  padding: 11px 0;
}

.custom-radio input:checked + .radio-btn 
{
  border: 2px solid var(--app-orange);
  background-color: #f2881616;
}
.custom-radio input:checked + .radio-btn .hobbies-icon h3
{
  color: var(--app-orange);
}
.custom-radio .radio-btn 
{
  border: 2px solid transparent;
}


/* ipad stylying */
@media only screen and (max-width: 1162px) {
  .checkout {
    /* height: 75vh; */
    width: 75%;
  }
  .payment {
    margin-left: 15%;
  }
  .e-transfer {
    margin-bottom: 20px;
  }
  .ordersummary {
    margin-top: 6px;
  }
}
@media only screen and (max-width: 1045px) {
  .checkout {
    width: 85%;
  }
}
@media only screen and (max-width: 971px) {
}
@media only screen and (max-width: 971px) {
  .price {
    margin-right: 10px;
    margin-left: 10px;
  }
  .summary {
    margin-right: 10px;
    margin-left: 10px;
  }
  .total {
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media only screen and (max-width: 897px) {
  .price {
    margin-right: 5px;
    margin-left: 5px;
  }
  .summary {
    margin-right: 5px;
    margin-left: 5px;
  }
  .total {
    margin-right: 5px;
    margin-left: 5px;
  }
  .button {
    margin-left: 15%;
  }
}
@media only screen and (max-width: 897px) {
  .info-box .text {
    height: 25px;
  }
  .payment {
    margin-bottom: 15px;
  }
  .e-transfer {
    margin-bottom: 10px;
  }
  .button {
    margin-top: 25px;
  }
}
@media only screen and (max-width: 850px) {
  .checkout {
    width: 95%;
  }
}
@media only screen and (max-width: 743px) {
  .orderSummary{
    padding: 0 40px;
  }
  .checkoutlogo{
    padding-top: 20px;
    background: #fff;
    margin-top: 0;
  }
  .summary {
    margin: 0 !important;
  }
  .total{
    margin: 0;
  }
  .customerinfo{
    width: auto;
  }
  .checkout{
    display: block;
    margin-top: 0;
    height: auto;
    width: 100%;
    border-radius: 0;
  }
  .ordersummary{
    height: auto;
    padding: 20px;
    margin-top: 40px;
    width: auto;
    margin: 0;
  }
  .price .price-head{
    margin-top: 0;
  }
  .price{
    margin-top: 0px;
  }
  .price-amount{
    margin: 0;
  }
  .price-amount{
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 670px) {
  .checkout {
    display: block;
    height: 100%;
  }
  
  .customerinfo {
    /* margin-top: -3%; */
  }
  .summary {
    margin-right: 10px;
    margin-left: 10px;
  }
  .payment_type {
    width: 60% !important;
  }
  .button {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .item-title {
    margin-left: 10px;
  }
  .total {
    padding-bottom: 20px;
  }
}

.success-icon{
  width: 250px;
  margin: auto;
}

.success-main{
  background-color: white;
  margin: auto;
  width: 50%;
  border: none;
  border-radius: 0.5rem;
  padding-bottom: 2rem;
  margin-top: 4em;
}
.__SC9SnSOp1dnO{
  display: flex;
  width: 230px;
  margin: 70px auto 0;
}
.__SC9SnSOp1dnO img{
  width: 230px;
  margin: 30px auto 0px;
}
.success-info{
  margin-top: 1rem;
  text-align: center;
  padding: 0.5rem 1rem;
}

.success-info h1{
  font-size: 22px;
  font-weight: 600;
  width: 80%;
  margin: auto;
}

.success-info p{
  font-size: 24px;
  font-weight: 300;
  font-style: normal;
}

.success-btns{
  text-align: center;
  margin-top: 1rem;
  padding-bottom: 2rem;
}

.cont-btn{
  padding: 20px 23px;
  background: linear-gradient(to bottom right, rgba(223, 85, 16, 0.815) 10%,var(--app-orange));
  border-radius: 0.2rem;
  border: none;
  color: white;
  font-size: 13px;
}

.cont-btn:hover{
  background-color: var(--app-orange);
}

.view-order{
  padding: 0.7rem;
  margin-right: 1rem;
  width: 20%;
  border: none;
  border-radius: 0.2rem;
  color: rgb(109, 104, 104);
  font-size: 13px;
}

.view-order:hover{
  background-color: rgb(0, 0, 0);
  color: white;
}


/* ----------------------RESPONSIVENESS----------- */
@media screen and (max-width: 1199px) {
  .success-main{
      width: 60%;
  }
}

@media screen and (max-width: 991px){
  
  .success-main{
      width: 65%;
  }
}

@media screen and (max-width: 850px){
  .success-info p{
      font-size: 22px;
  }
}

@media screen and (max-width: 636px){
  
  .success-info p{
      font-size: 20px;
  }
  .success-main{
    width: 85%;
  }
}

@media screen and (max-width: 517px){
  .success-info{
  }
  
  .success-info h1{
      font-size: 17px;
      font-weight: 600;
  }
  
  .success-info p{
      font-size: 18px;
  }
  .success-icon{
    width: 200px;
  }
  .__SC9SnSOp1dnO img{
    width: 177px;
  }
}


.registration-main{
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
}

.login-section{
  width: 80%;
  margin: auto;
  background: #fff;
  padding-bottom: 2rem;
  border-radius: 0.5rem;
}

.login-info .__uS99SH29e0{
  margin-top: 0.5rem;
  font-size: 14px;
}

.login-form{
  margin: 0.5rem 0;
}
.__MuHS37hUSDk312o{
  display: flex;
  width: 100%;
  position: relative;
}
input, select, textarea {
  font-family: "Inter", sans-serif;
}
.login-form input, .login-form select{
  position: relative;
  width: 100%;
  margin-top: 14px;
  font-size: 16px;
  padding: 17px 10px;
  outline: none;
  border: 1px solid #a8a8a8;
  border-radius: 5px;
  font-weight: 500;
  color: #6d6d6d;
  font-family: "Inter", sans-serif;
}
.login-form button{
  width: 100%;
  height: 45px;
  border: none;
  background-color: var(--app-orange);
  border-radius: 8px;
  color: white;
  font-size: 16px;
}
.login-form button:hover{
  opacity: .8;
}
.login-form input:focus{
  outline: none;
  border: 1px solid var(--app-orange);
}
.__MMZKZ0wjddjSql{
font-family: "Caveat", handwriting;
font-weight: 700;
}

.login-btn button{
  width: 100%;
  height: 45px;
  border: none;
  background-color: white;
  border-radius: 8px;
  font-weight: 600;
  color: black;
  font-size: 14px;
  transition: 1s;
  border: 1px solid #d2d2d2;
  font-family: "Inter", sans-serif;
}
.login-btn button:hover{
  background-color: #eaeaea;
}

.login-btn button span{
  position: relative;
  top: 10%;
}

.login-btn button img{
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

.sign-up-guide{
  text-align: center;
  width: 100%;
}

.sign-up-guide span{
  color: rgb(0, 0, 0);
  transition: 1s;
}


/* -------Sign up section----- */

.signup-section{
  position: relative;
  background: url(/images/login-img.jpg);
  background-size: cover;
  overflow: hidden;
}
.signup-section-colour{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.747);
}
.signup-info{
  position: relative;
  top: 20%;
  z-index: 30;
  margin: 1rem 5rem;
  color: white;
}

.signup-info p{
  font-size: 30px;
  text-align: left;
}

.account-btn{
  margin-top: 2rem;
  height: 3rem;
  border: none;
  border-radius: 0.2rem;
  color: white;
  color: var(--app-orange);
  opacity: 0.8;
  transition: 0.3s ease-in all;
  font-size: 20px;
  background-color: #fff;
  padding: 0 20px;
}
.account-btn:hover{
  opacity: 1;
}
.__So0JSNi2e0Sn{
  font-size: 40px;
  text-align: left;
  color: #fff;
}
.signup-info ul{
  list-style: square;
  margin-left: 20px;
}
.signup-info ul li{
  list-style: square;
  margin-bottom: 10px;
  font-size: 18px;
}
.pPS8US2l2{
  display: flex;
  justify-content: end;
  margin: 16px 0;
}
.pPS8US2l2 a{
  font-weight: 500;
  color: #696969;
}
.__S919ciIDwi2ie{
  width: 100%;
  text-align: center;
  color: rgba(128, 128, 128, 0.944);
  }
 
  .sign-up-guide p{
    color: rgba(0, 0, 0, 0.349);
    font-size: 14px;
}
/* -----------------------------RESPONSIVENESS------------------- */

@media screen and (max-width: 1199px){
  
  .login-form{
      margin-bottom: 0.5rem;
  }  
  .login-btn button span{
      position: relative;
      top: 10%;
  }
  
  .login-btn button img{
      width: 16px;
      height: 16px;
      margin-right: 10px;
  }
  
  /* -------Sign up section----- */
  
  .signup-section-colour{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.747);
  }
  .signup-info{
      position: relative;
      top: 20%;
      z-index: 30;
      margin: 1rem 5rem;
      color: white;
  }
}

@media screen and (max-width: 991px){
.login-form{
  margin: 0.5rem 0;
}
.login-btn button span{
  position: relative;
  top: 10%;
}

.login-btn button img{
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

/* -------Sign up section----- */

.signup-section-colour{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.747);
}
.signup-info{
  position: relative;
  top: 20%;
  z-index: 30;
  margin: 1rem 2rem 1rem 5rem;
  color: white !important;
}

}
.auth__logo img{
  width: 156px;
}
.login-info h1{
  font-size: 20px;
}
@media screen and (max-width: 837px){
  .login-form{
      margin: 0.5rem 0;
  }  
  .login-btn button span{
      position: relative;
      top: 10%;
  }
  
  .login-btn button img{
      width: 16px;
      height: 16px;
      margin-right: 10px;
  }
  
  
  /* -------Sign up section----- */
  
  .signup-section-colour{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.747);
  }
  .signup-info{
      position: relative;
      top: 20%;
      z-index: 30;
      margin: 1rem 2rem 1rem 5rem;
      color: white;
  } 
  
}

@media screen and (max-width: 771px){
  .grid-cols-2{
    grid-template-columns: 1fr;
  }
  .auth__logo{
    margin-bottom: 20px;
  }
  .login-form{
      margin: 0.5rem 0;
  }
  
  .login-btn button span{
      position: relative;
      top: 10%;
  }
  
  .login-btn button img{
      width: 16px;
      height: 16px;
      margin-right: 10px;
  }
  
  /* -------Sign up section----- */
  
  .signup-section-colour{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.747);
  }
  .signup-info{
      position: relative;
      top: 20%;
      z-index: 30;
      margin: 1rem 2rem 1rem 3rem;
      color: white;
  }  
}

@media screen and (max-width: 718px){
  .signup-info{
      position: relative;
      top: 20%;
      z-index: 30;
      margin: 1rem 2rem 1rem 2rem;
      color: white;
  }  
}

@media screen and (max-width: 645px){

  .login-btn button span{
      position: relative;
      top: 8%;
  }
  
  .login-btn button img{
      width: 12px;
      height: 12px;
      margin-right: 10px;
  }
  
  .signup-info{
      position: relative;
      top: 20%;
      z-index: 30;
      margin: 1rem 1rem 1rem 2rem;
      color: white;
  }
}

@media screen and (max-width: 554px){
  .registration-main{
      width: 100%;
      display: block;
      
  }
  .signup-section{
      display: none;
  }
  .login-form{
      margin: 0.5rem 0;
  }
  
  .login-btn button span{
      position: relative;
      top: 10%;
  }
  
  .login-btn button img{
      width: 16px;
      height: 16px;
      margin-right: 10px;
  }
}





.__DHUhsfD28yg3{
  position: absolute;
  width: 40px;
  background: #f1f1f1;
  top: 15px;
    z-index: 1;
    padding: 17px 10px;
  border-top-left-radius: 5px;
  text-align: center;
  cursor: pointer;
  font-weight: 500;
  border-right: 1px solid #a8a8a8;
  left: 1px;
  font-size: 16px;
  color: #6d6d6d;
  border-bottom-left-radius: 5px;
}
#numberInput{
  padding-left: 70px;
}
#dialCodeDropdown.focused{
  background: #feeed3;
  transition: 0.3s ease all;
  -moz-transition: 0.3s ease all;
  -webkit-transition: 0.3s ease all;
}
#county__dropdown__list{
  position: absolute;
  z-index: 1;
  top: 52px;
  background: #fff;
  width: 60%;
  box-shadow: 3px 3px 5px 0px #ccc;
  border: 1px solid #ccc;
  display: none;
}

@media(max-width:992px) {
  #county__dropdown__list{
    width: 80%;
  }
}
@media(max-width:992px) {
  .registration-main{
    grid-template-columns: 1fr;
    height: 100%;
    padding-top: 40px;
  }
}
#county__dropdown__list li{
  padding: 10px 16px;
  cursor: pointer;
  font-size: 13px;
}

#county__dropdown__list li:hover{
  background-color: #ececec;
  color: #f28716;
  font-weight: 500;
}
#county__dropdown__list.show{
  display: block;
}