/* Header */
.header {
  padding: 30px 0 50px;
  background: rgb(152,221,202);
  background: linear-gradient(0deg, rgba(152,221,202,1) -20%, rgba(173,232,216,1) 15%, rgba(173,232,216,1) 54%, rgba(152,221,202,1) 100%);
  background: #FFF8DC;
  overflow: hidden;
}
@media only screen and (max-width: 767.98px) {
  .header {
    padding: 70px 0;
  }
}

/* navigator */
.header .navigator {
  margin-bottom: 100px;
  font-family: var(--secondary-font);
}

/* title */
.header .navigator .title {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  margin-right: 45px;
}
.header .navigator .title::before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: var(--dark);
  right: -24px;
}

/* item */
.header .navigator .item {
  font-size: 15px;
  font-weight: 300;
  color: var(--dark);
  border-bottom: 1px solid transparent;
}
.header .navigator .item.active {
  font-weight: 500;
  border-bottom-color: var(--dark);
 }
.header .navigator .item:not(:last-child) {
  margin-right: 25px;
}
.header .navigator .item:hover {
  border-bottom-color: var(--dark);
}

/* title-5 */
.header .title-5 {
  font-size: 17px;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 10px;
}

/* title-1 */
.header .title-1 {
  font-size: clamp(2.01rem,calc(.5rem + 2.9004vw),3.247rem);
  font-family: var(--third-font);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 30px;
}

/* hero */
.header .hero {
  position: absolute;
  bottom: -100px;
  left: 50%;
  width: 800px;
}
@media only screen and (max-width: 1199.98px) {
  .header .hero {
    left: 60%;
    width: 700px;
  }
}
@media only screen and (max-width: 991.98px) {
  .header .hero {
    display: none
  }
}
/*------------------------------------------------------*/

/* plan */
.se-i .plans .plan {
  position: relative;
  padding: 40px;
  background-color: var(--dark);
  border: 1px solid var(--dark);
  border-radius: 12px;
  height: 100%;
  z-index: 2
}
.light-theme .se-i .plans .plan {
  background-color: var(--light);
  border-color: var(--border);
}

/* popular-box */
.se-i .plans .plan .popular-box {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #000000;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
}
.light-theme .se-i .plans .plan .popular-box {
  background-color: #fff;
}
.se-i .plans .plan .popular-box::before {
  position: absolute;
  content: '';
  left: -4px;
  top: -4px;
  width: 48px;
  height: 48px;
  background: conic-gradient(
    #fd004c,
    #fe9000,
    #fff020,
    #3edf4b,
    #3363ff,
    #b102b7,
    #fd004c
  );
  animation: spin 1.5s infinite linear;
  border-radius: 50%;
  z-index: -1;
}
.se-i .plans .plan .popular-box img {
  width: 17px;
  filter: invert(1);
}
.light-theme .se-i .plans .plan .popular-box img {
  filter: invert(0);
}

/* plan-icon */
.se-i .plans .plan-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin-bottom: 20px;
  margin-left: -4px
}

/* plan-head */
.se-i .plans .plan-head {
  margin-bottom: 45px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.light-theme .se-i .plans .plan-head {
  border-color: var(--border);
}
.se-i .plans .plan-name {
  font-size: 20px;
  font-family: var(--primary-font);
  font-weight: 600;
  color: #ffffff;
}
.light-theme .se-i .plans .plan-name {
  color: var(--dark);
}
.se-i .plans .plan-para {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  min-height: 50px
}

/* plan-price */
.se-i .plans .plan-price {
  margin-bottom: 20px
}
.se-i .plans .plan-price .price {
  font-size: 30px;
  font-family: var(--primary-font);
  font-weight: 700;
  color: #ffffff;
}
.light-theme .se-i .plans .plan-price .price {  
  color: var(--dark);
}
.se-i .plans .plan-price .price-comment {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
}

/* actions */
.se-i .plans .actions {
  padding-bottom: 10px
}

/* group */
.se-i .plans .group {
  margin-top: 45px;
}
.se-i .plans .group .title-4 {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 20px
}
.light-theme .se-i .plans .group .title-4 {
  color: var(--dark);
}
.se-i .plans .group .list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  padding-right: 26px;
}
.se-i .plans .group .list li:not(last-of-type) {
  margin-bottom: 10px
}
.se-i .plans .group .list li img {
  margin-right: 10px;
  width: 16px
}

/* float-box */
.se-i .plans .group .list li .float-box {
  position: absolute;
  top: 2px;
  right: 0;
  width: 18px;
  height: 18px;
}
.se-i .plans .group .list li .float-box::before {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  content: '?';
  right: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background-color: rgba(255, 255, 255, .1);  
  border-radius: 50%;
  font-size: 12px;
  font-family: var(--secondary-font);
  font-weight: 600;
  line-height: 1;
  transition: all .15s ease-in-out;
}
.light-theme .se-i .plans .group .list li .float-box::before {
  background-color: rgba(0, 0, 0, .1);
}
.se-i .plans .group .list li .float-box:hover::before {
  background-color: rgba(0, 0, 0, .2);
}
.se-i .plans .group .list li .float-box::after {
  position: absolute;
  content: attr(data-text);
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
  width: 280px;
  background-color: var(--semi-dark);
  white-space: normal;
  padding: 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-gray);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 4px;
  box-shadow: 0 10px 45px 0 rgba(0, 0, 0, .4);
  z-index: 3;
  visibility: hidden;
  opacity: 0;
  transition: all .15s ease-in-out;
}
.light-theme .se-i .plans .group .list li .float-box::after {
  background-color: #fff;
  border: 1px solid var(--border);
  background-color: #FFFFFF;
  box-shadow: 0 2px 15px #dde5eb;
}
.se-i .plans .group .list li .float-box:hover::after {
  visibility: visible;
  opacity: 1;
}

/* se-footer */
.se-i .se-footer .line {
  margin: 6px 12px;
}
.se-i .se-footer .line .icon {
  min-width: 16px;
  width: 16px;
  margin-right: 10px;
}
.se-i .se-footer .line .text {
  font-size: 14px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: var(--text-gray);
  line-height: 1;
}
/*------------------------------------------------------*/


.email-features{
  background-color: #ecf3f9;
  border-bottom: 1px solid var(--border);
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 0%;
}

.increase-roi{
  background-color: white;
  border-bottom: 1px solid var(--border);
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 0%;
}

.benifits{
  background-color: #ecf3f9;
  border-bottom: 1px solid var(--border);
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 0%;
}

.personalize-mail{
  background-color: white;
  border-bottom: 1px solid var(--border);
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 0%;
}

.marketing{
  border: 2px solid #594fc8;
  border-radius: 1.5rem 0;
}

.sales{
  border: 2px solid #bc4f2d;
  border-radius: 1.5rem 0;
}

.conversation{
  border: 2px solid #d9316d;
  border-radius: 1.5rem 0;
}

.customer-data{
  border: 2px solid #2676c0;
  border-radius: 1.5rem 0;
}

.messaging{
  border: 2px solid #116b6b;
  border-radius: 1.5rem 0;
}

.feature-div {
  padding: 15px;
  max-width: 335px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 25px;
}

.feature-subdiv{
  width: 100%;
}

.feature-subdiv h4{
  margin-bottom: 10px;
}

.feature-subdiv ul {
  padding-left: 20px;
}

.box-heading{
  display: flex;
  justify-content: center;
  margin-bottom: 35px;
}

.bx-main {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.head-div{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.head-div h2{
  font-size: 20px;
}

.marketing, .sales, .conversation, .customer, .message  p{
  font-size: 15px;
}

.marketing, .sales, .conversation, .customer-data, .messaging {
  background-color: white;
}

.img-size{
  width: 45px;
}

.btn-marketing{
  background-color: #594fc8;
  border: none;
  color: white;
  font-weight: 600;
  font-size: 14px;
  padding: 15px;
  border-radius: 5px;
  transition: 0.2s ease;
}

.btn-marketing:hover{
  background-color: #594fc8c9;
}
.btn-sales{
  background-color: #bc4f2d;
  border: none;
  color: white;
  font-weight: 600;
  font-size: 14px;
  padding: 15px;
  border-radius: 5px;
  transition: 0.2s ease;
}

.btn-sales:hover{
  background-color: #bc4f2dc9;
}
.btn-conversation{
  background-color: #d9316d;
  border: none;
  color: white;
  font-weight: 600;
  font-size: 14px;
  padding: 15px;
  border-radius: 5px;
  transition: 0.2s ease;
}

.btn-conversation:hover{
  background-color: #d9316dc9;
}
.btn-customer{
  background-color: #2676c0;
  border: none;
  color: white;
  font-weight: 600;
  font-size: 14px;
  padding: 15px;
  border-radius: 5px;
  transition: 0.2s ease;
}

.btn-customer:hover{
  background-color: #2676c0c9;
}
.btn-messaging{
  background-color: #116b6b;
  border: none;
  color: white;
  font-weight: 600;
  font-size: 14px;
  padding: 15px;
  border-radius: 5px;
  transition: 0.2s ease;
}

.btn-messaging:hover{
  background-color: #116b6bc9;
}

.roi-features{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.roi-features img{
  width: 70px;
}

.img-div{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.img-div-sub{
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #f9f3ff;
  width: 100px;
  height: 100px;
}

.roi-features h4{
  font-size: 18px;
  margin-top: 25px;
}

.heading{
  display: flex;
  justify-content: center;
  padding-bottom: 30px;
}

.benifits-div-sub{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.benifits-div-sub h5{
  font-size: 18px;
}

.benifits-div-sub ul{
  padding: 20px 0px 0px 15px;
}

.benifits-div-sub li{
  padding-top: 10px;
  font-size: 16px;
}

.benifits-div-sub img {
  width: 500px;
  border-radius: 12px;
}

.personalize-div{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}

.personalize-div img{
  width: 70px;
}

.personalize-div-sub {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.personalize-div-sub h3{
  font-size: 15px;
  padding-top: 5px;
}

.personalize-short{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.personalize-short p {
  text-align: center;
  font-size: 12px;
  padding-top: 5px;
}

.div-heading-num{
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.div-heading-num p{
  font-size: 12px;
  padding-top: 5px;
}

.div-center-img{
  padding: 8px 0px;
}

@media screen and (max-width: 768px) {
  .benifits-div-sub{
    flex-direction: column;
    gap: 25px;
  }

  .benifits-div-sub img {
    width: 80%;
  }

  .benefits-img{
    display: flex;
    justify-content: center;
    padding-top: 20px;
  }
}

@media screen and (max-width: 640px) {
  .benifits-div-sub{
    flex-direction: column;
    gap: 25px;
  }

  .benifits-div-sub img {
    width: 100%;
  }

  .personalize-div{
    flex-direction: column;
  }
}

@media screen and (max-width: 480px) {
  .roi-features{
    flex-direction: column;
  }

  .benifits-div-sub{
    flex-direction: column;
    gap: 25px;
  }

  .benifits-div-sub img {
    width: 100%;
  }

  .personalize-div{
    flex-direction: column;
  }
}

@media screen and (max-width: 320px) {
  .roi-features{
    flex-direction: column;
  }

  .benifits-div-sub{
    flex-direction: column;
    gap: 25px;
  }

  .benifits-div-sub img {
    width: 100%;
  }

  .personalize-div{
    flex-direction: column;
  }
}