/*@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");*/
@import url('https://fonts.googleapis.com/css2?family=Amaranth:wght@400;700&display=swap');

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
  text-decoration: none;
}

a {
  text-decoration: none;
}

button:focus {
  outline: none;
}

input[type=submit] {
  all: unset;
}

body {
    font-family: 'Amaranth', sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

p {
  color: #666;
  line-height: 1.5em;
}

h1 {
  font-size: 52px;
  font-weight: 900;
  letter-spacing: 1px;
}

h2 {
  font-size: 42px;
  font-weight: 800;
}

/*h3 {*/
/*  font-size: 25px;*/
/*  font-weight: 600;*/
/*}*/

h4 {
  font-size: 22px;
}

.d-h1 {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0;
  color: #032A51;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mt-20 {
  margin-top: 20px;
}

.mr-10 {
  margin-right: 10px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mt-150 {
  margin-top: 150px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-200 {
  padding-top: 200px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-200 {
  padding-bottom: 200px;
}

.px-30 {
  padding-left: 30px;
  padding-right: 30px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.p-10 {
  padding: 10px;
}

.p-20 {
  padding: 20px;
}

.p-30 {
  padding: 30px;
}

.txt-left {
  text-align: left;
}

.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-10 {
  margin-left: 10px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.font-14 {
  font-size: 14px;
}

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

.font-16 {
  font-size: 16px;
}

.font-18 {
  font-size: 18px;
}

.font-20 {
  font-size: 20px;
}

.font-22 {
  font-size: 22px;
}

.font-24 {
  font-size: 24px;
}

.font-28 {
  font-size: 28px;
}

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

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

.img-responsive {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.5s ease-in-out;
}

.relative {
  position: relative;
}

.white {
  color: #fff;
}

.black {
  color: #000000;
}

.green {
  color: #032A51;
}

.grey {
  color: #828282;
}

.red {
  color: #f20f0f;
}

.primary {
  color: #ED462F;
}

.bg-white {
  background: #fff;
}

.bg-grey {
  background: #fcfcfc;
}

.bg-primary {
  background: #ED462F;
}

.width-100 {
  width: 100%;
}

/* FLEX */
.flex {
  display: flex !important;
}

.row {
  display: flex;
  flex-direction: row;
}

.column {
  display: flex;
  flex-direction: column;
}

.gap-05 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.gap-30 {
  gap: 30px;
}

.gap-50 {
  gap: 50px;
}

.align-center {
  align-items: center;
}

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

.justify-end {
  justify-content: flex-end;
}

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

.wrap {
  flex-wrap: wrap;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid-1-2 {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

.g-gap-10 {
  grid-gap: 10px;
}

.g-gap-15 {
  grid-gap: 15px;
}

.g-gap-20 {
  grid-gap: 20px;
}

.g-c-gap-20 {
  grid-column-gap: 20px;
}

.g-gap-30 {
  grid-gap: 30px;
}

.g-gap-40 {
  grid-gap: 40px;
}

.g-gap-5 {
  grid-gap: 5px;
}

.g-gap-50 {
  grid-gap: 50px;
}

.g-gap-70 {
  grid-gap: 70px;
}

.g-gap-100 {
  grid-gap: 100px;
}

/* .container {
  width: 1140px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;

} */

.bg-container {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;



}

.signin-btn {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* .btn {
  
  display: flex;
  align-items: center;
  justify-content: center;

} */

.btn i {
  font-size: 20px;
}

.btn.small {
  font-size: 14px;
  padding: 10px 15px;
  height: 40px;
}

.btn.green-btn {
  background: #032A51;
  color: #fff;
}

.btn.white-btn {
  background: #fff;
  color: #000000;
}

.btn.white-btn:hover {
  background: #032A51;
  color: #fff;
  transition: all 0.5s ease-in-out;
}

.btn.primary-btn {
  background: #ED462F;
  color: #fff;
}

.btn.primary-btn:hover {
  background: #032A51;
  transition: all 0.5s ease-in-out;
}

.btn.white-border-btn {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.btn.white-border-btn:hover {
  background: #032A51;
  border: 1px solid #032A51;
  transition: all 0.5s ease-in-out;
}

.topmost-header {
  background: #ED462F;
  box-sizing: border-box;
  height: 65px;
  display: flex;
  align-items: center;
}

.topmost-header .signin-btn {
  margin-right: 0;
  border-right: 1px solid #fff;
  padding-right: 10px;
}

.topmost-header .signin-btn:last-child {
  border-right: 0;
}

.main-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5098039216);
}

.header-grid {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  width: 90px;
}

.banner-section {
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 150px;
  height: 80vh;
  overflow: hidden;
}

.banner-section .container {
  position: relative;
  z-index: 1;
}

.banner-section::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: rgba(8, 8, 8, 0.6196078431);
}

.banner-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.banner-slider .img-wrapper {
  height: 80vh;
  width: 100%;
}

.banner-slider .img-wrapper .img-responsive {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.nav-div ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-div ul li a {
  color: #000000;
  padding: 45px 20px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.nav-div ul li a i {
  font-size: 14px;
  margin-top: 5px;
}

.nav-div ul li.dropdown-link {
  position: relative;
}

.nav-div ul li.dropdown-link .dropdown-list {
  position: absolute;
  left: 0;
  top: 110%;
  background: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  display: block;
  gap: 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}

.nav-div ul li.dropdown-link .dropdown-list::before {
  content: "";
  position: absolute;
  top: -12px;
  width: 0;
  height: 0;
  left: 20px;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #fff;
}

.nav-div ul li.dropdown-link .dropdown-list li {
  border-bottom: 1px solid #ccc;
}

.nav-div ul li.dropdown-link .dropdown-list li:last-child {
  border: 0;
}

.nav-div ul li.dropdown-link .dropdown-list li a {
  color: black;
  padding: 10px 20px;
  font-size: 15px;
}

.nav-div ul li.dropdown-link .dropdown-list li a:hover {
  background: #032A51;
  color: #fff;
  transition: all 0.5s ease-in-out;
}

.nav-div ul li.dropdown-link:hover .dropdown-list {
  top: 100%;
  opacity: 1;
  visibility: visible;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.title-wrapper .sub-text {
  font-size: 18px;
  letter-spacing: 2px;
}



.tab-content {
  display: none;
  transition: all 0.5s ease-in-out;
}

.tab-content:nth-child(1) {
  display: block;
  transition: all 0.5s ease-in-out;
}

.tab-box .tab-links {
  display: flex;
  gap: 10px;
}

.tab-box .tab-links .tab-link {
  background: #ED462F;
  color: #fff;
  padding: 20px;
  border: none;
  font-size: 16px;
font-family: 'Amaranth', sans-serif;
  font-weight: 500;
  position: relative;
  cursor: pointer;
}

.tab-box .tab-links .tab-link::before {
  content: "";
  position: absolute;
  top: 100%;
  width: 0;
  height: 0;
  left: 40%;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #687389;
}

.tab-box .tab-links .tab-link.active {
  background: #43C370;
}

.tab-box .tab-links .tab-link.active::before {
  border-top: 10px solid #43C370;
}

.tab-box .tab-content {
  background: #ED462F;
  margin-top: 20px;
  padding: 30px;
}

.tab-box .tab-content .wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  grid-gap: 20px;
}

.my-input {
  border: 0;
  padding: 12px 20px;
font-family: 'Amaranth', sans-serif;
  font-size: 16px;
  border: 1px solid #ccc;
  outline: none;
  width: 100%;
}

.p-module-1 .img-wrapper {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}


.p-module-1 .img-wrapper .img-responsive {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.p-module-1 .img-wrapper .price {
  position: absolute;
  background: #032A51;
  padding: 5px 10px;
  bottom: 0;
  left: 0;
  color: #fff;
  font-size: 14px;
}

.p-module-1 .img-wrapper .tag {
  position: absolute;
  background: #ED462F;
  padding: 5px 10px;
  bottom: 0;
  right: 0;
  color: #fff;
  font-size: 14px;
}

.p-module-1 .details {
  padding: 20px;
  border: 1px solid #ccc;
  border-top: 0;
  color: #555555;
  font-size: 15px;
  /*height: 130px;*/
  box-sizing: border-box;
  background: #fff;
}

.p-module-1 .details i {
  font-size: 13px;
}

.p-module-1 .details .loc-flex {
  margin-top: 10px;
  color: #ED462F;
}

.p-module-1 .details .loc-flex p {
  color: #ED462F;
}

.p-module-1 .details .title {
  font-size: 20px;
  font-weight: 700;
  color: #032A51;
}

.p-module-1:hover .img-wrapper .img-responsive {
  transform: scale(1.1);
  transition: all 0.5s ease-in-out;
}

.why-choose-module {
  padding: 30px;
  background: #fff;
  border: 1px solid #e7e7e7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.why-choose-module .icon {
  height: 80px;
  margin-bottom: 20px;
}

.why-choose-module .title {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.why-choose-us-section {
  background: #f5f7fb;
}

.footer-div {
  background: #050505;
}

.footer-div h3 {
  position: relative;
  display: inline-block;
}

.footer-div h3::after {
  content: "";
  position: absolute;
  width: 80%;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #ED462F;
  border-radius: 5px;
}

.footer-div .menu-list {
  -moz-column-count: 2;
  column-count: 2;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.footer-div .menu-list li {
  line-height: 2.2em;
}

.footer-div .menu-list li a {
  color: #fff;
  position: relative;
  padding-bottom: 2px;
}

.footer-div .menu-list li a::after {
  content: "";
  position: absolute;
  height: 2px;
  background: #ED462F;
  width: 0;
  bottom: 0;
  left: 0;
  transition: all 0.5s ease-in-out;
}

.footer-div .menu-list li a:hover::after {
  width: 100%;
  transition: all 0.5s ease-in-out;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  grid-gap: 80px;
}

.footer-grid .logo-wrapper {
  width: 200px;
}

.contact-details {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  margin-top: 15px;
}

.contact-details i {
  color: #ED462F;
}

.contact-details a {
  color: #fff;
  position: relative;
}

.contact-details a::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  background: #032A51;
  left: 0;
  bottom: 0;
  transition: all 0.5s ease-in-out;
}

.contact-details a:hover::after {
  width: 100%;
  transition: all 0.5s ease-in-out;
}

.copyright-div {
  padding-top: 15px;
  padding-bottom: 30px;
  border-top: 1px solid #fbfbfb;
}

.soci-medi {
  display: flex;
  gap: 10px;
  align-items: center;
}

.soci-medi a {
  height: 30px;
  width: 30px;
  color: #ED462F;
  background: #fff;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border-radius: 2px;
  transition: all 0.5s ease-in-out;
}

.soci-medi a:hover {
  transform: translateY(-2px);
  transition: all 0.5s ease-in-out;
}

.count-section {
  background: url("../images/banner-parallax.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  position: relative;
}

.count-section::after {
  content: "";
  background: rgba(3, 42, 82, 0.56);
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.count-section .container {
  position: relative;
  z-index: 1;
}

.count-module {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 30px;
  background: #ED462F;
  color: #fff;
}

.count-module i {
  font-size: 35px;
}

.count-module .number {
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 5px;
}

.count-module .title {
  font-size: 18px;
}


.testimonial-section {
  background: url("../images/patter-bg.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.testimonial-module {
  background: #fff;
  padding: 30px;
}

.testimonial-module .client-img {
  height: 80px !important;
  width: 80px !important;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
}

.testimonial-module .name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1em;
  color: #032A51;
}

.testimonial-module .desig {
  font-size: 16px;
  font-weight: 400;
  color: #ED462F;
}

.testimonial-module p {
  margin-top: 25px;
}

.testimonials-slider {
  padding-top: 20px;
  padding-bottom: 20px;
}

.testimonials-slider .owl-nav button {
  background: #ED462F !important;
  height: 50px !important;
  width: 50px !important;
  color: #fff !important;
  font-size: 20px;
  opacity: 1;
  border-radius: 0;
  transition: all 0.5s ease-in-out;
}

.testimonials-slider .owl-nav button:hover {
  background: #032A51 !important;
  transition: all 0.5s ease-in-out;
}

.testimonials-slider .owl-prev {
  position: absolute;
  left: -4em !important;
  top: 35%;
}

.testimonials-slider .owl-next {
  position: absolute;
  top: 35%;
  right: -4em !important;
}

.signup-section {
  background: #f2f2f2;
}

.signup-box {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  padding: 50px;
}

.signup-box .my-input {
  padding: 12px 20px;
}

.my-label {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
}

.col-span {
  grid-area: span 1/span 2;
}

.login-box {
  background: #fff;
  padding: 40px;
  width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.paginations {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.paginations a {
  font-size: 16px;
  background: #ED462F;
  height: 35px;
  width: 35px;
  display: block;
  text-align: center;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.paginations a.active {
  background: #032A51;
}

.paginations a i {
  font-size: 14px;
}

.content p {
  margin-top: 25px;
}

.buy-s-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  grid-gap: 30px;
}

.left-div {
  min-width: 100%;
}

.single-title-wrapper .name {
  font-size: 30px;
  font-weight: 700;
}

.single-title-wrapper .address {
  font-size: 17px;
  color: #6a6a6a;
  margin-top: 5px;
}

.single-title-wrapper .address i {
  font-size: 20px;
  margin-right: 6px;
}

.single-title-wrapper .price {
  font-size: 24px;
  font-weight: 600;
  color: #ED462F;
}

.single-title-wrapper .rate {
  font-size: 17px;
  color: #6a6a6a;
  margin-top: 5px;
}

.simple-white-box {
  background: #fff;
  padding: 30px 25px;
  border: 1px solid #eaeff5;
}

.agent-img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

.agent-flex .agent-name {
  font-weight: 600;
}

.agent-flex p {
  font-size: 14px;
}

.contact-flex li {
  color: #ED462F;
}

.contact-flex li a {
  color: #000000;
}

.recent-module {
  margin-top: 20px;
}

.recent-module .img-home {
  height: 60px;
  width: 80px;
  -o-object-fit: cover;
  object-fit: cover;
}

.recent-module .title {
  color: #000000;
  font-weight: 600;
}

#sync1 .item {
  /*height: 460px;*/
  overflow: hidden;
}

#sync1 .item img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#sync2 .item {
  height: 100px;
}

#sync2 .item img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#sync1.owl-theme {
  position: relative;
}

#sync1.owl-theme .owl-next,
#sync1.owl-theme .owl-prev {
  width: 22px;
  height: 40px;
  margin-top: -20px;
  position: absolute;
  top: 50%;
}

#sync1.owl-theme .owl-prev {
  left: 10px;
}

#sync1.owl-theme .owl-next {
  right: 10px;
}

#sync1.owl-theme .owl-nav button {
  background: #ED462F;
  height: 40px;
  width: 35px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  opacity: 0.8;
  transition: all 0.5s ease-in-out;
}

#sync1.owl-theme .owl-nav button:hover {
  opacity: 1;
  transition: all 0.5s ease-in-out;
}

#sync1 .owl-dots {
  position: absolute;
  bottom: 10px;
  width: 100%;
  left: 0;
}

#sync1.owl-theme .owl-dots .owl-dot span {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  width: 8px !important;
  height: 8px !important;
  margin: 5px !important;
}

#sync1.owl-theme .owl-dots .owl-dot.active span {
  background: #fff;
}

.tag {
  padding: 6px 12px;
  border-radius: 2px;
  background: #fcfcfc;
  color: #000000;
  border: 1px solid #ccc;
  line-height: 1.2em;
  font-size: 14px;
  display: block;
}

.star-rating {
  direction: rtl;
  display: inline-block;
  cursor: default;
}

.star-rating input[type=radio] {
  display: none;
}

.star-rating label {
  color: #bbb;
  font-size: 20px;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.star-rating label:hover,
.star-rating label:hover~label,
.star-rating input[type=radio]:checked~label {
  color: #f2b600;
}

.review-module {
  display: grid;
  grid-template-columns: 80px auto;
  grid-gap: 20px;
  position: relative;
}

.review-module .img-wrapper {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  overflow: hidden;
}

.review-module .img-wrapper .img-responsive {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.review-module .rating {
  position: absolute;
  right: 0;
  top: 0;
}

.rating {
  display: flex;
  gap: 2px;
  align-items: center;
  font-size: 20px;
}

.rating i {
  color: #bbb;
}

.rating i.true {
  color: #f2b600;
}

.review-img-flex img {
  height: 100px;
  width: 150px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}

.cinfo-box {
  padding: 30px;
  background: #fff;
  text-align: center;
  color: #000000;
}

.cinfo-box i {
  font-size: 32px;
  color: #ED462F;
  margin-bottom: 20px;
}

.cinfo-box a {
  color: #000000;
}

.contact-box {
  padding: 40px;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
}

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

.map-wrapper iframe {
  height: 100%;
  width: 100%;
}

/********************  DASHBOARD   ********************/
.dashboard-container {
  width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.mmenu-dashboard {
  display: none;
  position: relative;
}

.mmenu-ham {
  width: 20px;
  height: 20px;
}

.mmenu-ham img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.mmenu-menulist {
  position: absolute;
  background: #032A51;
  right: -20px;
  top: 47px;
  transition: all 0.5s ease-in-out;
  height: 100vh;
  width: 200px;
  transform: translate(110%);
}

.slide-mmenu {
  transition: all 0.5s ease-in-out;
  transform: translate(0px);
}


.dashboard-body {
  margin-left: 250px;
  min-height: 100vh;
  position: relative;
  background: #f9fbfd;
}

.dashboard-body .fixed-left {
  position: fixed;
  height: 100%;
  width: 250px;
  background: #032A51;
  border-right: 1px solid #e3ebf6;
  left: 0;
  top: 0;
  padding: 30px 0;
  box-sizing: border-box;
}

.dashboard-body .fixed-left .logo-wrapper {
  margin: 0 50px;
}

.d-menu-list {
  line-height: 2.7em;
}

.d-menu-list li a {
  display: flex;
  gap: 15px;
  align-items: center;
  color: #fff;
  padding: 0 30px;
  transition: all 0.5s ease-in-out;
}

.d-menu-list li a:hover {
  background: #031f3b;
  transition: all 0.5s ease-in-out;
}

.click-dropdown-btn {
  position: relative;
}

.click-dropdown-btn .drop-btn {
  cursor: pointer;
  border: 0;
  background: transparent;
  outline: none;
font-family: 'Amaranth', sans-serif;
}

.click-dropdown-btn .dropdown-content {
  position: absolute;
  min-width: 180px;
  right: 0px;
  top: 120%;
  background: #fff;
  border: 1px solid #e3ebf6;
  padding: 10px 0px;
  display: none;
  z-index: 1;
}

.click-dropdown-btn .dropdown-content.open {
  display: block;
}

.click-dropdown-btn .dropdown-content a {
  padding: 6px 15px;
  display: block;
  font-size: 14px;
  line-height: 1.4em;
  color: #000000;
  transition: all 0.5s ease-in-out;
}

.click-dropdown-btn .dropdown-content a:hover {
  background: #fcfcfc;
  transition: all 0.5s ease-in-out;
}

.main-body {
  padding: 20px 30px;
}

.small-d-header {
  border-bottom: 1px solid #e3ebf6;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.d-cmn-box {
  background: #fff;
  padding: 30px 40px;
  border: 1px solid #e3ebf6;
}

.noti-btn {
  position: relative;
  font-size: 24px;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.noti-btn span {
  position: absolute;
  height: 18px;
  width: 18px;
  background: #f20f0f;
  color: #fff;
  border-radius: 50%;
  top: -2px;
  right: -2px;
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-btn {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #000000;
  font-size: 15px;
}

.profile-btn.white {
  color: #fff;
}

.profile-btn .dropdown-content {
  min-width: 150px;
}

.profile-btn i {
  font-size: 16px;
}

.profile-btn .usr-img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 1px solid #e3ebf6;
  overflow: hidden;
}

.profile-btn .usr-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.user-p-box {
  background: #fff;
  padding: 30px 50px;
  border: 1px solid #e3ebf6;
  width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.user-module {
  display: flex;
  gap: 20px;
  align-items: center;
}

.user-module .user-img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

.user-module .name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5em;
}

.user-module .desig {
  font-size: 15px;
  color: #6a6a6a;
}

.dash-module {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  gap: 25px;
  padding: 30px 40px;
  background: #fff;
  border: 1px solid #e3ebf6;
  border-radius: 4px;
}

.dash-module i {
  font-size: 40px;
  color: #ED462F;
}

.dash-module .count {
  line-height: 1.2em;
  font-size: 26px;
  font-weight: 700;
}

.dash-module .title {
  font-size: 18px;
  color: #6a6a6a;
}

.list-table {
  width: 100%;
  border-collapse: collapse;
}

.list-table h1 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
}

.list-table thead {
  border-bottom: 1px solid #e3ebf6;
}

.list-table thead th {
  text-align: left;
  padding: 20px;
  padding-top: 0;
}

.list-table thead th:nth-child(1) {
  padding-left: 0;
}

.list-table thead th:last-child {
  padding-right: 0;
}

.list-table td {
  padding: 30px 20px;
  font-size: 15px;
}

.list-table td:nth-child(1) {
  padding-left: 0;
}

.list-table td:last-child {
  padding-right: 0;
}

.list-table td h4 {
  color: #ED462F;
  font-size: 20px;
}

.list-table td .rating {
  margin-top: 10px;
  font-size: 16px;
}

.list-div .img-responsive {
  width: 140px;
  height: 90px;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
  border-radius: 4px;
}

.checkbox-wrap {
  display: flex;
  align-items: center;
}

.checkbox-wrap input {
  height: 20px;
  width: 20px;
  accent-color: #ED462F;
  margin-right: 10px;
}

.profile-pic {
  color: transparent;
  width: 120px;
  height: 120px;
  transition: all 0.3s ease;
  position: relative;
  transition: all 0.3s ease;
}

.profile-pic input {
  display: none;
}

.profile-pic img {
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  z-index: 0;
  box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.35);
}

.profile-pic .-label {
  cursor: pointer;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-direction: column;
  color: #fff;
}

.profile-pic:hover .-label {
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  transition: background-color 0.2s ease-in-out;
  border-radius: 50%;
  margin-bottom: 0;
  position: relative;
}

.profile-pic span {
  display: inline-flex;
  padding: 0.2em;
  height: 2em;
}

.fav-wrap .click {
  font-size: 33px;
  color: rgba(0, 0, 0, 0.5);
  width: 38px;
  height: 38px;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 10px;
  position: relative;
  cursor: pointer;
}

.fav-wrap .click span {
  margin-left: 4px;
  margin-top: 3px;
  z-index: 999;
  position: absolute;
}

.fav-wrap span:hover {
  opacity: 0.8;
}

.fav-wrap span:active {
  transform: scale(0.93, 0.93) translateY(2px);
}

.fav-wrap .ring,
.fav-wrap .ring2 {
  opacity: 0;
  background: grey;
  width: 1px;
  height: 1px;
  position: absolute;
  top: 19px;
  left: 18px;
  border-radius: 50%;
  cursor: pointer;
}

.fav-wrap .active span,
.fav-wrap .active-2 span {
  color: #f52755 !important;
}

.fav-wrap .active-2 .ring {
  width: 58px !important;
  height: 58px !important;
  top: -10px !important;
  left: -10px !important;
  position: absolute;
  border-radius: 50%;
  opacity: 1 !important;
}

.fav-wrap .active-2 .ring {
  background: #f52755 !important;
}

.fav-wrap .active-2 .ring2 {
  background: #fff !important;
}

.fav-wrap .active-3 .ring2 {
  width: 60px !important;
  height: 60px !important;
  top: -11px !important;
  left: -11px !important;
  position: absolute;
  border-radius: 50%;
  opacity: 1 !important;
}

.fav-wrap .info {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  color: grey;
  position: relative;
  top: 30px;
  left: -46px;
  opacity: 0;
  transition: all 0.3s ease;
}

.fav-wrap .info-tog {
  color: #f52755;
  position: relative;
  top: 45px;
  opacity: 1;
}

/*.agent-module {*/
/*  display: grid;*/
/*  grid-template-columns: 300px auto;*/
/*  grid-gap: 50px;*/
/*  align-items: center;*/
/*}*/

.simple-table {
  width: 100%;
  border: 1px solid #dee2e6;
  border-collapse: collapse;
}

.simple-table th,
.simple-table td {
  border: 1px solid #dee2e6;
  padding: 10px;
  text-align: left;
}

.simple-table th {
  background: #f1f4f6;
  color: #ED462F;
}

.admin-review-edit {
  margin-top: 50px;
}

.admin-review-edit:first-child {
  margin-top: 0;
}

.delete-btn {
  border: none;
  background: transparent;
  outline: none;
  font-size: 18px;
  color: #f20f0f;
}

.edit-btn {
  border: none;
  background: transparent;
  outline: none;
  font-size: 18px;
  cursor: pointer;
}

.choice-tab-wrapper .choice-links .tab-link {
  border: 1px solid #ccc;
  background: #fcfcfc;
  padding: 8px 15px;
    font-family: 'Amaranth', sans-serif;
  font-size: 16px;
  border-radius: 3px;
  cursor: pointer;
}

.choice-tab-wrapper .choice-links .tab-link.active {
  background: #ED462F;
  color: #fff!important;
  border: 1px solid #ED462F;
}

.qr-image {
  width: 300px;
  border: 5px solid #e3ebf6;
}

.white-popup-block {
  width: 700px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  padding: 40px;
  padding-bottom: 50px;
  position: relative;
}

.white-popup-block p {
  color: #000000;
  font-size: 18px;
}

.white-popup-block .popup-modal-dismiss {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  line-height: 1;
  color: #000000;
}

.notification-list {
  list-style: disc;
  padding-left: 20px;
}

.notification-list li {
  margin-bottom: 15px;
}

.notification-list li a {
  color: #000000;
  font-size: 17px;
}

.notification-list li a:hover {
  color: #ED462F;
  transition: all 0.5s ease-in-out;
}

.search-wrapper .btn {
  height: auto;
}

.search-wrapper .my-label {
  margin: 0;
  margin-right: 20px;
}

.search-wrapper .my-input {
  font-size: 14px;
}

._2lqg {
  max-height: 200px !important;
}

/*# sourceMappingURL=style.css.map */


.mobile-nav {
  display: none;
}

.mobile-nav-cont {
  position: relative;
}

.mobile-menu {
  /* right: -20px;
  position: absolute;
  z-index: 99;
  top: 58px; */
  background: white;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  width: 230px;
  padding: 20px;

  position: fixed;
  height: 100%;
  top: 0;
  left: -150%;
  width: 350px;
    z-index: 2;
  transition: all 0.5s ease-in-out;
}

.mobile-menu.open{
  left: 0;
  transition: all 0.5s ease-in-out;
}

.close{
  text-align: right;
  font-size: 30px;
}

/* ABOUT CSS START */

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  border: 1px solid #e7e7e7;
  align-items: center;
}

.mission-text,
.vision-text {
  padding: 30px;
}

.core-values {
  background-color: #f5f7fb;
}

.cvg-box .cvg-red {
  color: #ED462F;
}

.cvg-box {
  display: flex;
  align-items: center;
  flex-direction: column;
  transition: all 0.5s ease-in-out;
  gap: 10px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  padding: 40px 20px;
  cursor: pointer;
}

.cvg-box img {
  width: 65px;
  height: auto;
}

.cvg-box p {
  text-align: center;
}

.cvg-box:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  transition: all 0.5s ease-in-out;
}

.popup-modal-dismiss i{
  font-size: 24px;
  color: #050505;
}

.alert-message i{
  font-size: 90px;
  margin-top: 20px;
}

#sucessmessage .alert-message i{
  color: #51B494;
}

#dangermessage .alert-message i{
  color: #F32013;
}

.adv-module .wrapper{
  padding: 25px;
  background: #fff;
}

.adv-module .title{
  margin-top: 15px;
  font-size: 18px;
  font-weight: 500;
  color: #0e0e0e;
  line-height: 1.5;
}

.adv-module .img-responsive{
  min-height: 250px;
  object-fit: cover;
}

.single-box{
  background: #fff;
  padding: 50px;
}

.single-box{
  width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.single-content h1{
  font-size: 38px;
  line-height: 1.4;
}

.single-content p{
  margin-top: 15px;
  color: #474747;
  font-size: 17px;
}

.single-content h4{
  margin-top: 30px;
}

.single-content ul{
  padding-left: 40px;
  margin-top: 20px;
  list-style: disc;
}

.single-content ul li{
  padding-bottom: 15px;
}

.single-content a{
  color: #ED462F;
}

a:hover {
  text-decoration: none;
}

.agent-module {
  display: grid;
  grid-template-columns: 200px auto;
  grid-gap: 30px;
  align-items: flex-start;
}
.agent-module .img-wrapper {
  height: 200px;
  width: 200px;
  overflow: hidden;
}
.agent-module .img-wrapper .img-responsive {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.agent-two-grid {
  display: grid;
    grid-template-columns: 1fr;
  grid-gap: 50px;
}

.agent-profile-2 {
  border: 1px solid #ccc;
  padding: 20px;
  display: grid;
    grid-template-columns: 1fr 2.5fr;
    grid-gap: 40px;
}
.agent-profile-2 .name {
  align-items: flex-start;
}

.status {
  padding: 6px 8px;
  border-radius: 3px;
  color: #fff;
  background: #28a745;
  font-size: 14px;
  line-height: 1;
  margin-top: 4px;
}

.about-body .content p{
    text-align: justify;
}

.mission-img{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    border: 1px solid #e7e7e7;
}

.mission-img .img-responsive{
    width: 30%;
}

.mission-img.mission{
    border-top: 0;
    border-left: 0;
}

.mission-img.vision{
    border-bottom: 0;
    border-right: 0; 
}

.adver-module{
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    grid-gap: 30px;
}


@media (max-width: 1000px) {
  .agent-two-grid {
    display: block;
  }
  .agent-profile-2 {
    width: 300px;
    margin-bottom: 50px;
  }
}
@media (max-width: 600px) {
  .agent-module {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .agent-profile-2 {
    width: 100%;
  }
  .status {
    font-size: 12px;
  }
}




/* ABOUT CSS END */

@media (max-width: 875px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }


}


/* MEDIA QUERY START*/

@media (max-width:1200px) {
  .nav-div {
    display: none !important;
  }

  .bg-container,
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .mobile-ham {
    width: 25px;
    height: 25px;
  }

  .mobile-ham img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mobile-nav {
    display: block;
  }

  .logo-wrapper {
    width: 70px;
  }

  .main-header {
    padding: 10px 0;
  }

  .mob-nav ul li a {
    color: #000000;
    padding: 12px 10px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .testimonials-slider .owl-prev {
    position: absolute;
    left: 37% !important;
    top: 90%;
  }

  .testimonials-slider .owl-next {
    position: absolute;
    right: 37% !important;
    top: 90%;
  }
}

@media (max-width:1000px) {
  .count-module{
    flex-direction: column;
    text-align: center;
  }

}

@media (max-width:800px) {
  h1 {
    font-size: 45px;
  }

  h2 {
    font-size: 35px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 18px;
  }

  p {
    font-size: 14px;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }



  .tab-box .tab-content {
    padding: 15px;
  }

  .my-input,
  .btn {
    font-size: 14px;
  }

  .title-wrapper .sub-text {
    font-size: 15px;
  }

  .p-module-1 .details .title {
    font-size: 18px;
  }

  .pb-100 {
    padding-bottom: 80px;
  }

  .pt-100 {
    padding-top: 80px;
  }

  .buy-s-grid {
    grid-template-columns: 1fr;
  }

  .single-title-wrapper .name,
  .single-title-wrapper .price {
    font-size: 23px;
  }

  .review-module .img-wrapper {
    width: 70px;
    height: 70px;
  }

  .font-18 {
    font-size: 16px;
  }

  .contact-flex {
    font-size: 14px;
  }

  .font-20 {
    font-size: 18px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .social-flex {
    display: none;
  }

  #bk-appt {
    display: none;
  }

  .flex-fe {
    justify-content: flex-end;
  }

  .btn.small {
    font-size: 12px;
  }

  .txt-right {
    font-size: 16px;
  }

  .form-grid {
    display: flex;
    flex-direction: column;
  }

  .signup-box {
    width: 100%;
    padding: 25px;
  }

  .signin-options {
    flex-direction: column;
  }

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

  .mt-50 {
    margin-top: 20px;
  }

  .my-label {
    font-size: 14px;
  }

  .login-box {
    padding: 25px;
    width: 100%;
  }

  .hide-d-menu {
    display: none;
  }


  .dashboard-body .fixed-left {
    display:none;
  }

  .dashboard-body {
    margin-left: 0px;
  }


  .d-cmn-box {
    overflow-y: scroll;
  }

  .mmenu-dashboard {
    display: block;
  }

  .mmenu-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .dashboard-body .fixed-left .logo-wrapper {
    margin: 0px;
  }

  .dashboard-container {
    width: 100%;
  }

  .count-module{
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }

}


@media (max-width:600px) {
  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 25px;
  }

  h3 {
    font-size: 16px;
  }

  h4 {
    font-size: 14px;
  }

  p {
    font-size: 12px;
  }

  .tab-box .tab-content .wrapper {
    grid-template-columns: 1fr;
  }

  .banner-section {
    height: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-gap: 50px;
  }

  .my-input,
  .btn {
    font-size: 12px;
  }

  .mobile-ham {
    width: 20px;
    height: 20px;
  }

  .logo-wrapper {
    width: 50px;
  }

  .title-wrapper .sub-text {
    font-size: 12px;
  }

  .p-module-1 .details .title {
    font-size: 14px;
  }

  .p-module-1 .details {
    padding: 13px;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .pt-100 {
    padding-top: 50px;
  }

  .pb-100 {
    padding-bottom: 50px;
  }

  .pb-70 {
    padding-bottom: 40px;
  }

  .pt-70 {
    padding-top: 40px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  /* .mobile-menu {
    top: 46px;
  } */

  .copyright-div {
    font-size: 12px;
  }

  .soci-medi a {
    width: 23px;
    height: 23px;
  }

  .profile-btn {
    font-size: 12px;
  }

  .profile-btn .usr-img {
    width: 30px;
    height: 30px;
  }

  .footer-grid .logo-wrapper img {
    width: 70%;
  }

  .why-choose-module .icon {
    height: 50px;
  }

  .buy-s-grid {
    grid-template-columns: 1fr;
  }

  .single-title-wrapper .name {
    font-size: 18px;
  }

  .single-title-wrapper .price {
    font-size: 16px;
  }

  .fav-wrap .click {
    font-size: 25px;
  }

  .single-title-wrapper .address {
    font-size: 14px;
  }

  .simple-white-box {
    padding: 18px;
  }

  .mobile-li {
    font-size: 12px;
  }

  .review-module .img-wrapper {
    width: 60px;
    height: 60px;
  }

  .review-module {
    grid-template-columns: 1fr;
  }

  .font-18 {
    font-size: 14px;
  }

  .contact-flex {
    font-size: 13px;
  }

  .flex-column-buy {
    flex-direction: column;
  }

  .mob-nav ul li a {
    font-size: 14px;
  }

  .topmost-header .signin-btn {
    font-size: 12px;
  }

  .testimonials-slider .owl-nav button {
    height: 40px !important;
    width: 40px !important;

  }

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

  .my-label {
    font-size: 12px;
  }

  .signup-box .my-input {
    padding: 12px 12px;
  }

  .my-input {
    padding: 12px 12px;

  }

  .mt-70 {
    margin-top: 40px;
  }

  .tab-box .tab-links .tab-link {
    padding: 12px;
    font-size: 12px;
  }

  .count-module i {
    font-size: 25px;
  }

  .count-module .number {
    font-size: 20px;
  }

  .count-module .title {
    font-size: 14px;
  }

  .banner-txt {
    padding-top: 120px;
  }

  .buy-section-filter {
    flex-direction: column;
  }

  .contact-box {
    padding: 20px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .usernotverified {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .d-h1 {
    font-size: 18px;
  }

  .noti-btn {
    font-size: 18px;
  }

  .noti-btn span {
    font-size: 9px;
    height: 16px;
    width: 16px;
  }

  .click-dropdown-btn .dropdown-content a {
    font-size: 12px;
  }

  .dash-module i {
    font-size: 25px;
  }

  .dash-module .count {
    font-size: 18px;
  }

  .dash-module .title {
    font-size: 12px;
  }

  .dash-module {
    gap: 15px;
    align-items: center;
  }


  .simple-table td {
    font-size: 12px;
  }

  .simple-table th {
    font-size: 14px;
  }

  .d-cmn-box {
    padding: 20px;
  }

  .mt-30 {
    margin-top: 15px;
  }

  .date {
    font-size: 12px;
  }

  .review-module .content p {
    margin-top: 10px;
  }

  .review-img-flex {
    flex-direction: column;
  }

  .review-img-flex img {
    width: 100%;
    height: 100%;
  }

  .edit-div button {
    font-size: 16px;
  }

  .rating {
    font-size: 16px;
  }

  .choice-tab-wrapper .choice-links .tab-link {
    font-size: 12px;
  }

  .checkbox-wrap input {
    height: 14px;
    width: 14px;
  }

  .checkbox-wrap label {
    font-size: 12px;
  }

  .list-table h1 {
    font-size: 16px;
  }

  .list-table td h4 {
    font-size: 14px;
  }

  .close{
    font-size: 25px;
  }

}


.advertis-grid {
  display: grid;
  grid-template-columns: 2fr;
  grid-gap: 50px;
  align-items: flex-start;
}

.stick-top {
  position: sticky;
  top: 50px;
}

@media (max-width: 1200px) {
  .advertis-grid {
    grid-gap: 30px;
  }
}
@media (max-width: 600px) {
  .advertis-grid {
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }
}

/* MEDIA QUERY END */