/* Section I */

/* title-1 & para-1 */
.se-i .title-1 {
  font-family: var(--secondary-font);
  font-size: 36px;
  line-height: 1.4;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
}
.light-theme .se-i .title-1 {
  color: var(--dark);
}
.se-i .para-1 {
  font-size: 16px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: var(--text-gray);
  margin-bottom: 45px;
}
@media only screen and (max-width: 767.98px) {
  .se-i .title-1 {
    font-size: 26px;
  }
}

/* item */
.se-i .accordion .item {
  position: relative;
}
.se-i .accordion .item:not(:first-of-type) {
  top: -1px;
}

/* item-head */
.se-i .accordion .item-head {
  position: relative;
  padding: 14px 15px 14px 60px;
  background-color: var(--semi-dark);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .1);
  transition: all .15s ease;
}
.light-theme .se-i .accordion .item-head {
  background-color: #fff;
  border-color: var(--border);
}
.se-i .accordion .item-head:hover {
  background-color: var(--semi-dark-2);
}
.light-theme .se-i .accordion .item-head:hover {
  background-color: var(--light);
}
.se-i .accordion .item-head::before,
.se-i .accordion .item-head::after {
  position: absolute;
  content: '';
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  height: 12px;
  width: 2px;
  background-color: #ffffff;
  transition: all .15s ease;
}
.light-theme .se-i .accordion .item-head::before,
.light-theme .se-i .accordion .item-head::after {
  background-color: var(--dark);
}
.se-i .accordion .item-head::after {
  transform: translateY(-50%) rotate(90deg);
}
.se-i .accordion .item.open .item-head::before {
  transform: translateY(-50%) rotate(90deg) !important;
}

/* accordion-title & accordion-para */
.se-i .accordion .accordion-title {
  font-size: 16px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 4px;
}
.light-theme .se-i .accordion .accordion-title {
  color: var(--dark);
}
.se-i .accordion .accordion-para {
  font-size: 14px;
  font-family: var(--secondary-font);
  color: var(--text-gray);
}

/* item-body */
.se-i .accordion .item-body {
  display: none;
  padding: 40px 60px;
  background-color: var(--semi-dark);
  border: 1px solid rgba(255, 255, 255, .1);
  border-top: 0;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, .2);
}
.light-theme .se-i .accordion .item-body {
  background-color: var(--light);
  border-color: var(--border);
}
@media only screen and (max-width: 767.98px) {
  .se-i .accordion .item-body {
    padding: 40px 20px;
  }
}

/* form-label */
.se-i .accordion .abuse-form .form-label {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.se-i .accordion .abuse-form .input-title {
  display: block;
  font-size: 14px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: var(--text-gray);
  margin-bottom: 10px;
}

/* notify */
.se-i .accordion .abuse-form .form-label .notify {
  position: absolute;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  top: 40px;
  right: 10px;
  width: 26px;
  height: 26px;
  color: #FFFFFF;
  z-index: 2;
  font-size: 10px;
}
.se-i .accordion .abuse-form .form-label .notify.notify-valid {
  background-color: var(--primary);
}
.se-i .accordion .abuse-form .form-label .notify.notify-error {
  background-color: #F4C983;
}
.se-i .accordion .abuse-form .form-label .notify img {
  width: 12px;
  filter: invert(1);
}

/* form-input */
.se-i .accordion .abuse-form .form-input {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 45px 0 20px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: #ffffff;
  background-color: var(--semi-dark-2);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 2px;
  transition: all .15s ease;
}
.light-theme .se-i .accordion .abuse-form .form-input {
  background-color: #fff;
  border-color: var(--border);
  color: var(--dark);
}
.se-i .accordion .abuse-form .form-input:hover {
  border-color: rgba(255, 255, 255, .4);
}
.light-theme .se-i .accordion .abuse-form .form-input:hover {
  border-color: var(--border);
}
.se-i .accordion .abuse-form .form-input:focus {
  background-color: var(--semi-dark-2);
  border-color: var(--primary);
}
.light-theme .se-i .accordion .abuse-form .form-input:focus {
  background-color: #fff;
  border-color: var(--primary);
}
.se-i .accordion .abuse-form .form-label .form-input[type="date"],
.se-i .accordion .abuse-form .form-label .form-input[type="time"]{
  padding: 0 10px;
}
/* ...> valid */
.se-i .accordion .abuse-form .form-label .form-input.valid {
  background-color: #1f273e;
  border-color: var(--primary);
}
.light-theme .se-i .accordion .abuse-form .form-label .form-input.valid {
  background-color: rgb(0, 96, 254, .1);
  color: var(--primary);
}
.se-i .accordion .abuse-form .form-label .form-input.valid ~ .notify-valid {
  display: inline-flex;
}
/* ...> error */
.se-i .accordion .abuse-form .form-label .form-input.error {
  background-color: rgba(244, 201, 131, 0.07);
  border-color: #F4C983;
  color: #F4C983;
  margin-bottom: 12px;
}
.se-i .accordion .abuse-form .form-label .form-input.error ~ .notify-error {
  display: inline-flex;
}

/* form-textarea */
.se-i .accordion .abuse-form .form-label .form-textarea {
  display: block;
  width: 100%;
  padding: 15px 45px 15px 20px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: #ffffff;
  background-color: var(--semi-dark-2);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 2px;
  min-height: 150px;
  transition: all .15s ease;
}
.light-theme .se-i .accordion .abuse-form .form-label .form-textarea {
  background-color: #fff;
  border-color: var(--border);
  color: var(--dark);
}
.se-i .accordion .abuse-form .form-label .form-textarea::placeholder {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, .2);
}
/* ...> valid */
.se-i .accordion .abuse-form .form-label .form-textarea.valid {
  background-color: #1f273e;
  border-color: var(--primary);
}
.light-theme .se-i .accordion .abuse-form .form-label .form-textarea.valid {
  background-color: rgb(0, 96, 254, .1);
  color: var(--primary);
}
.se-i .accordion .abuse-form .form-label .form-textarea.valid ~ .notify-valid {
  display: inline-flex;
}
/* ...> error */
.se-i .accordion .abuse-form .form-label .form-textarea.error {
  background-color: rgba(244, 201, 131, 0.07);
  border-color: #F4C983;
  color: #F4C983;
  margin-bottom: 12px;
}
.se-i .accordion .abuse-form .form-label .form-textarea.error ~ .notify-error {
  display: inline-flex;
}

/* notify */
.se-i .accordion .abuse-form .form-label span:not(.notify, .input-title) {
  position: absolute;
  font-size: 12px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: var(--text-gray);
  /* display: none; */
}
.se-i .accordion .abuse-form .form-label span.error {
  position: relative;
  display: flex;
  color: #F4C983;
}

/* form-para */
.se-i .accordion .abuse-form .form-para {
  font-size: 14px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: var(--text-gray);
  animation-name: unset;
}
/*-------------------------------------*/

/* Notifications */
.notifications {
  display: none;
  position: fixed;
  z-index: 99;
  top: 140px;
  left: 15px;
}
.notifications .notify {
  position: relative;
  padding: 12px 70px 12px 20px;
  background: #1B1B2F;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 550px;
  box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.3);
  left: -400px;
  opacity: 0;
  visibility: hidden;
  transition: all .6s cubic-bezier(.77,0,.175,1);
}
.notifications .notify.show {
  left: 0;
  opacity: 1;
  visibility: visible;
}
.notifications .notify-1::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  bottom: 0;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  width: 6px;
}
.notifications .notify-1.success::before {
  background: #4ad395;
}
.notifications .notify-1.fail::before {
  background: #ef3737;
}
.notifications .notify-1 .para-1 {
  font-size: 16px;
  font-family: var(--secondary-font);
  font-weight: 400;
  color: #ffffff;
  max-width: 370px;
  line-height: 1.4;
}
.notifications .notify-1 .para-1 span {
  font-weight: 500;
}
.notifications .notify-1.success .para-1 span {
  color: #4ad395;
}
.notifications .notify-1.fail .para-1 span {
  color: #ef3737;
}
.notifications .notify-1 .close-notify-btn {
  position: absolute;
  right: 12px;
  top: 15px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.notifications .notify-1 .close-notify-btn svg {
  fill: #6d7c90;
  width: 12px;
  transition: all .2s ease;
}
.notifications .notify-1 .close-notify-btn:hover svg {
  fill: #b81525;
}
@media only screen and (max-width: 767.98px) {
  .notifications .notify {
    min-width: 300px;
    width: 360px;
  }
}

.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: #FFD369;
  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;
}

/*-----Webhost Jos------*/
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  --bs-gutter-x:1.5rem;
  --bs-gutter-y:0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container, .container-md, .container-sm {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container, .container-lg, .container-md, .container-sm {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1320px;
  }
}

.justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}
.col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .gm-section-title h2 {
  display: inline-block;
}
.gm-section-title h2::before {
  content: url(../img/shapes/gm-title-left.png);
  bottom: -10px;
  position: absolute;
  -webkit-transform: translateX(calc(-100% - 15px));
          transform: translateX(calc(-100% - 15px));
}
.gm-section-title h2::after {
  content: url(../img/shapes/gm-title-right.png);
  bottom: -10px;
  position: absolute;
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
}
.gm-feature .section-title h2,
.gm-feature .section-title p {
  color: #ffffff;
}
.text-center {
  text-align: center !important;
}
.mb-40 {
  margin-bottom: 40px;
}
.wp-feature-item {
  padding: 20px;
}
.wp-feature-item .icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(0, 102, 255, 0.05);
  border-radius: 50%;
  font-size: 20px;
  color: #1C40F2;
}
.theme-dark .wp-feature-item .icon-wrapper {
  background: rgba(255, 255, 255, 0.1);
}
.bg-white {
  --bs-bg-opacity:1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}
.theme-dark .bg-white {
  background: #33313D !important;
}
.theme-dark .bg-white a, .theme-dark .bg-white p, .theme-dark .bg-white span, .theme-dark .bg-white h1, .theme-dark .bg-white h2, .theme-dark .bg-white h3, .theme-dark .bg-white h4, .theme-dark .bg-white h5, .theme-dark .bg-white h6, .theme-dark .bg-white li, .theme-dark .bg-white i {
  color: #ffffff;
}
.deep-shadow {
  -webkit-box-shadow: 0px 12px 50px rgba(125, 125, 125, 0.1);
          box-shadow: 0px 12px 50px rgba(125, 125, 125, 0.1);
}
.theme-dark .hm2-blog-card.deep-shadow {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.rounded-2 {
  border-radius: var(--bs-border-radius) !important;
}
.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
.d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .h5, h5 {
  font-size: 1.25rem;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.ms-3 {
  margin-left: 1rem !important;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Urbanist", sans-serif;
  color: #2193A1;
  font-weight: 700;
}
.row{
    --bs-gutter-x:1.5rem;
    --bs-gutter-y:0;
    display:flex;
    flex-wrap:wrap;
    margin-top:calc(var(--bs-gutter-y) * -1);
    margin-right:calc(var(--bs-gutter-x) * -.5);
    margin-left:calc(var(--bs-gutter-x) * -.5)
}
.row>*{
    flex-shrink:0;
    width:100%;
    max-width:100%;
    padding-right:calc(var(--bs-gutter-x) * .5);
    padding-left:calc(var(--bs-gutter-x) * .5);
    margin-top:var(--bs-gutter-y)
}
.col{
    flex:1 0 0%
}
.col-3{
    flex:0 0 auto;
    width:25%
}
.col-9{
    flex:0 0 auto;
    width:75%
}
.col-12{
    flex:0 0 auto;
    width:100%
}
.gx-2{
    --bs-gutter-x:0.5rem
}
.gy-2{
    --bs-gutter-y:0.5rem
}
.gx-3{
    --bs-gutter-x:1rem
}
.gy-3{
    --bs-gutter-y:1rem
}
.gx-4{
    --bs-gutter-x:1.5rem
}
.gy-4{
    --bs-gutter-y:1.5rem
}
.gy-5{
    --bs-gutter-y:3rem
}
.align-items-center{
    align-items:center!important
}
@media (min-width:992px){
    .col-lg-2{
        flex:0 0 auto;
        width:16.66667%
    }
    .col-lg-3{
        flex:0 0 auto;
        width:25%
    }
    .col-lg-4{
        flex:0 0 auto;
        width:33.33333%
    }
  }

.features-five .review-content{
    padding:15px 25px 0 25px;
    box-shadow:0 0 0 rgba(248, 242, 242, 0.918);
    border-radius:10px;
    background:#2a4964;
    border:2px dashed #355e82;
    transition:.1s linear;
    margin-bottom:20px
}
.review-paragraph{
    overflow:hidden;
    margin:15px
}
#review{
    font-size:1rem;
    line-height:1.5
}
.reviewshow.collapse:not(.show){
    display:block;
    height:3rem;
    overflow:hidden
}
.reviewshow.collapsing{
    height:3rem
}
#review a.collapsed::after{
    content:'+ Show More'
}
#review a:not(.collapsed)::after{
    content:'- Show Less'
}
.features-five .text .h4,.features-five .text h4{
    line-height:60px;
    font-size:18px
}
.features-five .text .h5,.features-five .text h5{
    line-height:60px;
    font-weight:600;
    font-size:14px
}
.features-five .text{
    margin-bottom:10px
}
.features-five img{
    background:#e6e9ec;
    border:2px solid #86ca47;
    width:50px;
    border-radius:15px;
    font-size:25px;
    text-align:center;
    line-height:50px;
    margin:15px 15px 0 0;
    float:right
}
.features-five .h4,.features-five h4{
    font-weight:700;
    font-size:16px
}
.features-five .column{
    display:inline-block;
    margin-bottom:40px
}
.features-five .reviews{
    height:40px;
    width:100%
}
.review-content .h5,.review-content h5{
    line-height:15px!important;
    font-size:14px!important
}
.features-five .reviews i{
    background:#355e82;
    color:gold;
    width:25px;
    height:25px;
    border-radius:5px;
    font-size:15px;
    text-align:center;
    line-height:25px;
    margin:5px 10px 0 0
}
.features-five i{
    background:#355e82;
    width:55px;
    height:50px;
    border-radius:5px;
    font-size:25px;
    text-align:center;
    color: white;
    line-height:50px;
    margin:5px 15px 0 0;
    float:left
}
.features-five .btn{
    margin:0 auto
}
.features-five .buttons{
    margin:50px auto 0;
    text-align:center;
    width:200px
}
.feature-boxes{
    box-shadow:0 0 0 rgba(255,255,255,.06);
    border-radius:10px;
    background:var(--dark);
    border:2px dashed #355e82;
    height:100%;
    width:100%
}
.about-content2 .h3,.about-content2 h3{
    line-height:1.4;
    margin-bottom:20px;
    font-size:20px;
    color:#f3f3f3
}
.about-content2 p{
    margin-bottom:20px;
    color:rgba(224,232,255,.9);
    font-size:16px
}
/*-------------------------------------*/