.bannerWidget .containerRow .bannerContent {
    width: 100%;
    max-width: 380px !important;
  }
  
  .pickup_location_map,
  .drop_location_map {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    background-color: #fafafad1;
    padding: 100px;
    opacity: 0;
    pointer-events: none;
  }
  
  .pickup_location_map.open,
  .drop_location_map.open {
    pointer-events: visible;
    opacity: 1;
    width: 100%;
    left: 0;
    padding: 20px;
    display: block !important;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    padding: 10px;
    background-color: #fafafa;
    margin-bottom: 20px;
  }
  
  
  .form-group .map-input {
    width: 100%;
    display: block;
    height: 45px;
    padding: 0 20px;
  }
  
  .delete-btn {
    position: absolute;
    right: 30px;
    top: 30px;
    cursor: pointer;
    z-index: 99;
    display: flex;
    align-items: center;
  
    justify-content: center;
  }
  
   .location-section {
    margin-bottom: 20px;
    position: relative;
  }
  
  .location-section-title {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
  }
  
  .pickup-section-title {
    margin-bottom: 15px;
    font-size: 14px;
  }
  
  .form-control {
    width: 100%;
    border: none;
    font-size: 12px;
    cursor: default;
  }
  
  .form-control::placeholder {
    color: #000000;
  }
  
  .form-control::-ms-input-placeholder {
    color: #000000;
  }
  
  .form-control:focus {
    border: none;
    outline: none;
  }
  
  .locationModal {
    display: none;
    position: absolute;
    z-index: 999;
    top: 0;
    margin-top: 15px;
    opacity: 0;
    pointer-events: none;
    transition: ease-in-out .4s;
    background-color: var(--white);
    border-radius: 13px;
    overflow: hidden;
  }
  
  
  
  .locationModal.show {
    display: block;
    opacity: 1;
    pointer-events: visible;
  }
  
  .locationModal .locationRow {
    border-radius: 10px;
    width: fit-content;
    display: none;
    grid-template-columns: repeat(3, 100px);
    position: relative;
    column-gap: 12px;
    row-gap: 12px;
    padding: 0;
  }
  
  .locationModal .locationRow.show {
    display: grid;
  }
  
  .locationRow.hide {
    display: none;
    opacity: 0;
    pointer-events: none;
  }
  
  .title-location {
    position: relative;
    margin-bottom: 15px;
  }
  
  .title-location h2 {
    color: #000;
    font-size: 15px;
  }
  
  .title-location button {
    cursor: pointer;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    outline: none;
  }
  
  @media (max-width: 767px) {
    .locationModal {
      width: 95%;
    }
  
    .locationModal .locationRow {
      width: 100%;
      grid-template-columns: repeat(3, 1fr);
    }
  
    .pickuplocation {
      width: 100%;
      margin-bottom: 20px;
    }
  
    .location-input {
      justify-content: flex-start;
    }
  
    .location-section-title {
      text-align: left;
    }
  
  
    .location-section-title {
      margin-bottom: 10px;
      font-size: 16px;
    }
  
    .location-section {
      margin-bottom: 0;
    }
  
    .pickups {
      height: auto;
      align-items: flex-start;
    }
  
    .bannerWidget .tabNavRow a {
      height: 35px;
    }
  
    .bannerWidget .searchWidget {
      /* padding: 10px 10px; */
      position: relative;
    }
  
    .front-category-title {
      font-size: 18px;
    }
  }
  
  @media only screen and (max-width:500px) {
  
    html,
    body {
      width: 100%;
      height: 100%;
      padding: 0;
      margin: 0;
      overflow-x: hidden;
    }
  }
  
  .locationModal .locationRow .locationList {
    height: 85px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: ease-in-out .4s;
    border-radius: 8px;
    border: 1px solid #000;
    background: #FFF;
  }
  
  .locationModal .locationRow .locationList .distInput {
    cursor: pointer;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
  }
  
  .locationModal .locationRow .locationList svg path {
    transition: ease-in-out .4s;
  }
  
  .locationModal .locationRow .locationList p {
    font-size: 14px;
    text-align: center;
    color: #9499A1;
    margin-top: 8px;
    transition: ease-in-out .4s;
  }
  
  .locationModal {
  
    height: 100%;
  }
  
  .locationModal .locationRow .locationList:hover,
  .locationModal .locationRow .locationList.active {
    background-color: transparent;
    border: 1px solid #FEB51B;
  }
  
  .locationModal .locationRow .locationList:hover p,
  .locationModal .locationRow .locationList.active p {
    color: #9499A1;
  }
  
  .locationModal .locationRow .locationList:hover svg path,
  .locationModal .locationRow .locationList.active svg path {
    stroke: #9499A1;
  }
  
  .locationModal .locationRow.hide {
    opacity: 0;
    pointer-events: none;
  }
  
  .locationModal.show {
    opacity: 1;
    pointer-events: visible;
  }
  
  .locationModal .selectedLocation {
    display: none;
    padding: 15px;
    position: relative !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: ease-in-out .4s;
  }
  
  .selectedLocation.show {
    opacity: 1;
    pointer-events: visible;
    display: block;
  }
  
  .locationModal .selectedLocation .selectedTitle {
    padding: 5px 0;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: black;
  }
  
  .locationModal .selectedLocation .selectedTitle svg {
    margin-right: 10px;
  }
  
  .locationModal .selectedLocation .selectedTitle svg path {
    stroke: black;
  }
  
  .locationModal .selectedLocation .selectedList {
    padding: 3px 4px;
    margin-top: 15px;
    height: 45px;
    display: flex;
    align-items: center;
    position: relative;
    transition: ease-in-out .4s;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid #B8C7D3;
    background: #FFF;
  }
  
  .locationModal .selectedLocation .selectedList span {
    transition: ease-in-out .4s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 33px;
    border-radius: 8px;
    background-color: #E3E3E3;
    margin-right: 12px;
  }
  
  .locationModal .selectedLocation .selectedList p {
    transition: ease-in-out .4s;
    margin-right: 10px;
    color: #000;
    font-size: 14px;
  }
  
  .locationModal .selectedLocation .selectedList:hover {
    background-color: #B8C7D3;
  }
  
  .locationModal .selectedLocation .selectedList:hover span {
    background-color: var(--white);
  }
  
  .locationModal .selectedLocation .selectedList:hover span svg path {
    stroke: #000;
  }
  
  .locationModal .selectedLocation .selectedList:hover p {
    color: #000;
  }
  
  .locationModal .selectedLocation.show {
    opacity: 1;
    pointer-events: visible;
  }
  
  .locationModal .selectedDropLocation {
    padding: 15px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: ease-in-out .4s;
  }
  
  .locationModal .selectedDropLocation .selectedTitle {
    padding: 5px 0;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: black;
  }
  
  .locationModal .selectedDropLocation .selectedTitle svg {
    margin-right: 10px;
  }
  
  .locationModal .selectedDropLocation .selectedTitle svg path {
    stroke: black;
  }
  
  .locationModal .selectedDropLocation .selectedList {
    padding: 3px 4px;
    margin-top: 15px;
    height: 45px;
    display: flex;
    align-items: center;
    position: relative;
    transition: ease-in-out .4s;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid #B8C7D3;
    background: #FFF;
  }
  
  .locationModal .selectedDropLocation .selectedList span {
    transition: ease-in-out .4s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 33px;
    border-radius: 8px;
    background-color: #E3E3E3;
    margin-right: 12px;
  }
  
  .locationModal .selectedDropLocation .selectedList p {
    transition: ease-in-out .4s;
    margin-right: 10px;
    color: #000;
    font-size: 14px;
  }
  
  .locationModal .selectedDropLocation .selectedList:hover {
    background-color: #B8C7D3;
  }
  
  .locationModal .selectedDropLocation .selectedList:hover span {
    background-color: var(--white);
  }
  
  .locationModal .selectedDropLocation .selectedList:hover span svg path {
    stroke: #000;
  }
  
  .locationModal .selectedDropLocation .selectedList:hover p {
    color: #000;
  }
  
  .locationModal .selectedDropLocation.show {
    opacity: 1;
    pointer-events: visible;
    overflow-y: scroll;
  }
  
  .locationModal {
    position: absolute !important;
    width: 100%;
    height: 100%;
    top: 0 !important;
    left: 0;
    margin: 0 !important;
    padding: 20px;
  }
  
  .locationModal::before {
    position: absolute;
    content: '';
    width: calc((100%) + 7px);
    height: 100%;
    background-color: #fff;
    left: -22px;
    top: -22px;
    pointer-events: none;
  }
  
  .locationModal .selectedLocation {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #FEB51B transparent;
  }
  
  .bannerContent {
    overflow: hidden;
  }
  
  .headerWidget {
    z-index: 999999 !important;
  }
  
  .pickup_location_map,
  .drop_location_map {
    position: absolute;
    padding: 0;
    width: calc((100%) - 630px);
    left: 39%;
    border-radius: 13px;
    height: auto;
    background: #fff;
    height: 100% !important;
    top: 0;
  }
  
  #address-map-container {
    border-radius: 13px;
    overflow: hidden;
  }
  
  .map-pickup-location,
  #address-map-container {
    height: 100%;
  }
  
  .form-group {
    background: #fff;
  }
  
  .text-secondary,
  .text-secondary2 {
    font-size: 12px;
  }
  
  @media only screen and (max-width:724px) {
  
    .pickup_location_map,
    .drop_location_map {
      width: 100%;
      position: absolute;
      right: 0;
      left: 0;
      overflow: hidden;
      z-index: 99999;
      height: 100%;
      top: 0;
    }
  
    .bannerWidget .containerRow .bannerImage {
      margin-bottom: 0 !important;
    }
  
    .map-search {
      left: 10% !important;
      top: 9% !important;
      width: calc(100% - 10% - 40px) !important;
    }
  
    .confirm-location {
      width: 100%;
    }
  }
  
  ::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #FEB51B;
    border-radius: 12px;
    height: 10px;
    -webkit-border-radius: 12px;
    background: #FEB51B;
  }
  
  .bannerImage {
    height: 100% !important;
  }
  
  .map-search {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: absolute;
    top: 12%;
    overflow: hidden;
    z-index: 999;
    left: 5%;
    width: 300px;
    height: 50px;
    box-shadow: 0px 5px 20px rgba(96, 100, 112, 0.10);
    border-radius: 5px;
  }
  
  .gm-style-mtc button {
    display: none;
  }
  
  .confirm-location {
    background: #feb51b;
    color: #000;
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 13px;
    float: right;
    margin-top: 10px;
    position: absolute;
    bottom: 40px;
    width: 80%;
    left: 10%;
  }
  
  .askAboutDropInputChange {
    background: #feb51b;
    color: #000;
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 13px;
    float: right;
    margin-top: 10px;
  }
  
  
  /* code by ab siddique  */
  .testimonials b {
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  
  .picker-wrapper {
    height: 140px !important;
  }
  
  .picker-scroller .option {
    position: relative !important;
  }
  
  .bannerWidget .templateContainer {
    padding: 60px 60px;
    margin: 0 50px;
    border-radius: 14px;
  }
  
  .bannerWidget .containerRow .bannerContent {
    background-color: white;
    height: 100%;
    border-radius: 14px;
  }
  
  .bannerWidget .containerRow .bannerImage {
    width: calc((100%) - 500px);
    padding-left: 90px;
  }
  
  @media (max-width: 1024px) {
    .bannerWidget .containerRow .bannerImage {
      width: 100%;
      order: 1;
      margin-bottom: 30px;
      padding-left: 0;
      padding-top: 0;
      opacity: 1;
    }
  
    .bannerWidget .containerRow .bannerContent {
      margin: 0 auto;
    }
  }
  
  @media (max-width: 900px) {
    .bannerWidget .templateContainer {
      padding: 40px 30px;
      margin: 0 5px;
    }
  }
  
  .noteWidget {
    /* height: 100%; */
    padding: 0 80px;
    position: relative;
  }
  
  
  .noteWidget .noteWidgetRow h1 {
    font-size: 25px;
    font-weight: 700;
    color: var(--blck);
    padding-top: 60px;
  }
  
  .noteWidget .noteWidgetRow h1 span {
    background-color: rgb(250, 183, 11);
    font-size: 30px;
    /*font-style: italic;*/
    font-weight: 700;
    color: var(--blck);
    margin-bottom: 20px;
    padding: 3px;
  }
  
  .noteWidget .noteWidgetRow .content p {
    padding-top: 20px;
    font-family: 'outfit' 'regular';
    font-size: small;
  }
  
  .noteWidget .noteWidgetRow .content p span {
    font-weight: 600;
  }
  
  @media (max-width: 767px) {
    .noteWidget {
      padding: 0 20px;
    }
  
    .noteWidget .noteWidgetRow h1 {
      font-size: 20px;
      padding-top: 40px;
    }
  
    .noteWidget .noteWidgetRow h1 span {
      font-size: 25px;
      margin-bottom: 15px;
      padding: 2px;
    }
  
    .noteWidget .noteWidgetRow .content p {
      padding-top: 15px;
      font-size: small;
    }
  }
  
  .tabBodyH .templateContainer .templateContainer {
    padding: 0;
  }
  
  .tabBodyH .templateContainer .head {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 40px;
    z-index: 9;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
  }
  
  .tabBodyH .templateContainer img {
    margin-bottom: 0;
    padding: 100px;
    width: auto;
    max-width: 600px;
  }
  
  @media (max-width: 767px) {
    .tabBodyH .templateContainer .templateContainer {
      padding: 0;
    }
  
    .tabBodyH .templateContainer .head {
      width: 100%;
      border-radius: 15px;
      margin-bottom: 20px;
      z-index: 9;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .tabBodyH .templateContainer img {
      margin-bottom: 0;
      width: 100%;
      max-width: 600px;
    }
  
  }
  
  .whyusWidget {
    padding-bottom: 0;
    padding-top: 0;
    background-color: var(--white);
    margin-top: -30px;
    margin-bottom: -20px;
  }
  
  .whyusWidget .templateContainer .templateRow {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
  }
  
  .whyusWidget .templateContainer .templateRow .wContentRow {
    max-width: 100%;
    flex: 40%;
    padding-top: 25px;
    padding-right: 10px;
    border-radius: 35px;
  }
  
  .whyusWidget .templateContainer .templateRow .wContentRow1 {
    max-width: 100%;
    flex: 40%;
    /* padding-top: 25px; */
    border-radius: 35px;
  }
  
  .whyusWidget .templateContainer .templateRow .wContentRow1 p span {
    margin-left: -20px;
  }
  
  .whyusWidget .templateContainer h1 {
    font-size: 25px;
    font-weight: 700;
    color: var(--blck);
    padding-top: 50px;
  }
  
  .whyusWidget .templateContainer h1 span {
    font-size: 25px;
    font-weight: 700;
    color: var(--blck);
    padding-top: 60px;
  }
  
  .whyusWidget .templateContainer .templateRow .wContentRow p {
    font-weight: var(--regular);
    font-size: 16px;
    color: var(--blck);
    font-family: 'outfit' 'regular';
    font-size: medium;
  }
  
 
  
  .whyusWidget .templateContainer .templateRow p span {
    font-weight: 700;
  }
  
  .whyusWidget .wContentRow .templateContainer {
    padding: 0;
  }
  
  @media only screen and (max-width: 768px) {
    .whyusWidget .templateContainer .templateRow .wContentRow {
      flex: 100%;
      max-width: 100%;
      padding-right: 25px;
    }
  
    .whyusWidget .templateContainer .templateRow .wContentRow1 {
      padding: 50px;
    }
  
    .whyusWidget .templateContainer h1 {
      font-size: 20px;
      padding-top: 40px;
      text-align: center;
      border-bottom: 7px solid hsl(35.77deg 89.66% 65.88%);
      display: inline-block;
    }
  
    .whyusWidget .templateContainer .wContentRow1 img {
      display: none;
    }
  
  }
  
  @media (min-width: 768px) {
    .whyusWidget .templateContainer h1 span {
      border-bottom: 7px solid hsl(35.77deg 89.66% 65.88%);
      display: inline-block;
    }
  
    .whyusWidget .templateContainer .wContentRow .imgsec2 img {
      display: none;
    }
  
  }
  
  .imgsec {
    align-items: center;
    margin-top: 100px;
    margin-left: 200px;
    width: 400px;
    height: 40px;
  }
  
  
  .onedayPlan {
    padding-bottom: 0;
    padding-top: 0;
    background-color: var(--white);
    margin-top: -30px;
    margin-bottom: 20px;
    padding-left: 80px;
    padding-right: 30px;
  }
  
  @media (max-width: 768px) {
    .onedayPlan {
      padding-left: 30px;
    }
  }
  
  .onedayPlan .templateContainer .templateRow {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
  }
  
  .onedayPlan .templateContainer .templateRow .wContentRow {
    max-width: 100%;
    flex: 40%;
    padding-top: 25px;
    padding-right: 25px;
    border-radius: 35px;
  }
  
  .onedayPlan .templateContainer .templateRow .wContentRow1 {
    max-width: 100%;
    flex: 40%;
    padding-top: 25px;
    padding-right: 0;
    border-radius: 35px;
  }
  
  .onedayPlan .templateContainer h1 {
    font-size: 25px;
    font-weight: 700;
    color: var(--blck);
    padding-top: 50px;
  }
  
  .onedayPlan .templateContainer h1 span {
    font-size: 25px;
    font-weight: 700;
    color: var(--blck);
    padding-top: 60px;
  }
  
  .onedayPlan .templateContainer .templateRow .wContentRow p,
  .onedayPlan .templateContainer .templateRow .wContentRow1 p {
    font-weight: var(--regular);
    font-size: 16px;
    color: var(--blck);
    font-family: 'outfit' 'regular';
  }
  
  .onedayPlan .templateContainer .wContentRow span,
  .onedayPlan .templateContainer .wContentRow1 span {
    color: rgb(252, 188, 26);
    /* font-size: 30px; */
    font-weight: 1000;
    padding-right: 10px;
    margin-left: -20px;
  
  }

  .onedayPlan .templateContainer .wContentRow strong,
  .onedayPlan .templateContainer .wContentRow1 strong  {
    font-weight: 700;
    font-size: 16px;
  }
  
  .onedayPlan .templateContainer .templateRow .wContentRow h3 {
    font-family: 'outfit' 'bold';
    font-weight: 700;
  }
  
  .onedayPlan .templateContainer .templateRow .wContentRow img {
    width: 850px;
    height: 300px;
    border: 15px;
  }
  
  .onedayPlan .templateContainer .templateRow .wContentRow1 img {
    margin-top: 50px;
    width: 550px;
    height: 200px;
  }
  
  .onedayPlan .templateContainer .templateRow .wContentRow1 .imgban img {
    width: 850px;
    height: 300px;
    border: 15px;
  }
  
  .onedayPlan .templateContainer .templateRow p {
    font-family: 'outfit' 'regular';
  }
  
  .tabBodyHr .templateContainer {
    width: 100%;
    padding: 0 300px;
  }
  
  @media only screen and (max-width: 999px) {
  
    .onedayPlan .templateContainer .templateRow .wContentRow,
    .onedayPlan .templateContainer .templateRow .wContentRow1 {
      flex: 100%;
    }
  
    .onedayPlan .templateContainer .templateRow .wContentRow1 .templateContainer {
      display: none;
    }
  
    .onedayPlan .templateContainer .templateRow .note p {
      padding: 20px;
      font-size: 16px;
      text-align: center;
    }
  
    .onedayPlan .templateContainer .templateRow .wContentRow .templateContainer {
      display: none;
    }
  }
  
  @media only screen and (max-width: 999px) {
  
    .onedayPlan .templateContainer h1 {
      font-size: 20px;
      padding-top: 40px;
      text-align: center;
      border-bottom: 7px solid hsl(35.77deg 89.66% 65.88%);
      display: inline-block;
    }
  }
  
  @media (min-width: 999px) {
    .onedayPlan .templateContainer h1 span {
      border-bottom: 7px solid hsl(35.77deg 89.66% 65.88%);
      display: inline-block;
    }
  }
  
  @media only screen and (min-width: 999px) {
    .justImg .templateContainer {
      display: none;
    }
  }
  
  .note {
    padding-bottom: 0;
    padding-top: 0;
    background-color: var(--white);
    margin-top: -30px;
    margin-bottom: 20px;
    padding-left: 80px;
    padding-right: 80px;
    text-align: center;
  }
  
  .FooterInfo {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }
  
 .FooterInfo .main_wrapper {
  width: 100%;
  height: auto;
  display: flex;
  margin: 0 auto;
  background: #373737;
  padding: 20px;
  padding-left: 40px;
  padding-right: 40px;
  color: #fff;
}
  
  .FooterInfo .main_wrapper .left_content {
    width: 25%;
    box-sizing: border-box;
  }
  
  .FooterInfo .main_wrapper .right_content {
    width: 25%;
    box-sizing: border-box;
  }
  
  .FooterInfo .main_wrapper .middle_content {
    width: 25%;
    box-sizing: border-box;
  }
  
  .FooterInfo .main_wrapper .left_content span img,
  .FooterInfo .main_wrapper .middle_content span img,
  .FooterInfo .main_wrapper .right_content span img {
    height: 13px;
     filter: invert(1);
}

.FooterInfo .main_wrapper .left_content p,
.FooterInfo .main_wrapper .middle_content p,
.FooterInfo .main_wrapper .right_content p {
  color: #fff;
  font-weight: 400;
  font-size: 13px;
}

.FooterInfo .main_wrapper .left_content span,
.FooterInfo .main_wrapper .middle_content span,
.FooterInfo .main_wrapper .right_content span {
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  }
  
  @media only screen and (max-width: 768px) {
  
    .FooterInfo .main_wrapper .left_content,
    .FooterInfo .main_wrapper .right_content,
    .FooterInfo .main_wrapper .middle_content {
      width: 100%;
    }
  }
  
  @media only screen and (max-width: 768px) {
  
    .whyusWidget .templateContainer .templateRow .wContentRow,
    .whyusWidget .templateContainer .templateRow .wContentRow1 {
      padding: 20px;
    }
  
    .whyusWidget .templateContainer h1 {
      font-size: 20px;
      padding-top: 40px;
      text-align: center;
      border-bottom: 7px solid hsl(35.77deg 89.66% 65.88%);
      display: inline-block;
    }
  
    .whyusWidget .templateContainer .wContentRow1 img {
      display: none;
    }
  }

  .whyusWidget .templateContainer .templateRow .wContentRow h1 {
    padding-top: 0;
  }

  @media (max-width: 768px){
    .imgsec{
        display: none;
    }
  }

  @media (min-width: 768px){
    .justimg{
        display: none;
    }
  }

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

  .ld{
    width: 350px;
    padding-left: 40px;
  }


  
  .container {
    max-width: 80%;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
 .card {
    width: calc(33.33% - 20px);
    background-color: #FFF5DF;
    border-radius: 8px;
    border: 2px solid #FCB41A;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    transition: all 0.3s ease;
}
 .card h2 {
    margin-bottom: 10px;
    color: #333;
    font-weight: 700;
}
 .card p {
    font-size: 14px;
    font-weight: 400;
}
@media screen and (max-width: 768px) {
     .card {
        width: calc(50% - 20px);
    }
}
@media screen and (max-width: 768px) {
    .card {
        width: 100%;
    }
}
.support_container
{
        display: flex;
    justify-content: space-between;
    padding: 0px 80px;
}
@media (max-width: 768px){
    .support_container
    {
            display: block;
        padding: 0px 80px;
    }
}
