@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


/*==Font-setup==*/

*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #000;
    background: #fff;
}

a,
a:hover {
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label {
  margin: 0;
}

/*==Basic-setup==*/
.scraped-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/*==topper-section*/
.topper-area {
  background: url("https://assets.checkoutchamp.com/Funnel/assets/images/d57f9adb-eda4-4071-a0e5-265a066aa337/e37909ef-cdc8-4dd0-a7af-0cad94f62f4c/top-bg.svg") no-repeat;
  background-position: center;
  background-size: cover;
  padding: 6px 0;
}

.topper-main {
  max-width: 480px;
  margin: auto;
  display: grid;
  grid-template-columns: 300px auto;
  align-items: center;
  column-gap: 20px;
}

.topper-left img {
  max-width: 300px;
  width: 100%;
}

.timer-container {
    background: #8B0000;
    background: rgba(139, 0, 0, 1);
    border-radius: 8px;
    padding: 6px 14px;
    max-width: 165px;
}

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

.time-unit {
  text-align: center;
}

.time-number {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  text-transform: uppercase;
}

.time-unit span {
  display: block;
  
}

.hidden {
  display: none !important;
}

.time-title {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 8px;
  color: #ffffff;
}

/*==header-section==*/
.logo-brand img {
  max-width: 200px;
  display: block;
  margin: auto;
}

.hero-area {
  background-color: #ffffff;
  padding: 30px 0 0 0;
}

.hero-main {
  display: grid;
  grid-template-columns: 47% auto;
  column-gap: 50px;
  margin: auto;
  margin-top: 50px;
}


/*==thumb-css-start==*/
.main-image {
    height: 530px;
    overflow: hidden;
    position: relative;
    cursor: grab;
}

.main-image img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
    display: block;
    /*! object-fit: cover; */
}

.main-image img.slide-left {
    transform: translateX(-100%);
}

.main-image img.slide-right {
    transform: translateX(100%);
}

.main-image img.active {
    transform: translateX(0);
}

.thmp-inner {
    position: relative;
    width: 100%;
}

.thumbnail-container {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
    padding: 10px 0;
    width: 100%;
}

.thumbnail-container::-webkit-scrollbar {
    display: none;
}

.thumbnail {
    width: 18.5%;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s ease;
    flex-shrink: 0;
}

.thumbnail.active {
    border-color: rgba(5, 91, 220, 1);
}

.thumbnail {
    width: 19%;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    opacity: 1;
    z-index: 10;
    transition: opacity 0.3s ease;
    display: none;
}

.main-image:hover .nav-button {
    opacity: 1;
}

.prev-button {
    left: 10px;
}

.next-button {
    right: 10px;
}

.thumb-nav-button {
    position: absolute;
    background: rgba(5, 91, 220, 1);
    color: #fff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    z-index: 20;
    transition: background 0.3s ease;
}

.thumb-prev-button {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.thumb-next-button {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.image-counter {
    position: absolute;
    display: none;
}


/*==thumb-css-end==*/

.client-vote {
  background: #F4F9FF;
  padding: 12px 15px;
  border-radius: 12px;
  margin-top: 10px;
}

.client-vote-flex {
  display: grid;
  grid-template-columns: 70px auto;
  column-gap: 10px;
  align-items: center;
}

.client-vote-left img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.client-vote-right p {
  font-weight: 400;
  font-size: 14px;
  color: #212529;
  font-style: italic;
}

.client-vote ul {
  max-width: 423px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  margin-top: 30px;
}

.client-vote li {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.client-vote li:nth-of-type(1) {
  font-weight: 700;
  font-size: 15px;
  color: #212529;
}

.client-vote li:nth-of-type(2) {
  font-weight: 400;
  font-size: 14px;
  color: #9D9C9C;
}

.client-vote li img {
  width: 75px;
}

/*==hero-right-css==*/
.hero-title h2 {
  font-weight: 700;
  font-size: 35px;
  color: #000000;
  line-height: 40px;
}

.hero-title p {
  font-weight: 400;
  font-size: 17px;
  color: #212529;
  margin-top: 25px;
}

.hero-list ul {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 100%;
  row-gap: 25px;
}

.hero-list ul li {
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  display: grid;
  grid-template-columns: 25px auto;
  align-items: center;
  column-gap: 15px;
}

.hero-list ul li img {
  width: 25px;
}

.all-btn-hero a {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #ffffff;
  background-color: rgba(5, 91, 220, 1);
  padding: 15px 10px 15px 10px;
  border-radius: 5px;
  box-shadow: 0 4px 7px 1px rgba(0, 0, 0, 0.19);
  display: block;
  text-align: center;
  margin-top: 40px;
  transition: 0.2s all ease;
}

.all-btn-hero a:hover {
  opacity: 0.8;
}

.hero-main-btn ul {
 display: flex;
 align-items: center;
 column-gap: 10px;
 justify-content: center;
 margin-top: 10px;
}

.hero-main-btn ul li {
  font-weight: 700;
  font-size: 18px;
  color: #212529;
}

.hero-main-btn ul li img {
  width: 25px;
  display: block;
}

.flag-box {
  background-color: rgba(252, 248, 227, 1);
  border: 1px solid rgba(197, 199, 210, 1);
  border-radius: 10px;
  padding: 12px 10px;
  margin-top: 15px;
}

.flag-box ul {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
}

.flag-box ul li img {
  width: 35px;
  display: block;
}

.flag-box ul li {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #C8202F;
}

.hero-brand h4 {
  font-weight: 700;
  font-size: 16px;
  color: #0ABA4C;
  text-align: center;
}

.hero-brand h4 span {
  color: #000000;
  text-decoration: underline;
}

.hero-brand img {
  width: 100%;
  margin-top: 20px;
}

.hero-btm-main {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 10px;
}

.hero-btm-container {
  max-width: 1230px;
}

/*==option-section==*/
.option-area {
  background: #F4F9FF;
  padding: 20px 0;
  margin-top: 20px;
}

.option-main {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap: 30px;
  align-items: center;
}

.option-item-flex {
  display: grid;
  grid-template-columns: 115px auto;
  align-items: center;
  column-gap: 10px;
}

.option-item-left img {
  width: 115px;
  height: 115px;
  border-radius: 50%;
  display: block;
}

.option-item-right h2 {
  font-weight: 800;
  font-size: 20px;
  color: #000000;
}

.option-item-right p {
  font-weight: 400;
  font-size: 15px;
  color: #434339;
}

.option-item-left2 img {
  width: 95px;
  height: 95px;
  border-radius: 50%;
}

/*==spine-section==*/
.spine-area {
  background: #ffffff;
  padding: 45px 0;
}

.spine-title h2 {
  font-weight: 700;
  font-size: 25px;
  color: #055BDC;
  text-align: center;
}

.spine-title span {
  display: block;
  background: #055BDC;
  height: 6px;
  max-width: 230px;
  margin: auto;
  margin-top: 15px;
}

.spine-main {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 20px;
  align-items: center;
  margin-top: 70px;
}

.spine-left video {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.spine-right p {
  font-weight: 400;
  font-size: 17px;
  color: #000000;
  margin-top: 20px;
}

.spine-right p:nth-of-type(1) {
  margin-top: 0 !important;
}

.spine-list-box {
  background: #F4F9FF;
  padding: 10px;
  border: 1px solid #C5C7D2;
  border-radius: 10px;
  margin-top: 30px;
}

.spine-list-box ul {
  display: grid;
  grid-template-columns: 100%;
  row-gap: 15px;
}

.spine-list-box ul li {
  display: grid;
  grid-template-columns: 20px auto;
  column-gap: 10px;
}

.spine-list-box ul li i {
  font-size: 17px;
  color: rgba(57, 181, 74, 1);
}

.spine-list-box ul li {
  font-weight: 400;
  font-size: 17px;
  color: #212529;
  line-height: 23px;
}

.align-start {
  align-items: initial;
}

.spine-height {
  height: 50px;
}

.spine-right em {
  font-weight: 700;
  font-size: 17px;
  color: #000000;
  margin-top: 20px;
  display: block;
}

.spine-right em:first-child {
  margin-top: 0;
}

.spine-list-box2 {
  background: none;
}

.desk-none {
  display: none;
}

/*==video-section==*/
.video-area {
  background: #F4F9FF;
  padding: 60px 0;
}

.video-main {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 20px;
  align-items: center;
}

.video-left p {
  font-weight: 400;
  font-size: 17px;
  color: #000000;
  margin-top: 20px;
}

.video-left p:nth-of-type(1) {
  margin-top: 0;
}

.video-right video {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.video-area2 {
  background: #ffffff;
}

.video-img img {
  width: 100%;
  border-radius: 20px;
}

.video-left h3 {
  font-weight: 700;
  font-size: 25px;
  color: #000000;
  margin-bottom: 38px;
}

.video-main2 {
  margin-top: 90px;
}

.hero-main-btn2 a {
  margin-top: 25px;
}

.video-left h3 {
  font-size: 24px;
}

.video-left h3 {
  display: none;
}

/*==choice-section==*/

.choice-area {
  background-color: rgba(239, 245, 255, 1);
  padding: 60px 0;
}

.choice-title {
  text-align: center;
}

.choice-title h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: #434339;
}

.choice-title p {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #434339;
  margin-top: 20px;
}

.choice-main {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  margin-top: 70px;
  column-gap: 30px;
}

.choice-item1 {
  border-right: 1px solid #CFD6E3;
}

.choice-item h3 {
  font-weight: 700;
  font-size: 25px;
  color: #000000;
  text-align: center;
}

.choice-item ul {
  display: grid;
  grid-template-columns: 100%;
  row-gap: 30px;
  margin-top: 30px;
}

.choice-item ul li {
  display: grid;
  grid-template-columns: 45px auto;
  column-gap: 20px;
}

.choice-item ul li img {
  width: 45px;
}

.choice-item ul li h4 {
  font-weight: 700;
  font-size: 18px;
  color: #434339;
  text-transform: uppercase;
}

.choice-item ul li p {
  font-weight: 400;
  font-size: 17px;
  color: #434339;
  line-height: 20px;
}

/*==result-section==*/
.result-area {
  background: #ffffff;
  padding: 60px 0;
}

.result-title {
  text-align: center;
}

.result-title h2 {
  font-weight: 700;
  font-size: 25px;
  color: #000000;
}

.result-title img {
  max-width: 95px;
  margin-top: 10px;
}

.result-main {
  max-width: 1110px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap: 15px;
  margin-top: 45px;
}

.result-item1 {
  padding: 12px 10px;
  background-color: rgba(255, 255, 255, 1) !important;
  box-shadow: 2px 2px 8px 2px rgba(0, 0, 0, 0.12) !important;
  border-radius: 15px;
}

.result-img img {
  width: 100%;
  vertical-align: middle;
}

.result-cnt {
  background: #CDDFF7;
  padding: 12px 10px;
}

.result-cnt h2 {
  font-weight: 700;
  font-size: 18px;
  color: #212529;
}

.result-cnt p {
  font-weight: 400;
  font-size: 16px;
  color: #212529;
  margin-top: 15px;
}

.result-cnt h3 {
  font-weight: 700;
  font-size: 16px;
  color: #212529;
  margin-top: 15px;
}

.result-cnt img {
  width: 100px;
  margin-top: 15px;
}

.result-img3 img {
  height: 382px;
}

.result-img2 {
  padding: 12px 10px;
  background-color: rgba(255, 255, 255, 1) !important;
  box-shadow: 2px 2px 8px 2px rgba(0, 0, 0, 0.12) !important;
  border-radius: 15px;
}

/*==steps-section==*/
.steps-topper {
  background-color: rgba(239, 245, 255, 1) !important;
  padding: 40px 0;
}

.steps-topper-main {
  text-align: center;
}

.steps-topper-main h2 {
  font-weight: 700;
  font-size: 25px;
  color: #000000;
  line-height: 33px;
}

.steps-topper-main p {
  font-weight: 400;
  font-size: 17px;
  color: #000000;
  margin-top: 20px;
}

.steps-area {
  background: #CDDFF7;
  padding: 30px 0;
}

.steps-main {
  max-width: 1125px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  column-gap: 45px;
}

.steps-item h3 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #000000;
  text-transform: uppercase;
  text-align: center;
}

.steps-item span {
  display: block;
  width: 53px;
  background: #0452C6;
  height: 4px;
  margin: auto;
  margin-top: 15px;
}

.steps-item p {
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  text-align: center;
  margin-top: 10px;
}

.steps-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-top: 20px;
  border-radius: 10px;
}

/*==winter-section==*/
.winter-topper {
  background: #EFF5FF;
  padding: 40px 0;
  margin-top: 30px;
}

.winter-topper-main h2 {
  font-weight: 700;
  font-size: 28px;
  color: #000000;
  text-align: center;
}

.winter-area {
  background: #ffffff;
  padding: 30px 0;
}

.winter-main {
  border: 2px solid rgba(205, 223, 247, 1);
  background: rgba(240, 245, 255, 1);
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 30px;
  align-items: center;
}

.winter-left img {
  width: 100%;
}

.winter-cnt h2 {
  font-weight: 700;
  font-size: 25px;
  color: #212529;
}

.winter-cnt p {
  font-weight: 400;
  font-size: 18px;
  color: #212529;
  text-align: center;
  margin-top: 40px;
}

.winter-cnt h4 {
  font-weight: 700;
  font-size: 20px;
  color: #212529;
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  margin-top: 60px;
}

.winter-list ul {
  display: grid;
  grid-template-columns: 100%;
  row-gap: 30px;
  margin-top: 50px;
}

.winter-list ul li {
  font-weight: 700;
  font-size: 18px;
  color: #212529;
  display: grid;
  grid-template-columns: 20px auto;
  column-gap: 15px;
  align-items: center;
}

.winter-list ul li img {
  width: 20px;
  display: block;
}

.hero-brand10 {
  margin-top: 40px;
}

/*==guarantee-section==*/
.guarantee-area {
  background: #ffffff;
  padding: 60px 0;
}

.guarantee-title h2 {
  font-weight: 700;
  font-size: 25px;
  color: #000000;
  text-align: center;
  line-height: 30px;
}

.guarantee-main {
  display: grid;
  grid-template-columns: 250px auto;
  column-gap: 30px;
  align-items: center;
  margin-top: 40px;
}

.guarantee-left img {
  max-width: 250px;
  width: 100%;
}

.guarantee-right {
  text-align: center;
}

.guarantee-right p {
  font-weight: 400;
  font-size: 18px;
  color: #212529;
  line-height: 33px;
}

.guarantee-right p:nth-of-type(2) {
  margin-top: 15px;
}

.noticed-area {
  background: #EFF5FF;
  padding: 40px 0;
}

.noticed-main h3 {
  font-weight: 700;
  font-size: 28px;
  color: #000000;
  text-align: center;
}

.noticed-main img {
  max-width: 640px;
  margin: auto;
  display: block;
  margin-top: 10px;
  width: 100%;
}

/*==question-section==*/
.questions-area {
  background: #ffffff;
  padding: 60px 0;
}

.questions-main {
  margin-top: 30px;
}

.questions-title h2 {
  font-weight: 700;
  font-size: 28px;
  color: #000000;
  text-align: center;
  line-height: 40px;
}

.ac-cd10 {
  margin-top: 20px;
}

.ac-trigger-cd10 {
  font-weight: 700;
  font-size: 18px;
  color: #212529;
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(221, 221, 221, 1);
  border-radius: 5px;
  padding: 10px;
}

.ac-trigger-cd10::after {
  content: "\f0da";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
}

.ac-cd10.is-active-cd10 .ac-trigger-cd10::after {
  content: "\f0d7";
}

.ac-panel-cd10 {
  overflow: hidden;
  transition: height 0.3s ease;
  height: 0;
}

.ac-panel-cnt-cd10 {
  padding: 10px;
}

.ac-panel-cnt-cd10 p {
  font-weight: 400;
  font-size: 17px;
  color: #000000;
}

/*==footer-section==*/
.footer-area {
  border-top: 2px solid rgba(0, 0, 0, 0.25);
  /*! border-bottom: 2px solid rgba(0, 0, 0, 0.25); */
  padding: 30px 0;
  margin-bottom: 122px;
}

.footer-main p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #A1A7B2;
  text-align: center;
}

.footer-main p:nth-of-type(2) {
  margin-top: 20px;
}

.footer-main ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  column-gap: 5px;
}

.footer-main ul li a {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #A1A7B2;
  transition: 0.2s all ease;
}

.footer-main ul li a:hover {
  text-decoration: underline;
}

#bottom-section {
  position: fixed;
  left: 0;
  bottom: -200px;
  width: 100%;
  text-align: center;
  padding: 20px;
  transition: .3s ease;
  z-index: 999;
  border-top: 2px solid rgba(0, 0, 0, 0.25);
   padding: 10px 0;
   background: #ffffff;
}

#bottom-section.show {
  bottom: 0;
}

.scroll-section a {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 22px;
  background: #055BDC;
  padding: 14px 50px;
  border-radius: 10px;
  display: inline-block;
  text-transform: uppercase;
  color: #ffffff;
}

/*==reviews-slider==*/
.reviews-area {
  background: #ffffff;
  padding: 60px 0;
}

.reviews-main-title h2 {
  font-weight: 700;
  font-size: 25px;
  color: #000000;
  text-align: center;
}

.reviews-main-title ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.reviews-main-title ul li:nth-of-type(1) {
  font-weight: 500;
  font-size: 16px;
  color: #212529;
  display: flex;
  align-items: center;
  column-gap: 5px;
}

.reviews-main-title ul li:nth-of-type(1) svg {
  display: block;
  position: relative;
  bottom: -1px;
}

.reviews-main-title ul li a {
  font-weight: 500;
  font-size: 16px;
  color: #0056B3;
  transition: 0.2s all ease;
}

.reviews-main-title ul li a:hover {
  text-decoration: underline;
}

.reviews-box {
  background: rgba(255, 255, 255, 1);
  border-radius: 14px;
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.06);
  padding: 18px 18px 12px 18px;
}

.reviews-cnt-wrap {
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(230, 216, 204, 1);
  border-radius: 16px;
  padding: 18px;
}

.reviews-main {
  position: relative;
}

.slider-btn {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.slider-btn button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background: #D0E0FF;
  cursor: pointer;
}

.reviews-cnt-top ul li:nth-of-type(1) span {
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  width: 40px;
  height: 40px;
 background-color: #BF360C;
 border-radius: 50%;
 display: flex;
 justify-content: center;
 align-items: center;
}

.reviews-cnt-top ul li {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.reviews-cnt-top ul li h4 {
  font-weight: 500;
  font-size: 16px;
  color: #212529;
}

.reviews-cnt-top ul li h5 {
  font-weight: 400;
  font-size: 14px;
  color: #777777;
}

.reviews-cnt-top p {
  font-weight: 400;
  font-size: 16px;
  color: #212529;
  margin-top: 5px;
}

.star-reviw img {
  max-width: 82px;
  margin-top: 10px;
}

.reviews-cnt-top p a {
  font-weight: 400;
  font-size: 16px;
  color: #1A73E8;
  text-decoration: underline;
}

.reviews-cnt-btm h4 {
  font-weight: 400;
  font-size: 14px;
  color: #777777;
  margin-top: 20px;
}

.reviews-cnt-btm ul {
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin-top: 5px;
}

.reviews-cnt-btm ul li {
  font-weight: 400;
  font-size: 14px;
  color: #555555;
  display: flex;
  align-items: center;
  column-gap: 5px;
}



/* OWL-CAROUSEL-01 */
.main-content1 {
    position: relative;
    margin-top: 20px;
}

.main-content1 .owl-dots {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 1%;
    display: none;
}

.main-content1 .owl-theme .owl-dots .owl-dot span {
  width: 20px;
  height: 20px;
  margin: 10px 7px;
  background: transparent;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px;
  border: 2px solid  #5B2B81!important;
}

.main-content1 .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: red;
}

.main-content1 .owl-dots button {
    border: none !important;
    outline: none !important;
}

.main-content1 .owl-nav button {
    border: none !important;
    outline: none !important;
}

.main-content1 .owl-theme .custom-nav {
    position: absolute;
    top: 43%;
    left: -33px;
    right: -18px;
}
.main-content1 .owl-theme .custom-nav .owl-prev, .main-content1 .owl-theme .custom-nav .owl-next {
    position: absolute;   
    color: inherit;
    background: none;
    border: none;
    z-index: 100;
}

.main-content1 .owl-theme .custom-nav .owl-prev i, .main-content1 .owl-theme .custom-nav .owl-next i {
    font-size: 20px;
    color: #000000;
    background: #D0E0FF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
}

.main-content1 .owl-theme .custom-nav .owl-prev {
    left: 0;
}

.main-content1 .owl-theme .custom-nav .owl-next {
    right: 0;
}

