@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');


body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background-color: white;
  color: var(--black);
}

p {
  font-size: 20px;
  font-family: "Roboto Condensed", sans-serif;
}

:root {
  --main: #4E8DE5;
  --lblue: #709ACF;
  --black: #000;
}

a {
  color: #000;
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

.ff_rc {
  font-family: "Roboto Condensed", sans-serif;
}

.ff_m {
  font-family: "Montserrat", sans-serif;
}

.fw_5 {
  font-weight: 500;
}

.fw_6 {
  font-weight: 600;
}

.fw_7 {
  font-weight: 700;
}

.fs_16 {
  font-size: 16px;
}

.bg_blu,
.bg_blue_h:hover {
  background-color: var(--main) !important;
}

.bg_lblu,
.bg_lblu_h:hover {
  background-color: var(--lblue) !important;
}

.bg_drk,
.bg_drk_h:hover {
  background-color: var(--black) !important;
}

.bg_w,
.bg_w_h:hover {
  background-color: white !important;
}

.tc_w,
.tc_w_h:hover {
  color: white !important;
}

.tc_blu,
.tc_blu_h:hover {
  color: var(--main) !important;
}


.tc_lblu,
.tc_lblu_h:hover {
  color: var(--lblue) !important;
}

.tc_drk,
.tc_drk_h:hover {
  color: var(--black) !important;
}

.w_ftc {
  width: fit-content;
}

.sg_mob {}

.sg_btn {
  color: white;
  font-family: "Montserrat", sans-serif;
  border-radius: 10px;
  padding: 7px 16px;
  transition: 0.6s all;
  font-size: calc(16px + 0.2vw);
  border: 0;
}

.sg_btn_bdr {
  border-bottom: 4px var(--lblue) solid;
}

.sg_btn_bdr:hover {
  border-bottom: 4px var(--main) solid;
}

/* header */

.sg_header {
  /*background-color: #fff;*/
  /*box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);*/
  /*position: fixed;*/
  /*width: 100%;*/
  /*z-index: 3;*/
}

.sg_header_banner {
  border-bottom: 1px #ededed solid;
}

.sg_header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  /*background-color: #fff;*/
}

.sg_header li a {
  display: block;
  text-decoration: none;
  font-weight: 500;
  color: var(--black);
  transition: 0.6s all;
      font-size: calc(16px + 0.1vw);
}

.sg_header li a:hover {
  color: var(--main);
}

.sg_header li a:hover,
.sg_header .menu-btn:hover {
  /*background-color: #f4f4f4;*/
}

.sg_header .logo {
    float: left;
    padding: 10px 0px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--main);
}

.sg_header .logo img {
  height: 80px;
}

/* menu */

.sg_header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

.sg_header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  user-select: none;
  position: absolute;
  top: 25px;
  right: 0;
}

.sg_header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 25px;
}

.sg_header .menu-icon .navicon:before,
.sg_header .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.sg_header .menu-icon .navicon:before {
  top: 7px;
}

.sg_header .menu-icon .navicon:after {
  top: -7px;
}

/* menu btn */

.sg_header .menu-btn {
  display: none;
}

.sg_header .menu-btn:checked~.menu {
  max-height: 240px;
}

.sg_header .menu-btn:checked~.menu-icon .navicon {
  background: transparent;
}

.sg_header .menu-btn:checked~.menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.sg_header .menu-btn:checked~.menu-icon .navicon:after {
  transform: rotate(45deg);
}

.sg_header .menu-btn:checked~.menu-icon:not(.steps) .navicon:before,
.sg_header .menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/*   991px */

@media (min-width: 991px) {
  .sg_header li {
    float: left;
  }

  .sg_header li a {
    /*padding: 0px 30px;*/
  }

  .sg_header .menu {
    max-height: none;
    width: 63%;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }

  .sg_header .menu-icon {
    display: none;
  }
}

@media(max-width:991px) {
  .sg_header li a {
    padding: 4px 0px;
  }

  .sg_header .menu-btn:checked~.menu {
    padding-bottom: 10px;
    border-top: 1px #d5d5d5 solid;
    padding-top: 7px;
  }
.sg_header .logo img {
    height: 70px;
}
}


/*top bar*/

.sg_scroll_sticky .logo img {
  width: 100px;
}

.sg_stky_frm button {
  right: 7px;
  font-size: 16px;
  padding: 5px 8px;
  font-weight: 600;
}

.sg_stky_frm i {
  left: 6px;
}

.sg_stky_frm input.form-control {
  font-weight: 500;
  font-family: 'Roboto Condensed';
  padding: 10px 6px 10px 25px;
  font-size: 18px;
}

.sg_scroll_sticky .sg_btn {
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 16px;
}

.sg_scroll_sticky {
  border-bottom: 1px #a2bcdf solid;
  position: fixed;
  width: 100%;
  top: -70px;
  opacity: 0;
  transition: 0.6s all;
}

.sg_scroll_sticky.sticky {
  top: 0px;
  opacity: 1;
  z-index: 999;
}

/*Breadcrumb*/

.sg_city_breadcrumb {
  background-color: var(--lblue);
}

.sg_city_breadcrumb .sg_bredcrum {
  display: flex;
  align-items: center;
  gap: 6px;
}


/*Banner css*/

.sg_banner {
  background: url('img/s3.webp') 0 0 / cover;
  background-repeat: no-repeat;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

#citys.sg_banner {
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.bg_overly {
  background-color: #004db9;
  opacity: 0.3;
}

.sg_banner p {
    font-weight: bold;
    font-size: 22px;
    text-shadow:0px 1px 4px #0000008f;
    font-style: italic;
    margin-bottom: 0;
    color: white;
    background:#86abe0ba;
    border-radius: 0px 0px 5px 5px;
    padding: 10px 20px;
    margin-top: 0px;
}

.sg_banner h1 {
  text-shadow: 0px 1px 7px #00000063;
  font-size: 50px;
}

form.bnr_frm i {
  left: 15px;
  font-size: 22px;
}

form.bnr_frm input.form-control {
    padding: 14px 0px 13px 40px;
    font-size: calc(16px + 0.3vw);
    font-weight: 500;
    border-radius: 5px 5px 0px 0px;
}

form.bnr_frm button {
  right: 10px;
  color: white;
  font-weight: 500;
  font-size: 18px;
  padding: 5px 20px 7px;
}

.sg_ac_logo img {
  width: auto;
  height: 60px;
  /*background: #f8f9fa;*/
  /*border-radius: 5px;*/
  padding: 3px;
}


/*Review Sec*/
.sg_reivew_sec {
  background: url('img/s2.webp') 0 0 / cover;
  background-repeat: no-repeat;
  text-shadow: 0px 0px 5px #0000005c;
}

.sg_reivew_sec h3 {
  font-size: 38px;
}

.sg_rev_icn {}

.sg_review_carousel .owl-nav button {
  background-color: transparent;
  border: none;
  color: white;
  font-size: 28px;
}

.sg_review_carousel .owl-nav button i {
  font-size: 30px;
}


.sg_review_carousel .owl-nav {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.sg_review_carousel .owl-dots button {
  width: 15px;
  height: 15px;
  border: 1px white solid;
  background-color: white;
  border-radius: 100px;
  margin: 0 4px;
}

.sg_review_carousel .owl-dots button.owl-dot.active {
  background-color: var(--main);
}

.sg_review_carousel p {
  font-size: 22px;
}

.sg_review_carousel h5 {
  font-size: 24px;
}

.sg_review_carousel i {
  font-size: 20px;
}

.sg_review_carousel .owl-dots {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
}


/*Why Work*/

.sg_why_work h3 {
  font-size: 34px;
}

.sg_why_work ul li {
  font-size: 22px;
  background-color: white;
  padding: 6px 20px 6px 40px;
  border-radius: 14px 0px 0px 14px;
}

.sg_why_work ul li div {
  background-color: var(--black);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  left: -20px;
}

.sg_why_work ul li div img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  object-position: center;
}

.sg_why_work .sg_why_work_bg_icon {
  background-image: url(img/icon/favicon.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: auto;
}

.sg_why_work .sg_how_wrk_2 img {
  height: 80px;
  width: 80px;
  object-fit: contain;
}


/*Speak Agent*/
.sg_spk_agnt {
  /*font-size: 38px;*/
}

.sg_step_close .sg_ac_logo img {
  width: auto;
  height: 40px;
}

.fs_20 {
  font-size: 20px;
}

/*YOUR ONE STEP CLOSER*/

.sg_step_close ul li {
  font-size: 24px;
}

.sg_step_close ul li img {
  top: 1px;
  width: 25px;
}

.sg_step_close h4 {
  font-size: 30px;
}

.sg_step_close h2 {
  font-size: 48px;
}

.sg_step_close ul li:last-child {
  margin-bottom: 0px !important;
}


/*How it works*/

.sg_how_it_wrk_img img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 100%;
  border: 10px var(--main) solid;
  padding: 20px;
  object-position: right;
}

.sg_how_it_wrk_img span {
  font-size: 55px;
  background: white;
  font-family: 'Roboto Condensed';
  font-weight: 900;
  line-height: 60px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sg_how_it_wrk_ctn ul {
  grid-template-columns: repeat(4, auto);
}

.sg_how_it_wrk_ctn ul span {
  width: 31px;
  height: 30px;
  border: 1px black solid;
  border-radius: 100px;
  display: flex;
  padding-top: 1px;
  justify-content: center;
  font-size: 18px;
}

.sg_how_it_wrk_ctn ul li {
  font-size: 20px;
  cursor: pointer;
}

.sg_how_it_wrk_ctn ul li.active span {
  background-color: black;
  color: white;
  font-weight: 700;
}

.sg_how_it_wrk_tlt p {
  font-size: 22px;
  margin-bottom: 10px;
}

.sg_how_it_wrk_ctn h4 {
  font-size: 30px;
}


.sg_how_it_wrk_tlt img {
  right: -126px;
  top: 40%;
}

.sg_how_wrk_prcs_bdr {
  border-left: 4px #e0e0e0 dashed;
  height: 40%;
  position: absolute;
  width: 18%;
}

.sg_how_wrk_prcs_bdr_l {
  top: 0px;
  left: 31%;
  transform: rotate(136deg);
}

.sg_how_wrk_prcs_bdr_r {
  top: -28%;
  left: 38%;
  transform: rotate(-136deg);
}

.sg_how_wrk_prcs_bdr:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 16px solid #e0e0e0;
  left: -18px;
  top: -20px;
}


/*Footer */

.sg_footer {
  background-image: linear-gradient(var(--main), var(--lblue));
}


.sg_footer .f_logo img {
  filter: brightness(0) invert(1);
}

.sg_bottom {
  background-color: var(--main);
  border-radius: 100% 100% 0px 0px;
}

.sg_footer a,
.sg_footer p {
  color: white;
  font-size: 18px;
  transition: 0.6s all;
}

.sg_footer a:hover {
  color: var(--black);
}

.sg_footer .sg_ftr_social a {
  font-size: 22px;
}

.sg_footer .sg_bottom a,
.sg_footer .sg_bottom .sg_cpyrgt {
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
}

.sg_footer .sg_ac_logo img {
  height: 40px;
  background: white;
  border-radius: 5px;
  padding: 3px 3px;
  transition: 0.6s all;
}

.sg_footer .sg_ac_logo a:hover img {
  transform: scale(1.09);
}

.sg_coki button.btn {
  position: relative;
  top: 4px;
}


/*Contact Page*/

.sg_contact_sec .sg_heading img {
  right: -120px;
  top: -18%;
}

.sg_contact_sec .sg_heading {
  font-size: 28px;
}

.sg_contact_sec h2 {
  font-size: 38px;
}

.sg_contact_sec .form-control {
  border: 0;
  border-bottom: 1px gray solid;
  border-radius: 0;
  background-color: transparent;
}

.sg_contact_sec .form-label {
  font-size: 18px;
}

.sg_contact_sec .form-label small {
  font-style: italic;
  font-size: 14px;
}

.sg_ctn_how_wrk_bg {
  background: url(img/s3.webp) 0 0 / cover;
  background-repeat: no-repeat;
  border-radius: 50px;
  /*background-position: center;*/
}

.sg_ctn_how_wrk2 h2,
.sg_ctn_how_wrk2 p {
  text-shadow: 0px 2px 4px #00000091;
}

@media(min-width:991px) {
  .sg_ctn_how_wrk2 p {
    font-size: 22px;
  }

  .sg_ctn_how_wrk2 h2 {
    font-size: 40px;
  }
}

/*Thank You */

.sg_thanku_sec i {
  font-size: 64px;
}


/*Seller Lead*/

.sg_seller_lead .sg_ac_logo img {
  width: auto;
  height: 45px;
}

.sg_seller_lead h4 {
  font-size: 30px;
}

.sg_seller_lead h2 {
  font-size: 48px;
}


/*FAQ*/

button.accordion-button {
  font-size: 17px;
  /*color: #333 !important;*/
  font-weight: 600;
  background: #fff;
  border: 1px solid #e5e2e2;
  box-shadow: #f1f1f1d6 0 0 8px 2px !important;
  border-radius: 10px !important;
  padding: 18px 15px;
  font-family: 'Roboto Condensed';
}

.accordion-item {
  border: 0;
  background-color: transparent;
  margin: 15px 0px;
}

.accordion-collapse {
  background: #fff;
  box-shadow: 0px 0px 3px 0px #e1e1e1;
  border-radius: 6px;
  font-size: 15px;
  color: #636363;
  font-weight: 500;
}

.accordion-button:not(.collapsed) {
  background-color: #efefef70;
  color: var(--main);
}

.accordion-header {
  margin-bottom: 10px;
}


/*Blog */

.sg_page_title:after {
  content: "";
  position: absolute;
  width: 50%;
  background: var(--main);
  height: 100%;
  top: 0;
  border-radius: 0px 300px 300px 0px;
  opacity: 0.8;
}

.sg_page_title p {
    width: 44%;
    color: white;
    margin-top: 15px;
    margin-bottom: 0;
}

.sg_page_title {
  background-image: url(img/banner.jpg);
  background-position: center;
  background-size: cover;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.sg_page_title .container {
  z-index: 1;
}

.sg_bredcrum a,
.sg_bredcrum {
  color: white;
  font-size: 18px;
}

.sg_blg_col .sg_blg_img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.6s all;
}

.sg_blg_col:hover .sg_blg_img {
  transform: scale(1.05);
}

.sg_recent_blg_big,
.sg_recent_blg_sml .sg_sml_blg {
  border: 1px #ededed99 solid;
  border-radius: 2px;
  padding: 7px;
  transition: 0.6s all;
  overflow: hidden;
  box-shadow: none;
  background-color: white;
  margin-bottom: 0;
}

.sg_recent_blg_big h5 {
  font-size: 22px;
  font-weight: 700;
}

.sg_recent_blg_big p {
  font-size: 18px;
  text-align: left;
}


/*.sg_recent_blg_big a:hover h5{
  color: var(--main);
}*/

.sg_recent_blg small,
.sg_blg_col small {
  font-weight: 500;
}

.sg_recent_blg_sml .sg_sml_blg {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%
}

.sg_recent_blg_sml .sg_sml_blg:hover {
  border: 1px transparent solid;
  box-shadow: 0px 0px 7px 0px #0000001a;
}

.sg_recent_blg_sml .sg_sml_blg h5 {
  font-weight: 700;
  font-size: 16px;
  color: var(--black);
  transition: 0.6s all;
  line-height: 22px;
}

.sg_recent_blg_sml .sg_sml_blg a:hover h5 {
  color: var(--main);
}

.sg_recent_blg_sml .sg_sml_blg img {
  width: 130px;
  height: 0110px;
  object-fit: cover;
  transition: 0.6s all;
}

.sg_recent_blg_sml .sg_sml_blg:hover img {
  transform: scale(1.1);
}

.sg_recent_blg_sml .sg_sml_blg {
  margin-bottom: 5px;
}


.sg_recent_blg_sml .col-lg-12 {
  display: flex;
  align-items: center;
}


.sg_recent_blg_sml .col-lg-12:first-child {
  align-items: start;
}


.sg_recent_blg_sml .col-lg-12:last-child {
  align-items: end;
}

.sg_recent_blg_sml .col-lg-12:last-child .sg_sml_blg {
  margin-bottom: 0;
}

.sg_blg_col {
  box-shadow: 0px 0px 6px 0px #8d8c8c40;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 25px;
  transition: 0.6s all;
}

.sg_blg_col h5 {
  font-weight: 700;
  font-size: 18px;
  color: var(--black);
  transition: 0.6s all;
}

.sg_blg_col a:hover h5 {
  color: var(--main);
}

.sg_blg_col p {
  font-size: 18px;
}

.sg_blg_col:hover {
  box-shadow: 0px 0px 0px 0px #8d8c8c40;
}

.sg_blg_cata_hed h2 {
  font-size: 24px;
  color: var(--black);
  font-weight: 700;
  margin-bottom: 0px;
}

.sg_blg_cata_hed a {
  font-size: 18px;
  color: var(--main);
  font-weight: 600;
  border-bottom: 1px var(--main) dashed;
  transition: 0.6s all;
}

.sg_blg_cata_hed a:hover {
  color: var(--black);
  border-bottom: 1px transparent dashed;
}

/*.sg_cata_btn .ourb-in img {
    width: auto;
    height: 60px;
    filter: invert(1%) sepia(1%) saturate(0%) hue-rotate(0deg) brightness(50%) contrast(100%);
        filter: brightness(0) invert(1);
}

.sg_cata_btn .ourb-in h3 {
    font-size: 16px;
    font-weight: 600;
    padding-top: 20px;
    text-align: center;
    color: #ffffff;
}

.sg_cata_btn .ourb-in { 
    padding: 20px 10px; 
    background: var(--blue);
}

.sg_cata_btn .ourb-in:hover {  
    background: var(--navy);
}*/


/*Single Blog*/

.sg_sngl_blg {
  box-shadow: 0px 0px 7px 0px #42414133 !important;
}

.sg_sngl_blg:hover .sg_blg_img {
  transform: scale(1);
}

.sg_sngl_blg .sg_blg_img {
  width: 100%;
  min-height: 55vh;
  object-fit: cover;
  max-height: 70vh;
}

.sg_share_pst a {
  font-size: 22px;
}

.sg_cta_div {
  border-radius: 8px;
  box-shadow: #8f8f8f05 0 0 15px 16px;
  text-align: center;
}

.sg_cta_div h4 {
  font-size: 20px;
}

.sg_cta_div a {
  background: white;
  color: var(--black);
  font-family: "Montserrat", sans-serif;
  border-radius: 10px;
  padding: 7px 16px;
  transition: 0.6s all;
  font-size: 16px;
}

.sg_cta_div a:hover {
  color: var(--main);
}

.sg_next_prev a {
  color: black;
  transition: 0.6s all;
  font-weight: 600;
}

.sg_next_prev a span {
  font-weight: 400;
}

.sg_next_prev a:hover {
  /*color: var(--main); */
}

.sg_next_prev a:last-child {
  text-align: right;
}

.sg_rect_blg img {
  width: 80px;
  height: 80px;
  border-radius: 5px;
  object-fit: cover;
  transition: 0.6s all;
}

.sg_rect_blg li {
  display: grid;
  grid-template-columns: 80px auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.sg_rect_blg_lst a h6 {
  font-weight: 600;
  font-size: 15px;
}

.sg_rect_blg {
  box-shadow: 0px 0px 7px 0px #42414133;
  padding: 20px 15px;
  border-radius: 15px;
}

.sg_rect_blg li:last-child {
  margin-bottom: 0;
}

.sg_rect_blg li:hover img {
  opacity: 0.6;
}

.sg_rect_blg.sg_cta_div {
  background: url(img/icon/icn_30.png), var(--main);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 70%;
}


/*site Map*/

.sg_sitemap ul li a {
  transition: 0.6s all;
}

.sg_sitemap ul li a:not(.ul_child_lnk li a) {
  font-size: 17px;
  transition: 0.6s all;
  color: var(--main);
  font-weight: 500;
  margin: 4px 0px;
  display: block;
  padding-left: 7px;
}

.sg_sitemap ul li a:hover:not(.ul_child_lnk li a) {
  color: var(--black);
  text-decoration: underline;
}

.sg_sitemap ul li ul.ul_child_lnk li a {
  font-size: 16px;
  color: #575757;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin: 6px 0px;
  line-height: 22px;
}

.sg_sitemap ul li ul.ul_child_lnk li a i {
  font-size: 8px;
  position: relative;
  top: -3px;
  margin-right: 3px;
}

.sg_sitemap ul li ul.ul_child_lnk li a:hover {
  color: var(--main);
  text-decoration: underline;
}

.sg_sitemap ul:not(li ul) {
  column-count: 4;
  column-gap: 1rem;
  break-after: column;
}

.sg_sitemap ul li ul.ul_child_lnk {
  padding-left: 20px;
  padding-bottom: 10px;
}

.sg_sitemap ul li span {
  font-size: 20px;
  font-family: "Roboto Condensed", sans-serif;
}

.sg_sitemap ul li a:not(.ul_child_lnk li a) i {
  font-size: 13px;
  position: relative;
  top: -1px;
}

.sg_citymap ul li ul:not(.ul_child_lnk ul) {
  padding-bottom: 15px;
}


/*Single City*/

.sg_how_it_wrk_ctn_m h5 span {
  width: 30px;
  height: 30px;
  border: 1px black solid;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.sg_city_have img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  background: white;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 5px 5px 8px 0px #0000007a;
  /*border: 2px var(--main) solid;*/
}

.sg_city_have h3 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 4px;
}

.sg_city_have h5 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.sg_city_have p {
  margin-bottom: 0px;
  font-size: 18px;
}

.sg_city_have {
  border: 2px white solid;
  border-radius: 20px;
  height: 100%;
  text-shadow: 0px 0px 4px #00000059;
  /*box-shadow: 0px 0px 15px 0px #e9e9e9;*/
  /*background-color: white;*/
}

.sg_comn_sec h2 {
  font-size: 34px;
}

.sg_achivement {
  border-radius: 15px !important;
  height: 100%;
}

/*.sg_achivement i {
    font-size: 80px;
    line-height: 74px;
}*/

.sg_achivement img {
  height: 90px;
  width: 90px;
  object-fit: contain;
}

.sg_achivement h3 {
  font-weight: 700;
  font-size: 54px;
  margin-bottom: 0px;
}

.sg_achivement p {
  margin-bottom: 0px;
  line-height: initial;
  font-size: 24px;
}

.sg_how_wrk_2 {
  box-shadow: 0px 0px 5px 0px #63636324;
  border-radius: 10px;
}

.sg_how_wrk_2 span {
  font-size: 28px;
  background-color: #4e8de529;
  width: 45px;
  height: 45px;
  line-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main);
  border-radius: 2px;
  font-weight: 700;
}

.sg_how_wrk_2 h3 {
  margin-top: 28px;
  font-size: 22px;
}

.sg_how_wrk_2 p {
  margin-bottom: 0px;
}

.sg_why_work_page .sg_how_wrk_2 h3 {
  font-size: 28px;
}

.sg_why_work_page .sg_how_wrk_2 img {
  width: 200px;
  height: 200px;
  border-radius: 10px;
}

.sg_why_work_page .sg_how_wrk_2 {
  /*display: flex;*/
  gap: 40px;
  /*align-items: center;*/
}

.sg_why_work_page .sg_how_wrk_2 h3 {
  margin-top: 0px;
}

/*Table Data Css*/

.sg_glx_tbl td,
.sg_glx_tbl th {
  /*padding: 14px 5px;*/
}

.sg_glx_tbl thead th {
  font-size: 20px;
}

.sg_glx_pckg_row {
  display: grid;
  grid-template-columns: auto 125px 180px 140px 160px;
  grid-column-gap: 20px;
  margin-bottom: 10px;
}

.sg_glx_pckg_row:nth-child(odd) .sg_pckg_crd {
  background: #f7f7f7;
  box-shadow: 0px 0px 2px 0px #6d6d6da1;
}


.sg_pckg_crd {
  box-shadow: 0px 0px 2px 0px #a3a3a3a1;
  text-align: center;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 10px;
  background-color: white;
}


.sg_glx_pckg_row .sg_pckg_crd:first-child {
  justify-content: left;
  color: var(--main);
  min-width: 190px;
}

.sg_pckg_crd p,
.sg_pckg_crd h5 {
  margin-bottom: 0px;
  font-family: 'Roboto Condensed';
  font-size: 18px;
}

.sg_glx_pckg_hdr h5 {
  font-size: 20px;
  text-align: left;
}

.sg_glx_pckg_row.sg_glx_pckg_hdr .sg_pckg_crd {
  background-color: var(--main);
  color: white;
}


.sg_glx_pckg_row.sg_glx_pckg_hdr .sg_pckg_crd:nth-child(2) {
  background-color: white;
  color: white;
  box-shadow: 0px 0px 2px 0px #a3a3a3a1;
}

.sg_glx_pckg_row .sg_pckg_crd:first-child p {
  text-align: left;
}

.sg_glx_pckg_row:last-child {
  margin-bottom: 3px;
}

  .sg_glx_pckg_grp {
    min-width: 760px;
  }

.sg_why_sell_us_col a h4 {
    font-weight: 600;
    font-size:calc(18px + 0.5vw);
    font-family: 'Roboto Condensed';
        margin-bottom: 0px;
}

.sg_why_sell_us_col a i {
    font-size: calc(18px + 2vw);
        line-height: 0;
}


.sg_why_sell_us_col a span {
    display: block;
    position: absolute;
    bottom: 5px;
    left: 5px;
    background: white;
    color: var(--main) !important;
    padding: 8px 20px;
    border-radius: 5px 10px 5px 16px;
    opacity: 0;
    transition: 0.6s all;
    font-size: calc(16px + 0.5vw);
}

.sg_why_sell_us_col a {
    background-color: white;
    display: block;
    box-shadow: 0px 0px 8px 0px #00000017;
    border-radius: 20px;
    padding: 40px 25px;
        color: var(--main);
        position:relative;
        transition:0.6s all;
        height:400px;
}

.sg_why_sell_us_col a img {
    height: auto;
    object-fit: contain;
    margin-left: auto;
    transition: 0.6s all;
    position: absolute;
    right: 3%;
    bottom: 3%;
        max-width: 200px;
}

.sg_why_sell_us_col a p{
    opacity: 0;
    transition:0.6s all;
    margin: 30px 0px;
    position: relative;
    z-index: 1;
}

.sg_why_sell_us_col a:hover img {
    opacity: 0.3;
        z-index: 0;
    filter: blur(4px);
}

.sg_why_sell_us_col a:hover span,
.sg_why_sell_us_col a:hover p {
    opacity: 1;
    color:white;
}

.sg_why_sell_us_col a:hover{
    background-color: var(--main);
    color: white;
}

/*Responsive css*/

@media(min-width:1400px) {
  .sg_banner h1 {
    font-size: 54px;
  }


  form.bnr_frm button {
    font-size: 20px;
  }

  .sg_banner p {
    font-size: 24px;
  }

  .sg_step_close h4 {
    font-size: 34px;
  }

  .sg_step_close h2 {
    font-size: 52px;
  }

  .sg_step_close ul li {
    font-size: 26px;
  }

  a.sg_btn.fs_20 {
    font-size: 24px;
  }

  .sg_how_it_wrk_tlt p {
    font-size: 24px;
  }

  .sg_how_it_wrk_ctn h4 {
    font-size: 34px;
  }

  .sg_how_it_wrk_page .sg_how_it_wrk_ctn h4 {
    font-size: 38px;
  }

  .sg_how_it_wrk_ctn ul li {
    font-size: 22px;
  }

  .sg_how_it_wrk_ctn ul span {
    width: 33px;
    height: 32px;
    font-size: 20px;
  }

  .sg_how_it_wrk_img img {
    width: 350px;
    height: 350px;
  }

  .sg_how_it_wrk_img span {
    font-size: 60px;
    line-height: 64px;
    width: 38px;
  }
}

@media(max-width: 1200px) {
  .sg_sitemap ul:not(li ul) {
    column-count: 3;
  }

  .sg_achivement h3 {
    font-size: 40px;
  }

  .sg_achivement img {
    height: 70px;
    width: 70px;
  }

  .sg_achivement p {
    font-size: 20px;
  }

  .sg_city_have img {
    width: 120px;
    height: 120px;
  }

  .sg_city_have h3 {
    font-size: 32px;
  }

  .sg_why_sell_us_col a {
    height: 300px;
}
.sg_why_sell_us_col a p {
    margin: 20px 0px 30px;
}
}

@media(max-width:991px) {
  .sg_achivement {
    width: 100%;
  }

    .sg_page_title:after {
    width: 80%;
  }
  .sg_page_title p {
    width: 80%;
}

  .sg_pckg_crd p,
  .sg_pckg_crd h5 {
    font-size: 16px;
  }

  .sg_glx_pckg_hdr h5 {
    font-size: 18px;
  }

  .sg_glx_pckg_row {
    grid-template-columns: auto 110px 160px 126px 135px;
    grid-column-gap: 10px;
  }

  .sg_banner h1 {
    font-size: 36px;
  }

  .sg_comn_sec h2 {
    font-size: 28px;
  }

  form.bnr_frm button {
    font-size: 17px;
    padding: 4px 20px 5px;
  }

  .sg_banner p {
    font-size: 20px;
  }

  .sg_tab_ctn h4 {
    font-size: 34px;
  }

  .sg_how_it_wrk_img img {
    width: 400px;
    height: 400px;
    border: 12px var(--main) solid;
  }

  .sg_why_work .sg_why_work_bg_icon {
    background-image: none;
  }

  .sg_step_close ul li {
    font-size: 22px;
  }

  .sg_step_close ul li img {
    top: 1px;
    width: 21px;
  }

  .sg_step_close h2 {
    font-size: 42px;
  }

  .sg_step_close h4 {
    font-size: 24px;
  }

  .sg_contact_sec .sg_heading {
    font-size: 24px;
  }

  .sg_contact_sec h2 {
    font-size: 34px;
  }

  .sg_ctn_how_wrk_bg h2 {
    font-size: 30px;
  }

  .sg_cata_btn .ourb-in {
    margin: 8px 0px;
  }

}

@media(max-width: 767px) {

.sg_why_sell_us_col a img {
        max-width: 140px;
}

  .sg_banner { 
    min-height: auto; 
}

  .sg_how_it_wrk_img img {
    width: 250px;
    height: 250px;
    border: 8px var(--main) solid;
    padding: 10px;
  }

  .sg_comn_sec h2 {
    font-size: 24px;
  }


  .sg_how_it_wrk_img span {
    font-size: 42px;
    line-height: 50px;
    width: 28px;
  }

  .sg_banner h1 {
    font-size: 30px;
  }

  form.bnr_frm i {
    left: 10px;
    font-size: 18px;
  }


  section.sec2 h3 {
    font-size: 22px;
    line-height: 34px;
  }

  .sg_reivew_sec h3,
  .sg_why_work h3,
  .sg_spk_agnt h2,
  .sg_contact_sec h2,
  .sg_ctn_how_wrk_bg h2,
  .sg_faq .sg_heading_faq {
    font-size: 28px;
  }

  .sg_rev_icn {
    width: 50px;
    margin-bottom: 10px;
  }

  .sg_review_carousel p {
    font-size: 20px;
  }

  .sg_review_carousel h5 {
    font-size: 20px;
  }

  .sg_review_carousel i {
    font-size: 18px;
  }

  .sg_review_carousel .owl-dots,
  .sg_review_carousel .owl-nav {
    display: none;
  }

  .sg_why_work ul li {
    font-size: 18px;
    padding: 6px 15px 6px 55px;
    border-radius: 20px 0px 0px 20px;
  }

  .sg_why_work ul li div {
    width: 45px;
    height: 45px;
    transform: translateY(-50%) !important;
    left: 0px !important;
  }

  .sg_why_work ul li div img {
    width: 21px;
    height: 21px;
  }

  .sg_step_close h2 {
    font-size: 38px;
  }

  .sg_step_close ul li {
    font-size: 20px;
  }

  .sg_step_close ul li img {
    width: 20px;
  }

  .sg_tab_ctn h4 {
    font-size: 30px;
  }

  .sg_how_it_wrk_tlt p {
    font-size: 20px;
  }

  .sg_contact_sec .sg_heading {
    font-size: 22px;
  }

  .sg_ctn_how_wrk_bg {
    border-radius: 25px;
  }

  .sg_blg_cata_hed h2 {
    font-size: 22px;
  }

  .sg_sngl_blg .sg_blg_img {
    height: auto;
    min-height: auto;
    max-height: auto;
  }

  .sg_blg_sgl_tlt {
    font-size: 24px;
  }

  .sg_next_prev a:last-child {
    text-align: left;
    margin-top: 10px;
    display: block;

  }

  .sg_sitemap ul:not(li ul) {
    column-count: 2;
  }

  .sg_how_it_wrk_page img.w-100 {
    width: 80% !important;
  }



  .sg_why_sell_us_col a {
    height: 250px;
}

}

@media(max-width: 576px) {

  .sg_achivement h3 {
    font-size: 34px;
  }

  .sg_page_title:after {
    width: 90%;
  }

  .sg_how_it_wrk_page img.w-100 {
    width: 90% !important;
  }

  .sg_achivement img {
    height: 60px;
    width: 60px;
  }

  .sg_how_wrk_2 h3,
  .h3_resp {
    font-size: 20px;
  }

  .sg_how_it_wrk_ctn_m h5 {
    font-size: 18px;
  }

  .sg_how_it_wrk_ctn_m h5 span {
    width: 25px;
    height: 25px;
    font-size: 15px;
  }

  .sg_blg_sgl_tlt {
    font-size: 20px;
  }

  .sg_sitemap ul:not(li ul) {
    column-count: 1;
  }


  .sg_how_it_wrk_ctn ul {
    grid-template-columns: repeat(2, auto);
  }

  .sg_tab_ctn h4 {
    font-size: 28px;
  }

  .sg_how_it_wrk_tlt p {
    font-size: 20px;
  }

  .sg_how_it_wrk_tlt img {
    display: none;
  }

  .sg_how_it_wrk_ctn ul li {
    font-size: 18px;
  }

  p {
    font-size: 18px;
  }

  .sg_how_it_wrk_ctn ul span {
    width: 27px;
    height: 26px;
    font-size: 16px;
  }

  .fs_20 {
    font-size: 16px;
  }

  .sg_banner p {
    font-size: 18px;
  }

  .sg_banner h1 {
    font-size: 24px;
  }

  .sg_ac_logo img {
    height: 50px;
  }

  form.bnr_frm button {
    font-size: 15px;
    padding: 4px 10px 5px;
  }

  section.sec2 h3 {
    font-size: 20px;
    line-height: 30px;
  }

  .sg_review_carousel p {
    font-size: 18px;
  }

  .sg_reivew_sec h3,
  .sg_why_work h3,
  .sg_spk_agnt h2,
  .sg_ctn_how_wrk_bg h2,
  .sg_faq .sg_heading_faq {
    font-size: 24px;
  }

  .sg_step_close h4 {
    font-size: 20px;
  }

  .sg_why_work ul li {
    font-size: 16px;
    padding: 6px 8px 6px 55px;
    border-radius: 20px 0px 0px 20px;
  }

  .sg_why_work ul li div {
    width: 40px;
    height: 40px;
  }

  .sg_step_close h2 {
    font-size: 32px;
  }

  .sg_step_close ul li {
    font-size: 18px;
  }

  .sg_faq h5 {
    font-size: 18px;
  }

  button.accordion-button {
    font-size: 15px;
    border-radius: 6px !important;
    padding: 12px 10px;
  }

  .accordion-collapse {
    font-size: 14px;
  }

  .sg_recent_blg_big h5 {
    font-size: 20px;
  }

  .sg_recent_blg_big p {
    font-size: 16px;
    text-align: left;
  }

  .sg_sitemap ul li a {
    font-size: 18px;
  }

  .sg_sitemap ul li ul li a {
    font-size: 15px;
  }

  .sg_city_have img {
    width: 100px;
    height: 100px;
  }

  .sg_why_work_page .sg_how_wrk_2 img {
    width: 140px;
    height: 140px;
  }

  .sg_why_work_page .sg_how_wrk_2 h3 {
    font-size: 24px;
  }

  .sg_glx_pckg_hdr h5 {
    font-size: 16px;
  }

  .sg_glx_pckg_row {
    grid-template-columns: auto 110px 146px 110px 120px;
  }

  .sg_pckg_crd {
    padding: 6px 10px;
  }

}