:root
{
    --primaryColor: #5151FF;
    --primaryColorHover: black;
}
body {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 14px;
  color: #6d6d6d;
  overflow-x: hidden; }

a {
  outline: medium none !important;
  color: var(--primaryColor);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  a:focus {
    text-decoration: none !important; }
  a:hover {
    color: var(--primaryColorHover);
    text-decoration: none !important; }

input {
  outline: medium none !important;
  color: #5151FF; }
 .section-title h2 {
  font-size: 1.8rem !important;
  font-weight: bold !important;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: normal;
  color: #001935;
  margin-top: 0px;
  font-weight: 600;
  text-transform: capitalize; }
  h1 a,
  h2 a,
  h3 a,
  h4 a,
  h5 a,
  h6 a {
    color: inherit; }

label {
  /*font-weight: 600;*/
  /*margin: 2px 0 4px 0;*/
  /*font-size: 11px;*/
  /*background: #ff7400;*/
  /*padding: 6px;*/
  /*color: #fff;*/
  /*border-radius: 15px;*/
}

.section-title h1 {
    font-size: 1.8rem !important;
    font-weight: bold !important;
}

h1 {
  font-size: 42px;
  font-style: normal; }

h2 {
    font-size: 25px;
    line-height: normal;
}

h3 {
  font-size: 24px; }

h4 {
  font-size: 22px; }

h5 {
  font-size: 20px; }

h6 {
  font-size: 18px; }  
 img
 {
     max-width: 100%;
 }
  
  
  .navigationLinkContainer.log-btn .btn.btn-md {
    padding: 0px;
     background: unset;
    color: #fff;
}
  .navigationLinkContainer.log-btn .btn-primary:hover {
    background-color: unset;
}
.navigationLinkContainer.log-btn{color: #fff}
  /************************/
  
     
  .modal-payment{
    z-index:100000000!important; 
  }
  .modal-header 
  {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0rem 5px !important;
  }

  .enq {
    padding: 10px 16px;
}
  
  button.btn.btn-primary.btn-lg {
    right: -55px;
    position: fixed;
    top: 77%;
    transform: rotate(-90deg);
    z-index: 9999;
    background: #ff7400 !important;
    border-color: #ffffff !important;
    font-size: 18px !important;
}
  
  .fix-icon {
    display: inline-block;
    position: fixed;
    bottom: 100px;
    left: 20px;
    z-index: 999999;
}

#fix-icon {
    -webkit-animation-duration: 2.5s;
    animation-duration: 2.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

.fix-icon-item {
    animation: bounce 1s infinite alternate;
    animation-duration: 1s;
    -webkit-animation: bounce 1s infinite alternate;
    animation-duration: 1s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    animation-fill-mode: none;
}

.fix-icon-item img {
    width: 55px !important;
    height: 55px !important;
    background: #ff7400;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    padding: 10px;
}

 
.fix-icon-whataap {
    display: inline-block;
    position: fixed;
    bottom: 12px;
    right: 12px;
    line-height: normal;
    z-index: 999999;
    transition: all0.5s ease-in-out;
    background: var(--primaryColor);
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 500;
    color: white;
    box-shadow: 0 0 5px rgba(0,0,0,0.25);
}

.fix-icon-whataap a{
    display: flex;
    align-items:center;
    gap: 7px;
    color: inherit;
}
.fix-icon-whataap-item i {
    font-size: 160%;
    /*color: var(--primaryColor);*/
}


  
.col-xs-6 {
    width: 50%;
}
  
   .loader {
  background-color: #5151FF;
  height: 100%;
  width: 100%;
  position: fixed;
  margin-top: 0px;
  top: 0px;
  z-index: 9999999;
}
.loader .loader-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border: 5px solid #ebebec;
  border-radius: 50%;
}
.loader .loader-container:before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-top: 4px solid #21a7d0;
  border-radius: 50%;
  animation: loaderspin 1.8s infinite ease-in-out;
  -webkit-animation: loaderspin 1.8s infinite ease-in-out;
}
.loader .loader-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
}
.loader .loader-icon img {
  animation: loaderpulse alternate 900ms infinite;
}
.loader.orange-color .loader-container:before {
  border-color: #ff5421;
}
.loader.yellow-color .loader-container:before {
  border-color: #f4bf00;
}
.loader.purple-color .loader-container:before {
  border-color: #4e49a1;
}
.loader.green-color .loader-container:before {
  border-color: #0c8b51;
}
@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
  
  
  .section-padding
  {
	  padding:50px 0px;
  }
  
  .blog-sidebar {
    background: #9affca;
    padding: 15px 20px;
border: 4px dotted #000;border-radius: 0px 41px 0px 40px;}

.lead {
    font-weight: 600;
    font-size: 18px;
}
h4.panel-title {
    font-size: 23px;
}

.widget-content li
{
	padding:10px 0px;
}

.widget-content li {
    padding: 5px 0px;
    font-size: 15px;
    color: #333;
}

.skin-minimal ul
{
	list-style:none;
	font-size: 16px;
	line-height: 27px;
	color:#333;
	padding:10px 0px;
}
	

  
  
  /************************/
  
  
  .crd {
    padding: 5px 0px;
    background: #ff7400;
    position: absolute;
    right: 55px;
    border-radius: 43px;
    height: 40px;
    width: 40px;
    text-align: center;
    font-size: 20px;
    color: #fff;
}
  
.schedule_sec
{
	padding:0px 0px 70px
}

  .bg_icon 
  {
    background-color: #f8f9fa !important;
}
  
  .counter-content span
  {
	  font-size: 30px;
	  font-weight: 600;
	  color: #1d201e !important;
	 }
  
  .countss
  {
	  padding:70px 0px 70px
  }
  
  
.bg-light {
    background: var(--primaryColor) !important;
        padding-left: 2rem;
}
  .bg-light h4
  {
	  padding:15px 0px;
  }
  
  .bg-light ul
  {
	  padding:0px 0px;
	  margin-bottom:60px;
  }
  
    .bg-light li
	{
		    font-size: 16px;
    line-height: 38px;
	}
  
  .counter-content span strong
  {
	  font-size:20px;
  }
  
  
  .mt-1, .my-1 {

    margin-bottom: 25px !important;
}

.mobile_box {
    border: solid 1px #f3f3f3;
    margin-top:30px;
    background: #20cd6b;
    border-radius: 1px 34px 0 36px;
}


.mobile_box h3
{
	padding: 0px 0px 30px;
	color: #fff;
}

.mobile_box:hover
 {

    box-shadow: 0 0 10px 0 rgb(0 0 0 / 11%);
}



.counter-content label
{
	font-size:22px;
}

.navbar-collapse {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-flex-positive: 1;
    flex-grow: 0 !important;

}


/*.bg-light img*/
/*{*/
/*	padding:20px 0px;*/
/*}*/
.bg-light img {
    /*padding: 25px 22px;*/
    padding: 1px 4px;
    height: 100%;
    width: 100%;
}


.about_us
{
	padding:50px 0px;
}
.about_us h2
{
	padding:20px 0px;
}

.mobile_sale
{
	padding:50px 0px;
background-image: url("http://cashondevice.firsttray.com/public/webassets/images/inner-bg.jpg");}

.iphone-new
{
	padding:50px 0px;
background-image: url("http://cashondevice.firsttray.com/public/webassets/images/iphone-bg.jpg");}

/*.boxes1*/
/*{*/

/*	text-align:center;  */
/*	margin-bottom:25px;*/
/*	    box-shadow: 0 3px 10px rgb(0 0 0 / 20%);*/ 
	    
/*background: #ffffff;border: 1px solid #0e68399e;border-radius: 30px 0px 30px 0px;}*/
.boxes1 {
    text-align: center;
    margin-bottom: 25px;
    height: 100%;
    box-shadow: 0 3px 10px rgb(0 0 0 / 20%);
    background: #ffffff;
    border: 1px solid #0e68399e;
    max-height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: 30px 0px 30px 0px;
}
.boxes1 img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.boxes1:hover
{
	box-shadow: 0 0 16px 0 rgb(0 0 0 / 16%);
	transition: all 0.3s ease-in-out;
	
	
}

.boxes2 {
    text-align: center;
    /* margin-bottom: 50px; */
    padding: 20px;
    border: solid 1px #e8e8e8;
    border-radius: 3px 70px 0px 60px;
    height: 100%;
    background: #fff;
}
.boxes2:hover
{
	box-shadow: 0 0 16px 0 rgb(0 0 0 / 40%);
	transition: all 0.3s ease-in-out;
}

.mobile_modal 
{
	padding:50px 0px;
}

.mobile_modal h2

{
	padding:0px 0px 15px;
}

.mobile_modal ul li {
    line-height: 30px;
    font-size: 15px;
    color: #000;
}


  /********************/
  
  
  
  
  
  
  
  
  
  

p {
    font-weight: normal;
    line-height: 1.4;
    color: #000;
    font-size: 15px;
}

*::-moz-selection {
  background: #5151FF;
  color: #ffffff;
  text-shadow: none; }

::-moz-selection {
  background: #5151FF;
  color: #ffffff;
  text-shadow: none; }

::selection {
  background: #5151FF;
  color: #ffffff;
  text-shadow: none; }

.container-fluid.container-space {
  padding: 0 100px; }

/*.form-control {*/
/*  border: 1px solid #eeeeee;*/
/*  border-radius: 0px;*/
/*  height: 50px;*/
/*  padding: 10px 20px;*/
/*  -webkit-box-shadow: none;*/
/*          box-shadow: none;*/
/*  font-size: 14px;*/
/*  font-weight: 600;*/
/*  color: #001935;*/
/*  border-radius: 3px;*/
/*  background-clip: inherit !important;*/
    
/*}*/
  .form-control:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
    border-color: #5151FF; }

.form-control::-moz-placeholder {
  color: #3a4957; }

.form-control::-ms-input-placeholder {
  color: #3a4957; }

.form-control::-webkit-input-placeholder {
  color: #3a4957; }

.custom-file {
  height: 50px; }
  .custom-file .custom-file-input {
    height: 50px;
    color: #001935;
    border-radius: 3px;
    border-color: #eeeeee; }
    .custom-file .custom-file-input:focus {
      -webkit-box-shadow: none;
              box-shadow: none;
      border-color: #5151FF; }
  .custom-file .custom-file-label {
    height: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #001935;
    border-color: #eeeeee;
    padding: 15px 90px 15px 20px;
    border-radius: 3px; }
    .custom-file .custom-file-label:after {
      height: 48px;
      padding: 14px 25px; }

.custom-file-input:focus ~ .custom-file-label {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #5151FF; }

.input-group-prepend .input-group-text,
.input-group-append .input-group-text {
  width: 50px;
  background: transparent;
  border-color: #eeeeee;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.custom-control-input:checked ~ .custom-control-label:before {
  background: #5151FF;
  border-color: #5151FF; }

.custom-control-input:not(:disabled):active ~ .custom-control-label:before {
  background: transparent;
  border-color: transparent; }

.custom-control-input:focus ~ .custom-control-label:before {
  -webkit-box-shadow: none;
          box-shadow: none; }

.custom-control-input:focus:not(:checked) ~ .custom-control-label:before {
  border-color: #eeeeee; }

.custom-control-label:before {
  top: 2px; }

.custom-control-label:after {
  top: 2px; }

.custom-checkbox .custom-control-label:before {
  border-radius: 3px;
  border: 2px solid #dfdfdf; }

.border {
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 11%); border-radius:10px; }

.border-top {
  border-top-color: #eeeeee !important; }

.border-left {
  border-left-color: #eeeeee !important; }

.border-right {
  border-right-color: #eeeeee !important; }

.border-bottom {
  border-bottom-color: #eeeeee !important; }

.badge {
  border-radius: 3px; }
  .badge + .badge {
    margin-left: 6px; }

.badge-md {
  padding: 5px 8px;
  font-size: 13px;
  font-weight: normal; }

.badge-primary {
  background: #5151FF; }

.back-to-top {
  background: #5151FF;
  color: #ffffff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  display: inline-block;
  border-radius: 50%; }
  .back-to-top:hover {
    color: #ffffff; }
  .back-to-top:focus {
    color: #ffffff; }

.breadcrumb {
  padding-left: 0;
  background: transparent;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 500; 
  color: white;
}
  .breadcrumb-item.active
  {
      color: white;
  }
  .breadcrumb-item+.breadcrumb-item
  {
      padding: 0;
  }
  .breadcrumb .breadcrumb-item:not(:last-child) {
    padding-right: 18px;
    position: relative;
  }
    .breadcrumb .breadcrumb-item a {
      color: #ffffff; }
      .breadcrumb .breadcrumb-item a:hover {
        color: #000; }
    .breadcrumb .breadcrumb-item i {
      /*padding-right: 5px;*/
      /*font-size: 11px;*/
      /*color: #fff;*/
    }
    .breadcrumb .breadcrumb-item:before {
      display: none; }
  .breadcrumb .active span {
    color: #ffffff; }
    
li.breadcrumb-item:not(:last-child)::after {
    content: "\f054";
    color: white;
    position: absolute;
    font-weight: 900;
    font-size: 10px;
    top: 50%;
    right: 7px;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    line-height: 1;
}

.pagination .page-item .page-link {
  padding: 18px 28px;
  color: #969696;
  border-color: #eeeeee; }
  .pagination .page-item .page-link:focus {
    -webkit-box-shadow: none;
            box-shadow: none; }

.pagination .page-item.active .page-link {
  background: #5151FF;
  border-color: #5151FF;
  color: #ffffff; }

.blockquote {
  font-size: 16px;
  border-left: 10px solid #5151FF;
  padding-left: 30px;
  font-style: italic;
  display: block; }

.blockquote-quote {
  position: relative;
  font-size: 18px;
  border-left: 0 solid #5151FF;
  padding-left: 30px;
  font-style: italic;
  display: block;
  z-index: 1; }
  .blockquote-quote p {
    position: relative; }
  .blockquote-quote i {
    position: absolute;
    z-index: 0;
    top: 20px;
    left: 0;
    font-size: 60px;
    line-height: 60px;
    color: #dfdfdf; }

.table-bordered td {
  border-color: #eeeeee; }

.table-bordered th {
  border-color: #eeeeee; }

.table thead th {
  border-bottom-color: #eeeeee; }

.table-striped tbody tr:nth-of-type(odd) {
  background: #fafafa; }

.text-primary {
    color: var(--primaryColor) !important;
}

.text-white {
  color: #ffffff; }

.text-dark {
  color: #001935 !important; }

.text-light {
  color: #969696 !important; }

.bg-primary {
  background: #ff7400 !important;
  }

.bg-dark {
  background: #0e0e0e !important; }

.space-ptb {
  padding: 60px 0; }

.space-pt {
  padding: 60px 0 0; }

.space-pb {
  padding: 0 0 90px; }

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

.bg-holder {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%; }

.bg-holder-bottom {
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  width: 100%; }

.building-space {
  padding-bottom: 15px;
  text-align: center;}

.bg-overlay-black-10 {
  position: relative;
  z-index: 1; }
  .bg-overlay-black-10:before {
    background: rgba(0, 16, 34, 0.1);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0; }

.bg-overlay-black-20 {
  position: relative;
  z-index: 1; }
  .bg-overlay-black-20:before {
    background: rgba(0, 16, 34, 0.2);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0; }

.bg-overlay-black-30 {
  position: relative;
  z-index: 1; }
  .bg-overlay-black-30:before {
    background: rgba(0, 16, 34, 0.3);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0; }

.bg-overlay-black-40 {
  position: relative;
  z-index: 1; }
  .bg-overlay-black-40:before {
    background: rgba(0, 16, 34, 0.4);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0; }

.bg-overlay-black-50 {
  position: relative;
  z-index: 1; }
  .bg-overlay-black-50:before {
    background: rgba(0, 16, 34, 0.5);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0; }

.bg-overlay-black-60 {
  position: relative;
  z-index: 1; }
  .bg-overlay-black-60:before {
    background: rgba(0, 16, 34, 0.6);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0; }

.bg-overlay-black-70 {
  position: relative;
  z-index: 1; }
  .bg-overlay-black-70:before {
       background: rgb(25 28 26 / 71%);
       content: "";
       height: 100%;
       left: 0;
       position: absolute;
       top: 0;
       width: 100%;
       z-index: 0;
       }

.bg-overlay-black-80 {
  position: relative;
  z-index: 1; }
  .bg-overlay-black-80:before {
    background: rgba(0, 16, 34, 0.8);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0; }

.bg-overlay-black-90 {
  position: relative;
  z-index: 1; }
  .bg-overlay-black-90:before {
    background: rgba(0, 16, 34, 0.9);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0; }

.bg-overlay-white-10 {
  position: relative;
  z-index: 1; }
  .bg-overlay-white-10:before {
    background: rgba(255, 255, 255, 0.1);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0; }

.bg-overlay-white-20 {
  position: relative;
  z-index: 1; }
  .bg-overlay-white-20:before {
    background: rgba(255, 255, 255, 0.2);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0; }

.bg-overlay-white-30 {
  position: relative;
  z-index: 1; }
  .bg-overlay-white-30:before {
    background: rgba(255, 255, 255, 0.3);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0; }

.bg-overlay-white-40 {
  position: relative;
  z-index: 1; }
  .bg-overlay-white-40:before {
    background: rgba(255, 255, 255, 0.4);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0; }

.bg-overlay-white-50 {
  position: relative;
  z-index: 1; }
  .bg-overlay-white-50:before {
    background: rgba(255, 255, 255, 0.5);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0; }

.bg-overlay-white-60 {
  position: relative;
  z-index: 1; }
  .bg-overlay-white-60:before {
    background: rgba(255, 255, 255, 0.6);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0; }

.bg-overlay-white-70 {
  position: relative;
  z-index: 1; }
  .bg-overlay-white-70:before {
    background: rgba(255, 255, 255, 0.7);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0; }

.bg-overlay-white-80 {
  position: relative;
  z-index: 1; }
  .bg-overlay-white-80:before {
    background: rgba(255, 255, 255, 0.8);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0; }

.bg-overlay-white-90 {
  position: relative;
  z-index: 1; }
  .bg-overlay-white-90:before {
    background: rgba(255, 255, 255, 0.9);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0; }

.bg-overlay-theme-20 {
  position: relative;
  z-index: 1; }
  .bg-overlay-theme-20:before {
    background: rgba(38, 174, 97, 0.2);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0; }

.bg-overlay-theme-50 {
  position: relative;
  z-index: 1; }
  .bg-overlay-theme-50:before {
    background: rgba(38, 174, 97, 0.5);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0; }

.bg-overlay-theme-70 {
  position: relative;
  z-index: 1; }
  .bg-overlay-theme-70:before {
    background: rgba(38, 174, 97, 0.7);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0; }

.bg-overlay-theme-90 {
  position: relative;
  z-index: 1; }
  .bg-overlay-theme-90:before {
    background: rgba(38, 174, 97, 0.9);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0; }

.bg-overlay-gradient {
  position: relative; }
  .bg-overlay-gradient:before {
    z-index: 0;
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.6)));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.6) 100%);
    top: auto;
    height: 75%;
    -webkit-transition: all .35s;
    transition: all .35s; }

.bg-overlay-gradient-02 {
  position: relative; }
  .bg-overlay-gradient-02:before {
    z-index: 0;
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    content: "";
    background: -webkit-gradient(linear, left bottom, left top, color-stop(0, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.6)));
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.6) 100%);
    bottom: auto;
    height: 70%;
    -webkit-transition: all .35s;
    transition: all .35s; }

.bg-overlay-gradient-03 {
  position: relative; }
  .bg-overlay-gradient-03:before {
    z-index: 0;
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0)), to(white)), -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0)), to(white));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, white 100%), linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, white 100%);
    top: auto;
    height: 100%;
    -webkit-transition: all .35s;
    transition: all .35s; }

.bg-overlay-gradient-04 {
  position: relative; }
  .bg-overlay-gradient-04:before {
    z-index: 0;
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.4)));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.4) 100%);
    top: auto;
    height: 40%;
    -webkit-transition: all .35s;
    transition: all .35s; }

.avatar {
  width: 50px;
  height: 50px;
  display: inline-block; }

.avatar.avatar-sm {
  width: 20px;
  height: 20px; }

.avatar.avatar-md {
  width: 40px;
  height: 40px; }

.avatar.avatar-lg {
  width: 60px;
  height: 60px; }

.avatar.avatar-xl {
  width: 80px;
  height: 80px; }

.avatar.avatar-xll {
  width: 100px;
  height: 100px; }

.avatar.avatar-xlll {
  width: 120px;
  height: 120px; }

.avatar.avatar-xllll {
  width: 180px;
  height: 180px; }

.font-sm {
  font-size: 13px; }

.font-md {
  font-size: 15px; }

.font-lg {
  font-size: 17px; }

.font-xl {
  font-size: 21px; }

.font-xll {
  font-size: 30px; }

.font-xlll {
  font-size: 40px;
 }

.b-radius-none {
  border-radius: 0 !important; }

.b-radius-left-none {
  border-radius: 0 3px 3px 0 !important; }

.b-radius-right-none {
  border-radius: 3px 0 0 3px !important; }

.sticky-top {
  z-index: 8; }

.z-index-1 {
  z-index: 1; }

.z-index-9 {
  z-index: 9; }

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

.z-index-999 {
  z-index: 999; }

.accordion .accordion-item .accordion-title {
  margin-bottom: 15px;
  font-size: 18px; }
  .accordion .accordion-item .accordion-title .collapsed {
    color: #001935; }

.accordion .accordion-item .accordion-content {
  padding-bottom: 25px; }

.accordion-style-2 .card {
  border: 1px solid #eeeeee;
  margin-bottom: 10px;
  border-radius: 0; }
  .accordion-style-2 .card:last-child {
    margin-bottom: 0px; }

.accordion-style-2 .card-header {
  background: transparent;
  border-bottom: none; }
  .accordion-style-2 .card-header .accordion-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .accordion-style-2 .card-header .accordion-title i {
      font-size: 12px;
      margin-left: auto; }

.accordion-style-2 .accordion-content {
  border-top: 1px solid #eeeeee; }

.accordion-style-2 .accordion-title .btn {
  display: block;
  color: #5151FF;
  font-size: 18px;
  padding: 0px;
  text-decoration: none;
  width: 100%;
  text-align: left; }
  .accordion-style-2 .accordion-title .btn + i {
    color: #5151FF; }

.accordion-style-2 .accordion-title .btn.collapsed {
  color: #001935; }
  .accordion-style-2 .accordion-title .btn.collapsed + i {
    color: #001935; }

.feature-info {
  background: #ffffff;
  border: 1px solid #eeeeee;
  padding: 36px;
  margin-right: -1px;
  height: 100%;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 8; }
  .feature-info .feature-info-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #5151FF; }
  .feature-info .feature-info-content {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
  .feature-info:hover {
    background: #5151FF;
    border-radius: 0 41px 0 41px;
    }
    .feature-info:hover .feature-info-icon {
      color: #ffffff; }
    .feature-info:hover .feature-info-content {
      color: #ffffff; }
      .feature-info:hover .feature-info-content .feature-info-title {
        color: #ffffff; }

.feature-info-02 {
  padding: 0px;
  text-align: center;
  height: 100%; }
  .feature-info-02 .feature-info-detail {
    position: relative;
    z-index: 9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%; }
    .feature-info-02 .feature-info-detail .feature-info-icon {
      background: #fafafa;
      padding: 20px;
      margin: 5px; }
    .feature-info-02 .feature-info-detail .feature-info-content {
      padding: 20px; }
    .feature-info-02 .feature-info-detail .feature-info-button {
      margin-top: auto; }
      .feature-info-02 .feature-info-detail .feature-info-button .btn {
        border-radius: 0; }
  .feature-info-02 .feature-info-bg {
    bottom: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    z-index: 0;
    background-size: cover;
    background-position: center center; }
  .feature-info-02:hover {
    background: transparent; }
    .feature-info-02:hover .feature-info-icon {
      color: #ffffff;
      background: transparent; }
    .feature-info-02:hover .feature-info-bg {
      opacity: 1; }
    .feature-info-02:hover .feature-info-button .btn {
      background: #5151FF;
      border-color: #5151FF;
      color: #ffffff; }

.feature-info-round-icon {
  border: none; }
  .feature-info-round-icon .feature-info-icon {
    font-size: 50px;
    width: 130px;
    height: 130px;
    line-height: 130px;
    text-align: center;
    display: inline-block;
    background: #5151FF;
    color: #ffffff;
    border-radius: 50%; }
  .feature-info-round-icon:hover .feature-info-icon {
    background: #ffffff;
    color: #5151FF; }

.feature-info-no-hover:hover {
  background: #ffffff; }
  .feature-info-no-hover:hover .feature-info-icon {
    color: #001935; }
  .feature-info-no-hover:hover .feature-info-content {
    color: #969696; }
    .feature-info-no-hover:hover .feature-info-content .feature-info-title {
      color: #001935; }

.feature-info-03 .feature-info-image {
  padding: 100px 0; }

.testimonial-main {
  padding: 60px 0; }

.testimonial {
  padding-top: 60px; }
  .testimonial .testimonial-content {
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    position: relative; }
    .testimonial .testimonial-content .quotes {
      color: #27b263;
      margin-right: 10px;
      font-size: 80px;
      line-height: 70px;
      position: absolute;
      top: -30px; }

.testimonial-02 .testimonial-content {
  font-size: 20px;
  padding: 80px 40px 30px;
  background: #fafafa;
  position: relative;
  border: 1px solid #eeeeee; }
  .testimonial-02 .testimonial-content:before {
    position: absolute;
    content: "";
    bottom: -9px;
    width: 0;
    height: 0;
    z-index: 1;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #fafafa transparent transparent transparent; }
  .testimonial-02 .testimonial-content:after {
    position: absolute;
    content: "";
    bottom: -11px;
    width: 0;
    height: 0;
    z-index: 0;
    border-style: solid;
    border-width: 11px 11px 0 10px;
    border-color: #eeeeee transparent transparent transparent; }
  .testimonial-02 .testimonial-content .quotes {
    font-size: 30px;
    line-height: 30px;
    position: absolute;
    top: 36px;
    left: 36px;
    color: #28b666; }

.testimonial-02 .testimonial-author {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.testimonial-02-small .testimonial-content {
  font-size: 14px;
  padding: 60px 40px 20px; }
  .testimonial-02-small .testimonial-content .quotes {
    font-size: 20px;
    top: 26px; }

.testimonial-03 .testimonial-content {
  position: relative;
  padding: 120px 40px 60px 40px;
  margin-left: -50px; }
  .testimonial-03 .testimonial-content p {
    font-size: 22px;
    font-style: italic; }
  .testimonial-03 .testimonial-content .quotes {
    font-size: 40px;
    line-height: 40px;
    position: absolute;
    top: 60px;
    left: 40px;
    color: #ffffff;
    }

.accordion .accordion-item .accordion-title {
  margin-bottom: 15px;
  font-size: 18px; }
  .accordion .accordion-item .accordion-title .collapsed {
    color: #001935; }

.accordion .accordion-item .accordion-content {
  padding-bottom: 25px; }

.accordion-style-2 .card {
  border: 1px solid #eeeeee;
  margin-bottom: 10px;
  border-radius: 0; }
  .accordion-style-2 .card:last-child {
    margin-bottom: 0px; }

.accordion-style-2 .card-header {
  background: transparent;
  border-bottom: none; }
  .accordion-style-2 .card-header .accordion-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .accordion-style-2 .card-header .accordion-title i {
      font-size: 12px;
      margin-left: auto; }

.accordion-style-2 .accordion-content {
  border-top: 1px solid #eeeeee; }

.accordion-style-2 .accordion-title .btn {
  display: block;
  color: #5151FF;
  font-size: 18px;
  padding: 0px;
  text-decoration: none;
  width: 100%;
  text-align: left; }
  .accordion-style-2 .accordion-title .btn + i {
    color: #5151FF; }

.accordion-style-2 .accordion-title .btn.collapsed {
  color: #001935; }
  .accordion-style-2 .accordion-title .btn.collapsed + i {
    color: #001935; }

.newsletter {
  position: relative; }
  .newsletter .form-control {
    padding-right: 150px; }
  .newsletter .btn {
    position: absolute;
    right: 0;
    line-height: 20px;
    top: 0;
    padding: 14px 30px; }

.counter .timer {
  font-size: 48px;
  font-weight: 600;
  font-family: "Barlow Semi Condensed", sans-serif; }

.counter.counter-02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .counter.counter-02 .counter-icon .icon {
    padding-right: 20px;
    font-size: 40px;
    color: #5151FF; }
  .counter.counter-02 .counter-content {
    vertical-align: top; }
    .counter.counter-02 .counter-content .timer {
      font-size: 28px;
      color: #001935;
      font-weight: 600;
      display: block;
      line-height: 28px;
      margin-bottom: 8px; }

.nav-tabs {
  border-color: #eeeeee; }
  .nav-tabs .nav-item {
    margin-bottom: 0; }
    .nav-tabs .nav-item .nav-link {
      border: none;
      font-size: 16px;
      padding: 20px 20px;
      font-family: "Barlow Semi Condensed", sans-serif;
      text-transform: uppercase;
      font-weight: 600;
      border-bottom: 3px solid transparent;
      color: #001935; }
    .nav-tabs .nav-item .nav-link.active {
      border-bottom: 3px solid #5151FF;
      color: #5151FF; }

.nav-tabs.nav-tabs-02 {
  border: none; }
  .nav-tabs.nav-tabs-02 .nav-item {
    margin-bottom: 0; }
    .nav-tabs.nav-tabs-02 .nav-item .nav-link {
      background: #fafafa;
      border: none;
      color: #001935;
      padding: 10px 20px;
      border-radius: 3px; }
    .nav-tabs.nav-tabs-02 .nav-item .nav-link.active {
      background: #5151FF;
      border: none;
      color: #ffffff; }

/* Dots */
.owl-carousel .owl-item img {
  width: auto;
  display: inherit; }

.owl-carousel .owl-nav {
  cursor: pointer;
  z-index: 999;
  width: 100%; }
  .owl-carousel .owl-nav .owl-prev {
    display: block;
    position: absolute;
    text-indent: inherit;
    width: auto;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    left: 10px;
    display: block;
    position: absolute;
    text-indent: inherit;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin: 0 !important;
    display: inline-block;
    margin: 14px 2px 0; }
  .owl-carousel .owl-nav .owl-next {
    display: block;
    position: absolute;
    text-indent: inherit;
    width: auto;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    right: 10px;
    display: block;
    position: absolute;
    text-indent: inherit;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin: 0 !important;
    display: inline-block;
    margin: 14px 2px 0; }
  .owl-carousel .owl-nav i {
    font-size: 16px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    color: #ffffff;
    background: #5151FF;
    border: 0px solid #eeeeee;
    text-align: center;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
    .owl-carousel .owl-nav i:hover {
      background: #ffffff;
      color: #5151FF; }

.owl-carousel .owl-controls .owl-dot {
  margin: 0;
  display: inline-block; }

.owl-carousel .owl-dots {
  display: inline-block;
  /*margin-top: 20px;*/
  text-indent: inherit;
  width: 100%;
  cursor: pointer;
  text-align: center; }
  .owl-carousel .owl-dots .owl-dot span {
    background: #ddd;
    display: inline-block;
    width: 12px;
    min-height: 12px;
    margin-top: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    cursor: pointer; }
  .owl-carousel .owl-dots .owl-dot:hover span {
    background: #5151FF; }
  .owl-carousel .owl-dots .owl-dot.active span {
    background: #5151FF; }

.owl-carousel .owl-dot {
  display: inline-block;
  margin: 14px 2px 0; }

.owl-nav-center.owl-carousel .owl-nav .owl-prev {
  left: 50%;
  top: 46%;
  margin-left: -15px !important; }

.owl-nav-center.owl-carousel .owl-nav .owl-next {
  left: 50%;
  right: inherit;
  margin-top: 28px !important;
  margin-left: -15px !important; }

.owl-nav-left.owl-carousel .owl-nav .owl-prev {
  left: -65px;
  top: 46%; }

.owl-nav-left.owl-carousel .owl-nav .owl-next {
  left: -65px;
  right: inherit;
  margin-top: 28px !important; }

.owl-nav-bottom .owl-nav {
  bottom: 0;
  top: inherit; }
  .owl-nav-bottom .owl-nav .owl-next {
    right: 46%;
    bottom: -20px;
    top: inherit;
    -webkit-transform: inherit;
            transform: inherit; }
  .owl-nav-bottom .owl-nav .owl-prev {
    left: 46%;
    bottom: -20px;
    top: inherit;
    -webkit-transform: inherit;
            transform: inherit; }

.owl-nav-top-left .owl-nav {
  bottom: 0;
  top: inherit; }
  .owl-nav-top-left .owl-nav .owl-next {
    right: 0;
    top: -80px;
    -webkit-transform: inherit;
            transform: inherit; }
  .owl-nav-top-left .owl-nav .owl-prev {
    left: inherit;
    right: 50px;
    top: -80px;
    -webkit-transform: inherit;
            transform: inherit; }
  .owl-nav-top-left .owl-nav i {
    border: 1px solid transparent; }
    .owl-nav-top-left .owl-nav i:hover {
      border-color: #eeeeee; }

.owl-nav-top-right .owl-nav {
  top: 0;
  bottom: inherit; }
  .owl-nav-top-right .owl-nav .owl-next {
    right: 20px;
    top: 20px;
    bottom: inherit;
    -webkit-transform: inherit;
            transform: inherit; }
  .owl-nav-top-right .owl-nav .owl-prev {
    left: inherit;
    right: 80px;
    top: 20px;
    bottom: inherit;
    -webkit-transform: inherit;
            transform: inherit; }

.owl-dots-bottom-center .owl-dots {
  bottom: 30px !important;
  position: absolute; }
  .owl-dots-bottom-center .owl-dots .owl-dot span {
    background: #ffffff; }

.owl-dots-bottom-right .owl-dots {
  bottom: 30px !important;
  position: absolute;
  right: 30px;
  width: auto; }
  .owl-dots-bottom-right .owl-dots .owl-dot span {
    background: #ffffff; }

.owl-dots-bottom-left .owl-dots {
  position: absolute;
  left: 0;
  width: auto;
  margin-top: 0; }
  .owl-dots-bottom-left .owl-dots .owl-dot span {
    background: #ffffff; }

/* Client Logo */
.our-clients .owl-carousel .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.owl-carousel .owl-item .property-item {
  margin-bottom: 0; }
  

.carousel-item {
    border-radius: 12px;
    overflow: hidden;
    background-color: #5151FF;
    position: relative;
}

#slider .carousel-item::after {
    content: '';
    top: 10px;
    left: 10px;
    position: absolute;
    z-index: 100;
    width: 14%;
    aspect-ratio: 9/4;
    /*max-height: 58px;*/
    max-width: 170px;
    /*pointer-events: none;*/
    background-image: url("../images/logo_gray.png");
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
}

a.carousel-control-next span, a.carousel-control-prev span {
    position: absolute;
    height: 50px;
    width: 50px;
    font-size: 20px;
    display: flex;
    transition: 0.5s;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    color: var(--primaryColor);
    background-color: white;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
}

a.carousel-control-prev span {
    top: 50%;
    left: 8px;
    transform: translate(-50%, -50%);
}
a.carousel-control-next span {
    top: 50%;
    right: 8px;
    transform: translate(50%, -50%);
}
a.carousel-control-next span:hover,
a.carousel-control-prev span:hover {
    color: white;
    background-color: var(--primaryColor);
}


.carousel-control-next, .carousel-control-prev {
  opacity: 1; }

.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover
{
    opacity: 1;
}

.bootstrap-datetimepicker-widget table td.active {
  background-color: #5151FF; }
  .bootstrap-datetimepicker-widget table td.active:hover {
    background-color: #5151FF; }

.bootstrap-datetimepicker-widget table td.day {
  height: 30px;
  line-height: 30px;
  width: 40px;
  font-size: 14px; }

.bootstrap-datetimepicker-widget table th {
  font-size: 14px; }

.bootstrap-datetimepicker-widget table td span.active {
  background: #5151FF; }

.bootstrap-datetimepicker-widget.dropdown-menu {
  width: 19rem; }

.pricing {
  background: #fafafa;
  padding: 30px; }
  .pricing .pricing-price strong {
    color: #5151FF;
    font-size: 40px; }
  .pricing .pricing-list {
    margin-top: 20px;
    margin-bottom: 0; }
    .pricing .pricing-list li {
      padding: 6px 0; }
      .pricing .pricing-list li:last-child {
        padding-bottom: 0; }

.countdown {
  display: inline-block;
  text-align: center;
  margin: 0px 20px; }
  .countdown span {
    font-size: 80px;
    line-height: 80px;
    font-weight: 600;
    color: #5151FF; }
  .countdown p {
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 0;
    color: #001935; }

.countdown-small span {
  font-size: 24px;
  line-height: 24px; }

.countdown-small p {
  font-size: 14px; }

.btn {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

button {
  outline: medium none !important;
  color: #5151FF; }

.btn {
  font-size: 14px;
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 3px; }
  .btn:not(:disabled):not(.disabled).active:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
    outline: none; }
  .btn:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
    outline: none;
    color: #ffffff; }
  .btn:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
    outline: none; }
  .btn:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
    outline: none;
    color: #fff; }
  .btn:active {
    -webkit-box-shadow: none;
            box-shadow: none;
    outline: none;
    color: #ffffff; }

.show > .btn.dropdown-toggle:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  color: #ffffff; }

.show > .btn-primary.dropdown-toggle {
  background: #5151FF;
  border-color: #5151FF; }

.btn-primary {
  background: #5151FF;
  border-color: #5151FF; }
  .btn-primary:hover {
    background: #219553;
    border-color: #219553; }
    .btn-primary:hover:not(:disabled):not(.disabled).active {
      background: #5151FF;
      border-color: #5151FF; }
    .btn-primary:hover:not(:disabled):not(.disabled):active {
      background: #5151FF;
      border-color: #5151FF; }
  .btn-primary:focus {
    background: black;
    /*border-color: #219553; */
      
  }
  .btn-primary:focus {
    background: black;
    /*border-color: #219553; */
      
  }

.btn-primary:not(:disabled):not(.disabled):active:focus {
  background: #5151FF;
  border-color: #5151FF; }

.btn-dark {
  background: #001022;
  border-color: #001022; }
  .btn-dark:hover {
    background: #001c3c;
    border-color: #001c3c; }

.btn:not(:disabled):not(.disabled).active:focus {
  color: #ffffff; }

.btn i {
  padding-right: 10px; }

.btn + .btn {
  margin-left: 3px; }

.btn-link {
  color: #5151FF; }
  .btn-link:hover {
    color: #001022;
    text-decoration: none;
    outline: none; }
  .btn-link:focus {
    color: #001022;
    text-decoration: none;
    outline: none; }

.btn.btn-link:not(:disabled):not(.disabled):active:focus {
  color: #001022; }

.btn-white {
  background: #ff7400;
  border-color: #ffffff;
  color: #ffffff;
  }
  .btn-white:hover {
    background: #dfdfdf;
    border-color: #dfdfdf;
    color: #001022; }
  .btn-white:active {
    color: #001022; }
  .btn-white:focus {
    color: #001022; }

.btn.btn-white:not(:disabled):not(.disabled):active:focus {
  color: #001022; }

.btn-light:active {
  color: #001022; }

.btn-light:focus {
  color: #001022; }

.btn.btn-light:not(:disabled):not(.disabled):active:focus {
  color: #001022; }

.btn.btn-sm {
  padding: 6px 24px; }

.btn.btn-md {
  padding: 9px 26px; }

.btn.btn-lg {
  padding: 9px 38px; }

.btn.btn-xl {
  padding: 16px 40px; }

.btn-app {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .btn-app i {
    font-size: 40px; }

.btn-outline-secondary {
  border: 2px solid #eeeeee;
  color: #001935; }
  .btn-outline-secondary:hover {
    background: #001935;
    color: #ffffff;
    border-color: #001935; }
  .btn-outline-secondary:focus {
    background: #001935;
    color: #ffffff;
    border-color: #001935; }

.btn-outline-secondary:not(:disabled):not(.disabled):active {
  background: #001935;
  color: #ffffff;
  border-color: #001935; }

.irs--flat .irs-line {
  height: 6px; }

.irs--flat .irs-bar {
  background: #5151FF;
  height: 6px; }

.irs--flat .irs-from,
.irs--flat .irs-to,
.irs--flat .irs-single {
  background: transparent;
  color: #5151FF;
  font-size: 13px;
  font-weight: 600; }

.irs--flat .irs-handle > i:first-child,
.irs--flat .irs-handle > i:first-child {
  background: #ffffff;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #5151FF;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.irs--flat .irs-from:before,
.irs--flat .irs-to:before,
.irs--flat .irs-single:before {
  display: none; }

.irs--flat .irs-handle.state_hover > i:first-child,
.irs--flat .irs-handle:hover > i:first-child {
  background: #5151FF; }

.select2-container .select2-selection--single {
  height: auto;
  outline: none; }
  .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0px; }

.select2-container--default .select2-selection--single {
  border-radius: 0px;
  border: none; }
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #001935;
    font-weight: bold;
    line-height: inherit;
    text-transform: capitalize; }

.bigdrop {
  min-width: 196px !important; }

.select2-results__options {
  padding: 8px 2px; }

.select2-container {
  width: 100% !important; }

.select2-container--default .select2-results__option--highlighted {
  border-radius: 3px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  padding-left: 10px;
  font-weight: 600; }

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 1px;
  right: 0px;
  height: 21px;
  width: 14px; }
  .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: none; }
  .select2-container--default .select2-selection--single .select2-selection__arrow:before {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    color: #5151FF; }

.select2-container--default .select2-search--dropdown {
  padding: 0; }
  .select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #eeeeee; }

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #fafafa; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: rgba(38, 174, 97, 0.1);
  color: #5151FF; }

.select2-dropdown {
  border: none;
  border-radius: 0px; }

.select-border .select2-container--default .select2-selection--single {
  border: 1px solid #eeeeee;
  height: 50px;
  padding: 15px 20px;
  border-radius: 3px; }
  .select-border .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 16px;
    right: 20px; }

.select2-results__option[aria-selected] {
  text-transform: capitalize; }

.select2-container--default .select2-results > .select2-results__options {
  border: none; }

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #3a4957; }

.select2-container--open .select2-dropdown {
  background: #fafafa;
  padding: 7px;
  border: 1px solid #eeeeee; }

.select2-search--dropdown .select2-search__field {
  border: 1px solid #eeeeee;
  -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.04); }
/*Header Start*/

/*
.header {
  background: #ffffff;
  z-index: 20;
  position: relative; }
  .header .container-fluid {
    padding: 0 60px;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial; }

.header .topbar {
  background: #1c1d1e;
  padding: 5px 0;
  }

.header .topbar a {
  color: #ffffff; }
  .header .topbar a:hover {
    color: #9effcc; font-weight: bold;}

.header .topbar .dropdown {
  margin-right: 20px; }
  .header .topbar .dropdown .dropdown-toggle {
    padding: 12px 0; }
    .header .topbar .dropdown .dropdown-toggle i {
      font-size: 10px; }
  .header .topbar .dropdown .dropdown-menu a {
    color: #001935; }
    .header .topbar .dropdown .dropdown-menu a:hover {
      color: #5151FF; }

.header .topbar .social {
  margin-right: 20px;
  display: inline-block; }
  .header .topbar .social ul {
    margin: 0; }
    .header .topbar .social ul li {
      display: inline-block;
      padding: 0 4px; }
      .header .topbar .social ul li a {
        color: #ffffff; }
        .header .topbar .social ul li a:hover {
          color: #9effcc; }

.header .topbar .login {
  display: inline-block; }
  .header .topbar .login a {
    color: #ffffff; }
    .header .topbar .login a:hover {
      color: #9effcc; }

.topbar .dropdown .dropdown-menu {
  border-radius: 0;
  border: none;
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  padding: 10px; }

.topbar .dropdown .dropdown-menu a {
  font-size: 14px;
  padding: 10px 20px;
  font-weight: 500;
  border-radius: 3px; }

.topbar .dropdown .dropdown-menu a:hover {
  background: rgba(38, 174, 97, 0.1);
  color: #5151FF; }

.navbar {
  padding: 0; }

.navbar .navbar-nav .nav-link {
  font-weight: 500;
  font-size: 14px;
  padding: 10px 20px;
  color: #001935;
  text-transform: uppercase;
  }
  .navbar .navbar-nav .nav-link i {
    font-weight: bold; }
  .navbar .navbar-nav .nav-link:hover {
    color: #5151FF; }

.dropdown-menu {
  z-index: 9999; }

.navbar-collapse {
  position: relative; }

.navbar-light {
  color: #ffffff;
  background-color: #fafafa;
  border-color: #eeeeee; }

.navbar-light .navbar-nav > li > a {
  color: #ffffff; }

.navbar-light .navbar-nav > .dropdown > a .caret {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff; }

.navbar-brand {
  padding: 5px 0px;
  margin-right: 0; }

.navbar-brand img {width: 177px;}

.navbar .navbar-brand {
  color: #ffffff;
  -webkit-box-flex: 0;
 }

.header .navbar-nav > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.header .navbar-nav li > a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3px 0px;
  color: #ffffff;
  text-transform: capitalize;
  font-size: 14px;
  }

.header .navbar-nav li > a:hover {
  color: #5151FF; }

.header .navbar-nav li > a i {
  margin-left: 5px;
  font-size: 10px; }

.header .add-listing {
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 160px;
          flex: 0 0 160px;
  text-align: right; }

.megamenu {
  padding: 20px 20px;
  width: 100%; }

.megamenu > div > li > ul {
  padding: 0;
  margin: 0; }

.megamenu > div > li > ul > li {
  list-style: none; }

.megamenu .card {
  outline: none; }

.megamenu .card:hover,
.megamenu .card:focus {
  outline: 1px solid #000000; }

.megamenu > div > li > ul > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.428571429;
  color: #001022;
  white-space: normal; }

.megamenu > div > li > ul > li > a:hover,
.megamenu > div > li > ul > li > a:focus {
  text-decoration: none;
  color: #001022;
  background-color: #fafafa; }

.megamenu.disabled > a,
.megamenu.disabled > a:hover,
.megamenu.disabled > a:focus {
  color: #fafafa; }

.megamenu.disabled > a:hover,
.megamenu.disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  cursor: not-allowed; }

.megamenu.dropdown-header {
  color: #5151FF;
  font-size: 18px; }

.header li > .dropdown-item:focus,
.header li > .dropdown-item:hover {
  color: #5151FF;
  background: none; }

.header .dropdown-item.active,
.header .dropdown-item:active,
.header .dropdown-item:focus,
.header .dropdown-item:hover {
  background: none; }

.header .dropdown-toggle::after {
  content: none; }

.header .navbar-collapse {
  -webkit-box-align: inherit;
      -ms-flex-align: inherit;
          align-items: inherit; }

.header .megamenu .dropdown-item {
  padding: 0px; }

.header .navbar .dropdown-menu a.dropdown-item {
  min-width: 120px;
  }

.header .navbar .dropdown-menu {
  padding: 15px; }

.header .navbar .dropdown-menu li a i {
  margin-left: auto; }

.navbar .dropdown > .dropdown-menu li > a {
  font-size: 14px;
  padding: 8px 16px 7px 15px;
  border-radius: 3px;
  position: relative;
  }

.navbar .dropdown > .dropdown-menu li > a:hover {
  background: rgb(255 116 0);
  color: #ffffff;
  padding-left: 15px;
  }

.header-transparent {
  position: absolute;
  background: transparent;
  width: 100%;
  z-index: 999; }
  .header-transparent .navbar-brand {
    margin-right: 40px; }

.header-transparent .navbar .navbar-nav .nav-link {
  color: #ffffff; }
  .header-transparent .navbar .navbar-nav .nav-link:hover {
    color: #5151FF; }

.navbar .navbar-nav .nav-item.active .nav-link {
  color: #0e6839;
  text-transform: uppercase;
  }

.navbar .navbar-nav .dropdown-menu li.active > a {
  background: rgba(38, 174, 97, 0.1);
  color: #5151FF;
  padding-left: 15px; }

.header-transparent .add-listing {
  -ms-flex-item-align: inherit;
      align-self: inherit;
  -webkit-box-flex: inherit;
      -ms-flex: inherit;
          flex: inherit;
  text-align: right; }

.header-transparent .login a {
  color: #ffffff; }
  .header-transparent .login a:hover {
    color: #5151FF; }

.header .is-sticky {
  position: fixed !important;
  width: 100%;
  background: #ffffff;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  top: 0;
  z-index: 9; }
  .header .is-sticky .header-contact-info {
    display: none !important; }
  .header .is-sticky .navbar {
    position: relative;
    top: 0px;
    right: 0px;
    left: 0;
    border-top: none !important;
    width: 100%; }

.header-transparent .is-sticky {
  position: fixed !important;
  width: 100%;
  background: #001022;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  top: 0;
  z-index: 9; }
  .header-transparent .is-sticky .header-contact-info {
    display: none !important; }
  .header-transparent .is-sticky .navbar {
    position: relative;
    top: 0px;
    right: 0px;
    left: 0;
    border-top: none !important;
    width: 100%; }

@media (min-width: 992px) {
  .header .navbar .dropdown-menu {
    margin: 0px;
    background: #0e6839a1;
    font-size: 14px;
    border-radius: 0px;
    border: none;
    left: 100%;
    -webkit-transform: translate3d(-50%, 10px, 0);
    transform: translate3d(-50%, 10px, 0);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-property: opacity, visibility, -webkit-transform;
    transition-property: opacity, visibility, -webkit-transform;
    transition-property: opacity, visibility, transform;
    transition-property: opacity, visibility, transform, -webkit-transform;
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
    display: inline-flex;
    }
  .header .navbar .dropdown-menu.megamenu {
    left: 50%; }
  .navbar-nav .dropdown-menu.dropdown-menu-lg {
    min-width: 570px; }
  .navbar-nav .mega-menu {
    position: static; }
  .header .navbar .dropdown:hover > .dropdown-menu {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
    visibility: visible;
    opacity: 1; }
  .header .navbar .dropdown-menu .dropdown-submenu .dropdown-menu {
    left: 100%;
    right: auto;
    -webkit-transform: translate3d(15px, 10px, 0);
            transform: translate3d(15px, 10px, 0); }
  .header .navbar .dropdown-menu .dropdown-submenu .dropdown-menu.left-side {
    right: 100%;
    left: auto;
    -webkit-transform: translate3d(-15px, 10px, 0);
            transform: translate3d(-15px, 10px, 0); }
  .navbar-nav li:hover > ul.dropdown-menu {
    visibility: visible;
    opacity: 1; }
  .dropdown-submenu {
    position: relative; }
  .dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px; }
  .dropdown-menu > li > a:hover:after {
    text-decoration: underline;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg); } }

.place-card-large {
  display: none !important; }

@media (max-width: 991px) {
  .header .is-sticky .navbar {
    top: 0;
    right: 0; } }

.sticky-top {
  top: 80px; }
  
  .add-new-sec-home-ico ul{ list-style: none;}

.add-new-sec-home-ico li{float: left;
    width: 12%;
    background: #e5e5e5;
    text-align: center;
    color: #fff;}
    
    .add-new-sec-home-ico li p{text-align: center;
    color: #fff;}


.sidebar .widget {
  margin-bottom: 30px;
  position: relative;
  border: 1px solid #eeeeee;
  padding: 20px; }
  .sidebar .widget .widget-title {
    margin-bottom: 24px; }
  .sidebar .widget .widget-collapse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0; }
  .sidebar .widget:after {
    position: absolute;
    left: -4px;
    width: 1px;
    top: 0;
    height: 100%;
    content: "";
    background: #eeeeee; }
  .sidebar .widget:before {
    position: absolute;
    right: -4px;
    width: 1px;
    top: 0;
    height: 100%;
    content: "";
    background: #eeeeee; }
  .sidebar .widget ul li {
    margin-bottom: 10px; }
    .sidebar .widget ul li a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      color: #969696; }
      .sidebar .widget ul li a:hover {
        color: #5151FF; }
    .sidebar .widget ul li:last-child {
      margin-bottom: 0; }
  .sidebar .widget:last-child {
    margin-bottom: 0; }
  .sidebar .widget .property-item .property-image img {
    width: 100%; }
  .sidebar .widget .property-item .property-details .property-info li {
    margin-bottom: 0;
    text-align: left; }
    .sidebar .widget .property-item .property-details .property-info li i {
      display: block; }
  .sidebar .widget .property-item .property-details .property-listing-actions {
    border-bottom: 0; }
  .sidebar .widget .recent-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px; }
    .sidebar .widget .recent-list-item img {
      height: 80px; }
    .sidebar .widget .recent-list-item .recent-list-item-info {
      padding-left: 20px; }
      .sidebar .widget .recent-list-item .recent-list-item-info a {
        display: block;
        font-family: "Barlow Semi Condensed", sans-serif; }
      .sidebar .widget .recent-list-item .recent-list-item-info .address {
        color: #001022;
        font-weight: 600; }
        .sidebar .widget .recent-list-item .recent-list-item-info .address:hover {
          color: #5151FF; }
    .sidebar .widget .recent-list-item:last-child {
      margin-bottom: 0; }
      
      */
/*Header End*/


div#slider {
    padding: 0 8px;
}

.banner {
  padding: 220px 0;
  position: relative; }

.banner-shap {
  position: absolute;
  bottom: -1px;
  z-index: 99; }

.banner-bg-video {
  padding: 150px 0; }
  .banner-bg-video .banner-bg-video-sub-title {
    font-size: 18px;
    display: block; }

.banner-bg-video .nav-tabs.nav-tabs-02 .nav-item .nav-link {
  background: transparent;
  color: #ffffff;
  padding: 6px 20px;
  line-height: 24px; }

.banner-bg-video .nav-tabs.nav-tabs-02 .nav-item .nav-link.active {
  background: #5151FF;
  color: #ffffff; }

.banner-map {
  padding: 0; }
  .banner-map .map-canvas {
    height: 500px; }

#slider .carousel-item .slider-content {
  z-index: 0;
  opacity: 0;
  -webkit-transition: opacity 500ms;
  transition: opacity 500ms; }

#slider .slider-content {
  display: inline-block;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  z-index: 2; }

#slider .carousel-item.active .slider-content {
  z-index: 0;
  opacity: 1;
  -webkit-transition: opacity 100ms;
  transition: opacity 100ms; }

#slider .carousel-item .slider-content span {
  font-size: 50px;
  line-height: 50px;
  display: block; }

#slider h1 {
  font-size: 70px;
  font-weight: 700; }

#slider .btn-link {
  font-size: 18px;
  color: #ffffff;
  padding: 0;
  margin-top: 40px; }
  #slider .btn-link:hover {
    color: #5151FF; }

.carousel .carousel-item.active .animated-01 {
  -webkit-animation: lightSpeedIn 1s ease-in 200ms both;
          animation: lightSpeedIn 1s ease-in 200ms both; }

.carousel .carousel-item.active .animated-02 {
  -webkit-animation: bounceInRight 1s ease-in-out 500ms both;
          animation: bounceInRight 1s ease-in-out 500ms both; }

.carousel .carousel-item.active .animated-03 {
  -webkit-animation: bounceInLeft 1s ease-in-out 500ms both;
          animation: bounceInLeft 1s ease-in-out 500ms both; }

.carousel .carousel-item.active .animated-04 {
  -webkit-animation: flipInX 1s ease-in 500ms both;
          animation: flipInX 1s ease-in 500ms both; }

.carousel .carousel-item.active .animated-05 {
  -webkit-animation: bounceInLeft 1s ease-in-out 100ms both;
          animation: bounceInLeft 1s ease-in-out 100ms both; }

.carousel .carousel-item.active .animated-06 {
  -webkit-animation: bounceIn 1s ease-in 500ms both;
          animation: bounceIn 1s ease-in 500ms both; }

.carousel .carousel-item.active .animated-07 {
  -webkit-animation: fadeInDown 0.7s ease-in 300ms both;
          animation: fadeInDown 0.7s ease-in 300ms both; }

.carousel .carousel-item.active .animated-08 {
  -webkit-animation: fadeInUp 0.7s ease-in 300ms both;
          animation: fadeInUp 0.7s ease-in 300ms both; }

.banner-bg-slider {
  position: relative; }

.banner-bg-slider-content {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%; }

.kenburnsy {
  position: relative;
  overflow: hidden;
  width: 100%; }
  .kenburnsy img {
    display: none; }
  .kenburnsy .slide {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-transform-origin: center;
            transform-origin: center; }

.kenburnsy.fullscreen {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: auto !important;
  z-index: -1; }

.banner-bg-slider .banner-bg-slider-sub-title {
  font-size: 18px;
  display: block;
  margin-bottom: 30px; }

.search {
  position: relative; }
  .search input {
    padding-left: 30px;
    padding-right: 80px;
    height: 70px; }
  .search a {
    position: absolute;
    right: 0;
    top: 0;
    background: #5151FF;
    color: #ffffff;
    padding: 18px 30px;
    cursor: pointer;
    margin: 6px; }
  .search i {
    position: absolute;
    right: 0;
    top: 0;
    color: #5151FF;
    padding: 22px 30px;
    cursor: pointer;
    margin: 6px; }

.banner-property {
  padding: 0; }
  .banner-property .property-offer-image {
    padding: 200px 0; }

.section-title {
  margin-bottom: 10px;
  }

.category ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .category ul .category-item {
    margin-top: -1px;
    margin-right: -1px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
            flex: 0 0 33.333333%;
    max-width: 24.333333%; }
    .category ul .category-item a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      border: 1px solid #eeeeee;
      padding: 24px;
      height: 100%; }
      .category ul .category-item a .category-icon {
        margin-right: 14px; }
      .category ul .category-item a i {
        font-size: 33px;
        line-height: 60px;
     }
      .category ul .category-item a span {
        margin-left: auto;
        color: #969696;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 56px;
                flex: 0 0 56px;
        padding-left: 10px; }
      .category ul .category-item a:hover {
        background: #5151FF;
        border-color: #5151FF; }
        .category ul .category-item a:hover i {
          color: #ffffff; }
        .category ul .category-item a:hover span {
          color: #ffffff; }
        .category ul .category-item a:hover h6 {
          color: #ffffff; }

.agent {
  border: 1px solid #eeeeee;
  margin-right: -1px; }
  .agent .agent-detail {
    padding: 30px; }
  .agent .agent-avatar {
    margin-bottom: 20px; }
  .agent .agent-button {
    margin-top: auto; }
    .agent .agent-button .btn {
      border-radius: 0;
      border-top: 1px solid #eeeeee; }
  .agent .agent-button .btn:hover {
    border-color: #5151FF; }
  .agent:hover .agent-button .btn {
    background: #5151FF;
    color: #ffffff;
    border-color: #5151FF; }

.agent.agent-02 .agent-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .agent.agent-02 .agent-detail .agent-avatar {
    margin-right: 30px;
    margin-bottom: 0px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 120px;
            flex: 0 0 120px; }
  .agent.agent-02 .agent-detail .agent-button .btn {
    border-radius: 0;
    border-top: 1px solid #eeeeee; }

.agent.agent-02:hover .agent-button .btn {
  background: #5151FF;
  color: #ffffff; }

.agent.agent-03 .agent-avatar {
  text-align: center;
  margin-bottom: 0; }
  .agent.agent-03 .agent-avatar img {
    height: auto; }

.agent.agent-03 .agent-listing {
  border-top: 1px solid #eeeeee; }
  .agent.agent-03 .agent-listing a {
    padding: 13px 20px;
    color: #969696;
    display: inline-block; }
    .agent.agent-03 .agent-listing a:hover {
      color: #5151FF; }

.agent.agent-03 .agent-info ul {
  width: 49%;
  display: inline-block;
  padding-right: 1%;
  vertical-align: top; }

.agent.agent-03 .agent-info strong {
  color: #001935; }

.agent.agent-03 .agent-button {
  margin-top: auto; }
  .agent.agent-03 .agent-button .btn {
    border-top: 0; }

.location-item {
  min-height: 220px;
  position: relative;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }
  .location-item .location-item-info {
    position: absolute;
    left: 20px;
    bottom: 20px; }
    .location-item .location-item-info .location-item-title {
      color: #ffffff;
      -webkit-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
      .location-item .location-item-info .location-item-title:hover {
        color: #5151FF; }
    .location-item .location-item-info .location-item-list {
      color: #ffffff;
      -webkit-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
      .location-item .location-item-info .location-item-list:hover {
        color: #5151FF; }

.location-item.location-item-big {
  min-height: auto;
  height: 100%; }

.location-item-02 {
  text-align: center; }
  .location-item-02 .location-item-info {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    display: block;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    bottom: inherit; }

.location-list {
  padding: 30px;
  background: #ffffff;
  border: 1px solid #eeeeee; }
  .location-list ul {
    padding: 0 20px; }
    .location-list ul li {
      padding: 8px 0; }
      .location-list ul li a {
        font-family: "Barlow Semi Condensed", sans-serif;
        font-weight: 500;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        color: #001935; }
        .location-list ul li a span {
          color: #969696; }
        .location-list ul li a:hover {
          color: #5151FF; }
          .location-list ul li a:hover span {
            color: #5151FF; }

.social-icon-02 ul li {
  display: inline-block; }
  .social-icon-02 ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #001935;
    background: #ffffff;
    border-radius: 50%;
    display: inline-block;
    text-align: center; }
    .social-icon-02 ul li a:hover {
      color: #ffffff;
      background: #5151FF; }

.social-bg-hover {
  position: relative;
  color: #ffffff; }
  .social-bg-hover:before {
    content: "";
    color: #ffffff;
    width: 100%;
    height: 100%;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0; }
  .social-bg-hover:hover {
    color: #ffffff; }
    .social-bg-hover:hover:before {
      background-color: rgba(0, 0, 0, 0.1); }
  .social-bg-hover span {
    position: relative; }

.facebook-bg {
  background-color: #445c8e; }

.twitter-bg {
  background-color: #43afe9; }

.google-bg {
  background-color: #dc0510; }

.linkedin-bg {
  background-color: #007eb3; }

#street-view {
  height: 100%; }

.sidebar .widget.agent-info {
  padding: 0px;
  margin-bottom: 30px;
  border: none; }

.widget.agent-info .widget-dec {
  padding: 20px;
  border: 1px solid #eeeeee; }

.widget.agent-info .btn {
  border-radius: 0px; }

.agent-contact-inner .border {
  border: 1px dashed rgba(255, 255, 255, 0.2) !important; }

.popup-video .popup-icon {
  color: #5151FF;
  font-size: 50px;
  line-height: 50px; }
  .popup-video .popup-icon span {
    font-size: 16px;
    display: inline-block; }
  .popup-video .popup-icon:hover {
    color: #001935; }

.our-clients .owl-carousel img {
  padding: 20px;
  background: #ffffff;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.our-clients .owl-carousel img:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0); }

.our-clients .owl-carousel .owl-dots {
  margin-top: 0;
  margin-bottom: 0px; }

.modal.login .modal-dialog {
  max-width: 600px; }

.modal.login .modal-header {
  padding: 20px 30px;
  background: #fafafa; }

.modal.login .modal-body {
  padding: 30px; }

.modal.login .nav-tabs.nav-tabs-02 .nav-item {
  margin: 2px; }

.mortgage .search input {
  padding-right: 180px; }

.compare-properties tr th:first-child {
  width: 20%; }

.map-box iframe {
  margin-bottom: 0; }

.map-box .map-box-info {
  background: #fafafa;
  padding: 20px;
  margin-top: -6px; }

.btn-video {
  width: 120px;
  height: 120px;
  line-height: 120px;
  font-size: 60px;
  background: #5151FF;
  color: #ffffff;
  display: inline-block;
  border-radius: 50%; }
  .btn-video:hover {
    background: #ffffff;
    color: #5151FF; }
  .btn-video:focus {
    background: #ffffff;
    color: #5151FF; }

.list-style li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.property-item {
  margin-bottom: 30px; }

.property-image {
  position: relative; }
  .property-image .property-agent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    position: absolute;
    bottom: 0;
    margin: 20px; }
    .property-image .property-agent .property-agent-image {
      width: 38px;
      margin-right: 10px;
      border: 2px solid #ffffff;
      border-radius: 100%;
      cursor: pointer; }
      .property-image .property-agent .property-agent-image img {
        width: 100%;
        border-radius: 100%; }
    .property-image .property-agent .property-agent-info {
      opacity: 0;
      visibility: hidden;
      background: #ffffff;
      padding: 10px;
      font-size: 13px;
      position: relative;
      border-radius: 3px;
      -webkit-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
      .property-image .property-agent .property-agent-info:before {
        position: absolute;
        left: -9px;
        bottom: 15px;
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 5px 10px 5px 0;
        border-color: transparent #ffffff transparent transparent; }
      .property-image .property-agent .property-agent-info .property-agent-name {
        color: #001935;
        font-weight: 600; }
        .property-image .property-agent .property-agent-info .property-agent-name:hover {
          color: #5151FF; }
      .property-image .property-agent .property-agent-info .property-agent-date {
        margin-left: auto; }
      .property-image .property-agent .property-agent-info .property-agent-contact {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-top: 10px;
        margin-bottom: 0; }
        .property-image .property-agent .property-agent-info .property-agent-contact li a {
          display: block;
          width: 30px;
          height: 30px;
          line-height: 30px;
          background: #001935;
          color: #ffffff;
          font-size: 12px;
          text-align: center;
          border-radius: 50%;
          margin-right: 3px; }
          .property-image .property-agent .property-agent-info .property-agent-contact li a:hover {
            background: #5151FF; }
    .property-image .property-agent:hover .property-agent-info {
      opacity: 1;
      visibility: visible; }
  .property-image .property-status {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    right: 8px;
    top: 8px;
    margin-bottom: 0px; }
    .property-image .property-status li {
      font-size: 13px;
      color: #fff;
      padding: 3px 8px;
      margin-right: 6px; }
      .property-image .property-status li:last-child {
        margin-right: 0px; }
    .property-image .property-status li.property-feature {
      background: #5151FF; }
    .property-image .property-status li.property-rent {
      background: #001935; }
  .property-image .property-lable {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    right: 8px;
    top: 8px; }
  .property-image .property-trending:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 55px 55px 0 0;
    border-color: #ffc107 transparent transparent transparent;
    position: absolute;
    left: 0px;
    top: 0px; }
  .property-image .property-trending .fas {
    position: absolute;
    top: 12px;
    left: 12px;
    color: #fff; }
  .property-image .property-agent-popup {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 20px; }
    .property-image .property-agent-popup a {
      background: #001935;
      padding: 4px 6px;
      color: #ffffff;
      border-radius: 3px; }
      .property-image .property-agent-popup a:hover {
        background: #5151FF; }
      .property-image .property-agent-popup a i {
        margin-right: 2px; }

.property-details {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-top: none; }
  .property-details i {
    margin-right: 5px; }
  .property-details .property-info {
    margin-bottom: 0px; }
    .property-details .property-info li {
      padding: 15px 0 0;
      font-size: 13px; }
      .property-details .property-info li i {
        margin-right: 0;
        display: block;
        font-size: 18px;
        color: #969696; }
      .property-details .property-info li span {
        color: #969696;
        font-size: 22px;
        margin-left: 3px;
        font-weight: 300; }
  .property-details .property-details-inner {
    padding: 20px; }
    .property-details .property-details-inner .property-title {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; }
    .property-details .property-details-inner .property-address {
      margin-right: 10px; }
  .property-details .property-price {
    color: #5151FF;
    font-size: 24px;
    font-weight: 600;
    font-family: "Barlow Semi Condensed", sans-serif;
    margin-top: 14px; }
    .property-details .property-price span {
      font-size: 14px;
      color: #969696;
      font-weight: normal; }
  .property-details .property-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .property-details .property-btn .property-link {
      margin-right: auto;
      width: 100%; }
    .property-details .property-btn .property-listing-actions {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      border-top: 1px solid #eeeeee;
      border-bottom: 0px solid #eeeeee; }
      .property-details .property-btn .property-listing-actions li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative; }
        .property-details .property-btn .property-listing-actions li:before {
          content: "";
          border-right: 1px solid #eeeeee;
          position: absolute;
          left: 0;
          top: 0;
          height: 100%; }
        .property-details .property-btn .property-listing-actions li:first-child:before {
          content: none; }
        .property-details .property-btn .property-listing-actions li a {
          -ms-flex-item-align: center;
              align-self: center;
          color: #969696;
          padding: 12px 20px;
          background: transparent; }
          .property-details .property-btn .property-listing-actions li a:hover {
            color: #5151FF; }
        .property-details .property-btn .property-listing-actions li i {
          margin-right: 0px; }
  .property-details .property-btn {
    margin-top: auto; }
    .property-details .property-btn a {
      display: block;
      padding: 15px;
      font-size: 15px;
      text-align: center;
      background: #fafafa;
      color: #001935; }
      .property-details .property-btn a:hover {
        background: #5151FF;
        color: #ffffff; }

.property-filter-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }
  .property-filter-tag ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .property-filter-tag ul li a {
      margin-left: 3px;
      background: rgba(38, 174, 97, 0.1);
      color: #5151FF;
      font-weight: 500;
      padding: 2px 8px;
      font-size: 13px;
      border-radius: 3px; }
      .property-filter-tag ul li a i {
        padding-left: 4px;
        font-size: 12px; }
      .property-filter-tag ul li a:hover {
        background: #5151FF;
        color: #ffffff; }
    .property-filter-tag ul li .filter-clear {
      background: rgba(0, 16, 34, 0.1);
      color: #001022; }
      .property-filter-tag ul li .filter-clear:hover {
        background: #001022;
        color: #ffffff; }

.property-col-list .property-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  border-top: 1px solid #eeeeee;
  border-left: none; }
  .property-col-list .property-details .property-agent {
    padding: 0px 20px 20px;
    margin-top: auto; }
  .property-col-list .property-details .property-price {
    margin-top: 0; }
  .property-col-list .property-details .property-details-inner-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .property-col-list .property-details .property-details-inner-box .property-price {
      margin-left: auto; }

.property-offer .property-offer-image {
  padding: 90px 80px; }

.property-offer .property-details .property-agent {
  padding: 0px 20px 20px; }

.property-map .map-canvas {
  height: 500px; }

.property-list li {
  margin-bottom: 5px; }
  .property-list li b {
    color: #001935;
    font-weight: 600;
    margin-right: 3px; }

.property-list-style-2 li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 30px; }
  .property-list-style-2 li:before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    color: #5151FF;
    font-size: 5px;
    margin-right: 10px; }

.walk-score-info {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.property-nearby .nearby-title {
  font-size: 16px; }

.property-search-field .property-search-item {
  position: relative;
  border: 1px solid #eeeeee;
  border-bottom: 0;
  z-index: 8; }

.property-search-field .form-row {
  margin: 0px; }

.property-search-field .form-row.property-price-slider {
  border-top: 1px solid #eeeeee; }

.property-search-field .form-group {
  padding: 24px 28px;
  margin-bottom: 0px;
  border-left: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee; }
  .property-search-field .form-group:first-child {
    border-left: none; }
  .property-search-field .form-group label {
    display: block; }

.property-search-field .form-control {
  background: transparent;
  color: #001935;
  padding: 0px;
  height: auto;
  line-height: normal;
  border: none; }
  
  .property-search-field .form-control::-webkit-input-placeholder {
    color: #001935; }
  .property-search-field .form-control::-moz-placeholder {
    color: #001935; }
  .property-search-field .form-control:-ms-input-placeholder {
    color: #001935; }
  .property-search-field .form-control::-ms-input-placeholder {
    color: #001935; }
  .property-search-field .form-control::placeholder {
    color: #001935; }

.property-search-field i {
  padding-right: 5px; }

.property-search-field .more-search {
  color: #969696;
  display: block; }
  .property-search-field .more-search:hover {
    color: #5151FF; }

.property-search-field .form-group-search {
  width: 100%; }
  .property-search-field .form-group-search i {
    color: #5151FF; }

.property-search-field .advanced-search {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 100%;
  z-index: 99;
  margin: -1px 0px;
  width: 100%; }

.property-search-field .card {
  padding: 0px;
  border-radius: 0px;
  border-color: #eeeeee; }

.property-filter {
  border: 1px solid #eeeeee;
  position: relative; }
  .property-filter:after {
    position: absolute;
    left: 0;
    width: 100%;
    top: -4px;
    height: 1px;
    content: "";
    background: #eeeeee; }
  .property-filter:before {
    position: absolute;
    bottom: -4px;
    width: 100%;
    left: 0;
    height: 1px;
    content: "";
    background: #eeeeee; }
  .property-filter ul li {
    padding: 8px 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .property-filter ul li a {
      color: #969696;
      font-size: 12px; }
      .property-filter ul li a:hover {
        color: #5151FF; }
  .property-filter ul li.active a span {
    background: #5151FF; }
  .property-filter ul:nth-child(2n+2) li:last-child {
    border-right: none;
    padding-left: 0; }
  .property-filter .property-short .select2-container {
    min-width: 130px;
    margin-left: 10px; }
  .property-filter .property-view-list {
    margin-left: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .property-filter .property-list-icon {
    display: block;
    background: rgba(38, 174, 97, 0.1);
    padding: 10px 10px 8px;
    border-radius: 3px; }
    .property-filter .property-list-icon span {
      margin: 0 auto;
      background: #5151FF;
      height: 2px;
      width: 10px;
      border-radius: 3px;
      margin-bottom: 2px;
      display: block; }
      .property-filter .property-list-icon span:nth-child(2) {
        width: 16px; }
    .property-filter .property-list-icon:hover, .property-filter .property-list-icon .active {
      background: #5151FF; }
      .property-filter .property-list-icon:hover span, .property-filter .property-list-icon .active span {
        background: #ffffff; }
  .property-filter .property-list-icon.active {
    background: #5151FF; }
    .property-filter .property-list-icon.active span {
      background: #ffffff; }
  .property-filter .property-grid-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: rgba(38, 174, 97, 0.1);
    color: #5151FF;
    padding: 10px 10px 8px;
    border-radius: 3px; }
    .property-filter .property-grid-icon span {
      background: #5151FF;
      width: 2px;
      height: 10px;
      border-radius: 3px;
      margin: 0 1px;
      display: inline-block; }
      .property-filter .property-grid-icon span:nth-child(2) {
        height: 16px;
        margin-top: -3px; }
    .property-filter .property-grid-icon:hover {
      background: #5151FF; }
      .property-filter .property-grid-icon:hover span {
        background: #ffffff; }
  .property-filter .property-grid-icon.active {
    background: #5151FF; }
    .property-filter .property-grid-icon.active span {
      background: #ffffff; }

.property-detail-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 0 30px; }
  .property-detail-meta > li > a {
    margin-right: -1px;
    border: 1px solid #eeeeee;
    padding: 14px 20px;
    display: block;
    color: #969696; }
    .property-detail-meta > li > a:hover {
      color: #5151FF; }

.share-box {
  position: relative; }
  .share-box .share-box-social {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 50%;
    bottom: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #5151FF;
    padding: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
    -webkit-transform: translate(-50%, 0px);
            transform: translate(-50%, 0px); }
    .share-box .share-box-social li a {
      padding: 0 10px;
      color: #ffffff;
      font-size: 13px;
      display: block; }
      .share-box .share-box-social li a:hover {
        color: #001935; }
    .share-box .share-box-social:before {
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 6px 6px 0 6px;
      border-color: #5151FF transparent transparent transparent;
      content: "";
      position: absolute;
      left: 50%;
      bottom: -6px;
      z-index: 99;
      margin-left: -3px; }
  .share-box:hover .share-box-social {
    opacity: 1;
    visibility: visible;
    margin-bottom: 6px; }

.property-detail-gallery {
  position: relative; }
  .property-detail-gallery .nav-tabs.nav-tabs-02 {
    position: absolute;
    z-index: 8;
    top: 20px;
    left: 20px; }
    .property-detail-gallery .nav-tabs.nav-tabs-02 .nav-item {
      margin-right: 4px; }

.property-detail-gallery .slider-slick,
.property-detail-gallery iframe,
.property-detail-gallery #street-view {
  min-height: 500px; }

.si-content-wrapper {
  padding: 0; }

.custom-window.open .si-frame {
  -webkit-box-shadow: none;
          box-shadow: none;
  overflow: visible; }

.map-canvas {
  width: 100%;
  height: 100%; }

.custom-window {
  top: 30px;
  width: 280px;
  -webkit-transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden; }
  .custom-window .si-content {
    overflow: visible; }

.custom-window.active {
  top: 0;
  opacity: 1;
  visibility: visible; }

.property-item-map {
  position: relative;
  max-height: inherit;
  padding: 180px 12px 12px 12px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  overflow: auto;
  z-index: 2; }

.si-pointer-bg-top {
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); }

.property-item-map-img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 180px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1; }

.property-item-map-title {
  margin-top: 12px; }

.property-item-map-price {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.property-item-map-content p {
  margin: 0; }

.property-item-map-content * + p {
  margin-top: 1em; }

.property-item-map-content a {
  color: #969696; }
  .property-item-map-content a:hover {
    color: #5151FF; }
  .property-item-map-content a:focus {
    color: #5151FF; }
  .property-item-map-content a:active {
    color: #5151FF; }

.custom-close {
  position: absolute;
  top: -8px;
  right: -8px;
  z-index: 9;
  width: 24px;
  padding: 0 8px;
  height: 24px;
  border-radius: 5px;
  -webkit-transition: background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  border: 0;
  background-color: #5151FF;
  color: #ffffff;
  font-size: 20px;
  line-height: 20px;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out; }
  .custom-close:hover {
    background-color: #001935; }
  .custom-close:focus {
    background-color: #001935; }
  .custom-close:active {
    background-color: #001935; }

.property-search-field-top {
  margin-top: -100px;
  position: relative;
  z-index: 99; }

.property-search-field-top-02 {
  margin-top: -50px;
  position: relative;
  z-index: 99; }

.property-search-field.property-search-field-02.property-search-field-top-03 {
  margin-top: -56px;
  position: relative;
  z-index: 8; }
  .property-search-field.property-search-field-02.property-search-field-top-03 .property-search-item {
    background: #fafafa;
    padding: 15px; }
    .property-search-field.property-search-field-02.property-search-field-top-03 .property-search-item .card {
      background: #fafafa; }
    .property-search-field.property-search-field-02.property-search-field-top-03 .property-search-item .form-row {
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end; }
      .property-search-field.property-search-field-02.property-search-field-top-03 .property-search-item .form-row .btn {
        margin-top: 0px; }
  .property-search-field.property-search-field-02.property-search-field-top-03 .form-control {
    background: #ffffff; }

.property-search-field.property-search-field-below .advanced-search {
  position: relative;
  width: 100%;
  margin: -1px 0px; }

.property-search-field.property-search-field-below .card {
  border-left: 0;
  border-right: 0;
  border-bottom: 0; }

.property-search-field.property-search-field-advanced .advanced-search {
  position: relative;
  width: 100%;
  margin: -1px 0px; }

.property-search-field.property-search-field-advanced .card {
  border-left: 0;
  border-right: 0;
  border-bottom: 0; }

.property-search-field.property-search-field-02 .property-search-item {
  border: none; }
  .property-search-field.property-search-field-02 .property-search-item .form-row {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end; }
    .property-search-field.property-search-field-02 .property-search-item .form-row .btn {
      margin-top: 30px; }

.property-search-field.property-search-field-02 .advanced-search {
  position: relative;
  width: 100%;
  margin: -1px 0px; }

.property-search-field.property-search-field-02 .card {
  border: none; }

.property-search-field.property-search-field-02 .form-group {
  border: none;
  padding: 10px 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.property-search-field.property-search-field-02 .form-control {
  background: transparent;
  color: #001935;
  padding: 14px 20px;
  height: auto;
  line-height: normal;
  border: 1px solid #eeeeee; }
  .property-search-field.property-search-field-02 .form-control::-webkit-input-placeholder {
    color: #001935; }
  .property-search-field.property-search-field-02 .form-control::-moz-placeholder {
    color: #001935; }
  .property-search-field.property-search-field-02 .form-control:-ms-input-placeholder {
    color: #001935; }
  .property-search-field.property-search-field-02 .form-control::-ms-input-placeholder {
    color: #001935; }
  .property-search-field.property-search-field-02 .form-control::placeholder {
    color: #001935; }

.property-search-field.property-search-field-02 .select2-container--default .select2-selection--single {
  border: 1px solid #eeeeee;
  height: 50px;
  padding: 15px 20px;
  border-radius: 3px; }
  .property-search-field.property-search-field-02 .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 16px;
    right: 20px; }

.select2-search--dropdown .select2-search__field {
  padding: 8px 14px; }

.profile-sidebar {
  position: relative;
  padding: 20px; }
  .profile-sidebar .profile-avatar {
    position: relative;
    text-align: center;
    padding: 30px 0;
    width: 80px; }
  .profile-sidebar .profile-nav {
    position: relative; }
    .profile-sidebar .profile-nav .nav {
      padding: 10px;
      background: #5151FF; }
      .profile-sidebar .profile-nav .nav .nav-item {
        border-radius: 3px; }
        .profile-sidebar .profile-nav .nav .nav-item .nav-link {
          color: #ffffff;
          font-weight: 600;
          border-radius: 3px; }
          .profile-sidebar .profile-nav .nav .nav-item .nav-link i {
            width: 20px; }
        .profile-sidebar .profile-nav .nav .nav-item .nav-link.active {
          color: #ffffff;
          background: #001935; }

.agency-management tr td {
  padding: 30px; }

.nav-tabs-03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 2px solid #eeeeee; }
  .nav-tabs-03 .nav-item .nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
    text-transform: capitalize;
    margin-bottom: -2px; }
    .nav-tabs-03 .nav-item .nav-link span {
      width: 50px;
      height: 50px;
      line-height: 46px;
      display: inline-block;
      text-align: center;
      border: 2px solid #eeeeee;
      border-radius: 50%;
      margin-right: 14px; }
  .nav-tabs-03 .nav-item .nav-link.active span {
    border: 2px solid #5151FF;
    background: #5151FF;
    color: #ffffff; }

.blog-post .blog-post-footer {
  border-top: 1px solid #eeeeee;
  padding: 12px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .blog-post .blog-post-footer .blog-post-time,
  .blog-post .blog-post-footer .blog-post-author,
  .blog-post .blog-post-footer .blog-post-comment,
  .blog-post .blog-post-footer .share-box {
    margin: 0 8px; }
  .blog-post .blog-post-footer .blog-post-author img {
    margin: 0 5px;
    height: 20px;
    border-radius: 50%; }
  .blog-post .blog-post-footer span {
    font-size: 13px; }
  .blog-post .blog-post-footer a {
    font-size: 13px;
    color: #969696; }
    .blog-post .blog-post-footer a:hover {
      color: #5151FF; }
  .blog-post .blog-post-footer i {
    padding-right: 5px; }

.blog-post .blog-post-content {
  text-align: center;
  border: 1px solid #eeeeee; }
  .blog-post .blog-post-content .blog-post-details {
    padding: 20px; }
    .blog-post .blog-post-content .blog-post-details .blog-post-title {
      margin-bottom: 20px; }

.blog-post-quote .blockquote {
  padding: 40px 40px 0 40px; }
  .blog-post-quote .blockquote p {
    font-size: 14px;
    font-style: italic; }
  .blog-post-quote .blockquote i {
    font-size: 30px;
    margin-bottom: 20px;
    color: #1d844a; }
  .blog-post-quote .blockquote cite {
    font-size: 15px; }

.blog-post-quote .blog-post-link a {
  color: #ffffff; }
  .blog-post-quote .blog-post-link a:hover {
    color: #001935; }

.blog-post-quote .blog-post-content .blog-post-footer {
  border-color: #209151; }
  .blog-post-quote .blog-post-content .blog-post-footer a {
    color: #ffffff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .blog-post-quote .blog-post-content .blog-post-footer a i {
      -webkit-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
    .blog-post-quote .blog-post-content .blog-post-footer a:hover {
      color: #001935; }
      .blog-post-quote .blog-post-content .blog-post-footer a:hover i {
        color: #001935; }
  .blog-post-quote .blog-post-content .blog-post-footer span {
    color: #ffffff; }

.blog-post-quote .share-box .share-box-social {
  background: #ffffff; }
  .blog-post-quote .share-box .share-box-social li a {
    color: #001935; }
    .blog-post-quote .share-box .share-box-social li a:hover {
      color: #5151FF; }
  .blog-post-quote .share-box .share-box-social:before {
    border-color: #ffffff transparent transparent transparent; }

.blog-sidebar .widget {
  margin-bottom: 30px; }
  .blog-sidebar .widget:last-child {
    margin-bottom: 0; }
  .blog-sidebar .widget .widget-title {
    margin-bottom: 20px; }
  .blog-sidebar .widget .search {
    position: relative; }
    .blog-sidebar .widget .search input {
      padding-right: 64px;
      height: 50px;
      padding-left: 20px; }
    .blog-sidebar .widget .search i {
      position: absolute;
      right: 0;
      top: 0;
      background: #5151FF;
      color: #ffffff;
      padding: 18px 20px;
      cursor: pointer;
      margin: 0;
      border-radius: 0 3px 3px 0px; }
  .blog-sidebar .widget ul.list-style li {
    margin-bottom: 10px; }
    .blog-sidebar .widget ul.list-style li a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      color: #969696;
      width: 100%; }
      .blog-sidebar .widget ul.list-style li a:hover {
        color: #5151FF; }
    .blog-sidebar .widget ul.list-style li:last-child {
      margin-bottom: 0; }
  .blog-sidebar .widget .gallery ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .blog-sidebar .widget .gallery ul li {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 19%;
              flex: 0 0 19%;
      margin: 0 1% 1% 0; }
      .blog-sidebar .widget .gallery ul li:nth-child(5n+5) {
        margin-right: 0; }
  .blog-sidebar .widget .social ul li {
    padding: 10px 10px 10px 20px;
    border: 1px solid #eeeeee;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .blog-sidebar .widget .social ul li a {
      color: #001935;
      font-weight: 600;
      text-transform: capitalize; }
      .blog-sidebar .widget .social ul li a i {
        width: 15px; }
    .blog-sidebar .widget .social ul li .follow {
      background: #fafafa;
      padding: 3px 18px;
      font-size: 12px; }
      .blog-sidebar .widget .social ul li .follow:hover {
        background: #001935;
        color: #ffffff; }
    .blog-sidebar .widget .social ul li:last-child {
      margin-bottom: 0; }
  .blog-sidebar .widget .social ul .facebook a {
    color: #466ca9; }
  .blog-sidebar .widget .social ul .facebook .follow:hover {
    background: #466ca9; }
  .blog-sidebar .widget .social ul .twitter a {
    color: #20b5e6; }
  .blog-sidebar .widget .social ul .twitter .follow:hover {
    background: #20b5e6; }
  .blog-sidebar .widget .social ul .youtube a {
    color: #d92c20; }
  .blog-sidebar .widget .social ul .youtube .follow:hover {
    background: #d92c20; }
  .blog-sidebar .widget .social ul .linkedIn a {
    color: #13799f; }
  .blog-sidebar .widget .social ul .linkedIn .follow:hover {
    background: #13799f; }
  .blog-sidebar .widget .popular-tag ul li {
    display: inline-block;
    margin-bottom: 4px; }
    .blog-sidebar .widget .popular-tag ul li a {
      padding: 6px 20px;
      display: block;
      border: 1px solid #eeeeee;
      color: #969696; }
      .blog-sidebar .widget .popular-tag ul li a:hover {
        color: #5151FF;
        border-color: #5151FF; }

.blog-detail .blog-post-content {
  text-align: left; }

.navigation .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .navigation .nav-links .nav-previous {
    width: 50%;
    border: 1px solid #eeeeee;
    margin-right: 30px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }
    .navigation .nav-links .nav-previous a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      color: #969696; }
      .navigation .nav-links .nav-previous a:hover .pagi-text {
        color: #ffffff;
        background: #5151FF; }
    .navigation .nav-links .nav-previous .nav-title {
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap; }
    .navigation .nav-links .nav-previous .pagi-text {
      border-right: 1px solid #eeeeee;
      -webkit-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out; }
    .navigation .nav-links .nav-previous:hover {
      background: #fafafa; }
  .navigation .nav-links .nav-next {
    width: 50%;
    border: 1px solid #eeeeee;
    margin-right: 30px;
    margin-right: 0;
    text-align: right;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }
    .navigation .nav-links .nav-next a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      color: #969696;
      padding-left: 15px; }
      .navigation .nav-links .nav-next a:hover .pagi-text {
        color: #ffffff;
        background: #5151FF; }
    .navigation .nav-links .nav-next .nav-title {
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap;
      margin-left: auto; }
    .navigation .nav-links .nav-next .pagi-text {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      border-left: 1px solid #eeeeee; }
    .navigation .nav-links .nav-next:hover {
      background: #fafafa; }
  .navigation .nav-links .pagi-text {
    display: inline-block;
    padding: 12px 25px;
    color: #969696;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }
  .navigation .nav-links .nav-title {
    margin: 12px 20px; }

.error-404 h1 {
  font-size: 280px;
  line-height: 280px;
  margin-bottom: 30px;
  color: #001935;
  -webkit-text-fill-color: #ffffff;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #001935;
  -ms-text-fill-color: #ffffff;
  -ms-text-stroke-width: 1px;
  -ms-text-stroke-color: #001935; }

.error-404 strong {
  font-size: 30px;
  line-height: 30px;
  color: #001935;
  display: block;
  margin-bottom: 20px; }

.error-404 span {
  font-size: 16px;
  font-weight: 600; }

.house-animation {
  animation: animationFrames ease-out 15s;
  animation-iteration-count: infinite;
  transform-origin: 50% 0%;
  -webkit-animation: animationFrames ease-out 15s;
  -webkit-animation-iteration-count: infinite;
  -webkit-transform-origin: 50% 0%;
  -moz-animation: animationFrames ease-out 15s;
  -moz-animation-iteration-count: infinite;
  -moz-transform-origin: 50% 0%;
  -o-animation: animationFrames ease-out 15s;
  -o-animation-iteration-count: infinite;
  -o-transform-origin: 50% 0%;
  -ms-animation: animationFrames ease-out 15s;
  -ms-animation-iteration-count: infinite;
  -ms-transform-origin: 50% 0%; }

@keyframes animationFrames {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  20% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg); }
  40% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg); }
  60% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg); }
  80% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg); }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); } }

@-webkit-keyframes animationFrames {
  0% {
    -webkit-transform: rotate(0deg); }
  20% {
    -webkit-transform: rotate(15deg); }
  40% {
    -webkit-transform: rotate(-10deg); }
  60% {
    -webkit-transform: rotate(5deg); }
  80% {
    -webkit-transform: rotate(-5deg); }
  100% {
    -webkit-transform: rotate(0deg); } }

.cloud {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-animation: movecloud 4s linear infinite;
          animation: movecloud 4s linear infinite;
  /*animation-play-state: paused;*/ }

.cloud-01 {
  fill: red;
  top: 10px;
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
  -webkit-animation-duration: 10s;
          animation-duration: 10s; }

.cloud-02 {
  fill: blue;
  top: 80px;
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
  -webkit-animation-duration: 6s;
          animation-duration: 6s; }

.cloud-03 {
  fill: green;
  top: 40px;
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
  -webkit-animation-duration: 8s;
          animation-duration: 8s; }

.cloud-04 {
  fill: green;
  top: 80px;
  -webkit-animation-delay: -4s;
          animation-delay: -4s;
  -webkit-animation-duration: 10s;
          animation-duration: 10s; }

@-webkit-keyframes movecloud {
  0% {
    left: -300px; }
  100% {
    left: 110%; } }

@keyframes movecloud {
  0% {
    left: -300px; }
  100% {
    left: 110%; } }

.footer {
    background: white;
    padding: 0;
}
.footerMain
{
    background: white;
    min-height: 250px;
}
.footer .footer-contact-info
ul {
  margin-bottom: 0; }
  .footer .footer-contact-info
ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 10px; }
    .footer .footer-contact-info
ul li i {
      font-size: 18px;
      color: #5151FF;
      width: 20px; }
    .footer .footer-contact-info
ul li span {
      padding-left: 10px;
      color: #ffffff; }
  .footer .footer-contact-info
ul li:last-child {
    padding-bottom: 0; }

.footer .footer-link ul {
  display: inline-block;
  padding-right: 16px; }
  .footer .footer-link ul li {
    display: block;
    width: 100%;
    margin-bottom: 7px;
    /*padding-bottom: 22px; */
      
  }
  .footer .footer-link ul li:last-child {
      margin: 0;
  }
    .footer .footer-link ul li a {
      color: #232323; }
      .footer .footer-link ul li a:hover {
        color: #5151FF; }

.footer .footer-recent-List ul li {
  margin-bottom: 20px; }
  .footer .footer-recent-List ul li .footer-recent-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .footer .footer-recent-List ul li .footer-recent-list-item img {
      height: 80px; }
    .footer .footer-recent-List ul li .footer-recent-list-item .footer-recent-list-item-info {
      padding-left: 20px; }
      .footer .footer-recent-List ul li .footer-recent-list-item .footer-recent-list-item-info a {
        display: block;
        font-family: "Barlow Semi Condensed", sans-serif; }
      .footer .footer-recent-List ul li .footer-recent-list-item .footer-recent-list-item-info .address {
        color: #ffffff; }
        .footer .footer-recent-List ul li .footer-recent-list-item .footer-recent-list-item-info .address:hover {
          color: #5151FF; }
  .footer .footer-recent-List ul li:last-child {
    margin-bottom: 0; }

.footer .footer-bottom {
    background: #f8f8f8;
    color: #000000;
    border-top: 1px solid #efefef;
    padding: 7px 12px;
    /* margin-top: 27px; */
}
.footer-link h5.mb-4 {
    font-weight: bold;
    font-size: 1.2rem;
}
.footer-bottom p
{
    font-size: 13px;
    padding: 3px 0;
}
  .footer .footer-bottom .footer-logo {
    height: 40px; }

/*************************
       1700px
*************************/
@media (max-width: 1600px) {
  .testimonial .testimonial-content {
    font-size: 20px; } }

@media (max-width: 1600px) {
  .testimonial {
    padding-top: 30px; }
  .header-transparent .call {
    display: none; } }

@media (max-width: 1400px) {
  .navbar .navbar-nav .nav-link {
    padding: 10px 12px; }
  #slider h1 {
    font-size: 50px;
    line-height: 50px; }
  #slider .carousel-item .slider-content span {
    font-size: 30px;
    line-height: 30px; }
  #slider .btn-link {
    margin-top: 10px; }
  .owl-nav-left.owl-carousel .owl-nav .owl-prev {
    top: 45%; } }

@media (max-width: 1199px) {
  .testimonial {
    padding-top: 30px; }
  .navbar .navbar-nav .nav-link {
    padding: 10px 7px;
    font-size: 14px; }
  .owl-nav-left.owl-carousel .owl-nav .owl-prev {
    top: 44%; }
  .countdown span {
    font-size: 30px;
    line-height: 40px; }
  .header-transparent .login {
    display: none; }
  .header-transparent .navbar-brand {
    margin-right: 20px; }
  .property-detail-meta > li > a {
    padding: 14px 16px; }
  .property-search-field .form-group {
    padding: 24px 16px; }
  .blog-post .blog-post-footer .blog-post-time,
  .blog-post .blog-post-footer .blog-post-author,
  .blog-post .blog-post-footer .blog-post-comment,
  .blog-post .blog-post-footer .share-box {
    margin: 0 3px; } }

@media (max-width: 991px) {
  .space-ptb {
    padding: 60px 0; }
  .space-pt {
    padding-top: 60px; }
  .space-pb {
    padding-bottom: 60px; }
  .btn {
    padding: 12px 20px; }
  .header .container-fluid {
    padding: 0 20px; }
  .navbar-toggler {
    border: none;
    position: absolute;
    height: 75px;
    right: 10px; }
  .megamenu {
    margin-left: 0;
    margin-right: 0; }
  .megamenu > li {
    margin-bottom: 30px; }
  .megamenu > li:last-child {
    margin-bottom: 0; }
  .megamenu.dropdown-header {
    padding: 3px 15px !important; }
  .navbar-nav .open .dropdown-menu .dropdown-header {
    color: #fff; }
  .header .navbar-nav > li {
    display: block; }
  .header .navbar .dropdown-menu {
    margin: 0px;
    font-size: 14px;
    border-radius: 0px;
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: #fafafa;
    padding: 14px 30px;
    font-size: 13px;
    max-height: 300px;
    overflow-x: scroll; }
  .header .navbar .dropdown-menu .dropdown-menu {
    background: #ffffff; }
  .header .navbar .dropdown-menu .dropdown-menu .dropdown-menu {
    background: #fafafa; }
  .header .add-listing {
    margin-right: 40px; }
  .header .navbar-collapse {
    position: absolute;
    top: 100%;
    z-index: 9999;
    background: #ffffff;
    width: 100%;
    left: 0;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1); }
  .navbar-brand img {
 }
  .navbar .navbar-nav {
    padding: 10px 0; }
  .navbar .navbar-nav .nav-link {
    padding: 10px 20px; }
  .navbar .navbar-nav .nav-link i {
    margin-left: auto; }
  .header .navbar .nav-title {
    margin-bottom: 10px !important;
    margin-top: 20px; }
  .add-listing .btn {
    font-size: 12px;
    padding: 6px 17px; }
  .navbar .dropdown > .dropdown-menu li > a {
    font-size: 13px; }
  .header .navbar-nav > li {
    border-bottom: 1px solid #eeeeee; }
  .header .navbar-nav > li:last-child {
    border-bottom: 0; }
  .header-transparent {
    position: relative;
    background: #001935; }
  .header-transparent .navbar .navbar-nav .nav-link {
    color: #001935; }
  .banner {
    padding: 100px 0; }
  .banner .display-4 {
    font-size: 34px; }
  .banner-bg-video {
    padding: 100px 0; }
  #slider h1 {
    font-size: 30px;
    line-height: 30px; }
  #slider .carousel-item .slider-content span {
    font-size: 20px;
    line-height: 20px; }
  #slider .btn-link {
    margin-top: 10px;
    font-size: 14px; }
  .property-details .property-listing-actions li.property-price {
    font-size: 14px; }
  .property-search-field.property-search-field-02.property-search-field-top-03 {
    margin-top: 50px; }
  .property-item.property-col-list .property-image img {
    width: 100%; }
  .location-item.location-item-big {
    min-height: 320px; }
  .feature-info {
    padding: 24px; }
  .property-search-field-top {
    margin-top: 50px; }
  .property-filter .property-short .select2-container {
    margin-left: 0; }
  .property-filter .property-short {
    margin-left: inherit; }
  .half-map-full .map-canvas.h-100vh {
    height: 500px; }
  .property-search-field-top-02 {
    margin-top: 40px; }
  .property-search-field .advanced-search {
    position: relative; }
  .property-search-field .card {
    border-left: 0;
    border-right: 0; }
  .navigation .nav-links .nav-previous {
    margin-right: 0; }
  .testimonial-03 .testimonial-content p {
    font-size: 16px; }
  .testimonial-03 .testimonial-content .quotes {
    top: 40px; }
  .testimonial-03 .testimonial-content {
    padding: 90px 40px 30px 40px; }
  .nav-tabs-03 {
    border-bottom: none; }
  .banner-property {
    padding: 0; }
  .banner-property .property-offer-image {
    padding: 100px 0; }
  .container-fluid.container-space {
    padding: 0 15px; }
  .property-search-field .property-search-item {
    border-bottom: 1px solid #eeeeee; }
  .property-filter-tag {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 20px; }
  .testimonial-main {
    padding: 80px 0; } }

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 96%; }
  .property-details .property-info li {
    font-size: 11px; } 
    
    .add-new-sec-home-ico ul{ list-style: none;}

.add-new-sec-home-ico li{float: left;
    width: 12%;
    background: #e5e5e5;
    text-align: center;
    color: #fff;}
    
    .add-new-sec-home-ico li p{text-align: center;
    color: #fff;}

}
	
	
	
	
	
	

@media (max-width: 767px) {
	
	
	.header .topbar .social ul {
    margin: 0;
    display: none;
}

.add-new-sec-home-ico ul{ list-style: none;}

.add-new-sec-home-ico li{float: left;
    width: 12%;
    background: #e5e5e5;
    text-align: center;
    color: #fff;}
    
    .add-new-sec-home-ico li p{text-align: center;
    color: #fff;}


	
  h1 {
    font-size: 32px; }
  h2 {
    font-size: 28px; }
  h3 {
    font-size: 24px; }
  h4 {
    font-size: 20px; }
  h5 {
    font-size: 18px; }
  h6 {
    font-size: 17px; }
  .space-ptb {
    padding: 50px 0; }
  .space-pt {
    padding-top: 50px; }
  .space-pb {
    padding-bottom: 50px; }
  .container {
    max-width: 100%; }
  .category ul .category-item a {
    display: block; }
  .category ul .category-item a span {
    padding-left: 0; }
  .header .topbar .dropdown .dropdown-toggle {
    padding: 4px 0;
    display: inline-block; }
  .agent.agent-03 .agent-detail {
    border-top: 1px solid #eeeeee; }
  .property-detail-gallery .slider-slick,
  .property-detail-gallery iframe,
  .property-detail-gallery #street-view {
    min-height: 400px; }
  .property-col-list .property-details {
    border-left: 1px solid #eeeeee; }
  .property-search-field .form-group {
    border-left: 0; }
  .property-item .property-image img {
    width: 100%; }
  .footer .footer-bottom {
    margin-top: 40px; }
  .testimonial-03 .testimonial-content {
    margin-left: 0; }
  .carousel .carousel-item img {
    /*height: 230px;*/
    -o-object-fit: cover;
       object-fit: cover; }
  #slider .carousel-item .slider-content span {
    margin-bottom: 10px; } }

@media (max-width: 575px) {
    
    .boxes2 img {
    height: 170px;
    padding-top: 25px;
}

.add-new-sec-home-ico ul{ list-style: none;width: 394px;}

.add-new-sec-home-ico li{/* float: left; */
    width: 22% !important;
    margin: 0px 49px 13px -39px !important;background: #e5e5e5;
    text-align: center;
    color: #fff;}
    
    .add-new-sec-home-ico li p{text-align: center;
    color: #000 !important;font-size: 12px;}



    .boxes2 {
    text-align: center;
    margin-bottom: 0px;
    padding: 0px;
    border: solid 1px #e8e8e8;
    border-radius: 3px;
    height: 240px;
}
    
    img.mfp-img {
    width: auto;
    max-width: 100%;
    height: 100px;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 0px 0 5px;
    margin: 0 auto;
}

/*.bg-light img {*/
/*    padding: 20px 20px;*/  
   
/*}*/
.boxes1 img {
    width: 100%;
}

.boxes2 h4 {
    font-size: 15px;
}

.boxes1 {
    height: 100%;
    text-align: center;
    margin-bottom: 1px;
}
	
	.pt-5, .py-5 {
    padding-top: 1rem!important;
}

  h1 {
    font-size: 30px; }
  h2 {
    font-size: 26px; }
  h3 {
    font-size: 20px; }
  .space-ptb {
    padding: 40px 0; }
  .space-pt {
    padding-top: 40px; }
  .space-pb {
    padding-bottom: 40px; }
  .section-title {
    margin-bottom: 20px; }
  .navbar-light .navbar-brand {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none; }
  .header .add-listing {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none; }
  .add-listing .btn {
    padding: 6px 6px; }
  .banner {
    padding: 60px 0; }
  .banner .lead {
    font-size: 16px; }
  #slider h1 {
    font-size: 16px;
    line-height: 16px; }
  #slider .carousel-item .slider-content span {
    font-size: 14px;
    line-height: 14px; }
  #slider .btn-link {
    display: none; }
  .category ul .category-item {
    max-width: 100%;
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    text-align: center; }
  .category ul .category-item a .category-icon {
    margin-right: 0; }
  .banner-bg-video {
    padding: 70px 0; }
  .banner-bg-video .nav-tabs.nav-tabs-02 .nav-item .nav-link {
    padding: 6px 16px; }
  .banner-map .map-canvas {
    height: 350px; }
  .property-offer .property-offer-image {
    padding: 15px; }
  .testimonial .testimonial-content {
    font-size: 16px; }
  .location-list ul {
    padding: 0; }
  .agent.agent-02 .agent-detail {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    display: block; }
  .agent.agent-02 .agent-detail .agent-avatar {
    display: block;
    margin-right: 0;
    margin-bottom: 20px; }
  .nav-tabs .nav-item .nav-link {
    padding: 20px 10px; }
  .pagination .page-item .page-link {
    padding: 12px 20px; }
  .property-filter .property-view-list,
  .property-filter .property-short li {
    border-bottom: 1px solid #eeeeee; }
  .agent.agent-03 .agent-info ul {
    width: 100%;
    padding-right: 0; }
  .property-item .property-image img {
    width: 100%; }
  .si-content {
    max-height: 100% !important;
    max-width: 100% !important; }
  .navigation .nav-links .nav-previous {
    margin-right: 0; }
  .nav-tabs.nav-tabs-02 .nav-item .nav-link {
    padding: 8px 16px; }
  .countdown {
    margin: 0px 10px; }
  .countdown span {
    font-size: 24px;
    line-height: 24px; }
  .countdown p {
    font-size: 14px; }
  .error-404 h1 {
    font-size: 150px;
    line-height: 150px; }
  .property-detail-gallery .slider-slick,
  .property-detail-gallery iframe,
  .property-detail-gallery #street-view {
    min-height: 300px; }
  .owl-nav-top-left .owl-nav {
    bottom: inherit;
    top: inherit;
    margin-top: 10px;
    margin-bottom: 50px; }
  .owl-nav-top-left .owl-nav .owl-next {
    right: inherit;
    top: inherit;
    left: 50%;
    -webkit-transform: inherit;
            transform: inherit; }
  .owl-nav-top-left .owl-nav .owl-prev {
    left: inherit;
    right: 50%;
    top: inherit;
    -webkit-transform: inherit;
            transform: inherit;
    margin-right: 1px !important; }
  .owl-nav-top-right .owl-nav {
    bottom: inherit;
    top: inherit;
    margin-top: 10px;
    margin-bottom: 50px; }
  .owl-nav-top-right .owl-nav .owl-next {
    right: inherit;
    top: inherit;
    left: 50%;
    -webkit-transform: inherit;
            transform: inherit;
    border: 1px solid #eeeeee; }
  .owl-nav-top-right .owl-nav .owl-prev {
    left: inherit;
    right: 50%;
    top: inherit;
    -webkit-transform: inherit;
            transform: inherit;
    margin-right: 1px !important;
    border: 1px solid #eeeeee; }
  .owl-carousel .owl-nav i {
    width: 36px;
    height: 36px;
    font-size: 14px;
    line-height: 36px; }
  .search input {
    padding-right: 120px; }
  .modal.login .modal-header {
    padding: 15px; }
  .modal.login .modal-body {
    padding: 15px; }
  .btn-app {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex; }
  .location-list .border-right {
    border: none !important; }
  .banner-property {
    padding: 35px 0; }
  .banner.banner-property {
    padding: 0; }
  .property-search-field.property-search-field-02.property-search-field-top-03 {
    margin-top: 30px; }
  .share-box .share-box-social {
    display: block; }
  .share-box .share-box-social li a {
    padding: 0; }
  .share-box .share-box-social li a i {
    padding-right: 0; }
  .navigation .nav-links {
    display: block; }
  .navigation .nav-links .nav-previous {
    width: 100%; }
  .navigation .nav-links .nav-next {
    width: 100%;
    margin-top: 5px; }
  .accordion-style-2 .card-header .accordion-title i {
    padding-left: 12px; }
  .banner-bg-video .search input {
    padding-right: 80px; }
  .nearby-info .property-list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .breadcrumb-item + .breadcrumb-item {
    padding-left: 0; }
  .testimonial-02 .testimonial-content {
    font-size: 16px; } }

@media (max-width: 400px) {
  .property-detail-gallery .slider-slick,
  .property-detail-gallery iframe,
  .property-detail-gallery #street-view {
    min-height: 200px; }
  .blog-post .blog-post-footer {
    display: block; }
  .blog-post .blog-post-footer .blog-post-time,
  .blog-post .blog-post-footer .blog-post-author,
  .blog-post .blog-post-footer .blog-post-comment,
  .blog-post .blog-post-footer .share-box {
    display: inline-block; }
  .social-icon-02 ul li a {
    width: 33px;
    height: 33px;
    line-height: 33px; }
  .btn + .btn {
    margin-left: 0; }
  .gm-control-active.gm-fullscreen-control {
    display: none !important; } }

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .agent.agent-03 .agent-avatar img {
    width: 240px; }
  .share-box .share-box-social {
    min-width: 170px; }
  .navbar .navbar-nav .nav-item .nav-link {
    padding-top: 27px;
    padding-bottom: 27px; }
  .navbar .navbar-nav .nav-link i {
    margin-top: 5px; } }


/* pre-loader       

#loading {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: block;
    opacity: 0.7;
    background-color: #fff;
    z-index: 99;
    text-align: center;
}

#loading-image {
    position: absolute;
    top: 100px;
    left: 240px;
    z-index: 100;
}*/


.add-wid-search {
    width: 382px;
    margin: 18px 0 0 0;
    position: relative;
}

.suggestor {
    top: 100%;
    left: 0;
    width: 100%;
    padding: 8px;
    position: absolute;
    background: white;
    max-height: 50vh;
    border-radius: 10px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 11;
    box-shadow: 0 0 5px rgb(0 0 0 / 11%);
}
.suggestor::-webkit-scrollbar
{
    height: 5px;
    width: 5px;
    border-radius: 10px;
    background-color: #f1f1f1;
}
.suggestor::-webkit-scrollbar-thumb
{
    background-color: #c1c1c1;
}
.suggestor ul {
    list-style: none;
    color: black;
    margin: 0;
    padding: 0;
}
.suggestor ul a {
    padding: 4px 4px;
    display: block;
    color: #353535;
    transition: 0.3s;
}
.suggestor ul a:hover {
    color: var(--primaryColor);
}


.add-new-search-top {
    padding: 4px;
    background: #0e6839;
    width: 96px;
    color: #fff;
    font-size: 21px;
    height: 41px;
}


/*.form-control {*/
/*    font-size: 13px;*/
/*    height: 41px;*/
/*    padding: 0 20px;*/
/*    border-radius: 2px;*/
/*    background-color: #dcdcdc;*/
/*    border: 1px solid #c1c1c1;*/
/*}*/


.HomeComp .banner_form .formwrapper {
    position: relative;
    padding: 10px 40px 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 10px 25px rgb(26 40 83 / 6%);
}



img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 11px 0 9px;
    margin: 0 auto;
}



.add-test-img { border-radius: 0px 50px 0 30px;
    -webkit-box-shadow: 3px 2px 16px -2px rgb(0 0 0 / 47%);
    -moz-box-shadow: 3px 2px 16px -2px rgba(0,0,0,0.47);
    box-shadow: 3px 2px 16px -2px rgb(0 0 0 / 47%);}


.add-head-new-home {font-size: 18px;/* background: #0f6a3a; */padding: 7px 0px 6px 0px;color: #0e6839;border-radius: 12px;text-align: center;}


.add-txt-sec-home {
    text-align: center;
    font-size: 13px;
    line-height: 21px;
    padding: 12px;
    margin: -14px 0 0 0;
    }


.add-bg-new-top {
    background: #ff7400;
    color: #fff !important;
    height: 38px;
    margin: -2px 0 0 0;
    border: 1px solid #fff;
    }

.add-sec-home-step {margin: 0 0 40px 0;}


.add-new-sec-home-ico ul{ list-style: none;}

.add-new-sec-home-ico li{float: left;
    width: 13%;
    background: #e5e5e552;
    text-align: center;
    color: #fff;margin: 0 13px 0px 0;box-shadow: 0px 1px 7px 0 #00000026;}
    
    .add-new-sec-home-ico li p{text-align: center;
    color: #121111;}
/*===========================================*/


.item_slider .testimonial-image{
    margin: 5px 20px;
}

.item_slider .add-test-img {
    border-radius: 0px;
}

.abc-offer .owl-carousel .owl-dots.disabled, .abc-offer .owl-carousel .owl-nav.disabled {
    display: block; 
}


.add-mg-new-slider-home {margin: -83px 0 0 0px;}

.offer_item {
    height: 100%;
    padding: 15px;
}
.phone-card {
    background-color: #ebebeb;
    position: relative;
    padding: 10px 15px;
    margin: 25px 10px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 1px 6px #007bff8c;
    height: 250px !important;
}
.offer_item .image {
    width: 100%;
    height: 170px;
    position: relative;
    -webkit-transition: .5s;
    transition: .5s;
}
.offer_item .image img {
    position: absolute;
    top: 59%;
    left: 50%;
    max-width: 100%;
    transform: translate(-50%, -50%);
    width: auto;
    max-height: 100%;
}
.offer__detail {
    text-align: right;
}
.offer__detail .h3, .offer__detail h3 {
    background: #0e6839;
    color: #ffffff;
    text-align: center;
    margin-left: auto;
    display: inline-block;
    font-size: 15px;
    font-weight: 400;
    padding: 5px 8px;
    border-radius: 5px;
    margin-bottom: 10px;
margin-top: 31px;}
.offer__detail p {
    margin-bottom: 5px;
    line-height: 23px;
    color: #000000;
    /* font-weight: 700; */
font-size: 14px;}

.sell_now_btn {
    display: inline-block;
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    padding: 7px 15px;
    font-size: .875rem;
    border-radius: 0px 15px 0px 9px;
    background: #0e6839;
    margin-top: 5px;
    font-size: 14px;
}


.abc-offer .owl-carousel .owl-dots.disabled  {
    display: none;
}

@media(max-width: 768px){
    .abc-offer .owl-carousel .owl-dots.disabled {
    display: none;
}

.customListContainer.inline .customListBox{
    display: flow !important;
    gap: 0 7px;
    flex-wrap: wrap;
}
}

.add-head-apple {text-transform: uppercase;
    font-weight: bold;text-align: center;/* color: #df0015; */margin: 0 0 20px 0;}
    
.add-new-inner-sec-dd {background: #343a40 !important;
    color: #fff !important;
    height: 51px !important;
    padding: 10px 0 0 0 !important;
    border-radius: 60px;
    margin: 11px 0 0 0 !important;}
    
    .label-sz-new {font-size: 14px;background: #ff7400;padding: 3px;border-radius: 31px;color: #fff;width: 69%;text-align: center;}
    
    .yes-new-dd { 
    /*    text-align: center;*/
    /*background: #ff7400;*/
    /*color: #fff;*/
    /*line-height: 24px;*/
    /*padding: 3px;*/
    /*border-radius: 51px;*/
    /*font-size: 25px;*/
    /*margin: 0px 0 12px 0;*/
    position: relative;
    width: 100%;
    padding: 0 7px;
    max-width: 250px;
    margin: auto;
    margin-bottom: 10px;
    }
    .yes-new-dd input[type="radio"]
    {
        -webkit-appearance: none;
        appearance: none;
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        cursor: pointer;
    }
    .yes-new-dd input[type="radio"]:checked ~ label
    {
        background-color: #16b361;
    }
    .yes-new-dd label{
        display: block;
        text-align: center;
    }
    .yes-new-dd label
    {
        
  font-weight: 600;
  margin: 2px 0 4px 0;
  /*font-size: 11px;*/
  background: #ff7400;
  padding: 6px;
  border-radius: 15px;
  color: #fff;
  width: 100%;
    }
    .customList label
    {
        font-size: 14px;
        display: inline;
        line-height: initial;
    }
    .add-ff-cc {font-size: 11px;}

.ddffffff {font-size: 21px;}

.vdssdvsd {font-size: 11px;}


.add-new-inner-sec-dd {background: #343a40 !important;
    color: #fff !important;
    height: 51px !important;
    padding: 10px 0 0 0 !important;
    border-radius: 60px;
    margin: 11px 0 0 0 !important;}
  
  
    
/*
Custom Codes
*/
.about-content-box p
{
    color: inherit;
}
.aboutTheme
{
    background-color: var(--primaryColor);
    box-shadow: inset 2px 2px 2px rgba(0,0,0,0.15);
}
.about-vision-image
{
    border-radius: 30px;
    /*box-shadow: 2px 2px 5px rgba(0,0,0,0.15);*/
    overflow: hidden;
}
.about-vision-image img
{
    transition: 0.5s;
}
.visionSection
{
    background-color: #fcfcfc;
}

.about-vision-image:hover img
{
    transform: scale(1.09);
}
.aboutTheme .imageWithBackground::before {
    background: white;
}
.backgroundPrimary
{
    background-color: var(--primaryColor);
}
.ctaBanner
{
    background-size: cover;
    background-repeat: no-repeat;
}
@media (max-width: 768px)
{
    form.add-wid-search {
        width: 100%;
    }
}
.linkBox {
    text-align: right;
    color: #206c6d !important;
    text-transform: capitalize;
    width: 100%;
    display: block;
}
.bigFont
{
    font-size: 140%!important;
}
.whiteText
{
    color: white !important;
}
ul, li
{
    list-style: none;
    margin: 0;
}
.btn-primary
{
    background-color: var(--primaryColor);
    border: none;
}
.btn-primary:hover
{
    background-color: var(--primaryColorHover);
}
.shadowBox
{
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
}
.round10
{
    border-radius: 10px !important;
}
.round20
{
    border-radius: 20px !important;
}
.customListContainer{
    position: relative;
}
.customListBox
{
    padding: 0;
    margin: 0;
    display: block;
    list-style: none;
}
.customListContainer.inline .customListBox{
    display: flex;
    gap: 0 7px;
    flex-wrap: wrap;
}
.customListItem {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 7px;
}
.customListItemIcon {
    height: 16px;
    width: 16px;
    color: white;
    display: flex;
    font-size: 0.6rem;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    background-color: var(--primaryColor);
}
.customListContent {
    font-size: 16.3px;
    font-weight: bold;
}




.header {
    top: 0;
    color: black;
    position: sticky;
    z-index: 9999;
    /*padding: 4px 0 0;*/
    font-size: 14px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.24);
}
.topbar {
    background-color: var(--primaryColor);
    color: white;
    padding: 3px 0;
    font-size: 14px;
}
.topbar a {
    color: inherit;
    font-weight: 700;
}

.header div[class*="col"]
{
    position: initial;
}
.header .row.align-items-stretch {
    display: flex;
    align-items: stretch;
}
.logoContainer {
    padding: 11px 0;
    width: 100%;
    max-width: 220px;
}
.logoContainer img {
    width: 100%;
    display: block;
}
.navigationLeft
{
    display: flex;
    align-items: center;
    /* justify-content: flex-end; */
}
.linksContainer
{
    height: 100%;
    width: 100%;
    transition: 0.3s;
}
.navigationLinks
{
    list-style: none;
    width: 100%;
    margin: 0;
    height: 100%;
    display: flex;
    align-items: stretch;
    /* justify-content: flex-end; */
}
.navigationLinkContainer
{
    /*flex: 0.8;*/
    /*padding: 5px 0px;*/
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-items: center;*/
    padding: 4px 0px;
    margin-left: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.navigationLinkContainer a
{
    /*color: inherit;*/
    /*font-weight: 600;*/
    /*text-decoration: none;*/
    /*transition: 0.5s;*/
    font-size: inherit;
    position: relative;
}
.navigationLinkContainer > a
{
    /* text-transform: uppercase; */
    color: #222222;
    /* font-family: "Open Sans", Helvetica, sans-serif; */
    padding: 7px 10px;
    /*margin-top: 12px;*/
    font-weight: bold;
}

.headerLocationBtn {
       position: relative;
    display: flex;
    /*height: 2.9rem;*/
    margin-top: 1.4rem;
    align-items: center;
    padding: 7px 12px 7px 5px;
    color: #fff;
    gap: 5px;
    margin-right: 12px;
    background-color: #5151FF;
    border-radius: 5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 4px;
}
.headerLocationBtn:hover
{
    background-color: black;
     color: #fff;
}
.locationIcon {
    width: 25px;
    height: 25px;
    object-fit: contain;
}


/* .navigationLinkContainer > a:not(.noLineBelow)::before
{
    content: '';
    position: absolute;
    bottom: 7px;
    left: 10px;
    height: 2px;
    width: 0;
    background-color: #206c6d;
    transition: width 0.33s linear;
    transform-origin: right;
}
.navigationLinkContainer:hover > a::before
{
    width: calc(100% - 20px);
    
} */
.navigationMenuOpen
{
    display: none;
}
.haveMegaMenu
{
    position: relative;
}
.haveMegaMenu::after {
    content: '\f107';
    font-size: inherit;
    /*color: var(--primaryColor);*/
    font-weight: 900;
    display: block;
    transition: 0.5s;
    font-family: "Font Awesome 5 Free";
}
.haveMegaMenu:hover::after {
    transform: rotate(180deg);
}

.haveMegaMenu > a
{
    padding-right: 5px;
}


.megaMenu {
    width: 180px;
    top: 100%;
    left: 0;
    color: #000;
    font-weight: 400;
    position: absolute;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    border-radius: 7px;
    transform: translateY(50px);
    background-color: white;
    box-shadow: 0 0 5px rgba(0,0,0,0.14);
}
.haveMegaMenu:hover .megaMenu
{
    opacity: 1;
    visibility: visible;
    pointer-events: initial;
    transform: translateY(0);
}
.megaMenu a
{
    font: inherit;
    color: inherit;
}
.megaMenuRow
{
    border-top: 2px solid #206c6d;
    background-color: white;
    padding: 12px;
    border-radius:0 0 10px 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.16), 2px 2px 7px rgba(0,0,0,0.2);
}
.megaMenuLinkContainer {
    text-align: center;
    /*margin-bottom: 15px;*/
    padding: 7px 0;
}

.subMegaMenu ul {
    padding: 0;
}

.megaMenuLinkContainer .megaMenuLinkBox
{
    /*border-bottom: 1px solid #dfdfdf;*/
}
.megaMenuLinkContainer .megaMenuLinkBox.hasSubMegaMenu > a
{
    font-weight: bold;
}


.megaMenuLinkContainer .megaMenuLinkBox:last-child
{
    border: none;
}
.megaMenuLinkBox a {
    display: flex;
    padding: 7px 16px;
}
.mobileNav
{
    display: none;
}
.contactInfo
{
    width: 100%;
    position:relative;
}
.mobileNav .contactInfo a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    padding: 7px 16px;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow-x: hidden;
}
.mobileNav .contactInfo a i{
    margin-right: 5px;
}
.mobileNav .social-icons
{
    padding: 7px 12px;
    display: flex !important;
}
.goBackBtn
{
    display: none;
    background-color: #efefef;
}
.navigationProfile
{
    display: none;
}
.navigationProfile img {
    /* width: 70px; */
    height: 50px;
    /* border-radius: 45px; */
}
.profileContainer {
    display: flex;
    align-items: center;
    padding: 20px 12px;
    background-color: #fafafa;
}
.profileDetails {
    width: calc(100% - 140px);
    padding-left: 12px;
}
.profileName {
    width: 100%;
    font-size: 17px;
    line-height: normal;
    margin-bottom: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fixedNavigationPhoneText {
    display: none;
}
.blog-wrapper .row
{
    display: flex;
    flex-wrap: wrap;
}
a.viewMoreBtn {
    justify-content: flex-end;
    text-align: right;
    color: #206c6d;
}

/* 

    Form Style

*/
.searchBarForm {
    width: 100%;
    position: relative;
    /*padding: 5px 0;*/
    margin: 0;
}
.searchBarForm .form-control
{
    border-radius: 7px;
    outline: none;
}
.searchBarForm .form-control:focus
{
    outline: none;
    box-shadow: none;
}

.formContainerDiv
{
    display: flex;
    align-items: stretch;
    position: relative;
}
.searchBarForm .form-control[type="text"] {
    font-size: 14px;
    height: unset;
    padding: 10px 16px;
}
.searchBarForm .form-control[type="text"]:focus
{
    border: 1px solid var(--primaryColor);
}
.searchBarForm label.form-control {
    width: 60px;
    top: 0;
    right: 0;
    height: 100%;
    text-align: center;
    line-height: 1;
    position: absolute;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.searchBarForm label.form-control i {
    padding: 0;
}

/*.searchBarForm button.form-control {*/
/*  width: 60px;*/
/*  top: 0;*/
/*  right: 0;*/
/*  height: 100%;*/
/*  text-align: center;*/
/*  line-height: 1;*/
/*  position: absolute;*/
/*  padding: 0;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*}*/
.searchBarForm button.form-control {
 border: inherit;
    width: 60px;
    top: 0;
    right: 0;
    height: 100%;
    text-align: center;
    line-height: 1;
    position: absolute;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}
.searchBarForm button.form-control i {
  padding: 0;
}

/*Enquiry Popup*/

.enquiryBtn {
       top: 70%;
    left: -3.9rem;
    transform: translate(1%, 20%) rotate(-91deg);
    transform-origin: top;
    position: fixed;
    line-height: 1;
    color: white;
    padding: 14px 19px 12px;
    display: block;
    z-index: 20000;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0 0 10px 10px;
    background-color: var(--primaryColor);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/*.enquiryBtn:hover {*/
/*    transform: translate(-16%, -50%) rotate(90deg) scale(1.1);*/
/*    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);*/
/*}*/

@media (max-width: 768px) {
    .enquiryBtn {
        font-size: 14px;
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .enquiryBtn {
        font-size: 12px;
        padding: 10px 14px;
    }
}

.enquiryModal
{
    z-index: 100000000;
}
.enquiryModal .modal-dialog {
    width: 680px;
    max-width: 95%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}



/*mislinius*/
.modal-header {
    border-bottom: 0;
    padding: 0;
    height: unset;

}
.enq {
    padding: 17px 12px 5px;
    margin: 0;
    width: 100%;
}
.modal-header .close {
    /*padding: 1rem 1rem;*/
     margin: 0; 
}
.modal-backdrop {
    z-index: 9999;
    opacity: 1 !important;
    backdrop-filter: blur(5px);
    background-color: rgba(0,0,0,0.4);
}
.select-border .select2-container--default .select2-selection--single {
    border: 1px solid #eeeeee;
    padding: 5px 8px;
    border-radius: 3px;
    height: 38px;
}
span#select2-device_name-container {
    padding: 0 0 0 8px;
}
.select-border .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    right: 0px;
    height: max-content;
    transform: translateY(-50%);
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}
.select2-container {
    z-index: 100000000;
}

/*Breadcrumb*/

.breadcrumb {
    padding: 8px 16px;
    height: unset !important;
}
.breadcrumb li{
    font-size: 14px;
    font-weight: bold;
    line-height: normal;
}
.bg-light li {
    /*font-size: 12px;*/
     /*line-height: normal; */
}

/*Location PopUp*/

.locationPopUpContainer {
    position: fixed;
    z-index: 100000000;
    height: 100vh;
    width: 100vw;
    top: 0;
    display: none;
    padding: 40px 0;
    overflow-y: auto;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(5px);
}

.locationPopUpContainer.active{
    display: flex;
}

/*
.locationCityContainer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.locationCityBox {
    max-width: 110px;
    margin: 7px;
    color: black;
    text-align: center;
}
.locationCityImage img {
    border-radius: 50%;
    aspect-ratio: 1;
    object-fit: contain;
    width: 90%;
    display: block;
    margin: 0 auto 7px;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
}
.locationCityTitle {
    width: 100%;
    font-weight: 600;
}
.locationCityBox:hover 
.locationCityTitle {
    color: var(--primaryColor);
}

*/

.locationPopUpBox {
    width: 90%;
    max-width: 850px;
    padding: 30px 20px;
    background-color: white;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 5px rgba(0,0,0,0.25);
}
.closePopUpBtn {
    top: 10px;
    right: 10px;
    position: absolute;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #5151ff;
    border-radius: 20px;
    color: white;
    cursor: pointer;
}
.locationPopUpBox img {
    /* max-height: 310px; */
    display: block;
    margin: auto;
    border-radius: 30px;
}
.locationPopUpTopText {
    color: #5151FF;
    font-size: 16px;
    font-weight: bold;
}
.locationPopUpTitle {
    font-size: 35px;
    line-height: 1.3;
    color: black;
    font-weight: 500;
    text-transform: capitalize;
    margin: 4px 0 10px;
}
.locationPopUpRow {
    margin-bottom: 12px;
}
.locationPopUpRow:last-child{
    margin-bottom: 0;
}
.locationPopUpRow label {
    font-size: 14px;
    color: #353535;
    font-weight: 400;
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}
.locationPopUpRow input {
    font-size: 14px;
}
.locationPopUpRow #pincode {
    width: 150px;
    max-width: 100%;
}

/*Login Header*/

.loginPopUpContainer {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    overflow-y: auto;
    z-index: 9999999;
    display: flex;
    align-items: center;
    background-color: rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
    transition: 0.3s;
}
.loginPopUpContainer.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.loginPopUpBox {
    min-height: 450px;
    display: flex;
    background-color: white;
    width: 95%;
    max-width: 730px;
    margin: auto;
    border-radius: 20px;
    position: relative;
    overflow:hidden;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
}
.loginPopUpTitleContainer {
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 7px;
    color: white;
    background-color: #5151FF;
    border-radius: inherit;
    box-shadow: 2px 0 2px rgba(0,0,0,0.1);
}
.loginPopUpTitle {
    font-size: 22px;
    font-weight: bold;
    /*color: black;*/
    padding: 13px;
}
.loginPopUpSlidesContainer {
    width: 65%;
    padding: 20px;
    overflow: auto;
    min-height: 100%;
}
.loginPopUpCloseContainer
{
    position: absolute;
    top: 7px;
    right: 7px;
    height: 25px;
    width: 25px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primaryColor);
    color: white;
    cursor: pointer;
    transition: 0.5s;
}
.loginPopUpBox label {
    font-size: 14px;
    margin-bottom: 3px;
    display: block;
    font-weight: bold;
    color: black;
    line-height: normal;
}
.loginPopUpCloseContainer:hover
{
    background-color: black;
}
.customInputTitleText {
    font-size: 14px;
    color: black;
    margin: 7px 0 0;
    text-transform: capitalize;
}

.btn-primary:disabled
{
    background-color: #ccc;
    color: #969696;
}

.customInputBottomBordered {
    display: flex;
    width: 100%;
    font-size: 16px;
    color: black;
    margin-bottom: 12px;
    align-items: baseline;
    border-bottom: 1.5px solid var(--primaryColor);
}
.customInputBottomBordered span{
    font-weight: 600;
}
.customInput
{
    border: none;
    width: 100%;
    color: inherit;
}

.loginPopUpSlideBox
{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.loginPopUpSlidesContainer form,
.loginPopUpSlides, 
.loginPopUpSlide {
    height: 100%;
}

.loginPopUpSlide
{
    display: none;
}
.loginPopUpSlide.active
{
    display: block;
}


.loginPopUpContainer ::placeholder
{
    color: #565656;
    /*font-weight: bold;*/
}

.loginPopUpContainer .btn-primary {
    width: 100%;
    padding: 7px 12px;
    border-radius: 7px;
    transition: 0.5s;
}
.messageBox {
    display: inline-block;
    background-color: #5151FF2b;
    font-weight: bold;
    color: black;
    padding: 7px 15px;
    border-radius: 5px;
    border: 2px dashed var(--primaryColor);
    margin-bottom: 12px;
}

/*
Banner Slider
*/

.carousel-indicators {
    position: absolute;
    right: unset;
    border: unset;
    left: 50%;
    top: 100%;
    width: max-content;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 0;
    margin-left: 0;
    list-style: none;
    /* margin-bottom: -6px; */
    /*background: red;*/
    z-index: 10000;
    padding: 10px 0;
    transform: translateX(-50%);
}
.carousel-indicators li {
    width: 14px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    border-radius: 2px;
    background-color: #696969;
    background-clip: padding-box;
    box-sizing: border-box;
    border-top: none;
    border-bottom: none;
    opacity: 0.2;
    transition: opacity .6s ease;
}

/*
Sell Device Cards
*/
.sellCard {
    max-width: 14rem;
    margin: auto;
    position: relative;
    display: block;
    border-radius: 50%;
    /*overflow: hidden;*/
    /*filter: drop-shadow(0 0 5px #dfdfdf);*/
}

.sellCardImage {
   width: 100%;
    /* padding: 22px 12px; */
    margin: auto;
    display: flex;
    border-radius: 100%;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    background-color: #007bff21;
    /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.12); */
    height: 150px;
    width: 150px;
}
.sellCardImage img {
    width: 60%;
    transition: 0.3s;
    object-fit: contain;
    display: block;
    /*aspect-ratio: 16/11;*/
}

.sellCardTitle
{
    width: 100%;
    text-align: center;
    color: white;
    transition: 0.3s;
    padding: 7px 12px;
    background-color: var(--primaryColor);
}
.sellCard:hover img{
    transform: scale(1.05);
}
.sellCard:hover .sellCardTitle{
    background-color: var(--primaryColorHover);
}

/*Counter Section*/
.counterSectionContainer {
    background-color: #5151FF;
}


/*How to sell device*/

.howToSellDeviceBox {
   padding: 16px 31px;
    position: relative;
    border-radius: 50%;
    border-top-left-radius: 20px;
    background-color: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    height: 24rem;
}
.howToSellStepCount {
    position: absolute;
    top: 0;
    left: 0;
    height: 40px;
    width: 40px;
    background: var(--primaryColor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
}
.howToSellDeviceImage {
    width: 100%;
    max-width: 160px;
    margin: 11px auto 12px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.howToSellDeviceImage img {
    position: absolute;
    object-fit: contain;
    height: 100%;
    width: 100%;
}
.howToSellDeviceTitle {
    font-size: 16px;
    text-align: center;
    color: black;
    line-height: normal;
    font-weight: 700;
    margin-bottom: 7px;
}
.howToSellDeviceDesc {
    text-align: center;
    height: 85px;
    overflow-y: auto;
}
.howToSellDeviceDesc::-webkit-scrollbar
{
    width: 5px;
    height: 5px;
    background: #f7f7f7;
}
.howToSellDeviceDesc::-webkit-scrollbar-thumb
{
    background: #dfdfdf;
}


/*What We Offer*/
.whatWeOffer {
    padding: 60px 0;
}
.whatWeOfferSlide {
    padding: 12px;
    height: 100%;
    position: relative;
    /*width: 12rem;*/
}
.whatWeOfferBox {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    position: relative;
    /*box-shadow: 0 0 5px rgba(0,0,0,0.15);*/
    border: 1px solid #e5e5e5;
}
.whatWeOfferImage {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: white;
    position: relative;
}
.whatWeOfferImage img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whatWeOfferCarousel .owl-stage
{
    display: flex;
}
.whatWeOfferDetails {
    padding: 0 12px 55px;
}
.whatWeOfferName {
      font-weight: 500;
    color: black;
    font-size: 13px;
}
.whatWeOfferPriceBox {
    margin: 5px 0;
}
.whatWeOfferSellBtnBox a {
    position: absolute;
    bottom: 12px;
    padding: 7px;
    text-align: center;
    width: calc(100% - 24px);
    color: white;
    border-radius: 6px;
    background-color: var(--primaryColor);
}
.whatWeOfferSellBtnBox a:hover {
    background-color: black;
}


/*Why Choose Us*/

.whyChooseUs {
    padding: 60px 0 0;
    overflow: hidden;
    position: relative;
    z-index: 0;
    background-image: linear-gradient(225deg, #f7f7f7, white);
}
.whyChooseUs::before {
    /*content: '';*/
    width: 75%;
    aspect-ratio: 16/3;
    position: absolute;
    background: #12c366;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.4;
}



.whyChooseUsCard {
    padding-top: 32.5px;
    height: 100%;
}

/*

.whyChooseUsBox {
    padding: 40px 12px 20px;
    text-align: center;
    background: white;
    height: 100%;
    border-radius: 10px;
    filter: drop-shadow(0px 0px 2px rgba(0,0,0,0.1));
}
.whyChooseUsIcon {
    width: 65px;
    height: 65px;
    top: 0;
    left: 50%;
    font-size: 24px;
    color: var(--primaryColor);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    transform: translate(-50%, -50%);
    background-color: white;
    border: 5px solid white;
    border-radius: 50%;
    box-shadow: inset 1px 1px 3px rgba(0,0,0,0.15);
}
.whyChooseUsName
{
    font-size: 120%;
    font-weight: 600;
    color: black;
    margin-bottom: 12px;
    line-height: 1;
}

*/
.whyChooseUsBox {
    padding: 13px 26px;
    text-align: center;
    background: white;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    margin: 25px auto;
    /* font-size: 18px; */
    color: black;
    width: max-content;
    max-width: 100%;
    border-radius: 7px;
    /* font-weight: 500; */
    height: 50px;
    transition: 0.5s;
    overflow: hidden;
}
.whyChooseUsBox:hover {
    height: 164px;
}
.whyChooseUsImage
{
    overflow-y: hidden;
    position: relative;
}
.whyChooseUsImage::before
{
    /*content: '';*/
    width: 100%;
    aspect-ratio: 1;
    top: 25%;
    left: 0%;
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    background-color: var(--primaryColor);
    /*transform: translate(-50%, -50%);*/
}
.whyChooseUsTitle {
    font-size: 125%;
    font-weight: 500;
    margin-bottom: 7px;
}

/*Testimonial work*/
.testimonialSection {
    padding: 40px 0;
    background: #fcfcfc;
}
.titleHeadingTop {
    font-size: 26px;
    text-transform: uppercase;
    color: var(--primaryColor);
    font-weight: 600;
    /* letter-spacing: 1px; */
    word-spacing: 5px;
}
.titleSubText {
    font-size: 16px;
    margin-bottom: 7px;
}
h2.titleHeading {
    font-size: 47px;
}
.tesimonialControlBtns {
    display: flex;
    gap: 4px;
}
.testimonialControlBtn {
    margin: 4px;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--primaryColor);
    background: white;
    border-radius: 20px;
    line-height: 1;
    cursor: pointer;
    transition: 0.5s;
    outline: 2px solid var(--primaryColor);
}
.testimonialControlBtn:hover {
    color: white;
    background-color: var(--primaryColor);
}
.testimonialSlide {
    padding: 38px 16px 12px;
    position: relative;
}
.testimonialBox
{
    border-radius: 10px;
    position: relative;
    background: white;
    padding: 0 16px 20px;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
}
.testimonialProfile {
    padding: 40px 0 12px;
    position: relative;
}
.testimonialImage {
    width: 70px;
    aspect-ratio: 1;
    background-color: #fff;
    max-width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-50%);
    box-shadow: 0px 0px 5px rgba(0,0,0,0.15);
}
.testimonialProfile img
{
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: contain;
}
.testimonialRatingBox {
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonialName {
    width: calc(100% - 66px);
    color: #000;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    margin: 7px 0 5px;
    padding-right: 7px;
    line-height: normal;
}
.testimonialRating {
    font-size: 11px;
    display: flex;
    gap: 1px;
    width: 66px;
    color: goldenrod;
    flex-wrap: wrap;
}
.testimonialDetails
{
      height: 110px;
    color: #343a40;
    overflow-y: auto;
    text-align: center;
    font-size: 14px;
}
.testimonialDetails::-webkit-scrollbar
{
    width: 5px;
    height: 5px;
    background: #f7f7f7;
}
.testimonialDetails::-webkit-scrollbar-thumb
{
    background: #dfdfdf;
}
.testimonialDetails i {
    font-size: 8px;
    vertical-align: text-top;
    margin: 0 3px;
    color: var(--primaryColor);
}

/*Blog Work*/

.blogSectionContainer
{
    padding: 50px 0;
}
.blogBox {
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    border-radius: 10px;
}
.blogImage {
    width: 100%;
    position: relative;
    aspect-ratio: 16/8;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blogImage img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.blogContentBox {
    padding: 12px 16px;
}
.blogTitle {
    font-size: 16px;
    font-weight: 600;
    color: black;
}
.blogTitle:hover {
    color: var(--primaryColor);
}
.blogContent {
    margin: 7px 0 12px;
    font-size: 12px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    color: #767676;
}

/*FAQ Work*/

.faqSectionContainer {
    padding: 40px 0;
    /*background-color: var(--primaryColor);*/
}
.faqBox {
    background-color: white;
    position: relative;
    font-size: 14px;
    /*padding: 12px 0 0;*/
    /*border-radius: 5px;*/
    border-bottom: 1px solid rgba(0,0,0,0.3);
    /*margin-bottom: 12px;*/
    /*box-shadow: 0 0 5px rgba(0,0,0,0.1);*/
}
.faqQuestion {
    font-size: 14px;
    position: relative;
    padding: 12px 45px 12px 16px;
    color: black;
    cursor: pointer;
    font-weight: 600;
}
.faqQuestion::after {
    content: '\f107';
    top: 50%;
    right: 16px;
    position: absolute;
    font-size: 16px;
    height: 25px;
    width: 25px;
    display: flex;
    transition: 0.5s;
    align-items: center;
    justify-content: center;
    color: var(--primaryColor);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    border-radius: 30px;
    transform: translateY(-50%);
}
.faqBox.active .faqQuestion::after,
.faqQuestion:hover::after {
    color: white;
    background-color: black;
    transform: translateY(-50%) rotate(180deg);
}
.faqAnswer {
    font-size: 12px;
    padding: 15px;
    border-radius: inherit;
    background-color: #fcfcfc;
    display: none;
}
.faqAnswer p {
    font-size: inherit;
    line-height: 1.3;
    margin-bottom: 9px;
}
.faqAnswer p:last-child {
    margin-bottom: 0;
}
/*Download App work*/
.appSectionContainer {
    padding: 50px 0;
}

.appSectionContainer.dark * {
    color: white!important;
}
.appSectionBox {
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1), 2px 2px 7px rgba(0,0,0,0.1);
    background-image: url("../images/background.png"), linear-gradient(32deg, whitesmoke, white, whitesmoke);
    background-size: cover;
    background-position: bottom right;
}
.appSectionContainer.dark .appSectionBox{
    background: var(--primaryColor) !important;
}
.appSectionTitle {
    font-size: 30px;
}
.appSectionContent {
    line-height: 1.7;
    font-weight: 500;
    color: black;
    text-transform: capitalize;
}
.appSectionImage img {
    max-height: 320px;
    margin: auto;
    display: block;
    transform: scale(1.3);
    transform-origin: bottom;
    filter: drop-shadow(1px 1px 5px #0006);
}
.appSectionList,
.appSectionList li
{
    /*list-style: disc;*/
    color: inherit;
}
.appSectionList li
{
    position: relative;
    margin: 6px 0;
}
.appSectionList li:last-child
{
    margin: 0;
}
.appSectionList li::before
{
    content: '\f058';
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 0;
    right: calc(100% + 6px);
    line-height: 1;
    font-size: 22px;
}
.appSectionList {
    padding-left: 30px;
    /*color: #424242;*/
}
/*Footer work*/

.footerMain
{
    padding-bottom: 20px;
}
.footerQuickLinksSection {
    padding: 0 0 20px;
}
.footerSmallTitle {
    font-size: 16px;
    font-weight: 700;
    margin: 7px 0;
    color: #000;
}
.footerSubText {
   font-weight: 700;
    color: #343a40;
    font-size: 18px;
    padding-top: 20px;
    padding-bottom: 10px;
    padding-left: 5px;
}
.footerQuickLinksBox {
    display: flex;
    padding: 0;
    gap: 7px;
    flex-wrap: wrap;
    font-size: 15px;
    color: white;
}
ul.footerQuickLinksBox a {
    color: white;
    font-size: 15px;
    font-weight: 500;
}
.footerQuickLinksBox li::after{
    content: ',';
}
.footerQuickLinksBox li:last-child::after{
    display: none;
}
.footerQuickLinksBox a:hover
{
    color: black;
}
.footerLogo {
    max-width: 250px;
    margin: 0 auto 12px;
}


.footerIconTitleContainer {
    padding-top: 7px;
}
.footerIconTitleBox {
    display: flex;
    margin-bottom: 7px;
    gap: 7px;
}
.footerIconTitleBox:last-child {
    margin: 0;
}
.footerIcon {
    width: 80px;
    line-height: 1.5;
    /*text-align: center;*/
    font-weight: 600;
    color: var(--primaryColor);
}
.footerText {
    color: #232323;
    width: calc(100% - 66px);
}
a.footerText:hover {
    color: var(--primaryColor);
}
p.footerDisclamer.my-2.text-center {
    padding: 1rem 0 0 2.8rem;
}
.footer-bottom .footerDisclamer {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/*Social Icons*/
.social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.social-icons span a{
    height: 32px;
    width: 32px;
    margin: 5px;
    font-size: 16px;
    display: flex;
    background: white;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    transition: 0.5s;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.15);
}
.social-icons span a:hover{
    font-size: 17px;
    color: white;
    background: #5151ff;
}


/*About Page*/
.cardWhiteWithShadow{
    background: white;
    transition: 0.5s;
    padding: 18px 16px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.cardWhiteWithShadow:hover{
    box-shadow: 0 0 5px rgba(0,0,0,0.05), 2px 2px 7px rgba(0,0,0,0.25);
}


/*Contact Page*/

.contactPage
{
    width: 100%;
    /*padding: 30px 16px;*/
}

.contactPage .contactPageContainer {
    min-height: 70vh;
    /*padding: 50px 0;*/
    display: flex;
    color: white;
    position: relative;
    background-image: url("../images/contact_background.webp");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}
.contactPage h2
{
    color: white;
}
.contactPage .contactPageContainer::before
{
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    /*z-index: -1;*/
    /*backdrop-filter: blur(3px);*/
    background-color: rgba(0,0,0,0.5);
}
.contactForm {
    padding: 22px 16px;
    margin: 16px 0 0;
     background: linear-gradient(45deg, #454545, transparent); 
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 5px rgba(0,0,0,0.25);
}

.form-control {
    font-size: 14px;
}
.contactMap
{
    height: 100%;
    position:relative;
}
.contactMap iframe
{
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px;
}

.contact-address {
}

.contactCard {
    height: 100%;
    color:#fff;
    background: var(--primaryColor);
    border-radius: 12px;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    padding: 15px 12px 20px;
    box-shadow: 0 0 5px rgba(0,0,0,0.16);
}

.contactIcon {
    display: flex;
    font-size: 18px;
    margin-bottom: 7px;
    gap: 12px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
}

.contactIcon i {
    font-size: 28px;
    color: white !important;
    font-weight: normal;
}


/*Blog Page*/
.blogContainer {
    margin-bottom: 24px;
}
.recentBlogCard {
    margin: 0;
    border-radius: 10px;
    background: white;
    align-items: center;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.recentBlogImage {
    aspect-ratio: 2/1;
    width: 100%;
    display: flex;
    position: relative;
    align-items: center;
    overflow: hidden;
    justify-content: center;
}
.recentBlogImage img{
    height: 100%;
    width: 100%;
    transition: 0.5s;
    transform: scale(1);
    position: absolute;
    object-fit: cover;
}
.recentBlogCard:hover .recentBlogImage img{
    transform: scale(1.2);
}

/*Blog Detail Page*/


.blogTitleImage img
{
    width: 100%;
    border-radius: 10px;
}
.blogTitleImage
{
    padding-bottom: 12px;
}
.blogDetailContainer .blogTitle {
    font-size: 20px;
    margin-bottom: 7px;
    line-height: normal;
}
.blogDetailContainer .blogTitle:hover
{
    color: initial;
}
.mainBlogDate {
    font-size: 12px;
    margin-bottom: 12px;
}
.mainBlogContent {
    width: 100%;
    font-size: 14px;
    font: inherit;
}
.mainBlogContent p{
    font: inherit;
    color: inherit;
}
.blogDetailContainer {
    padding: 12px 12px;
    background-color: white;
    border-radius: 10px;
    font-size: 13px;
    box-shadow: 0 0 5px rgba(0,0,0,0.14);
}

.sideBarSection {
    /*padding: 12px 12px;*/
    background-color: white;
    /*border-radius: 10px;*/
    font-size: 13px;
    /*box-shadow: 0 0 5px rgba(0,0,0,0.14);*/
}
.sideBarTitle {
    font-size: 20px;
    font-weight: 500;
    color: black;
    margin-bottom: 12px;
    line-height: normal;
}
.recentBlogsCards a {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: row;
    /*margin-bottom: 7px;*/
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.recentBlogsCards a:last-child {
    border: none;
    margin-bottom: 0;
}
.recentBlogsImage
{
    max-width: 180px;
    padding-right: 12px;
}
.recentBlogsImage img
{
    display: block;
    border-radius: 5px;
}
.recentBlogsContent {
    width: calc(100% - 180px);
    color: #6d6d6d;
    line-height: normal;
}
.recentBlogsContent .title {
    margin-bottom: 5px;
    color: black;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.3;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    width: 100%;
}
.recentBlogsContent .date {
    font-size: 10px;
    font-weight: bold;
    color: #7d7d7d;
}

/*Brands Page*/

.customBrandsContainer {
    color: black;
    background: white;
    /*background: linear-gradient(#efefef, #ccc);*/
    position: relative;
}
.customBrandsBox {
    padding: 30px 20px 20px;
    border-radius: 20px;
    background: #efefef;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
}

.brandCardsContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-evenly;
}
.brandCard {
    width: calc((100% / 6) - 9px);
    /* max-width: 80px; */
    padding: 10px;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    background: white;
    aspect-ratio: 16/12;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    align-items: center;
    justify-content: center;
}
.brandCard img{
    display: block;
    transition: 0.5s;
}
.brandCard:hover img {
    transform: scale(120%);
}
.imageWithBackground
{
    width: 100%;
    overflow: hidden;
    position: relative;
    user-select: none;
}
.imageWithBackground::before
{
    /*content: "";*/
    top: 50%;
    left: 50%;
    height: 120%;
    aspect-ratio: 1;
    position: absolute;
    border-radius: 50%;
    transform: translate(-50%, -30%);
    background-color: var(--primaryColor);
}
.imageWithBackground img
{
    /*width: 100%;*/
    position: relative;
    z-index: 5;
}

/*.brandSeriesCard*/
/*{*/
/*    position: relative;*/
/*    padding: 6px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    border-radius: 40px;*/
/*    color: black;*/
/*    transition: 0.5s;*/
/*    box-shadow: 0 0 5px rgba(0,0,0,0.1);*/
/*}*/
.brandSeriesCard
{
    position: relative;
    padding: 6px;
    display: flex;
    align-items: center;
    /*border-radius: 40px;*/
    color: black;
    transition: 0.5s;
    /*box-shadow: 0 0 5px rgba(0,0,0,0.1);*/
}
.brandSeriesCard:hover
{
    color: white;
    background-color: var(--primaryColor);
    box-shadow: 2px 2px 7px rgba(0,0,0,0.1), 0 0 5px rgba(0,0,0,0.1);
}

.brandSeriesImage
{
    width: 40px;
    display: flex;
    aspect-ratio: 1;
    padding: 5px;
    position: relative;
    align-items: center;
    background-color: white;
    justify-content: center;
    border-radius: 20px;
}
.brandSeriesImage img
{
    width: 100%;
    /*height: 100%;*/
    position: relative;
    /*object-fit: contain;*/
}
.brandSeriesName
{
    width: calc(100% - 40px);
    padding-left: 6px;
    text-transform: capitalize;
    font-weight: 600;
}
.deviceCard {
    position: relative;
    padding: 7px;
    height: 100%;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
    display: block;
    color: black;
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
}
.deviceImage {
    margin-bottom: 7px;
    aspect-ratio: 1;
    position: relative;
    display: flex;
    align-items: center;
    overflow: clip;
}
.deviceCard img{
    width: 100%;
    height: 90%;
    object-fit: contain;
    transition: 0.3s;
}
.deviceCard:hover img{
    transform: scale(1.1);
       
}
.deviceCard:hover {
    color:#fff;
        background-color: #5151FF;
      opacity: 0.8;
}
.deviceVarientBox input:checked + .deviceVarientBox{
    background-color: rgb(81, 81, 255);
}
.deviceVarientBox:has(input:checked) {
    background-color: rgb(81, 81, 255);
    color:#fff;
}

.deviceItemChooseForm {
    padding: 1rem;
    border-radius: 30px;
    border: 1px dashed #5151FF;
    background-color: rgba(81, 81, 255, 0.3);
    /* opacity: 0.8; */
}



.deviceItemContainerSection
{
    background-color: #efefef;
}

.deviceItemContainer, .questionsTabs {
    background: white;
    border-radius: 9px;
    padding: 12px;
    color: black;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
}
.questionsTabs {
    height: 100%;
    z-index: 1;
    position: relative;
}
.deviceItemImageContainer {
    width: 95%;
    aspect-ratio: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}
.deviceItemImageContainer img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.deviceItemTitle {
    font-size: 22px;
    font-weight: 600;
    padding: 18px 0 7px;
    position:relative;
}
.deviceItemTitle::before {
    content: '';
    height: 1px;
    width: 80%;
    bottom: 0;
    left: 0;
    border-radius: 5;
    position: absolute;
    background-color: var(--primaryColor);
}

.deviceItemPrice {
    font-size: 35px;
    font-weight: bold;
    line-height: 1;
    display: flex;
    gap: 10px;
    align-items: center;
}
.deviceItemPrice i{
    font-size: 0.8em;
}

.deviceItemSubTitle {
    font-size: 16px;
    font-weight: 600;
    margin: 24px 0 12px;
}
.deviceVarientContainer {
    display: flex;
    gap: 10px;
    padding-top: 12px;
    align-items: center;
    position: relative;
}
.deviceVarientContainer {
    display: flex;
    gap: 10px;
    padding-top: 12px;
    padding-bottom: 7px;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
}
.deviceVarientBox {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px 10px 42px;
    box-shadow: 0 0 3px rgba(0,0,0,0.2);
    background-color: white;
    border-radius: 5px;
    font-weight: bold;
    /*transition: 0.5s;*/
    cursor: pointer;
    position: relative;
}
.deviceVarientBox:hover {
    /* background-color: var(--primaryColor); */
    /* color: white; */
    box-shadow: 0 0 1px 1px var(--primaryColor);
}
.deviceVarientBox input {
    -webkit-appearance: none;
    appearance: none;
    height: 18px;
    width: 18px;
    left: 12px;
    display: flex;
    padding: 2px;
    border-radius: 10px;
    position: absolute;
    border: 2px solid var(--primaryColor);
    align-items: center;
    justify-content: center;
}
.deviceVarientBox input::before{
    content: '';
    height: calc(100% - 4px);
    width: calc(100% - 4px);
    border-radius: inherit;
    position: absolute;
    opacity: 0;
    transition: 0.3s;
    background-color: var(--primaryColor);
}
.deviceVarientBox:hover input::before,
.deviceVarientBox input:checked::before {
    opacity: 1;
}

.deviceItemPrice {
    font-size: 35px;
    font-weight: bold;
}
.deviceNoticeBoard
{
    width: 100%;
    /*max-width: 650px;*/
    padding: 7px 12px;
    border-radius: 7px;
    border: 2px dashed var(--primaryColor);
    background-color: #f7f7f7;
}


.questionBoxContainer
{
    counter-reset: questionCount;
}

.questionsCardBox {
    position: relative;
    padding: 0 0 24px 22px;
}
.questionTitle {
    font-size: 16px;
    font-weight: bold;
    counter-increment: questionCount 1;
    text-transform: capitalize;
}
.questionTitle::before
{
    content: counter(questionCount) ".";
    margin-right: 7px;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1.6;
}
.questionsBoxMainTitle {
    font-size: 18px;
    margin-bottom: 5px;
}
.questionTitleNote {
    margin: 5px 0 12px;
}
.questionOptionsContainer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    /* gap: 12px; */
}
.questionsOptionsBox {
    min-width: 120px;
    max-width: 100%;
    width: max-content;
    margin: 0;
    border-radius: 5px;
    padding: 10px 13px 10px 32px;
    background-color: #f7f7f7;
    position: relative;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 0 1px rgba(0,0,0,0.4);
}
.questionOption {
    -webkit-appearance: none;
    appearance: none;
    height: 16px;
    width: 16px;
    border-radius: 10px;
    border: 2px solid var(--primaryColor);
    position: absolute;
    top: 50%;
    left: 11px;
    transform: translateY(-50%);
    transition: 0.3s;
}
.questionOption::before {
    content: '';
    height: 10px;
    width: 10px;
    top: 50%;
    left: 50%;
    position: absolute;
    border-radius: 10px;
    transform: translate(-50%, -50%);
    background-color: var(
    --primaryColor);
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
}
.questionOption:checked, 
.questionOption:hover
{
    background-color: white;
}
.questionOption:hover::before,
.questionOption:checked::before {
    opacity: 1;
}
.questionsOptionsBox span::before {
    content: '';
    top: 50%;
    left: 50%;
    height: calc(100% + 3px);
    width: calc(100% + 3px);
    z-index: -1;
    transform: translate(-50%, -50%);
    background-color: var(
    --primaryColor);
    position: absolute;
    border-radius: 7px;
    filter: blur(0px);
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
}
.questionsOptionsBox .questionOption:checked ~ span::before {
    visibility: visible;
    opacity: 1;
}

/*Question Box With image*/
.withImage
{
    padding: 12px;
}
.withImage .questionsOptionsBox {
    padding: 0;
    width: 100%;
    background: white;
    /* overflow: hidden; */
}
.withImage input
{
    opacity: 0;
}
.withImage span.questionOptionText {
    display: block;
    padding: 10px;
    text-align: center;
    line-height: normal;
    border-radius: 3px;
    font-weight: 600;
    transition: 0.5s;
    min-height: 52px;
    /*box-shadow: 0 0 5px rgba(0,0,0,0.15);*/
}
span.questionOptionImages {
    display: block;
    padding: 0 10px 12px;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.withImage .questionOption:checked ~ .questionOptionText
{
    color: white;
    background: #5151FF;
}
.withImage .questionOption:hover  ~ .questionOptionText
{
    color: white;
    background-color: #5151FF;
}


.deviceEvaluationCard {
    display: flex;
    align-items:center;
    padding: 7px 0;
    border-bottom: 1px solid var(--primaryColor);
}
.deviceEvaluationImage {
    width: 100px;
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
}
.deviceEvaluationImage img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.deviceNameEvaluationCard {
    width: calc(100% - 75px);
    font-weight: bold;
    padding-left: 11px;
    color: black;
}
.decivePriceEvaluatedTitle {
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    margin: 8px 0 4px;
}
.deviceAnswerContainer
{
    padding-bottom: 7px;
}
.deviceEvaluation
{
    border-radius: 5px;
    color: white;
    padding: 7px 12px;
    background-color: var(--primaryColor);
}

.deviceAnswerCard {
    padding: 3px 0 3px 24px;
    position: relative;
    font-size: 14px;
    /*border-bottom: 1px solid var(--primaryColor);*/
}

.deviceAnswerCard::before {
    content: '';
    height: 7px;
    width: 7px;
    top: 50%;
    left: 4px;
    transform: translateY(-50%);
    border-radius: 5px;
    position: absolute;
    background-color: var(--primaryColor);
}
.deviceAnswerBox:last-child .deviceAnswerCard{
    border: none;
}
.deviceAnswerTitle {
    font-size: 14px;
    color: black;
    font-weight: bold;
}

.deviceAnswer
{
    font-size: 13px;
    text-transform: capitalize;
}


.seriesName {
    border-radius: 6px;
    padding: 10px 16px;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
    background: white;
    color: black;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
}
.seriesName:hover {
    color: white;
    background-color: var(--primaryColor);
}

/*Check Out Page*/

.checkOutPageSection {
    background: #efefef;
}
.checkOutBox {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.checkOutIconsContainer {
    padding-top: 14px;
}

.checkOutIconsBox {
    display: flex;
    gap: 10px;
    width: 100%;
    position: relative;
}
.checkOutIconBox {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    width: 33%;
    font-size: 11.7px;
    font-weight: bold;
    position: relative;
}
.checkOutIconBox:not(:last-child)::before {
    content: "";
    height: 82%;
    width: 2px;
    top: 50%;
    left: calc(100% + 5px);
    transform: translateY(-50%);
    position: absolute;
    background: #e5e5e5;
}

.checkOutIcon {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 26px;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(45deg, var(--primaryColor), #00ffc7);
}

.checkOutSummaryTitle {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 7px;
}
.checkOutSummaryItem {
    display: flex;
    align-items: center;
    font-size: 14px;
    /* font-weight: 400; */
    padding: 0 0 8px;
    margin: 0 0 8px;
    text-transform: capitalize;
    justify-content: space-between;
    border-bottom: 1.4px dashed var(--primaryColor);
}
.checkOutSummaryItem:last-child {
    border: none;
}
.checkOutSummaryItemPrice span {
    vertical-align: middle;
}

.checkOutSummaryItem.fullWidth {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    justify-content: center;
}
.checkOutSummaryItem.fullWidth > div {
    width: 100%;
}
.applyCouponBox {
    display: flex;
    position: relative;
    z-index: 1;
    margin-bottom: 5px;
}
.applyCouponInput
{
    width: 100%;
    margin: 0;
    border: 1px solid rgba(0,0,0,0.13);
    border-radius: 0;
    padding: 5px 40px 5px 12px;
}
.applyCouponBtn
{
    top: 0;
    right: 0;
    height: 100%;
    width: 60px;
    border: none;
    position: absolute;
    background: transparent;
}


.checkOutBtn {
    width: 100%;
    display: block;
}

.checkOutPaymentModeContainer {
    display: flex;
    gap: 3px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.checkOutPaymentModeBox {
    width: calc((100% / 5) - 4px);
    border: 1.2px solid gray;
    border-radius: 3px;
    overflow: hidden;
    padding: 0 4px;
    background-color: white;
}




select.minimal {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    calc(100% - 2.5em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
}

select.minimal:focus {
  background-image:
    linear-gradient(45deg, green 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, green 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 15px) 1em,
    calc(100% - 20px) 1em,
    calc(100% - 2.5em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
  border-color: green;
  outline: 0;
}

.customCheckOutForm {
    color: black;
    margin: 0;
    padding: 20px 16px;
    background-color: white;
    box-shadow: 0 0 5px rgba(0,0,0,0.12);
    border-radius: 10px;
}
.customCheckOutFormTitle {
    margin: 7px 0 12px;
    font-size: 23px;
    font-weight:bold;
    text-align: center;
}

.customFormSeperator {
    position: relative;
    margin: 24px 0 16px;
}
.customFormSeperator::before {
    content: '';
    width: 100%;
    top: 50%;
    position: absolute;
    border-radius: 22px;
    border: none;
    transform: translateY(-50%);
    border-top: 3px solid var(--primaryColor);
}
.customSeperatorTitle {
    width: max-content;
    background-color: white;
    padding: 7px 12px;
    margin-left: 13px;
    position: relative;
    line-height: 1;
    z-index: 2;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0,0,0,0.12);
}
.customCheckOutForm label, .inputTitle {
    display: block;
    margin: 0;
    line-height: 1.5;
    font-weight: bold;
    margin-left: 2px;
}
.customCheckOutForm label span{
    /*color: red;*/
}
.inputData {
    cursor: not-allowed;
}

.customCheckOutForm label.questionsOptionsBox {
    width: 100%;
    background: white;
}

.checkOutSummaryItemFinalPrice
{
    font-size: 120%;
}

.selectPickUpdateBox {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.selectPickUpLabel {
    width: 100%;
    display: flex;
    padding: 7px;
    text-align: center;
    align-items: center;
    position: relative;
    font-weight: 500;
    justify-content: center;
    background-color: white;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}
.selectInput {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    appearance: none;
    z-index: 1;
    -webkit-appearance: none;
}
.selectInput::before {
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: var(--primaryColor);
    z-index: -1;
    opacity: 0;
    transition: 0.5s;
}
.selectInputDateContainer {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
    transition: 0.5s;
}
.selectInput:checked::before
{
    opacity: 1;
}
.selectInput:checked ~ .selectInputDateContainer {
    color: white;
}
.selectInputDateDay {
    font-size: 24px;
    line-height: 1.3;
}

.thankYouPageSection {
    background-color: #efefef;
}
.thankYouBox {
    width: 100%;
    position: relative;
    text-align: center;
    color: black;
}
.thankYouContent {
    width: 100%;
    max-width: 850px;
    margin: auto;
    padding: 20px 16px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
}
.thankYouImage {
    width: 120px;
    margin: auto;
    padding: 12px 0 18px;
}
.thankYouTitle {
    font-size: 26px;
    font-weight: bold;
}
.thankYouPara {
    font-size: 18px;
    margin: 2px 0 7px;
}
.thankYouOrderContainer {
    width: 100%;
    margin: 12px 0;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.12);
    /* border: 1.4px dashed var(--primaryColor); */
}
.thankYouOrderMainTitle {
    padding: 8px 16px;
    font-size: 16px;
    font-weight: bold;
}
.thankYouOrderList
{
    padding: 0 16px;
}
.thankYouOrderItem {
    padding: 4px 7px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px dashed var(--primaryColor);
}
.thankYouOrderItem:last-child {
    border: none;
}
.thankYouOrderTitle {
    font-weight: bold;
}
.thankYouDisclaimer {
    font-size: 12px;
    color: var(--primaryColor);
    font-weight: bold;
}


.layer_2 {
    display: inline-block;
    width: 16px;
    margin-right: 7px;
    margin-bottom: 2px;
}
.cls-1 {
    fill: none;
}

.cls-2 {
    fill: #fff;
}

[disabled] .layer_2 .cls-2
{
    fill: #969696;
}





/*Become a Partner*/
/*.becomePartnerSection {*/
/*    position: relative;*/
/*    box-shadow: inset 0 1px 5px rgba(0,0,0,0.15);*/
/*    background-color: var(--primaryColor);*/
/*}*/
/*.becomePartnerSection::before {*/
/*    content: '';*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    bottom: -1px;*/
/*    left: 0;*/
/*    position: absolute;*/
/*    background: url("../images/wave.png") bottom left no-repeat;*/
/*    background-size: 100%;*/
    /*box-shadow: inset 0 1px 3px rgba(0,0,0,0.14);*/
/*}*/
.becomeParnterFormBox {
    padding: 20px 16px;
    text-align: center;
    color: black;
    margin-top: 12px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
}
.becomeParnterFormBox label
{
    font-weight: bold;
    margin-bottom: 0;
}
.imageContainer{
    position: relative;
}
.imageContainer img {
    max-height: 500px;
    display: block;
    margin: auto;
}

.highlightBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    /*max-width: 200px;*/
    width: 100%;
    position: relative;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 10px;
    margin: auto;
}
.highlightImage {
    max-width: 120px;
}
.highlightText {
    font-weight: bold;
    color: black;
    font-size: 18px;
    text-align: center;
    margin-top: 5px;
}

.vision-rotating-icon {
    width: 100px;
    margin-top: 12px;
}
.vision-rotating-icon img{
    animation: rotate 10s linear infinite;
}

.threeRsSection {
    background: var(--primaryColor);
    color: white;
}

.threeRs {
    text-transform: uppercase;
    font-weight: bold;
    color: white;
    text-align: center;
    font-size: 18.5px;
    word-spacing: 4px;
    line-height: 1.2;
    margin-bottom: 18px;
}
.threeRs .text-dark {
    color: white !important;
    background: var(--primaryColor);
    padding: 4px 14px;
}

.threeRsList {
    margin: 14px 0 32px;
}

.threeRsList ul {
    padding-left: 24px;
}
.threeRsList li {
    color: white;
    margin: 6px 0 8px;
    position: relative;
}

.threeRsList li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    color: white;
    /*color: var(--primaryColor);*/
    border-radius: 50%;
    font-weight: bold;
    position: absolute;
    right: calc(100% + 8px);
}
.e-wasteimage {
    max-width: 100%;
    width: 240px;
}

.threeRsSectionTwo {
    background-image: linear-gradient(0deg, #ffffffe6, transparent), url(../images/grass_background_1.jpg);
    background-size: cover;
    background-position: bottom;
    padding-bottom: 80px;
    padding-top: 60px;
}




@keyframes rotate
{
    to
    {
        transform: rotate(360deg);
    }
}


@media (min-width: 1200px){
    
    .container-xl {
        max-width: unset;
    }
    
}
@media(max-width:786px){
      .navigationLinks {
        margin-left:-0.7rem !important;
    }
    .megaMenus{
                 margin-left: 1.8rem !important;
    }
}
@media screen and (max-width: 991px)
{
        .navigationMenuOpen {
        height: 35px;
        margin-right: .6rem;
        width: 35px;
        display: flex;
        align-items: center;
        font-size: 17px;
        justify-content: center;
        color: #5151ff;
        cursor: pointer;
        border-radius: 3px;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
        padding: 10px;
    }
    .linksContainer
    {
        height: 100vh;
        top: 0;
        left: 0;
        width: 100%;
        position: fixed;
        pointer-events: none;
        opacity: 0;
        z-index: 1;
        backdrop-filter: blur(5px);
        background-color: rgba(0,0,0,0.16);
    }
    .linksContainer.active
    {
        pointer-events: initial;
        opacity: 1;
    }
    .linksContainer div[class*="col"]
    {
        padding: 0;
    }
    .navigationLinkContainer a
    {
        transition: 0.5s;
        position: relative;
    }
    .navigationLinkContainer a:hover
    {
        background-color: #f0f0f0;
    }
    .navigationLinks {
        /* padding-top: 30px; */
        width: 80%;
        font-size: 12px;
        
        max-width: 280px;
        position: relative;
        justify-content: flex-start;
        flex-direction: column;
        background-color: white;
        transition: 0.5s;
        height: 100%;
        padding-bottom: 80px;
        padding-left: 0;
        overflow-y: auto;
        transform: translateX(-100%);
    }
    
    .linksContainer.active .navigationLinks
    {
        transform: translateX(0);
    }
    .navigationProfile {
        display: block;
    }
    .mobileNav
    {
        display: block;
    }
    .megaMenuLinkContainer {
        margin-bottom: 0px;
        padding-top: 50px;
        text-align: left;
    }
    .goBackBtn {
        height: 50px;
        width: 100%;
        top: 0;
        left: 0;
        transition: 0.3s;
        align-items: center;
        cursor: pointer;
        z-index: 1;
        background-color: #efefef;
        display: none;
        position: fixed;
        font-size: 18px;
        font-weight: bold;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow-x: hidden;
    }
    .hasSubMegaMenu .goBackBtn {
        z-index: 1;
    }
    .goBackBtn i {
        font-size: 13px;
        margin: 0 7px 0 10px;
    }
    .mobileNav .closeBtn {
        height: 50px;
        width: 32px;
        top: 0;
        right: 0;
        display: flex;
        transition: 0.3s;
        align-items: center;
        justify-content: center;
        position: absolute;
        cursor: pointer;
        z-index: 100;
        background-color: transparent;
    }
    .fixedNavigationPhoneText {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 80%;
        max-width: 280px;
        z-index: 1;
        display: block;
        line-height: 1.5;
        padding: 7px 12px;
        font-weight: 500;
        background-color: white;
    }
    .fixedPhoneLink {
        font-size: 1.3em;
        font-weight: bold;
    }
    .haveMegaMenu.active .goBackBtn
    {
        display: flex;
    }
    .goBackBtn i
    {
        pointer-events: none;
    }
    .mobileNav .closeBtn:hover
    {
        color: white;
        background-color: #f00;
    }
    
    .navigationLinkContainer {
        padding: 0;
        position: relative;
        flex: initial;
    }
    .navigationLinkContainer a {
        padding: 9px 16px;
        display: block;
        width: 100%;
        font-size: 16px;
    }
    .navigationLinkContainer a.viewMoreBtn {
        margin: 7px auto;
        text-align: center;
        width: calc(100% - 24px);
        color: #206c6d;
        padding: 7px 12px;
        border-radius: 6px;
        transition: 0.33s linear;
        border: 1px solid #206c6d;
    }
    .navigationLinkContainer a.viewMoreBtn:hover
    {
        background-color: #206c6d;
        color: white;
    }
    
    .navigationLinkContainer .haveMegaMenu a
    {
        padding: 7px 35px 7px 12px;
        display: block;
        width: 100%;
    }
    .navigationLinkContainer > a::before
    {
        display: none;
    }
    
    .haveMegaMenu::after {
        display: none;
    }
    .megaMenuLinkBox
    {
        position: relative;
    }
    .megaMenuLinkBox.hasSubMegaMenu::before, .navigationLinkContainer.haveMegaMenu::before {
        content: "\f105";
        right: 0;
        padding-right: 15px;
        height: 100%;
        width: 50px;
        display: flex;
        position: absolute;
        font-family: "Font Awesome 5 Free";
        justify-content: flex-end;
        align-items: center;
        z-index: 1;
        font-size: 14px;
        color: #5151ff;
        font-weight: bold;
        cursor: pointer;
    }
    .megaMenu {
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        color: #000;
        font-weight: 400;
        position: fixed;
        transition: 0.5s;
        z-index: 2;
        opacity: 1;
        visibility: visible;
        pointer-events: initial;
        transform: translateY(0) translateX(-107%);
    }
    .megaMenu .container{
        width: 100%;
    }
    .haveMegaMenu:hover .megaMenu {
        transform: translateY(0) translateX(-107%);
    }
    .subMegaMenu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: white;
        z-index: 2;
        transition: 0.5s;
        padding-top: 50px;
        transform: translateY(0) translateX(-107%);
    }
    .hasSubMegaMenu.active .subMegaMenu {
        transform: translateY(0) translateX(0%);
    }
    .subMegaMenu .megaMenuLinkBox {
        border: none;
    }
    .haveMegaMenu.active .megaMenu
    {
        transform: translateX(0);
    }
    .megaMenu > div:first-child {
        height: 100vh;
        overflow-y: auto;
    }
    .megaMenu > div::-webkit-scrollbar {
        width: 8px;
        height: 8px;
        background-color: #fff;
    }
    .megaMenu > div::-webkit-scrollbar-thumb {
        background-color: #dfdfdf;
    }
    .megaMenuRow {
        padding: 0;
        padding-top: 50px;
        border: none;
        display: flex;
        height: 100vh;
        overflow-y: auto;
        flex-direction: column;
        align-content: flex-start;
    }
    .megaMenuLinkContainer .megaMenuLinkBox.hasSubMegaMenu > a {
        font-weight: normal;
    }
    .modalBtn
    {
        display: none;
    }
    .searchBarForm {
        padding-bottom: 7px;
    }
    
    .loginPopUpBox {
        flex-direction: column;
    }
    .loginPopUpTitleContainer {
        width: 100%;
        background: white;
        color: black;
        padding: 0 16px;
        box-shadow: none;
        margin: 0;
        line-height: normal;
    }
    .loginPopUpTitle {
        font-size: 18px;
        padding: 16px 0 0;
    }
    .loginPopUpImage {
        display: none;
    }
    .loginPopUpSlidesContainer {
        width: 100%;
        padding: 0 16px;
        margin-top: 12px;
    }
    
    
    .whyChooseUsBox {
        font-size: 13px;
        height: 48px;
    }
    .whyChooseUsBox:hover {
        /*height: unset;*/
    }
    .blogDetailContainer {
        padding: 16px 0;
    }
    .thankYouOrderItem {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media only screen and (max-width: 768px)
{
    .appSectionImage img {
        transform: scale(1);
    }
    .recentBlogsImage
    {
        width: 80px;
        max-width: unset;
    }
    .recentBlogsContent {
        width: calc(100% - 80px);
    }
    
    .brandCard {
        width: calc((100% / 4) - 9px);
    }
    
    .deviceVarientBox {
        padding: 7px 10px 7px 28px;
    }
    .deviceVarientBox input {
        height: 15px;
        width: 15px;
        left: 7px;
    }
    
}
@media only screen and (max-width: 575px)
{
       .headerLocationBtn {
        font-size: 12px;
        gap: 4px;
        padding: 4px 6px;
        border: none;
        margin-top: 0.2rem;
    }
    .sellCardTitle {
        padding: 5px 12px;
        font-size: 12px;
    }
    
    .checkOutIconsBox {
        flex-wrap: wrap;
        justify-content: center;
    }
    .checkOutIconBox
    {
        width: calc(33% - 10px);
    }
    .checkOutIconBox::before {
        display: none;
    }
}
@media only screen and (max-width: 350px)
{
    
    .whyChooseUsBox {
        font-size: 12px;
        height: unset;
    }
    .whyChooseUsBox:hover {
        height: unset;
    }
    .brandCard {
        width: calc((100% / 3) - 9px);
    }
}
    
    
    

/*Custom User Codes*/

.userProfile
{
    position: relative;
}
.userProfile .megaMenu {
    left: unset;
    right: 0;
}
.linksContainer.userProfile .navigationLinks {
    padding: 0;
}
a.userProfileLink {
    display: flex;
    width: max-content;
    align-items: center;
    flex-direction: row;
    justify-content: flex-end;
    padding: 4px 24px 4px 7px;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
}
a.userProfileLink img{
    width: 30px;
    display: block;
}

.userHeader li.navigationLinkContainer.haveMegaMenu::after {
    position: absolute;
    right: 8px;
}

.userProfileCardContainer {
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
    min-height: 45px;
    padding: 25px 35px;
    border-radius: 5px;
    font-size: 16px;
    color: #fff;
    margin-bottom: 12px;
    background: #5151FF;
}

.userProfileName
{
    font-size: 140%;
    font-weight: bold;
    color: var(--primaryColor);
}
.userProfileName::after
{
    content: ' !';
    color: black;
}


.sideBarNavigationContainer {
    padding: 20px;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
    border-radius: 5px;
    margin-bottom: 12px;
}

.sideBarNavigationLink {
        padding: 6px 12px;
    color: #222;
    font-weight: 600;
  transition: 0.2s;
    margin-bottom: 8px;
    border-radius: 5px;
}
.sideBarNavigationLink:hover{
       background: #5151FF; 
       color: #fff;
}
.sideBarNavigationLink a{
    color: inherit;
}

.userOrdersContainer {
    position: relative;
}
.userOrdersCards {
    position: relative;
}
.orderDetailBox {
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
    border-radius: 7px;
    padding: 12px;
    margin-bottom: 12px;
}
.orderDetail {
    display: flex;
    align-items: center;
}

.orderImage {
    width: 80px;
    display: flex;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 /1;
    padding: 4px;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
}
.orderImage img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}
.orderContent {
    display: flex;
    color: black;
    justify-content: space-between;
    width: calc(100% - 80px);
    padding-left: 12px;
}
.orderTitle {
    font-size: 120%;
    font-weight: bolder;
}
.orderAmount {
    font-weight: 500;
}
.orderAmount span {
    font-weight: 700;
    font-size: 110%;
}
.order {
    font-size: 90%;
    font-weight: bold;
}
.loginPopUpInputBox .customInputTitleText a{
        cursor: pointer;
}
.loginSlideBottom{
    margin-top: 12px;
}






.card.rounded.shadow.border-0 {
    height: 100%;
}
 .nevbold{
     font-size: 1rem  !important;font-weight: bold  !important;
     
 }

@media (max-width: 991px)
{
    a.userProfileLink {
        width: 100%;
        box-shadow: none;
        justify-content: flex-start;
        /* border-bottom: 1px solid black; */
    }
    .orderContent {
        display: flex;
        flex-direction: column;
    }
}

.questionTitles {
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
}

.questionTitleNotes {
  text-align: center;
  margin-bottom: 13px;
}


li.suggestion-item:hover {
    cursor: pointer;
    background: #5151FF;
  color:white;
}

.selectInput:checked + .selectPickUpLabel {
    color: white;
    background-color: var(--primaryColor);
}
.selectPickUpLabel:has(.selectInput:checked) {
    color: white;
    background-color: var(--primaryColor);
}




  .customInput {
   display: block;
   visibility: visible;
   position: static;
   }
   .error-message {
   color: red;
   }
   /* menu toggle */
   .menu-toggle {
   position: relative;
   width: 40px;
   height: 40px;
   cursor: not-allowed;
   display: flex;
   justify-content: center;
   align-items: center;
   }
   .menu-toggle::before {
   content: '';
   position: absolute;
   width: 24px;
   height: 4px;
   background: #000;
   box-shadow: 0 8px 0 #000,
   0 -8px 0 #000;
   }
   /* profile menu */
   .profile {
   position: relative;
   display: flex;
   justify-content: flex-end;
   align-items: center;
   gap: 12px;
   cursor: pointer;
   text-align: end;
   display:none;
   }
   /* Show .profile only on mobile view */
   @media (max-width: 768px) {
   .profile {
   position: relative;
   display: flex;
   justify-content: flex-end;
   align-items: center;
   gap: 12px;
   cursor: pointer;
   text-align: end;
   display:block;
   }
   }
   .profile h3 {
   text-align: end;
   line-height: 1;
   margin-bottom: 4px;
   font-weight: 600;
   }
   .profile p {
   line-height: 1;
   font-size: 14px;
   opacity: .6;
   }
   .profile .img-box {
   position: relative;
   width: 40px;
   height: 40px;
   border-radius: 50%;
   overflow: hidden;
   }
 .profile .img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    object-fit: cover;
}
   /* menu (the right one) */
   .menu {
   position: absolute;
   top: 7rem;
   right: 16px;
   width: 200px;
   min-height: 100px;
   background: #fff;
   box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
   opacity: 0;
   transform: translateY(-10px);
   visibility: hidden;
   transition: 300ms;
   }
   .menu::before {
   content: '';
   position: absolute;
   top: -10px;
   right: 14px;
   width: 20px;
   height: 20px;
   background: #fff;
   transform: rotate(45deg);
   z-index: -1;
   }
   .menu.active {
   opacity: 1;
   transform: translateY(0);
   visibility: visible;
   }
   /* menu links */
   .menu ul {
   position: relative;
   display: flex;
   flex-direction: column;
   z-index: 10;
   background: #fff;
   }
   .menu ul li {
   list-style: none;
   }
   .menu ul li:hover {
   background: #eee;
   }
   .menu ul li a {
   text-decoration: none;
   color: #000;
   display: flex;
   align-items: center;
   padding: 15px 20px;
   gap: 6px;
   }
   .menu ul li a i {
   font-size: 1.2em;
   }
   
     #loader {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(255, 255, 255, 0.8);
   z-index: 9999;
   display: flex;
   align-items: center;
   justify-content: center;
   }
   .spinner {
   width: 40px;
   height: 40px;
   border: 4px solid #ccc;
   border-top: 4px solid #007bff;
   border-radius: 50%;
   animation: spin 1s linear infinite;
   }
   @keyframes spin {
   0% { transform: rotate(0deg); }
   100% { transform: rotate(360deg); }
   }
   
    @media (max-width: 767.98px) {
      .card .row.no-gutters {
         flex-direction: column;
      }
      .card .col-md-5, .card .col-md-7 {
         max-width: 100%;
         flex: 0 0 100%;
      }
   }
   .card.border-0.shadow-sm {
    height: 13rem;
}
.blog_list   .card.border-0.shadow-sm {
    height: unset;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999 !important;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}

/*.row.align-items-center {*/
/*    border-bottom: 0.5px dashed lightgray;*/
/*}*/

/*=======================================================*/

.footer-link .social-icons{
    justify-content: start;
}
.section-title h1.rating {
    font-size: 1.6rem !important;
}
.google-logo img{
    width: 26%;
    margin-top: 12px;
    margin-bottom: 12px;
}

.testimonialSection{
    background: #efefef;
   
}


@media (max-width: 876px) {
    .sellCardImage img {
        width: 70%;
        transition: 0.3s;
        object-fit: contain;
        display: block;
        /* aspect-ratio: 16 / 11; */ /* Uncomment if needed */
    }

    .sellCardImage {
        width: 153px !important;
        height: 149px !important;
        display: flex;
        border-radius: 100%;
        overflow: hidden;
        align-items: center;
        justify-content: center;
        background-color: #007bff21;
    }

    .sellCard {
        display: flex;
        overflow: hidden;
        /* max-width: 14rem; */
        /* margin: auto; */
        /* position: relative; */
        /* filter: drop-shadow(0 0 5px #dfdfdf); */
    }
    .enquiryBtn {
       top: 70%;
    left: -3.7rem;
    transform: translate(1%, 20%) rotate(-91deg);
    transform-origin: top;
    position: fixed;
    line-height: 1;
    color: white;
    padding: 14px 19px 12px;
    display: block;
    z-index: 20000;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0 0 10px 10px;
    background-color: var(--primaryColor);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pseudo-search {
 margin-top: -18px  !important;   
}
.becomePartnerContainer h1.text-white{
  color: #001935 !important; 
          font-size: 40px;
        margin: 20px 0;
}
.whatWeOfferDetails .whatWeOfferSellBtnBox a {
 
    padding: 10px 10px !important;
    font-size: 13px;
}
.whatWeOfferBox .whatWeOfferDetails {
    padding: 0 12px 20px;
}
}

.searchBarForm {
  display: inline-block;
  margin: 0 auto;
}

.pseudo-search {
    width:100%;
        margin-top: 18px;
  display: inline-flex;
  border: 2px solid #ccc;
  border-radius: 100px;
  padding: 0px 15px;
  transition: background-color 0.5 ease-in-out;
/*--tw-bg-opacity: 1;*/
background-color: rgba(81, 81, 255, 0.179);
/*background-color: rgb(247 247 247);*/
}
  input {
    border: 0;
    background-color: transparent;
     width:100%;

    
  }
  
  button, i {
    border: none;
    background: none;
    cursor: pointer;
  }
  
  input#search {
    border: none;
    background: rgb(221 221 244 / 13%);
}

button.fa.fa-search {
    font-size: 1.5rem;
    color: lightgray;
}

@media (min-width: 996px) {
    a#headerLocationBtn {
        margin-left: -1rem;
    }
    .imageWithBackground{
        bottom: -48px;
    }
}


.faqSectionContainer .card-header {

   background-color: unset;
   color: #000;
    }

.sellCard .cate_name p{
    text-align: center;
    font-weight: 600;
    padding-top: 15px;
}

.banner_sliders {
    position: relative;
    z-index: 1;
}
.deviceItemPrice.text-danger{
    color: #5151ff !important;
}


/*==================*/


.whatWeOfferName{
    font-size: 14px;
    width: 62%;
    text-align: left !important;
}


.whatWeOfferDetails .whatWeOfferSellBtnBox a {
    position: relative; 
    bottom: unset; 
    padding: 10px 16px;
    text-align: center;
   width: unset; 
    color: white;
    border-radius: 6px;
    background-color: var(--primaryColor);
}
.whatWeOfferBox .whatWeOfferDetails {
    padding: 0 12px 35px;
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}














