@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,800&display=swap');

* {
  font-family: 'Poppins', sans-serif;
}

a {
  text-decoration: none;
}

body {
  background-color: #F9F9F9;
}


@media (min-width: 1700px) {

  .container,
  .container-md,
  .container-sm {
    max-width: 85% !important;
  }
}

@media (max-width: 1400px) {

  .container,
  .container-md,
  .container-sm {
    max-width: 95% !important;
  }
}

@media (max-width: 770px) {

  .container,
  .container-md,
  .container-sm {
    max-width: 98% !important;
  }
}

.coloB {
  color: #000 !important;
}

.coloBb {
  color: #DF3A27 !important;
}

.coloy {
  color: #32b5d8 !important;
}

.coloR {
  color: #FF7777 !important;
}

.coloG {
  color: #616161 !important;
}

/* //////////////////////////////// */

.btnMenu {
  background-color: #000;
  border-radius: 30px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.btnMenu img {
  width: 40px;
}

.login-btn-menu {
  display: none;
}

@media (max-width:991px) {
  .btnMenu {
    display: flex;
  }
  .login-btn-menu {
    display: inline;
  }
}


.headerMenuM {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.logoM {
  width: 110px;
}

.ulMenuM {
  padding: 10px;
  list-style: none;
}

.ulMenuM li {
  color: #DF3A27;
  margin-bottom: 8px;
}

.ulMenuM li a {
  color: #DF3A27;
  margin-bottom: 20px;
}


.arrowmenu {
  transition: all .5s ease;
}

.arrowmenu.active {
  transform: rotate(180deg);
}

.dropMenuM {
  padding-right: 15px;
  margin-top: 10px;
  list-style: none;
  border-bottom: 1px solid #fff;
  display: none;
}

.ulMenuM li a {
  color: #616161;
}

.ulMenuM .drobMenu {
  color: #616161;
}



.ulMenuM .titleDrop {
  color: #DF3A27;
}

.offcanvas .social {
  color: #000;
  display: flex;
  list-style: none;
  gap: 4px;
  padding: 0;
  font-size: 18px;
  margin-top: 0;
}

.offcanvas .social a {
  color: #000;
}





/* ////////////////////navTop//////////////// */

.navTop {
  background-color: #000;
}

.allNavTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.allNavTop li a.active {
  color: #DF3A27;
}

.allNavTop>ul {
  display: flex;
  gap: 13px;
  list-style: none;
  margin-bottom: -1px;
  padding: 7px 0;
}

.allNavTop ul.social {
  gap: 4px;
  font-size: 18px;
}

.allNavTop ul li a {
  color: #fff;
  transition: all .3s ease;
}

.allNavTop ul li a:hover {
  color: #DF3A27;
}


.allNavTop .dropdown a {
  background-color: transparent !important;

}

.allNavTop .dropmenu a {
  color: #616161;
}

.allNavTop .dropmenu a:hover {
  color: #DF3A27;
}

.dropmenu a.active {
  color: #000;
  background-color: transparent !important;
}

.allNavTop .dropmenu {
  top: 22px;
  left: 0;
}

@media (max-width:991px) {
  .allNavTop {
    display: none;
  }
}


/* ////////////////////navbar//////////////// */

.navbar {
  box-shadow: rgba(0, 0, 0, 0.986) 0px 3px 5px;
  background-color: #fff;
}

.navbar a {
  color: #DF3A27;
}

.nav-link.active {
  color: #DF3A27 !important;
}

.navbar .nav-item a {
  transition: all .4s ease;
}

.navbar .nav-item:hover>a {
  background-color: #F5F5F5;
  border-radius: 30px;
}

.navbar .nav-item a.active {
  background-color: #F5F5F5;
  border-radius: 30px;
  color: #000 !important;
}

.logo {
  width: 150px;
}

.btnsNav {
  display: flex;
  gap: 10px;
}

.btnW {
  background-color: #DF3A27;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
}

.btnsNav .btnW:nth-child(1) {
  /*padding: 10px 35px;*/
}

.btnsNav .btnW:nth-child(2) {
  background-color: transparent;
  color: #000 !important;
  border: 1px solid #000;
}

.btnW i {
  font-size: 20px;
  transform: translateY(4px);
  transition: all .6s ease;
}

.btnW:hover i {
  font-size: 20px;
  transform: translateY(4px) translateX(7px);
}

/* ///////////////dropdown////////////////// */

.dropdown {
  position: relative;
}

.dropdown img {
  transition: all .4s ease;
}

.dropdown:hover img {
  transform: rotate(180deg);
}

.dropdown>a {
  transition: all .3s ease;
}

.dropdown:hover>a {
  background-color: #F5F5F5;
  border-radius: 30px;
}

.dropdown .dropmenu a:hover {
  color: #DF3A27;
}

.dropdown:hover .dropmenu {
  display: block;
}

.dropmenu {
  position: absolute;
  list-style: none;
  padding: 0;
  top: 40px;
  left: 10px;
  display: none;
  width: max-content;
  background-color: #fff;
  padding: 15px;
  box-shadow: rgba(0, 0, 0, 0.151) 0px 3px 5px;
  border-radius: 15px;
  z-index: 7000;
}

.dropmenu li a {
  color: #616161;
}

.dropmenu li a.titleDrop {
  color: #DF3A27;
  font-weight: 600;
}

/* ////////////////////////header///////////////////////// */

.header {
  padding-top: 20px;
  position: relative;
  background-color: #F9F9F9;
}

.imgheaderpop {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  max-width: 400px;
  z-index: -1;
}

.allHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.textHeader {
  width: 50%;
  position: relative;
}

.textHeader h1 {
  margin-bottom: 25px;
  color: #DF3A27;
  font-size: 30px;
}

.textHeader h1 span {
  color: #000;
}


.imgHeader {
  width: 50%;
  position: relative;
  z-index: 0;
}

.imgHeader img {
  width: 100%;
}

.imgP {
  position: absolute;
  width: 350px !important;
  right: 0;
  animation: move 8s both;
}

@keyframes move {
  from {
    top: -10%;
    right: 0%;
  }

  to {
    top: 20%;
    right: 50%;
  }
}

@media (max-width:1200px) {
  .imgP {
    width: 250px !important;
  }
}

@media (max-width:991px) {
  .imgP {
    width: 200px !important;
  }

  .textHeader h1 {
    font-size: 30px;
  }
}

@media (max-width:750px) {
  .allHeader {
    flex-direction: column;
  }

  .textHeader {
    width: 100%;
    margin-top: 30px;
  }

  .imgHeader {
    max-width: 400px;
    width: 100%;
  }

  .imgHeader img {

    width: 100%;
  }

  .imgP {
    width: 190px !important;
  }

  .textHeader h1 {
    font-size: 30px;
  }

  @keyframes move {
    from {
      top: -10%;
      right: 0%;
    }

    to {
      top: 20%;
      right: 40%;
    }
  }
}


/* /////////////////////////////////aboutSec/////////////////////////////////// */

.aboutSec {
  margin-top: 30px;
  margin-bottom: 100px;
  position: relative;
  background-color: #fff;
  padding: 50px 0;
}

.imgshadowSec {
  position: absolute;
  top: 0;
  right: 20px;
  width: 200px;
}

.allaboutSec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;

}

.imgAboutSec {
  width: 50%;
  position: relative;
  cursor: pointer;
}

.textAboutSec {
  width: 50%;
}


.titleSec {
  position: relative;
}

.titleSec h1 {
  color: #DF3A27;
  z-index: 2;
  position: relative;
}

.titleSec h1 span {
  color: #000;
}

.lineTitle {
  width: 80px;
  background-color: #32b5d8;
  height: 5px;
  border-radius: 10px;
}

.shadowTitleSec {
  position: absolute !important;
  font-size: 120px !important;
  bottom: 0;
  left: 0;
  opacity: 8%;
  color: #4e00f7;
  font-weight: 600;
  user-select: none;
  -webkit-user-select: none;
  width: max-content;
  z-index: -1;
  text-transform: uppercase;
}

.textAboutSec p {
  color: #616161;
}

.imgSecAbout img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.295) 0px 3px 10px;
}

.yearsExperienceDiv {
  background-color: #32b5d8;
  color: #fff;
  padding: 20px;
  border-radius: 20px;
  width: max-content;
  position: absolute;
  bottom: -40px;
  right: 30px;
}

.showVideoAbout {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  cursor: pointer;
}

.showVideoAbout h5 {
  margin-bottom: 0;
}

@media (max-width:991px) {
  .allaboutSec {
    flex-direction: column-reverse;
    margin-top: 0px;
    gap: 50px;
  }

  .imgAboutSec {
    width: 100%;
    max-width: 500px;
  }

  .imgSecAbout img {
    height: 300px;
  }

  .textAboutSec {
    width: 100%;
  }

  .shadowTitleSec {
    font-size: 80px;
  }

  .aboutSec {
    margin-bottom: 40px;
  }
}

@media (max-width:1000px) {
  .shadowTitleSec {
    display: none;
  }

  .yearsExperienceDiv {
    padding: 10px 20px;
  }

  .yearsExperienceDiv h4 {
    font-size: 17px;
  }
}

@media (max-width:450px) {
  .yearsExperienceDiv {
    right: 10px;
  }

  .yearsExperienceDiv h1 {
    font-size: 20px;
  }

  .yearsExperienceDiv h4 {
    font-size: 14px;
  }

  .showVideoAbout h5 {
    font-size: 15px;
  }
}

/* //////////////////////How It WorkSec///////////////////////////// */

.howItWorkSec {
  background-color: #F9F9F9;
  padding: 100px 0 50px 0;

}

.cardsHowWoek {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin: 0 auto;
  margin-top: 60px;
  width: 85%;

}


.cardHowWork {
  background-color: #000;
  width: 25%;
  max-width: 400px;
  height: 330px;
  padding: 30px;
  color: #fff;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.295) 0px 3px 10px;
  transition: all .5s ease;
}

.cardHowWork:hover {
  transform: translateY(-10px);
}

.cardHowWork2 {
  background-color: #DF3A27;
  margin-top: -40px;
}

.imgCardHowWork {
  background-color: #fff;
  width: max-content;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  padding: 10px;
}

@media (max-width:1100px) {
  .cardsHowWoek {
    flex-wrap: wrap;
    gap: 10px;
  }

  .cardHowWork {
    width: 45%;
    margin-bottom: 30px;
  }

  .howItWorkSec {
    padding-top: 20px;
  }
}

@media (max-width:600px) {
  .cardsHowWoek {
    width: 100%;
    margin-top: 30px;
  }

  .cardHowWork {
    margin: 0 auto;
    width: 100%;
    margin-bottom: 30px;
    height: 285px;
  }

  .imgCardHowWork {
    width: 60px;
    height: 60px;
  }

}

.imgCardHowWork img {
  width: 100%;
}

.cardHowWork h4 {
  padding-bottom: 10px;
  border-bottom: 3px solid #fff;
  margin-bottom: 15px;
  margin-top: 10px;
}

.cardHowWork p {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ///////////////////////////featureAndBenefits///////////////////////// */


.featureAndBenefits {
  background-color: #4e00f7;
  width: 100%;
  height: 600px;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-image: url(/image/7xm.xyz428826.png);
  position: relative;
}

.shadowfeature {
  width: 100%;
  height: 100%;
  background-color: #DF3A27c4;
  position: absolute;
  z-index: 0;
}

.allFeatureAndBenefits {
  padding-top: 50px;
}

.featureAndBenefits .titleSec h1 {
  color: #fff;
  padding-top: 50px;
}

.featureAndBenefits .titleSec .shadowTitleSec {
  color: #ffffff;
  opacity: 15%;
}

.featureAndBenefits .titleSec .lineTitle {
  background-color: #fff;
}


.cardFeatureSwiper {
  color: #fff;
  background-color: #d1edf52f;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 20px;
  border-radius: 20px;
  min-height: 288px;
}

.imgCardFeature {
  width: 70px;
  height: 70px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.imgCardFeature img {
  width: 40px;
}

.cardFeatureSwiper p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featureSlider {
  width: 85%;
  position: relative;
  margin: 0 auto;
  margin-top: 40px;
}

.featureSwiper {
  padding-bottom: 40px;
}

.featureSwiper .swiper-pagination-bullet {
  width: 20px;
  height: 5px;
  border-radius: 10px;
  background-color: #fff;
  transition: all .4s ease;
}

.featureSwiper .swiper-pagination-bullet-active {
  width: 45px;
}

.featureSlider .swiper-button-prev,
.featureSlider .swiper-rtl .swiper-button-next,
.featureSlider .swiper-button-next,
.featureSlider .swiper-rtl .swiper-button-prev {
  border: 2px solid #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 46%;
}

.featureSlider .swiper-button-prev,
.featureSlider .swiper-rtl .swiper-button-next {
  margin-left: -80px;

}

.featureSlider .swiper-button-prev::after,
.featureSlider .swiper-button-next::after {
  font-size: 20px;
  color: #fff;
}

.featureSlider .swiper-button-next,
.featureSlider .swiper-rtl .swiper-button-prev {
  margin-right: -80px;
}

.shadowFF {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 50%;
}

@media (max-width:800px) {

  .featureSlider .swiper-button-next,
  .featureSlider .swiper-rtl .swiper-button-prev {
    margin-right: -40px;
  }

  .featureSlider .swiper-button-prev,
  .featureSlider .swiper-rtl .swiper-button-next {
    margin-left: -40px;
  }

  .featureSlider .swiper-button-prev,
  .featureSlider .swiper-rtl .swiper-button-next,
  .featureSlider .swiper-button-next,
  .featureSlider .swiper-rtl .swiper-button-prev {
    border: 2px solid #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 46%;
  }
}


/* //////////////////////////////partnersSec/////////////////////////////// */

.partnersSec {
  margin-top: 100px;
}

.cardPartnersSec {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cardPartnersSec img {
  width: 200px;
  margin: 0 auto;
}

.allPartnersSec {
  position: relative;
  width: 85%;
}

.PartnersSecSwiper {
  margin-top: 40px;
}

.allPartnersSec .swiper-button-prev,
.allPartnersSec .swiper-rtl .swiper-button-next,
.allPartnersSec .swiper-button-next,
.allPartnersSec .swiper-rtl .swiper-button-prev {
  border: 2px solid #DF3A27;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 70%;
  background-color: #DF3A27;
}

.allPartnersSec .swiper-button-prev,
.allPartnersSec.swiper-rtl .swiper-button-next {
  margin-left: -25px;

}

.allPartnersSec .swiper-button-prev::after,
.allPartnersSec .swiper-button-next::after {
  font-size: 20px;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.allPartnersSec .swiper-button-next,
.allPartnersSec .swiper-rtl .swiper-button-prev {
  margin-right: -25px;
}

/* /////////////////////////////goodsSec///////////////////////// */

.goodsSec {
  margin-top: 120px;
}

.imgCardGoodsSec {
  max-width: 500px;
  height: 250px;
  position: relative;
  transform: translate(40px, 40px);
}

.goodsSecSwiper {
  padding-right: 40px;
}

.imgCardGoodsSec img {
  width: 100%;
  border-radius: 15px;
}

.shadowCardGoodsSec {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.397);
  border-radius: 15px;
}


.priceCardGoods {
  background-color: #DF3A27;
  padding: 20px;
  border-radius: 2px 50px 2px 2px;
  transform: translateY(-50px);
  position: relative;
  color: #fff;
}

.pCardGoods {
  display: flex;
  justify-content: space-between;
}

.pCardGoods p {
  margin-bottom: 3px;
}

.goodsSecSwiper .swiper-pagination-bullet {
  width: 20px;
  height: 5px;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  transition: all .4s ease;
  opacity: 1;
}

.goodsSecSwiper .swiper-pagination-bullet-active {
  width: 45px;
  background-color: #DF3A27;
}


/* //////////////////////////////////suitablePlanSec/////////////////////////////////// */


.suitablePlanSec {
  margin-top: 60px;
  padding: 0 30px;
}

.cardsSuitablePlan {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.cardSuitablePlan {
  display: flex;
  align-items: center;
  width: 30%;
}

@media (max-width:1150px) {
  .cardsSuitablePlan {
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
  }

  .cardSuitablePlan {
    width: 40%;
  }

  .cardSuiStandard {
    transform: scale(1) !important;
  }

}

@media (max-width:950px) {
  .cardsSuitablePlan {
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
  }

  .cardSuitablePlan {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 400px;
  }

}

@media (max-width:500px) {
  .suitablePlanSec {
    padding: 0;
  }

}

.bodyCardSuitablePlan {
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 20px;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.096) 0px 3px 10px;
}

.numCardSuitablePlan h3 {
  writing-mode: vertical-lr;
  background-color: #000;
  color: #fff;
  padding: 13px;
  border-radius: 10px;
  height: 330px;
  padding-top: 70px;
  margin: 0;
}

.rowCardSuitablePlan {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 15px;
}

.rowCardSuitablePlan span {
  color: #7A7A7A;
}

.rowCardSuitablePlan img {
  width: 21px;
}

.bodyCardSuitablePlan h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #000;
}

.btnCardSuitablePlan {
  margin-top: 40px;
  text-align: center;
}

.btnCardSuitablePlan a {
  padding: 10px 40px;
  color: #fff !important;
  background-color: #000;
  border-radius: 4px;

}

.cardSuiStandard {
  transform: scale(1.1);
}

.cardSuiStandard .numCardSuitablePlan h3 {
  background-color: #DF3A27;
}

.cardSuiStandard .bodyCardSuitablePlan h1 {
  color: #DF3A27;
}

.cardSuiStandard .btnCardSuitablePlan a {
  background-color: #DF3A27;
}

.cardPremium .numCardSuitablePlan h3 {
  background-color: #32b5d8;
}

.cardPremium .bodyCardSuitablePlan h1 {
  color: #32b5d8;
}

.cardPremium .btnCardSuitablePlan a {
  background-color: #32b5d8;
}

/* //////////////////////whyWorldshipSec///////////////////////////// */

.whyWorldshipSec {
  margin-top: 150px;
}

.textDivFlexSec {
  width: 50%;
}

.divFlexSecRev .textDivFlexSec {
  display: flex;
  justify-content: center;
}


.textDivFlexSec h3 {
  color: #000;
  margin-bottom: 15px;
}

.textDivFlexSec span {
  color: #616161;
}

.rowTextDivFlexSec {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.rowTextDivFlexSec img {
  width: 20px;
}

.divFlexSec {
  width: 100%;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

.divFlexSecRev {
  flex-direction: row-reverse;
}

.whyWorldshipSec .divFlexSec:nth-child(2) {
  margin-top: -100px;
}

.imgDivFlexSec {
  width: 50%;
  display: flex;
  justify-content: center;
}

.imgDivFlexSec img {
  width: 100%;
  max-width: 450px;
}

.imgDivFlexSec.imgDivS img {
  width: 100%;
  max-width: 300px;
}

.imgDivFlexSec2 {
  max-width: 300px;
  margin: 0 auto;
}

.divFlexSecS {
  background-color: #fff;
  border-radius: 20px;
}

@media (max-width:991px) {

  .allWhyWorldshipSec .titleSec {
    margin-bottom: 120px;
  }

  .textDivFlexSec {
    width: 100%;
  }

  .imgDivFlexSec {
    width: 100%;
  }

  .imgDivFlexSec img {
    max-width: 300px;
  }

  .divFlexSecRev .textDivFlexSec {
    justify-content: unset;
  }

  .divFlexSec {
    margin-bottom: 30px;
  }
}

@media (max-width:777px) {

  /* .divFlexSec{
    flex-direction: column;
    gap: 20px;
  } */
  .imgDivFlexSec img {
    max-width: 230px;
  }
}

@media (max-width:650px) {
  .divFlexSec {
    flex-direction: column;
    gap: 20px;
  }

  .imgDivFlexSec img {
    max-width: 280px;
  }
}

/* /////////////////////////////calculateSec///////////////////////// */

.calculateSec {
  margin: 0 auto;
  margin-top: 50px;
  background-color: #fff;
  width: 90%;
  border-radius: 20px;
}

.allCalculateSec {
  padding: 100px 30px 30px 30px;
  /*width: 90%;*/
}

.calculateFlex {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
}


.inputsCalculate {
  width: 100%;
}


.inputCalcFlex {
  display: flex;
  gap: 10px;
}

.inputCalc {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 20px;

}

.shippingForm .inputCalc {
  min-width: 250px;
}

.form-select {
  border-radius: 30px;
  padding: 6px 10px;
  min-width: 100px;
  max-width: 400px;
}

.form-select:focus {
  box-shadow: none;
  outline: none;
}

.inputC {
  border-radius: 30px;
  border: 1px solid #cecdcd;
  padding: 6px;
  outline: none;
}

.inputCalcFlexunit input {
  width: 100px;
}

.resaltCalculate {
  width: 40%;
  padding: 25px;
  background-color: #FCFCFC;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.151) 0px 3px 5px;
}

.howToSearch {
  color: #616161;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}



@media (max-width:991px) {
  .calculateFlex {
    flex-direction: column;
  }

  .inputsCalculate {
    width: 100%;
  }

  .resaltCalculate {
    width: 100%;
  }

  .inputCalcFlex {
    flex-wrap: wrap;
  }

  .allCalculateSec {
    width: 100%;
    padding-top: 40px;
  }

  .calculateSec {
    width: 95%;
  }
}

@media (max-width:500px) {
  .inputC {
    width: 100%;
    max-width: 430px;
  }
}

/* //////////////////////////ourClients////////////////////////////// */

.ourClients {
  margin-top: 100px;
}

.imgOurClients {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.imgOurClients img {
  width: 120px;
}

.sliderOurClients {
  position: relative;
}

.ourClientsSwiper {
  margin-top: 20px;
  padding: 10px;
  padding-bottom: 40px;
  width: 90%;
}

.sliderOurClients .swiper-button-prev,
.sliderOurClients .swiper-rtl .swiper-button-next,
.sliderOurClients .swiper-button-next,
.sliderOurClients .swiper-rtl .swiper-button-prev {
  border: 2px solid #DF3A27;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 45%;
  background-color: #DF3A27;
}

.sliderOurClients .swiper-button-prev,
.sliderOurClients.swiper-rtl .swiper-button-next {
  margin-left: -20px;

}

.sliderOurClients .swiper-button-prev::after,
.sliderOurClients .swiper-button-next::after {
  font-size: 20px;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.sliderOurClients .swiper-button-next,
.sliderOurClients .swiper-rtl .swiper-button-prev {
  margin-right: -20px;
}

.sliderOurClients .swiper-pagination-bullet {
  width: 20px;
  height: 5px;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  transition: all .4s ease;
  opacity: 1;
}

.sliderOurClients .swiper-pagination-bullet-active {
  width: 45px;
  background-color: #DF3A27;
}

.cardOurClients {
  background-color: #fff;
  padding: 20px;
  border-radius: 0 30px 0 0;
  height: 330px;
  box-shadow: rgba(0, 0, 0, 0.062) 0px 3px 10px;

}

.sectionPage .cardOurClients {
  margin-bottom: 25px;
}

.cardOurClients>img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.cardOurClients h4 {
  color: #000;
}

.cardOurClients p {
  color: #616161;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.starsCard {
  display: flex;
  gap: 1px;
}

.starsCard img {
  width: 30px;
}

@media (max-width:600px) {
  .imgOurClients img {
    width: 90px;
  }

  .cardOurClients {
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* //////////////////////OurCompany///////////////////////////// */

.ourCompany {
  margin-top: 70px;
  position: relative;
}

.EourCompany {
  width: 100%;
    height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}

.textOurCompany {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.textOurCompany h3 {
  color: #000;
  text-align: center;

}

.textOurCompany h3 span {
  color: #DF3A27;

}

.textOurCompany img {
  width: 60px;
}

.quote-up {
  margin-top: -100px;
}

.quote-down {
  margin-bottom: -70px;
}

.VOurCompany {
  margin: 0 auto;
  max-width: 500px;
  display: flex;
  justify-content: center;
  margin-top: 70px;
  position: relative;
  cursor: pointer;

}

.VOurCompany img {
  margin: 0 auto;
  width: 90%;
  max-width: 500px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;

}

.playV {
  position: absolute;
  width: 65px !important;
  height: 65px !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

/* /////////////////////////footer////////////////////////// */

.footer {
  margin-top: 100px;
  background-color: #fff;
  padding: 30px 0;
  border-radius: 60px 60px 0 0;
}

.logoCol img {
  width: 140px;
}

.logoCol p {
  margin-top: 20px;
}

.footer p {
  color: #A3A3A3;
}

.footer a {
  color: #A3A3A3;
  transition: all .3s ease;
}

.footer a:hover {
  color: #DF3A27;
}

.ttilecol {
  color: #DF3A27;
  font-weight: 600;
}

.contactUsCol p span {
  display: block;
  margin-left: 10px;
  color: #A3A3A3;
}

.contactUsCol p span {
  display: block;
  margin-left: 15px;
  color: #A3A3A3;
}

.imgPayment {
  width: 80px;
  display: flex;
  flex-wrap: wrap;
  width: 250px;
}

.imgPayment img {
  width: 80px;
}

.footerRow {
  display: flex;
  justify-content: space-between;
}

.logoCol {
  width: 30%;
}

.listCol {
  display: flex;
  width: 35%;
  justify-content: space-between;
}



@media (max-width:991px) {
  .footerRow {
    flex-wrap: wrap;
    gap: 20px;
  }

  .logoCol {
    width: 100%;
    max-width: 500px;
  }

  .listCol {
    width: 50%;
  }
}

@media (max-width:600px) {
  .listCol {
    width: 100%;
    max-width: 400px;
  }

  .imgPayment img {
    width: 40px;
  }
}

/* /////////////////////////////////////// */



.closeBtnVideo {
  position: absolute;
  top: -20px;
  right: -20px;
  background-color: #32b5d8;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  z-index: 1;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
}

.modal.videoHeder {
  --bs-modal-width: 80%;

}

.modal.videoHeder .modal-content {
  border-radius: 10px;
  background-color: transparent;
}

.back-video {
  height: 80vh;
  border-radius: 10px;
}


@media (max-width: 1000px) {
  iframe {
    height: 300px !important;
  }
}

@media (max-width: 600px) {
  .closeBtnVideo {
    top: -20px;
    right: 0px;
    width: 35px;
    height: 35px;
    font-size: 25px;
  }
}


/* ////////////////////////////////////////////// */


.headerPage {
  height: 350px;
  background-color: #fff;
  position: relative;
}

.headerPage>img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

.shadowHeaderPage {
  z-index: 3;
}

.shadowHaederPage2 {
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.0);

}

.imgbgPage {
  z-index: 1;
}

@media (max-width:991px) {
  .headerPage {
    height: 300px;
  }
}

@media (max-width:600px) {
  .headerPage {
    height: 250px;
  }
}

.headerPage .allHeaderPage {
  display: flex;
  align-items: center;
  height: 100%;

}

.allHeaderPage .shadowTitleSec {
  color: #fff;
  width: 100%;
}

.allHeaderPage h1 {
  color: #fff;
}

.allHeaderPage .titleSec {
  width: 100%;
  margin-top: 50px;
}

.sectionPage {
  margin-top: 80px;
  position: relative;
}

.sectionPage .divFlexSec {
  background-color: #fff;
  padding: 40px 20px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.sectionPage .divFlexSec h1 {
  font-size: 30px;
}

.sectionPage .divFlexSec p {
  color: #616161;
}

.sectionPage .divFlexSec h5 {
  color: #DF3A27;
}

.divFlexSecRev .textDivFlexSec {
  flex-direction: column;
}


/*=============== SCROLL UP ===============*/

.scrollup {
  position: fixed;
  right: 2rem;
  bottom: -20%;
  color: #fff;
  font-size: 50px;
  z-index: 99;
  transition: .3s;
  background-color: #000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scrollup i {
  font-size: 35px;
}

.scrollup:hover {
  transform: translateY(-.25rem);
  color: #fff;
}

/* Show Scroll Up*/
.show-scroll {
  bottom: 1.5rem;
}

/* /////////////////////////////////////// */


/* ///////////////////// Pricing //////////////////////// */


.secPric {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.rowPPage {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  border-bottom: 1px solid #e6e5e57a;
  padding-bottom: 5px;
  gap: 30px;
}

.rowPPage:last-child {
  border: none;
}

.rowPPage p {
  margin-bottom: 0;
  color: #616161;
}

.rowPPage span {
  background-color: #000;
  color: #fff;
  padding: 6px 25px;
  border-radius: 30px;
}

@media (max-width:450px) {
  .rowPPage {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.ptitleHeader {
  position: absolute;
  z-index: 3;
  bottom: 23%;
  left: 4%;
  color: #fff;
}

@media (max-width:600px) {
  .ptitleHeader {
    bottom: 10%;
  }
}

.divimgT {
  background-color: transparent !important;
}



.inputCalcFlexunit {
  align-items: baseline;
}

.inputCalcFlexunit input {
  text-align: center;
}

.weightCalculator {
  padding: 30px;
}

.weightCalculator .inputWCalculator {
  background-color: #FAFAFA;
  padding: 30px;
  border-radius: 20px;
}

.weightCalculator .inputWCalculator input {
  width: 60px;
}

@media (max-width:700px) {
  .weightCalculator .inputCalcFlexunit {
    gap: 3px;
  }

  .weightCalculator .inputWCalculator input {
    width: 40px;
  }

  .weightCalculator .inputWCalculator {
    padding: 10px;
  }
}

/* /////////////////////////contact us///////////////////////////////// */


.contactUs .imgDivFlexSec2 {
  margin-left: auto;
  margin-right: 0;
}

.contactUs .sectionPage .divFlexSec {
  padding: 0;
}

.inputsContactUs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 40%;
}

.inputsContactUs input {
  padding: 10px;
  border: 1px solid #DF3A27;
  border-radius: 5px;
  background-color: transparent;
  outline: none;
}

.inputsContactUs textarea {
  padding: 10px;
  border: 1px solid #DF3A27;
  border-radius: 5px;
  background-color: transparent;
  outline: none;
}

.btnSend {
  border: none;
  background-color: #DF3A27;
  color: #fff;
  padding: 15px 30px;
  width: max-content;
  border-radius: 10px;
}

.contactSotial {
  background-color: #fff;
  width: 100%;
  max-width: 400px;
  padding: 30px;
  border-radius: 15px;
  margin-left: auto;
  margin-right: auto;
}

.rowContactSotial {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 20px;
}

.rowContactSotial img {
  width: 50px;
}

.mapContactUs {
  margin-top: 50px;
}

.mapContactUs iframe {
  width: 100%;
  border-radius: 30px;
  height: 400px;
}

.mapouter {
  width: 100% !important;
  height: 400px !important;
}

.gmap_canvas {
  width: 100% !important;
  height: 400px !important;
  border-radius: 30px;
}

@media (max-width:900px) {
  .contactUs .sectionPage .divFlexSec {
    flex-direction: column;
  }

  .contactUs .sectionPage .imgDivFlexSec2 {
    display: none;
  }

  .contactUs .imgDivFlexSec2 {
    margin: 0 auto;
  }

  .inputsContactUs {
    width: 100%;
  }

  .mapouter {
    height: 300px !important;
  }

  .gmap_canvas {
    height: 300px !important;
  }

  .mapContactUs iframe {
    height: 300px;
  }

  .allHeaderPage .titleSec {
    margin-top: 0px;
  }
}


/* ////////////////// Blogs ////////////////////// */

.inputSearch {
  border: 1px solid #000;
  padding: 8px 10px;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.inputSearch input {
  border: none;
  outline: none;
  background-color: transparent;
  width: 100%;
}

.inputSearch input::placeholder {
  color: #000;
}

.cardBlog {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 auto;
  margin-bottom: 20px;
  width: auto;
  max-width: 500px;
}

.imgCardBlog {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.082) 0px 5px 15px;
}

.imgCardBlog img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.textCardBlog {
  background-color: #fff;
  padding: 10px;
  border-radius: 20px;
  box-shadow: rgba(146, 146, 146, 0.041) 0px 5px 15px;
  max-height: 140px;

}

.titleCardB {
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.desCardB {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.BlogSecPage .divFlexSec {
  display: flex !important;
  flex-direction: row;
}

.sampleSavings {
  margin-top: 140px;
}

.secPageT {
  margin-top: 100px;
  margin-bottom: 20px;
}

.cardsSampleSaving {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.cardS {
  background-color: #fff;
  padding: 20px;
  border-radius: 0 40px 0 0;
  width: 30%;
  max-width: 400px;
  box-shadow: rgba(146, 146, 146, 0.281) 0px 5px 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cardS img {
  width: 130px;
  height: auto;
  object-fit: cover;
  margin-left: auto;
  display: flex;

}

@media (max-width:991px) {
  .cardS {
    width: 45%;
  }
}

@media (max-width:550px) {
  .cardS {
    width: 100%;
  }
}

.ptitleHeader {
  max-width: 800px;
}

.carrierT {
  display: flex;
  align-items: center;
  gap: 5px;
}

.carrierT img {
  width: 80px;
  border-radius: 10px;
}

.coloGr {
  background-color: #54D12F;
}

.coloBt {
  background-color: #000;
}

.coloGt {
  background-color: #CACACA;
}

.coloYt {
  background-color: #32b5d8;
}

.coloRt {
  background-color: #DB4545;
}

.tagT {
  width: 130px;
  height: 40px;
  text-align: center;
  padding-top: 8px;
  color: #fff;
  border-radius: 30px;
}

.table {
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 10px;
}

th {
  padding: 20px !important;
}

@media (max-width:1200px) {
  .table {
    width: max-content;
  }
}


.PopularR {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.titleRetailers {
  text-align: center;
  color: #DF3A27;
}

.imgPopularR {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  max-width: 1200px;
}

.imgPopularR img {
  width: 260px;
}

@media (max-width:800px) {
  .imgPopularR img {
    width: 160px;
  }
}

@media (max-width:400px) {
  .imgPopularR img {
    width: 140px;
  }
}

.imgCountry {
  width: 100%;
  border-radius: 20px;
  margin-top: 50px;
  background-color: #fff;
  padding: 40px;
  margin: auto;
  text-align: center;
}

.imgCountry img {
  width: 100%;
}

.accordion-item {
  margin-bottom: 10px;
  border-radius: 20px !important;
}

.accordion-button:focus {
  box-shadow: none;
  background-color: #fff;
  color: #DF3A27;
}

button.accordion-button {
  border-radius: 20px !important;
  padding: 20px;
}

.sectionPage .allTextDivFlexSec {
  max-width: 900px;
}

.bodyPageSec {
  padding: 40px;
  border-radius: 15px;
}

.bodyW {
  background-color: #fff;
}

.bodyWT {
  padding-top: 80px;
}

@media (max-width:700px) {
  .bodyPageSec {
    padding: 20px;
    padding-top: 40px;
    border-radius: 15px;
  }
}

.bodyWT .accordion-item,
.bodyWT .accordion-header,
.bodyWT .accordion-button {
  background-color: #F9F9F9;
  border-radius: 20px;
}

.LoginPage {
  position: relative;
  width: 100%;
  height: auto;
  min-height: calc(100vh - 137px);
}

.LoginPage img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}



.allLogin {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 95%;
}
  .navbar {
    box-shadow: none;
    background-color: #fff;
  }
.loginBody {
  width: 100%;
  max-width: 400px;
  padding: 35px;
  background-color: #fff;
  position: relative;
  z-index: 4;
  color: #000;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  text-align: center;
  border-radius: 20px;
  margin: 50px 0;
}

.inputLogin {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.inputLogin input {
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  outline: none;
  color: #000;
}
  .form-control:focus {
    color: #000;
    background-color: #fff;
    border-color: #e0e0e0;
    outline: 0;
  }
.inputLogin input::placeholder {
  color: #fff;
}
 .inputLogin select {
   width: 100%;
   padding: 10px;
   background-color: transparent;
   border-radius: 10px;
   border: 1px solid #e0e0e0;
   outline: none;
   color: #000;
 }
.btnLogin {
  color: #fff;
  width: 100%;
  height: 45px;
  background-color: #000;
  border: none;
  border-radius: 30px;
}


.loginBody a {
  color: #fff;
}

@media (max-width:991px) {

  .LoginPage {
    min-height: calc(100vh - 96px);
  }

  .loginBody {
    margin: 100px 0 !important;
      max-width: 100% !important;
  }
    .coloG{
        font-size: 12px;

    }
    .rowDivC {

        font-size: 12px;
    }
    .step_item {
        width: 30% !important;
        font-size: 14px;
    }

    #progressList-4::after{
        content:unset;
    }
    .rdio label:before{
        top: 33px !important;
        left: -12px !important;
    }
    .rdio input[type="radio"]:checked+label::after{
        top: 37px !important;
        left: -8px !important;
    }
    .custom-checkbox>[type="checkbox"]:not(:checked)+label:after, .custom-checkbox>[type="checkbox"]:checked+label:after{
        top:  44% !important;
    }

}

.rowAvailable {
  margin-bottom: 10px;
  border-bottom: 1px solid #7a7a7a34;
  padding-bottom: 7px;
}

.rowDivC {
  display: flex;
  justify-content: space-between;
}

.howToSearch.active {
  display: none;
}


.availableShippingMethods {
  display: none;
}

.availableShippingMethods.active {
  display: block;
}

.locationsCard .cardS {
  color: #fff !important;
  background-color: #000;
  position: relative;
}

.imglocation {
  position: absolute;
  top: 10px;
  right: 10px;
}


.inputShipmentTracking {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.inputShipmentTracking input {
  padding: 15px;
  border: 1px solid #B8B8B8;
  background-color: transparent;
  color: #000;
  border-radius: 15px;
  width: 100%;
  max-width: 700px;
}

.btnCheckR {
  background-color: #DF3A27;
  border: none;
  border-radius: 30px;
  width: 200px;
  height: 50px;
  color: #fff;
}

.shipmentTracking {
  display: flex;
  margin-top: 30px;
  overflow: hidden;
  padding: 0 20px;
}

.lineTracking {
  width: 3px;
  background-color: #000;
  transform: translateY(-20px);
}

.shipmentTracking .textTracking {
  transform: translateX(-15px);
}

.shipmentTracking .rowTextDivFlexSec {
  margin-bottom: 20px;
}

.shipmentTracking .textTracking img {
  width: 28px;
  background-color: #F9F9F9;
  border: 2px solid #F9F9F9;
}

.allShipmentTracking {
  padding: 15px;
  background-color: #F9F9F9;
  border-radius: 30px;
  margin-top: 20px;
}

@media (max-width:600px) {
  .inputShipmentTracking {
    flex-direction: column;
  }
}


.shippingForm {
  margin-top: 120px;
}

.shippingFlex {
  display: flex;
  width: 100%;
  background-color: #F8F8F8;
  border-radius: 20px;
}



.headShipping {
  background-color: #DF3A27;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  font-weight: bold;
}

.rightShipping {
  width: 30%;
  border-right: 2px solid #61616127;
}

.leftShipping {
  width: 70%;
}

.rightShipping .headShipping {
  border-radius: 10px 0 0 10px !important;

}

.leftShipping .headShipping {
  border-radius: 0 10px 10px 0 !important;
}


.textShippingg {
  display: flex;
  justify-content: space-between;
}

.bodyShipping {
  padding: 20px;

}

table {
  background-color: #F8F8F8 !important;
}

.imgBox {
  width: 60px;
  margin: 5px;
}

.cardsShipping {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.cardShipping {
    background-color: #F8F8F8;
    max-width: 500px;
    text-align: justify;
    margin-bottom: 15px;
    border-radius: 15px;
    padding: 20px;
}

.cardShipping .bodyCardShipping {
  padding: 10px;
}

.imgcardAir {
  width: 130px;
  display: flex;
  margin: 20px auto;
}



@media (max-width:991px) {
  .shippingFlex {
    flex-direction: column;
    gap: 30px;
  }

  .rightShipping {
    width: 100%;
    border-right: none;
  }

  .leftShipping {
    width: 100%;
  }

  .rightShipping .headShipping {
    border-radius: 10px !important;

  }

  .leftShipping .headShipping {
    border-radius: 10px !important;
  }
}


.imgProhibited {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.imgProhibited img {
  width: 110px;
  margin: 0 auto;
}

#background {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  background-color: #3c005b;
  background: -webkit-radial-gradient(center, ellipse cover, #0a0a0a21 1%, rgb(125 125 125 / 65%) 100%);
  background: -moz-radial-gradient(center, ellipse cover, #3c005b 1%, #0d0011 100%);
  background: -ie-radial-gradient(center, ellipse cover, #3c005b 1%, #0d0011 100%);
  z-index: 1001;
}

#logocontainer {
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 32vh;
  height: 32vh;
  margin-left: -17vh;
  margin-top: -15vh;
  overflow: hidden;
  transition: background-color 500ms;
  cursor: pointer;
  z-index: 1001;
}

#pelogo {
  display: block;
  position: absolute;
  left: 2vh;
  top: 2vh;
  width: 28vh;
  height: 28vh;
  background: #34324b;
  background: -moz-linear-gradient(-45deg, #34324b 0%, #161222 100%);
  background: -webkit-linear-gradient(-45deg, #34324b 0%, #161222 100%);
  background: linear-gradient(318deg, #ffffff66 0%, #9f9f9f 100%);
  background-size: contain;
  font-family: Trebuchet MS, sans-serif;
  font-size: 20vh;
  font-weight: bold;
  color: #df3a27;
  text-align: center;
  line-height: 30vh;
}

#pelogo img {
  width: 100%;
}

.loader {
  display: block;
  position: absolute;
  background-color: #de3f2d;
}

@keyframes slide1 {
  50% {
    width: 32vh;
    margin-left: 0;
  }

  100% {
    margin-left: 32vh;
  }
}

@keyframes slide2 {
  50% {
    height: 32vh;
    margin-top: 0;
  }

  100% {
    margin-top: 32vh;
  }
}

@keyframes slide3 {
  50% {
    width: 32vh;
    margin-right: 0;
  }

  100% {
    margin-right: 32vh;
  }
}

@keyframes slide4 {
  50% {
    height: 32vh;
    margin-bottom: 0
  }

  100% {
    margin-bottom: 32vh;
  }
}

.shipping {
  /* width: 90%; */
  box-shadow: 2px 2px 23px rgb(165 165 165 / 16%);
  border-radius: 0.5rem;
  min-height: 230px;
  /* position: relative; */
  background: #fff;
  border: 1px solid;
  border-color: #DF3A27;
  border-radius: 0.5rem;
  overflow: hidden;
}

.shipping .shipping-head {
  background-color: #DF3A27;
  color: #ffffff;
  padding: 0.51rem;
  font-size: 1.5rem;
  /* border-top-left-radius: 0.5rem; */
  /* border-top-right-radius: 0.5rem; */
}

.dhl-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 free";
  font-weight: 700;
  color: #DF3A27;
  border: 1px solid #DF3A27;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  line-height: 12px;
  font-size: 18px;
  display: inline-block;
  margin-right: 0.5rem;
}

.shipping .rate-details {
  display: flex;
  justify-content: center;
  align-items: center;
}

.address-box {
  background-color: #f8f8f8;
  padding: 1.5rem;
  border: 1px solid #DF3A27;
  border-radius: 10px;
  margin-bottom: 2rem;
  z-index: 1;
  width: 100%;
}

.top-sec {
  margin-top: 5%;
}

.serviceBox {
  padding: 38px 0 0;
  position: relative;
}

.serviceBox .service-icon {
  color: #fff;
  background: linear-gradient(#ea8f85,

      #e45e4f,
      #e0422f,
      #df3a27);
  font-size: 45px;
  Line-height: 80px;
  width: 110px;
  height: 90px;
  padding: 0 31px;
  border-radius: 10px 10px 100px;
  transform: translateX(-50%);
  position: absolute;
  top: 0;
  Left: 50%;
  z-index: 2;
}

.serviceBox .service-content {
  background: linear-gradient(#f7eae9,
      #f7eae9,
      #e45e4f,
      #df3a27);
  padding: 90px 30px;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  min-height: 262px;
}

.serviceBox .service-content:before {
  content: "";
  background-color: #fff;
  width: 100%;
  height: 100%;
  border-radius: 18px 18px 190px 18px;
  box-shadow: 5px 5px 7px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.serviceBox .title {
  color: #555;
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 15px;
}

.serviceBox .description {
  color: #888;
  font-size: 16px;
  Letter-spacing: 0.5px;
  Line-height: 22px;
}

.serviceBox.red .service-icon {
  background: linear-gradient(#FF333F,
      #CE1527);
}

.serviceBox.red .service-content {
  background: linear-gradient(#FF333F,
      #FF333F,
      #FF333F,
      #CE1527);
}

.block-countries {
  background: #eee;
  width: 25%;
  min-height: 270px;
  display: none;
  position: absolute;
  right: 40px;
  top: 40px;
  z-index: 1000;
  padding: 25px;
  border-radius: 25px;
}

.ul-countries {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  overflow-y: auto;
  max-height: 230px;
  line-height: 2.5;
}

.ul-countries .fi.fis {
  font-size: 25px;
  margin-right: 15px;
  border-radius: 3px;
}

.btn-read-more {
  background: #32b5d8;
  width: 50%;
  margin: auto;
  color: #fff;
  font-weight: bold;
}

.select2-container--bootstrap-5 .select2-selection--single {
  border-radius: 30px !important;

  min-width: 100px !important;
  max-width: 400px !important;
}

.btn-ship-now {
  background: #32b5d8;
  padding: 5px;
  margin: auto;
  color: #fff;
  font-weight: bold;
}

.btn-ship-now:hover {
  border-color: #fff;
  background: #32b5d8;
  padding: 5px;
  margin: auto;
  color: #fff;
  font-weight: bold;
}

/* Style the pagination container */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

/* Style the pagination elements */
.pagination a,
.pagination span {
  display: inline-block;
  padding: 8px 12px;
  margin: 0 4px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
}

/* Style the active page */
.pagination span.page {
  background-color: #df3a27;
  color: #fff;
}

/* Style the previous and next links */
.pagination a.prev,
.pagination a.next {
  font-weight: bold;
}

/* Hover effect */
.pagination a:hover {
  background-color: #df3a27;
  color: #fff;
}

