@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700;900&display=swap");
@import url(component.min.css);
@import url(layout.min.css);

:root {
  --primary: #6ab0d1;
  --black: #000;
  --text-color: #828282;
  --white: #fff;
}

::selection {
  background: var(--primary);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: rgb(0 0 0 / 0%);
}

::-webkit-scrollbar-thumb {
  background: rgb(0 0 0 / 0.5);
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(0 0 0 / 0.8);
}

html,
body {
  height: 100%;
}

html {
  font-size: 16px;
  line-height: 1;
}

body {
  background: var(--white);
  color: #030303;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1;
  overflow-x: hidden;
}

a,
button {
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

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

p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
}

.text-blue {
  color: var(--primary);
}

img {
  max-width: 100%;
}

figure {
  margin: 0;
}

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

h1 {
}

h2 {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.1;
}

h3 {
}

h4 {
}

h6 {
  font-size: 1.5rem;
  text-transform: capitalize;
  font-weight: 400;
}

section {
  padding: 4rem 0;
  position: relative;
}

.mainBanner {
  background: url(../images/banner/banner.webp) right center/cover no-repeat;
  height: calc(100% - 20rem);
  display: flex;
  align-items: center;
  min-height: 35rem;
}

.bannerContent .themeBtn {
  margin-bottom: 2rem;
}

.leadForm {
  position: relative;
  z-index: 1;
  padding: 3rem;
  background: var(--primary);
  border-radius: 30px;
}

/* .leadForm::before {
    content: '';
    position: absolute;
    inset: 0 -50% 0 0;
    background: var(--primary);
    z-index: -1;
    border-radius: 30px;
} */

.leadForm input {
  width: 100%;
  height: 4rem;
  border-radius: 25px;
  padding: 0 1rem;
  margin: 5px 0;
  border: 1px solid #ffffff82;
  background: #529bbc;
}

.leadForm input::placeholder {
  color: var(--white);
}

.leadForm p {
  color: var(--white);
}

.leadForm button {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--primary);
  padding: 1.25rem 4rem;
  border-radius: 25px;
  margin: 5px 0;
}

.leadForm button:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.aboutSec {
  background: #f3f3f3;
  padding-bottom: 0;
}

.aboutSec p {
  width: 70%;
}

.flagBox {
  display: flex;
  align-items: center;
  padding-left: 2rem;
  border: 2px dashed transparent;
  box-shadow: 0 0 20px #6ab0d14a;
  border-radius: 30px;
  transition: all 0.5s ease;
}

.flagBox:hover {
  border-color: var(--primary);
  box-shadow: none;
}

.whychooseSec {
  background: var(--primary);
  margin-bottom: 10rem;
}

.whychooseSec h2,
.whychooseSec p {
  text-align: center;
  color: var(--white);
}

.whyBox {
  text-align: center;
  padding: 2rem 1rem 0;
  background: var(--white);
  border-radius: 20px;
  height: 100%;
  transition: all 0.5s ease;
}

.whyBox:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #ffffff6e;
}

.whyBox img {
  margin-bottom: 1rem;
}

.whyBox p {
  color: var(--black);
}

.blackWhychoose ul {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--black);
  padding: 3rem 1rem;
  border-radius: 40px;
}

.blackWhychoose ul li {
  text-align: center;
  color: var(--white);
  border-right: 2px solid var(--primary);
  padding: 0 2rem;
}

.blackWhychoose ul li:last-child {
  border-right: none;
}

.whychooseSec h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.blackWhychoose ul li img {
  margin-bottom: 1rem;
}

.blackWhychoose {
  margin-bottom: -12rem;
  margin-top: 8rem;
}

.registrationSec {
  background: #f3f3f3;
}

.registrationSec img {
  border: 3px solid var(--primary);
  border-radius: 30px;
}

.registrationSec ul {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  margin: 2rem 0;
}

.registrationSec ul li {
  display: flex;
  gap: 2rem;
  align-items: start;
}

.registrationSec ul li h5 {
  background: var(--primary);
  color: var(--white);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  box-shadow: 0 10px 20px #6ab0d152;
}

.registContnt h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.registContnt {
  padding-top: 8px;
}

/* Package  Section Start */
.packgeBox {
  border: 2px solid var(--black);
  border-radius: 20px;
  padding: 2rem 2rem 1rem;
  text-align: center;
  transition: all 0.5s ease;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.packgeBox h5 {
  background: var(--black);
  display: inline-block;
  color: var(--white);
  padding: 0.7rem 1rem;
  border-radius: 20px;
  box-shadow: 5px 10px 15px #00000057;
  margin-bottom: 1rem;
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.packgeBox p {
  text-align: center;
}

.packgeBox h4 {
  font-size: 3.125rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.packgeBox .listStyle li::before {
  background: var(--black);
  border-radius: 50%;
  width: 10px;
  height: 10px;
  top: 8px;
}

.packgeBox .listStyle li {
  padding-left: 5px;
}

.packgeBox:hover .listStyle li::before {
  background: var(--white);
}

.packgeBox h4 span {
  font-size: 1.5rem;
}

.packgeBox .listStyle {
  text-align: left;
  height: 21rem;
  overflow: auto;
}

.packgeBox .listStyle li p {
  text-align: left;
  padding-left: 1rem;
}

.packgeBox .themeBtn {
  width: 100%;
}

.packgeBox:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.05);
}

.packgeBox:hover * {
  color: var(--white);
}

.packgeBox:hover .themeBtn {
  background: var(--black);
  border-color: var(--black);
}

.packgeBox:hover .listStyle li::before {
  filter: brightness(3.5);
}

/* packge end */

.primaryAmazon {
  background: var(--primary);
  color: var(--white);
  border-radius: 20px;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.primaryAmazon h3 {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0;
}

.primaryAmazon h2 {
  margin: 0;
  font-size: 3.75rem;
}

.amaZonWhite {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 0 20px #6ab0d136;
  margin: 1rem 0;
  padding: 3rem 2rem 2rem;
}

.amaZonWhite .themeBtn {
  margin-top: 7rem;
}

.amazonSec img {
  margin: 1rem 0;
}

.amazonBlack {
  display: flex;
  align-items: center;
  background: var(--black);
  padding: 1.25rem;
  border-radius: 20px;
  gap: 0.8rem;
}

.amazonBlack h3 {
  font-size: 2rem;
  color: var(--white);
  font-weight: 600;
  border-right: 1px solid var(--primary);
  padding-right: 20px;
}

.amazonBlack p {
  color: var(--white);
  margin-bottom: 5px;
}

.amzBtn {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  padding: 10px 1rem;
  border-radius: 20px;
}

.amzBtn i {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.ctaSec {
  padding: 0;
  background: url(../images/bg/1.webp) right center/cover no-repeat;
  margin-top: 8rem;
}

.ctaSec figure {
  margin-top: -10rem;
}

.ctaContnt {
  padding: 9rem 0 0;
  color: var(--white);
}

.ctaContnt p {
  color: var(--white);
}

.overlay {
  position: absolute;
  bottom: 0;
  padding: 1rem 1.75rem 2rem;
}

.serBox {
  position: relative;
  border-radius: 20px;
  transition: all 0.5s ease;
  margin: 1rem 0;
}

.overlay * {
  color: var(--white);
}

.serBox::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(5deg, black, transparent);
  border-radius: 30px;
  transition: all 0.5s ease;
}

.serBox:hover::before {
  background: linear-gradient(5deg, var(--primary), transparent);
}

.serBox:hover .themeBtn {
  background: var(--black);
  border-color: var(--black);
}

.tradeCtaSec {
  background: url(../images/bg/2.webp) right center/cover no-repeat;
}

.tradeCtaSec h2,
.tradeCtaSec p {
  color: var(--white);
}

.reviewSec {
  background: #f3f3f3;
}

.reviewBox {
  background: var(--white);
  border: 2px dashed var(--primary);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 20px #b2b2b24f;
  margin: 2rem 10px;
  transition: all 0.5s ease;
}

.reviewBox img {
  margin: 1rem auto;
  border-radius: 50%;
  width: 5rem;
}

.reviewBox h3 span {
  display: block;
  font-size: 12px;
}

.reviewBox h3 {
  font-size: 1.25rem;
}

.reviewBox p {
  color: var(--black);
}

.reviewSec .slick-slide .reviewBox {
  opacity: 0.5;
}

.slick-current + .slick-active .reviewBox {
  opacity: 1;
}

.slick-current + .slick-active .reviewBox {
  transform: scale(1.05);
}

/* Faqs Section CSS Start */
.faqSec {
  background: url(../images/bg/3.webp) top center/cover no-repeat;
}

.accordionStyle .accordion-item {
  margin: 1rem 0;
  border: none;
}

.accordionStyle .accordion-item .accordion-button {
  border-radius: 1rem 1rem 0 0;
  border: none;
  box-shadow: none;
  background: none;
  padding: 1.5rem 1.125rem;
  color: var(--black);
  font-weight: 600;
  font-size: 1.125rem;
}

.accordionStyle .accordion-item {
  box-shadow: none;
  border-radius: none;
  background: transparent;
}

.accordionStyle .show .accordion-body {
  border-top: none;
  padding-top: 0;
}

.accordionStyle .accordion-item:not(:first-of-type) {
  border-top: 1px solid #c1c1c1;
}

.accordionStyle .accordion-body {
  padding-top: 0;
}

.accordionStyle .accordion-button:not(.collapsed) {
  color: var(--primary) !important;
}

.accordionStyle {
  margin: 3rem 0;
}

.logoSec {
  background: #f8f8f8;
  padding: 1rem 0;
}

.aboutInner {
  background: url(../images/bg/4.webp) right center/cover no-repeat;
  padding-bottom: 4rem;
}

.abtWhy {
  background: #f3f3f3;
  margin-bottom: 0;
}

.abtWhy h2 {
  color: var(--black);
}

.aboutInner p {
  width: 100%;
}

.trademarkBox {
  background: var(--primary);
  padding: 2rem 0;
}

.trademarkBox ul {
  display: flex;
  text-align: center;
  justify-content: center;
}

.trademarkBox ul li h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
}

.trademarkBox ul li a {
  color: var(--white);
}

.trademarkBox ul li {
  border-right: 1px solid #fff;
  padding: 0 5rem;
}

.trademarkBox ul li:last-child {
  border-right: 0;
}

.abtWhy p {
  color: var(--black);
}

.blackWhychoose ul li p {
  color: var(--white);
}

.copyInner {
  background: url(../images/bg/5.webp) top center/cover no-repeat;
}

.copyInner h2,
.copyInner p {
  color: var(--white);
}

.btnSec {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
}

.linebg {
  position: absolute;
  top: 40%;
  z-index: -1;
}

.stepBox {
  background: var(--primary);
  padding: 1rem;
  border-radius: 20px;
  text-align: center;
  margin-top: 5rem;
  transform: rotate(-10deg);
  position: relative;
}

.stepBox h3,
.stepBox p {
  color: var(--white);
}

.stepBox h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.step2 {
  transform: rotate(10deg);
}

.stepBox span {
  background: var(--white);
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: 15px;
  margin-top: -2rem;
  box-shadow: 0 0 10px #6ab0d1;
  margin-bottom: 10px;
}

.copyText h2,
.copyText p {
  color: var(--black);
}

.listCopy {
  display: flex;
  gap: 4rem;
  margin: 2.5rem 0;
}

.listCopy li {
  padding: 8px 0;
  color: var(--white);
}

.listCopy li i {
  color: var(--primary);
  padding-right: 8px;
}

.themeBlack {
  background: var(--black);
  border-color: var(--black);
}

.chooseCopy {
  background: var(--white);
  margin-bottom: 0 !important;
}

.chooseCopy h2,
.chooseCopy p {
  color: var(--black);
}

.chooseCopy .whyBox {
  background: #f3f3f3;
  border: 2px dashed transparent;
}

.chooseCopy .whyBox:hover {
  border-color: var(--primary);
  background: var(--white);
}

.contactbanner {
  height: 30rem;
}

.contactForm {
  background: #f3f3f3;
}

.contactBox {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
}

.contactBox h3 {
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  margin-bottom: 1rem;
}

.contactInfo input,
.contactInfo textarea {
  width: 100%;
  height: 3.5rem;
  border-radius: 20px;
  border: none;
  padding: 0 1rem;
}

.contactInfo label {
  margin: 1.15rem 1rem 10px;
  color: var(--text-color);
}

.contactInfo textarea {
  height: 8rem;
  padding: 1rem;
}

.contactInfo button {
  margin: 1rem 0;
}

.amzbanner h6,
.amzbanner h2,
.amzbanner ul li {
  color: var(--white);
}

.amzGrey {
  background: #f3f3f3;
  padding-bottom: 0;
  margin-top: 10rem;
}

.amzGrey figure {
  margin-top: -15rem;
}

.amzChoose .whyBox {
  margin: 1rem 0;
  min-height: 20rem;
  height: auto;
}

.congsBanner h6,
.congsBanner p {
  color: var(--white);
}

.congsBanner h2 {
  font-size: 5rem;
  text-transform: uppercase;
}

.ctaSec.my-0 .ctaContnt {
  padding: 2rem 0;
}

.nav-tabs {
  justify-content: center;
  margin: 2rem 0 0;
  border: none;
  gap: 10px;
}

.nav-tabs .nav-link {
  background: #6ab0d18a;
  border-radius: 15px;
  padding: 1rem 2.5rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background: var(--primary);
  color: var(--white);
}

.packgeBox .tag {
  background: var(--primary);
  color: var(--white);
  padding: 6px 1rem;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 0 15px 0;
}

.amzImg .listStyle {
  display: flex;
  flex-wrap: wrap;
}

.amzImg .listStyle li {
  flex: 0 0 50%;
}

.whiteBox {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  position: sticky;
  top: 0;
}

.whiteBox h3 {
  font-size: 1.5rem;
}

.grey {
  background: #f3f3f3;
}

.tableStyle thead tr th {
  background: #223645;
  color: #fff;
  padding: 1.25rem;
  font-size: 1.125rem;
  font-weight: 400;
}

.tableStyle tbody tr td {
  padding: 1rem;
}

.tableStyle tbody tr td:first-child {
  width: 80%;
}

.tableStyle-price tbody tr td:first-child {
  width: 20%;
}

.tableStyle tbody tr td:last-child {
  width: 20%;
  text-align: right;
}

.tableStyle tbody tr:last-child td {
  font-weight: 600;
}

.table {
  border-top: 1px solid #dee2e6;
  border-left: 1px solid #dee2e6;
  border-radius: 6px;
  border-right: 1px solid #dee2e6;
}

.grey h2,
.grey p {
  color: #000;
}

a.logo img {
  width: 15rem;
}

.listbtn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.listbtn li {
  flex: 0 0 30%;
  background: #f3f3f3;
  padding: 1.5rem;
  border-radius: 15px;
  margin: 5px 10px;
  transition: all 0.5s ease;
  border: 1px dashed;
}

.listbtn li:hover {
  transform: scale(1.05);
  border-color: var(--primary);
}

.flagBox h5 {
  color: var(--primary);
}

.about-page-section h3 {
  font-weight: 600;
}

.about-page-section ul {
  color: var(--text-color);
  margin: 1rem 0;
}

.about-page-section ul li {
  padding: 5px 0;
}

.contactIcons {
  display: grid;
}

.phone-container {
  display: flex;
  margin: 0;
}

.phone-container .iti__flag-container {
  position: unset;
  height: 4rem;
  background: #529bbc;
  color: var(--white);
  margin-top: 5px;
  border-radius: 25px 0 0 25px;
  border: 1px solid #ffffff82;
  border-right: 0;
}

.phone-container .phone2 {
  border-radius: 0 25px 25px 0;
  padding-left: 1rem;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag,
.iti--separate-dial-code .iti__selected-flag,
.iti__country.iti__highlight {
  background: transparent !important;
}
.iti__country-name,
.iti__flag-box {
  margin-right: 6px;
  color: var(--text-color);
}
.contactInfo .phone-container .iti__flag-container {
  background: var(--white);
  margin-top: 0;
  height: 3.5rem;
}
.iti--separate-dial-code .iti__selected-dial-code,
.iti__arrow {
  color: var(--text-color);
}
.leadForm .iti--separate-dial-code .iti__selected-dial-code,
.iti__arrow {
  color: var(--white);
}
.bannerContent .themeBtn {
  display: none;
}
.footer-infos {
  gap: clamp(5px, 5vw, 20px);
}

.footer-infos li a {
  display: flex;
  align-items: baseline;
  white-space: nowrap;
  gap: 5px;
  padding: 0;
}
