/*Variable*/
/*Function*/
/*Mixin*/
/*fonts*/
/*OpenSans-Light*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);
@font-face {
  font-family: "Noto-Regular";
  src: url("../fonts/noto-sans/NotoSans-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Noto-Light";
  src: url("../fonts/noto-sans/NotoSans-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Noto-SemiBold";
  src: url("../fonts/noto-sans/NotoSans-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Noto-Bold";
  src: url("../fonts/noto-sans/NotoSans-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Noto-Medium";
  src: url("../fonts/noto-sans/NotoSans-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
/*Main*/
/*Home Page*/
.navbar {
  background-color: #f5f5f5;
  height: 70px;
  padding-left: 100px;
  padding-right: 100px;
}
.navbar .navbar-brand {
  margin-top: -15px;
}
.navbar .navbar-collapse .navbar-nav.mx-auto {
  margin-right: 0px !important;
}
.navmenu a {
  position: relative;
}
.navmenu a::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: -webkit-translateX(-50%);
  transform: -ms-translateX(-50%);
  transform: translateX(-50%);
  width: 0px;
  height: 0px;
  height: 1.5px;
  background: rgba(24, 46, 73, 1);
  transition: width 0.3s ease;
}
.navmenu a:hover::after {
  width: 18px;
  height: 3px;
}
.navbar .navbar-collapse .navbar-nav.mx-auto li a {
  padding-left: 15px;
  padding-right: 15px;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  color: #20415b;
  font-size: 16px;
  line-height: 24px;
  font-family: "Noto-Regular";
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link:active {
  transition: all 1s ease-in-out;
}
/* .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.login {
  background-color: #1862ab;
  color: #ffffff;
  margin-right: 10px;
  width: 91px;
  text-align: center;
  border-radius: 3px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
} */
.navbar-toggler {
  padding: 0.25rem 0rem !important;
}

/* .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.login:hover {
  box-shadow: 0px 5px 6px rgba(126, 126, 126, 0.4);
  transition: 0.2s;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.registration {
  color: #ffffff;
  background-color: #20415b;
  width: 109px;
  text-align: center;
  border-radius: 3px;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link.registration:hover {
  box-shadow: 0px 5px 6px rgba(126, 126, 126, 0.4);
  transition: 0.2s;
} */
/* new code */
.auth_btn {
  /* width: 91px; */
  padding: 0px 12px;
  height: 38px;
  border-radius: 3px;
  background-color: transparent;
  /* border: 1px solid #1e2167; */
  border: none;
  font-size: 12px;
  outline: none;
  color: #ffffff;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.auth_btn.signin {
  background-color: #1862ab;
}
.auth_btn.signup {
  background: #20415b;
}
.auth_btn img {
  position: relative;
  z-index: 1;
  margin-right: 10px;
}
.label {
  position: relative;
  font-family: sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.3s ease-out;
  z-index: 1;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 225%;
  min-height: 225%;
  aspect-ratio: 1;
  border-radius: 50%;
  /* background-color: #0f172a; */
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease-out;
}
.auth_btn.signin .bg {
  background: #20415b;
}
.auth_btn.signup .bg {
  background: #436ea1;
}

.auth_btn:hover .label {
  color: white;
}

.auth_btn:hover .bg {
  transform: translate(-50%, -50%) scale(1);
}
/* new code */

section.header {
  background-image: url(../img/Header\ Image.jpg);
  width: 100%;
  height: 589px;
  background-position: center;
  background-repeat: no-repeat;
  object-fit: cover;
  background-size: cover;
}
section.header .layer {
  background: transparent
    linear-gradient(
      180deg,
      rgba(30, 57, 119, 0.9) 0%,
      rgba(9, 22, 50, 0.9) 78%,
      rgba(1, 11, 32, 0.9) 100%
    )
    0% 0% no-repeat padding-box;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}
section.header .layer .title {
  font-size: 46px;
  line-height: 66px;
  color: #ffffff;
  font-family: "Noto-Light";
}
section.header .layer .title.bold {
  font-family: "Noto-Bold";
}

section.header .layer .subtitle {
  font-size: 24px;
  line-height: 34px;
  color: #ffffff;
  font-family: "Noto-Regular";
  padding-top: 15px;
  letter-spacing: 4px;
  padding-bottom: 15px;
  text-align: center;
}
section.header .layer .text {
  font-family: "Noto-Light";
  font-size: 14px;
  line-height: 34px;
  color: #ffffff;
}
section.header .layer .text img {
  margin-top: -2px;
}
/* .banner_text {
} */
/* section.header .layer .button {
  padding-top: 43px;
}
section.header .layer .button a {
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-content: center;
  width: 140px;
  height: 40px;
  background-color: #ffffff;
  color: #20415b;
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  font-family: "Noto-Medium";
  overflow: hidden;
  z-index: 12;
  position: relative;
  border-radius: 20px;
  box-shadow: none;
}
section.header .layer .button a:hover {
  color: #20415b;
}
section.header .layer .button a::after {
  content: "";
  position: absolute;
  top: -15px;
  left: -18px;
  width: 200px;
  height: 200px;
  background-color: #d9d6d6;
  border-radius: 50%;
  transform: translate(-10px, -70px) scale(0.1);
  opacity: 0;
  z-index: -1;
  transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}
section.header .layer .button a:hover::after {
  opacity: 1;
  transform-origin: 100px 100px;
  transform: scale(1) translate(-10px, -70px);
} */
/* banner btn code */

.white_btn {
  padding: 0;
  margin: 0;
  margin-top: 43px;
  width: 140px;
  height: 40px;
  background-color: #d9d9d9;
  color: #20415b;
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  font-family: "Grotex-Medium";
  overflow: hidden;
  z-index: 12;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: none;
  border: none;
  outline: none;
  transition: background 0.5s ease;
  /* border: 4px solid rgba(255, 255, 255, 0.18); */
  outline: 4px solid rgba(255, 255, 255, 0.18);
}

.white_btn img {
  position: relative;
  z-index: 1;
}

.white_btn_label {
  position: relative;
  font-family: "Noto-Regular";
  transition: color 0.3s ease-out;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  transition: gap 0.5s ease;
}
.white_btn_label img {
  width: 10px;
  height: 14px;
}

.white_btn_bg {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 225%;
  min-height: 225%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #e5eef1;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease-out;
}

.white_btn:hover .white_btn_label {
  gap: 20px;
}

.white_btn:hover .white_btn_bg {
  transform: translate(-50%, -50%) scale(1);
}

/* .white_btn:hover {
  background: #0f172a;
} */

/* banner btn code end  */
section.about-us {
  padding-top: 100px;
  padding-bottom: 100px;
}
section.about-us .container .row .col-sm-12,
section.about-us .container .row .col-lg-6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.about-us .container .row .col-sm-12 .icon-line .about-title-icon-lg,
section.about-us .container .row .col-lg-6 .icon-line .about-title-icon-lg {
  display: block;
  height: 13px;
  width: 72px;
  margin-top: -10px;
}
section.about-us .container .row .col-sm-12 .icon-line .about-title-icon-sm,
section.about-us .container .row .col-lg-6 .icon-line .about-title-icon-sm {
  display: none;
}
section.about-us .container .row .col-sm-12 .hidden-about-image,
section.about-us .container .row .col-lg-6 .hidden-about-image {
  display: none;
  width: 455px;
  height: 283px;
}
section.about-us .container .row .col-sm-12.image,
section.about-us .container .row .col-lg-6.image {
  align-items: flex-end;
}
section.about-us .container .row .col-sm-12 .title,
section.about-us .container .row .col-lg-6 .title {
  font-size: 20px;
  /* line-height: 34px; */
  font-family: "Noto-Regular";
  color: #20415b;
  padding-left: 5px;
  padding-bottom: 3px;
  margin: 0;
}
section.about-us .container .row .col-sm-12 .subtitle,
section.about-us .container .row .col-lg-6 .subtitle {
  padding-bottom: 18px;
  font-size: 40px;
  line-height: 58px;
  color: #20415b;
  font-family: "Noto-Regular";
  margin: 0;
}
section.about-us .container .row .col-sm-12 .subtitle span,
section.about-us .container .row .col-lg-6 .subtitle span {
  font-family: "Noto-Bold";
}
section.about-us .container .row .col-sm-12 .line,
section.about-us .container .row .col-lg-6 .line {
  height: 3px;
  width: 35px;
  background-color: #436ea1;
}
section.about-us .container .row .col-sm-12 .text,
section.about-us .container .row .col-lg-6 .text {
  font-size: 16px;
  line-height: 25px;
  font-family: "Noto-Regular";
  color: #757575;
  padding-top: 24px;
}
/* section.about-us .container .row .col-sm-12 .more,
section.about-us .container .row .col-lg-6 .more {
  margin-top: 37px;
}
section.about-us .container .row .col-sm-12 .more a,
section.about-us .container .row .col-lg-6 .more a {
  display: flex;
  text-decoration: none;
  width: 140px;
  height: 40px;
  align-items: center;
  justify-content: center;
  font-family: "Noto-Medium";
  font-size: 14px;
  line-height: 24px;
  color: #ffffff;
  background-color: #436ea1;
  border: none;
  overflow: hidden;
  box-shadow: none;
  position: relative;
  z-index: 12;
  border-radius: 20px;
}
section.about-us .container .row .col-sm-12 .more a:hover,
section.about-us .container .row .col-lg-6 .more a:hover {
  color: white;
}
section.about-us .container .row .col-sm-12 .more a::after,
section.about-us .container .row .col-lg-6 .more a::after {
  content: "";
  position: absolute;
  top: -15px;
  left: -18px;
  width: 200px;
  height: 200px;
  background-color: #20415b;
  border-radius: 50%;
  transform: translate(-10px, -70px) scale(0.1);
  opacity: 0;
  z-index: -1;
  transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}
section.about-us .container .row .col-sm-12 .more a:hover::after,
section.about-us .container .row .col-lg-6 .more a:hover::after {
  opacity: 1;
  transform-origin: 100px 100px;
  transform: scale(1) translate(-10px, -70px);
}
 */
section.about-us .container .row .col-sm-12 img,
section.about-us .container .row .col-lg-6 img {
  width: 455px;
  height: 283px;
  transition: transform 0.5s ease;
}
section.about-us .container .row .col-sm-12 img:hover,
section.about-us .container .row .col-lg-6 img:hover {
  transform: scale(1.05);
}
/* updated */
section.about-us .subscribe_btn {
  padding: 0;
  margin: 0;
  width: 160px;
  height: 40px;
  background: linear-gradient(180deg, rgba(37, 64, 115, 0.7) 0%, #254073 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  overflow: hidden;
  z-index: 12;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: none;
  border: none;
  /* outline: none; */
  transition: background 0.5s ease;
  /* border: 4px solid rgba(255, 255, 255, 0.18); */
  outline: 4px solid rgba(255, 255, 255, 0.18);
  margin-top: 35px;
}

section.about-us .subscribe_btn img {
  width: 10px;
  height: 10px;
  position: relative;
  z-index: 1;
}

section.about-us .subscribe_btn .subscribe_btn_label {
  position: relative;
  font-family: "Noto-Regular" !important;
  transition: color 0.3s ease-out;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  transition: gap 0.5s ease;
}
section.about-us .subscribe_btn .subscribe_btn_label img {
  width: 10px;
  height: 14px;
}

section.about-us .subscribe_btn_bg {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 225%;
  min-height: 225%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(37, 64, 115, 0.7) 0%, #254073 100%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease-in-out;
}

section.about-us .subscribe_btn:hover .subscribe_btn_label {
  gap: 20px;
}

section.about-us .subscribe_btn.hover-active .subscribe_btn_bg {
  transform: translate(-50%, -50%) scale(1);
}

/* updated */
section.after-about-texture {
  height: 54px;
  width: 100%;
  background-image: url(../img/about\ us\ texture.png);
  background-repeat: repeat-x;
  /* animation: waveMove 5s linear infinite; */
}
/* @keyframes waveMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 6000% 0;
  }
} */
section.why-choose-us {
  padding-top: 100px;
  /* background-color: #f5f5f5; */
  background: #eaeef5;
  border: 0.7px solid #f5f5f5;
  text-align: center;
  background-image: url(../img/Reasons/Texture.png);
  width: 100%;
  height: auto;
  background-position: bottom;
  background-repeat: no-repeat;
  padding-bottom: 87px;
}
section.why-choose-us .title {
  font-size: 20px;
  line-height: 34px;
  font-family: "Noto-Regular";
  color: #20415b;
  padding-bottom: 3px;
  margin: 0;
}
section.why-choose-us .subtitle {
  font-size: 40px;
  line-height: 58px;
  color: #20415b;
  font-family: "Noto-Regular";
  padding-bottom: 18px;
}
section.why-choose-us .subtitle span {
  font-family: "Noto-Bold";
}
section.why-choose-us .text {
  padding-top: 20px;
  font-size: 16px;
  line-height: 24px;
  color: #757575;
  font-family: "Noto-Regular";
  padding-bottom: 25px;
  white-space: pre-line;
}
section.why-choose-us .container .row .col-sm-12 .choose-card {
  height: 190px;
  display: flex;
  /* background-color: #ffffff; */
  background: #f2f4f8;
  box-shadow: 0px 3px 6px rgba(170, 170, 170, 0.1607843137);
  /* border: 0.5px solid #afafaf; */
  border: 0.5px solid #9da3ac;
  padding-top: 22px;
  padding-bottom: 23px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 9px;
  margin-bottom: 22px;
  gap: 22px;
  transition: transform 0.4s ease;
}
section.why-choose-us .container .row .col-sm-12 .choose-card .left {
  display: flex;
  align-items: center;
  justify-content: center;
}
section.why-choose-us .container .row .col-sm-12 .choose-card .left .icon {
  margin-left: 3px;
}
section.why-choose-us .container .row .col-sm-12 .choose-card .right .title {
  color: #20415b;
  font-size: 22px;
  line-height: 32px;
  font-family: "Noto-Regular";
  text-align: left;
}
section.why-choose-us
  .container
  .row
  .col-sm-12
  .choose-card
  .right
  .title
  span {
  font-family: "Noto-Bold";
}
section.why-choose-us .container .row .col-sm-12 .choose-card .right .body ul {
  padding: 0;
}
section.why-choose-us
  .container
  .row
  .col-sm-12
  .choose-card
  .right
  .body
  ul
  li {
  list-style: none;
  text-align: left;
  padding-bottom: 5px;
  display: flex;
}
section.why-choose-us
  .container
  .row
  .col-sm-12
  .choose-card
  .right
  .body
  ul
  li
  span {
  font-size: 14px;
  line-height: 21px;
  color: #20415b;
  font-family: "Noto-Regular";
}
section.why-choose-us
  .container
  .row
  .col-sm-12
  .choose-card
  .right
  .body
  ul
  li
  span
  img {
  padding-right: 5px;
}
section.why-choose-us .container .row .col-sm-12 .choose-card:hover {
  transform: scale(1.05);
  box-shadow: 0px 2px 8px 3px #e5dfdf;
  transition: 0.2s;
}
section.related-numbers {
  background: rgb(72, 112, 162);
  background: linear-gradient(
    180deg,
    rgb(72, 112, 162) 0%,
    rgb(67, 108, 159) 72%,
    rgb(57, 97, 147) 95%
  );
  padding-top: 59px;
  padding-bottom: 44px;
}
section.related-numbers .container .row .col-sm-6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section.related-numbers .container .row .col-sm-6 .number_wrapper {
  display: flex;
  align-items: center;
}
section.related-numbers .container .row .col-sm-6 .number_wrapper h6 {
  font-size: 50px;
  line-height: 58px;
  font-family: "Noto-Bold";
  color: #ffffff;
  margin: 0;
}
section.related-numbers .container .row .col-sm-6 .number {
  font-size: 56px;
  line-height: 58px;
  font-family: "Noto-Bold";
  color: #ffffff;
  margin: 0;
}

section.related-numbers .container .row .col-sm-6 .text {
  font-size: 22px;
  line-height: 58px;
  font-family: "Noto-Medium";
  color: #ffffff;
}
section.related-numbers .container .row .col-sm-6 .line {
  border: 3px solid #dcdcdc;
  width: 30px;
}
section.features {
  padding-top: 67px;
  padding-bottom: 83px;
  background: #436ea1;
}
section.features .container {
  background-image: url(../img/Feature/Texture.png);
}
section.features .container .row {
  align-items: center;
}
section.features .container .row .col-sm-12.pd {
  padding-left: 70px;
}
section.features .container .row .col-sm-12 img.main {
  width: 540px;
  transition: transform 0.4s ease;
}
section.features .container .row .col-sm-12 img.main:hover {
  transform: scale(1.05);
}
section.features .container .row .col-sm-12 .title {
  font-size: 20px;
  line-height: 34px;
  color: #ffffff;
  font-family: "Noto-Regular";
  padding-bottom: 3px;
  margin: 0;
}
section.features .container .row .col-sm-12 .subtitle {
  font-size: 40px;
  line-height: 58px;
  color: #ffffff;
  font-family: "Noto-Regular";
  padding-bottom: 18px;
}
section.features .container .row .col-sm-12 .subtitle span {
  font-family: "Noto-Bold";
}
section.features .container .row .col-sm-12 .text {
  padding-bottom: 60px;
}
section.features .container .row .col-sm-12 .text .line-text {
  font-size: 16px;
  line-height: 28px;
  color: #ffffff;
  font-family: "Noto-Light";
  display: flex;
}
section.features .container .row .col-sm-12 .text .line-text span img {
  padding-right: 10px;
}
/* section.features .container .row .col-sm-12 .buttons a {
  text-decoration: none;
  width: 150px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  font-family: "Noto-Regular";
  color: #20415b;
  overflow: hidden;
  z-index: 12;
  position: relative;
  box-shadow: none;
  border-radius: 25px;
}
section.features .container .row .col-sm-12 .buttons a:hover {
  color: #20415b;
}
section.features .container .row .col-sm-12 .buttons a::after {
  content: "";
  position: absolute;
  top: -12px;
  left: -18px;
  width: 200px;
  height: 200px;
  background-color: #d9d6d6;
  border-radius: 50%;
  transform: translate(-10px, -70px) scale(0.1);
  opacity: 0;
  z-index: -1;
  transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}
section.features .container .row .col-sm-12 .buttons a:hover::after {
  opacity: 1;
  transform-origin: 100px 100px;
  transform: scale(1) translate(-10px, -70px);
} */
/* updated button code  */
section.features .subscribe_btn {
  padding: 0;
  margin: 0;
  width: 160px;
  height: 40px;
  background-color: #d9d9d9;
  color: #20415b;
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  font-family: "Grotex-Medium";
  overflow: hidden;
  z-index: 12;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: none;
  border: none;
  /* outline: none; */
  transition: background 0.5s ease;
  /* border: 4px solid rgba(255, 255, 255, 0.18); */
  outline: 4px solid rgba(255, 255, 255, 0.18);
}

section.features .subscribe_btn img {
  position: relative;
  z-index: 1;
}

section.features .subscribe_btn_label {
  position: relative;
  font-family: "Noto-Regular";
  transition: color 0.3s ease-out;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  transition: gap 0.5s ease;
}
section.features .subscribe_btn_label img {
  width: 10px;
  height: 14px;
}

section.features .subscribe_btn_bg {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 225%;
  min-height: 225%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #e5eef1;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease-in-out;
}

section.features .subscribe_btn:hover .subscribe_btn_label {
  gap: 20px;
}

section.features .subscribe_btn.hover-active .subscribe_btn_bg {
  transform: translate(-50%, -50%) scale(1);
}
/* updated button code */
section.subscribtion {
  text-align: center;
  padding-top: 112px;
  padding-bottom: 111px;
  background-color: #fcfcfc;
}
section.subscribtion .title {
  font-size: 20px;
  line-height: 34px;
  font-family: "Noto-Regular";
  color: #20415b;
  padding-bottom: 3px;
  margin: 0;
}
section.subscribtion .subtitle {
  font-size: 40px;
  line-height: 58px;
  color: #20415b;
  font-family: "Noto-Regular";
  padding-bottom: 18px;
}
section.subscribtion .subtitle span {
  font-family: "Noto-Bold";
}
section.subscribtion .body {
  padding-top: 50px;
}
section.subscribtion .body .container .row .col-sm-12 .pur-card {
  background: #fcfcfc 0% 0% no-repeat padding-box;
  box-shadow: 0px 2px 55px rgba(179, 206, 204, 0.3215686275);
  border-radius: 9px;
  padding-bottom: 30px;
  padding-top: 30px;
}
section.subscribtion .body .container .row .col-sm-12 .pur-card .title {
  font-size: 18px;
  line-height: 54px;
  font-family: "Noto-Medium";
  color: #588cc1;
  padding: 0;
}
section.subscribtion .body .container .row .col-sm-12 .pur-card .subtitle {
  font-size: 32px;
  line-height: 58px;
  font-family: "Noto-Bold";
  color: #20415b;
  padding-bottom: 14px;
}
section.subscribtion .body .container .row .col-sm-12 .pur-card .text {
  font-size: 14px;
  line-height: 30px;
  font-family: "Noto-Regular";
  color: #20415b;
  margin-bottom: 24px;
}
section.subscribtion .body .container .row .col-sm-12 .pur-card .buttons a {
  margin: auto;
  text-decoration: none;
  width: 291px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #588cc1;
  background-color: #ffffff;
  font-size: 16px;
  line-height: 58px;
  font-family: "Noto-Bold";
  color: #588cc1;
  overflow: hidden;
  box-shadow: none;
  position: relative;
  z-index: 12;
}
section.subscribtion
  .body
  .container
  .row
  .col-sm-12
  .pur-card
  .buttons
  a:hover {
  color: white;
}
section.subscribtion
  .body
  .container
  .row
  .col-sm-12
  .pur-card
  .buttons
  a::after {
  content: "";
  position: absolute;
  top: -100px;
  left: -53px;
  width: 400px;
  height: 400px;
  background-color: #436ea1;
  border-radius: 50%;
  transform: translate(-10px, -70px) scale(0.1);
  opacity: 0;
  z-index: -1;
  transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}
section.subscribtion
  .body
  .container
  .row
  .col-sm-12
  .pur-card
  .buttons
  a:hover::after {
  opacity: 1;
  transform-origin: 170px 170px;
  transform: scale(1) translate(-10px, -70px);
}
section.subscribtion .body .container .row .col-sm-12 .pur-card .buttons a.std {
  background-color: #436ea1;
  border: 1px solid #436ea1;
  color: #ffffff;
}
section.subscribtion
  .body
  .container
  .row
  .col-sm-12
  .pur-card
  .buttons
  a.std:after {
  background-color: #20415b;
}
section.subscribtion .body .container .row .col-sm-12:nth-child(2) {
  transform: scale(1.1);
}
/* updated code of subscription by #arkan */
.subscription_section_content {
  background: #fafeff;
}
section.subscription_updated {
  background: #fafeff;
}

.subscription_cards_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.choose_subscription_duration {
  /* width: 176px; */
  height: 44px;
  border: 1px solid rgba(9, 65, 105, 0.3);
  border-radius: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px;
}
.choose_subscription_duration button {
  border: none;
  outline: none;
  background: transparent;
  font-size: 12px;
  font-family: "Noto-SemiBold";
  /* width: 100%; */
  width: 88px;
  height: 100%;
  border-radius: 22px;
  cursor: pointer;
  color: rgba(9, 65, 105, 1);
}
.choose_subscription_duration button.active {
  background-color: rgba(9, 65, 105, 1);
  color: #fff;
}
.subscription_cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
}

.subscription_cards .subscription_card {
  min-width: 100%;
  height: 540px;
  border-radius: 8px;
  border: 2px solid rgba(22, 14, 75, 0.2);
  overflow: hidden;
  transition: transform 0.3s ease;
  background: #fff;
  margin-top: 55px;
}
.subscription_cards .selected_plan {
  border: 2px solid #094169;
}
.current_plan {
  position: relative;
  height: 627px !important;
  margin-top: 38px !important;
}
.current_plan .cancel_subscription {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #20415b;
  font-size: 16px;
  font-family: "Noto-SemiBold";
  margin-top: 20px;
}
.current_plan_btn {
  width: 100%;
  height: 42px;
  background: #094169;
  outline: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  color: #fff;
  transition: all 0.5s ease;
  font-size: 15px;
  font-family: "Noto-Medium";
}
.current_plan_btn img {
  width: 18px;
  height: 16px;
  margin-right: 10px;
  margin-top: -4px;
}
/* .subscription_badge, */
.cancel_subscription,
.current_plan_btn {
  display: none;
}

/* .subscription_card.current_plan .subscription_badge, */
.subscription_card.current_plan .cancel_subscription {
  display: block;
}

.subscription_badge {
  width: 100%;
  height: 28px;
  background: #160e4b;
  color: #fff !important;
  font-family: "Noto-Medium";
  text-align: center;
}
.subscription_badge p {
  margin: 0;
  padding: 0;
  padding-top: 4px;
  font-size: 12px;
  color: #fff !important;
}
.subscription_card_content {
  /* padding: 0px 25px 20px 25px; */
  height: 100%;
  /* overflow-y: scroll; */
}
.subscription_cards .subscription_card:hover {
  transform: perspective(1000px) rotate3d(1, 1, 0, 0.1deg);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.subscription_cards .subscription_card h6 {
  color: #160e4b;
  font-size: 16px;
  font-family: "Noto-SemiBold";
  margin-top: 20px;
  padding-left: 25px;
  padding-right: 25px;
}
.subscription_cards .subscription_card h1 {
  color: #160e4b;
  font-size: 35px;
  font-family: "Noto-Bold";
  margin-bottom: 15px;
  padding-left: 25px;
  padding-right: 25px;
}
.subscription_cards .subscription_card p {
  font-size: 14px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.6);
  font-family: "Noto-Regular";
  margin-bottom: 16px;
  padding-left: 20px;
  padding-right: 20px;
}
.subscription_cards .subscription_card a {
  text-decoration: none;
  color: rgba(9, 65, 105, 1);
  font-size: 14px;
  font-family: "Noto-Medium";
}
.subscription_cards .subscription_card a .select_plan_btn {
  width: 90%;
  height: 42px;
  background: transparent;
  outline: none;
  border: 1px solid rgba(9, 65, 105, 1);
  border-radius: 6px;
  cursor: pointer;
  color: rgba(9, 65, 105, 1);
  transition: all 0.5s ease;
  font-size: 15px;
  font-family: "Noto-Medium";
  display: block;
  margin-left: 5%;
}
.subscription_cards .subscription_card a .select_plan_btn:hover {
  background: rgba(9, 65, 105, 1);
  color: #fff;
}
/*  */
.select_plan_btn {
  display: block;
}

.current_plan_btn {
  display: none;
}

.subscription_card.current_plan .select_plan_btn {
  display: none !important;
}

.subscription_card.current_plan .current_plan_btn {
  display: block;
}

/*  */

.subscription_card .features_list {
  margin-top: 27px;
  overflow-y: scroll;
  height: 250px;
  /* padding-bottom: 20px; */
}
.subscription_card .features_list h3 {
  color: rgba(76, 106, 129, 1);
  font-size: 19px;
  font-family: "Noto-Bold";
  margin-bottom: 13px;
  text-align: left;
}
.subscription_card ul {
  padding-left: 0px !important;
  margin-left: 0px !important;
  padding-left: 25px !important;
  padding-right: 25px !important;
}
.subscription_card .features_list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.6);
  font-family: "Noto-Medium";
  margin-bottom: 6px;
  padding-left: 0px !important;
  margin-left: 0px !important;
}
.subscription_card .features_list li img {
  width: 13px;
  height: 13px;
  object-fit: cover;
}
.hidePrice {
  display: none;
}

.choose_subscription_duration button.active-btn {
  background-color: rgba(9, 65, 105, 1);
  color: #fff;
}

/* updated subscription section by arkan end  */
/* modal for subscription payment code start */
@font-face {
  font-family: "cabinet";
  src: url("../fonts/subscription/CabinetGrotesk-Bold.otf");
}
@font-face {
  font-family: "dm-sans";
  src: url("../fonts/subscription/DMSans_24pt-Regular.ttf");
}
@font-face {
  font-family: "sans-semibold";
  src: url("../fonts/subscription/DMSans_24pt-SemiBold.ttf");
}
@font-face {
  font-family: "inter-regular";
  src: url("../fonts/subscription/Inter_24pt-Regular.ttf");
}
@font-face {
  font-family: "inter-medium";
  src: url("../fonts/subscription/Inter_24pt-Medium.ttf");
}
@font-face {
  font-family: "inter-semibold";
  src: url("../fonts/subscription/Inter_24pt-SemiBold.ttf");
}
.modal-dialog {
  width: 950px;
}

.modal-content {
  width: 100%;
  background: rgba(250, 254, 255, 1);
  border-radius: 17px;
}
.modal-body {
  background: #f4eded;
  color: #360c0c;
}
.modal-header {
  border: none !important;
}
.close {
  color: #000;
  opacity: 0.8;
}
.modal-body p {
  padding-right: 50px;
  font-weight: 400;
}
.modal-body span {
  font-weight: 600;
}
.modal_content_wrapper {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  padding: 0px 50px 50px 50px;
}

.upload_image {
  width: 55%;
}
.modal_content_wrapper .payement_text {
  width: 45%;
  background: #f4eded;
  color: rgba(54, 12, 12, 1);
  border-radius: 13px;
}

.upload_image h1 {
  font-size: 32px;
  text-transform: uppercase;
  font-family: "cabinet";
  padding-bottom: 9px;
  color: rgba(32, 65, 91, 1);
  margin: 0;
}
.upload_image .upload_label {
  font-size: 18px;
  padding-bottom: 38px;
  color: rgba(96, 116, 132, 1);
  font-family: "dm-sans";
  margin: 0;
}

.upload_image h3 {
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  padding-bottom: 11px;
  color: #000;
  font-family: "dm-sans";
}

.inner_file_choose {
  display: flex;
  gap: 12px;
  width: 90%;
  height: fit-content;
  overflow: hidden;
}
.file_choose_btn {
  width: 136px;
  height: 40px;
  background-color: rgba(221, 236, 242, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  font-size: 14px;
  color: rgba(32, 65, 91, 1);
  font-weight: 400;
  cursor: pointer;
  font-family: "sans-semibold";
}
.inner_file_choose .file_name {
  margin-top: 5px;
  color: rgba(110, 133, 142, 1);
  font-size: 16px;
  padding-right: 15px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: "inter-medium";
}

.file_choose_system img {
  width: 230px;
  height: 190px;
  object-fit: cover;
  margin: 8px 0px;
}
.file_choose_system .file_format {
  font-size: 15px;
  color: rgba(110, 133, 142, 1);
  padding-top: 7px;
  font-family: "inter-regular";
}
.submit_btn {
  width: 100%;
  height: 70px;
  background: #094169;
  color: #fff;
  margin-top: 30px;
  border-radius: 10px;
  font-size: 20px;
  transition: all 0.4s ease;
  font-weight: 700;
}
.submit_btn:hover {
  color: #094169;
  background: transparent;
  border: 1px solid #094169;
}

.modal_content_wrapper .payement_text .payment_info_text {
  font-size: 16px;
  font-family: "inter-regular";
  padding: 30px 25px 20px 25px;
}
.modal_content_wrapper .payement_text .payment_info_text {
  font-size: 16px;
  font-family: "inter-regular";
  padding: 30px 25px 20px 25px;
}
.payement_text_label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
}
.payement_text_label img {
  width: 20px;
  height: 16px;
}

@media (max-width: 991px) {
  .modal-dialog {
    width: 95%;
  }
  .upload_image h1 {
    font-size: 26px;
  }
  .upload_image .upload_label {
    font-size: 16px;
    padding-bottom: 25px;
  }
  .upload_image h3 {
    font-size: 18px;
  }
  .submit_btn {
    height: 60px;
  }
  /* .modal_content_wrapper .payement_text .payement_text_header p {
    font-size: 15px;
  } */
  .modal_content_wrapper .payement_text .payment_info_text {
    font-size: 15px;
  }
  .modal_content_wrapper {
    gap: 30px;
    padding: 0px 30px 40px 30px;
  }
}
@media (max-width: 575px) {
  .modal_content_wrapper {
    flex-direction: column-reverse;
  }
  .modal_content_wrapper .payement_text {
    width: 100%;
  }
  .upload_image {
    width: 100%;
  }
  .upload_image h1 {
    font-size: 24px;
  }
  .modal_content_wrapper .payement_text .payement_text_header p {
    font-size: 14px;
  }
  .modal_content_wrapper .payement_text .payment_info_text {
    font-size: 14px;
  }
  .modal_content_wrapper .payement_text .payment_info_text {
    padding: 18px;
  }
}
@media (max-width: 375px) {
  /* .modal_content_wrapper .payement_text .payement_text_header p {
    font-size: 13px;
  } */
  .modal_content_wrapper .payement_text .payment_info_text {
    font-size: 13px;
  }
  .upload_image h1 {
    font-size: 20px;
  }
  .file_choose_system .file_format {
    font-size: 13px;
  }
  .upload_image .upload_label {
    font-size: 13px;
    padding-bottom: 15px;
  }
  .submit_btn {
    margin-top: 25px;
  }
}

/* modal code for subscription payment code end  */
/* code for subscription faq code start  */
@font-face {
  font-family: "poppins-regular";
  src: url("../fonts/subscription/Poppins-Regular.ttf");
}

@font-face {
  font-family: "poppins-semibold";
  src: url("../fonts/subscription/Poppins-SemiBold.ttf");
}
@font-face {
  font-family: "poppins-bold";
  src: url("../fonts/subscription/Poppins-Bold.ttf");
}

.modalAbout {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: scroll;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 99999999999999999999999;
  padding-bottom: 30px;
}
.about_modal_content {
  background: #fafbfc;
  margin: 2% auto;
  border: 1px solid #888;
  width: 60%;
  height: fit-content;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
  animation: modalopen 0.5s;
  border-radius: 20px !important;
}

.closeAboutModal {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.closeAboutModal:hover,
.closeAboutModal:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.about_modal_header {
  position: relative;
  height: 305px;
  width: 100%;
}
.about_modal_header .header_top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 185px;
  background: rgba(232, 238, 242, 1);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  z-index: 0;
}
.about_modal_header .header_infographic_section {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 203px;
  display: flex;
  justify-content: center;
}
.subscription_infographic {
  height: 100%;
  width: 92.5%;
  background: rgba(67, 110, 161, 1);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subscription_steps_wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  scrollbar-width: thin;
}
.subscription_infographic .subscription_step {
  display: flex;
  text-align: center;
  gap: 10px;
}
.subscription_step p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  padding-top: 10px;
  color: #fff;
  font-family: "poppins-semibold";
}
.step_icon {
  width: 16px;
  height: 17px;
  margin-top: 38px;
}
.step_img {
  width: 135px;
  height: 90px;
  border-radius: 13px;
  object-fit: cover;
}
.about_modal_header h2 {
  margin: 0;
  text-align: center;
  padding-top: 36px;
  color: rgba(32, 65, 91, 1);
  font-size: 30px;
  font-family: "poppins-bold";
}

.about_modal_header .close_about_modal {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(128, 128, 128, 0.1);
  color: #2a2f53;
  /* float: right; */
  font-size: 30px;
  font-family: "geometria_medium";
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: background 0.5s ease;
  /* margin-top: -30px;
  margin-right: -20px; */
  z-index: 2;
}

.close_about_modal:hover,
.close_about_modal:focus {
  text-decoration: none;
  cursor: pointer;
  background: rgba(128, 128, 128, 0.3);
  color: #000;
}
.about_modal_body {
  padding: 30px 35px 0px 35px;
  background: #fff;
  /* height: 150px;
  overflow-y: auto;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  scrollbar-width: thin;
  scrollbar-color: gray #f0f0f0;
  margin-bottom: 40px; */
}

/* .about_modal_body::-webkit-scrollbar-track {
  background: #f0f0f0;
}

.about_modal_body::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 10px;
} */
.about_modal_body .question_wrapper {
  display: flex;
  align-items: center !important;
  gap: 15px !important;
  color: rgba(32, 65, 91, 1);
  font-size: 18px;
  font-family: "poppins-semibold";
  margin-bottom: 8px;
}
.about_modal_body .question_wrapper p {
  margin: 0;
}
.about_modal_body .question_wrapper h4 {
  margin: 0;
  font-family: "poppins-semibold";
}
.answer_wrapper {
  display: flex;
  align-items: flex-start !important;
  gap: 15px !important;
  margin-bottom: 20px;
}
.answer_wrapper p {
  color: rgba(32, 65, 91, 1);
  font-size: 18px;
  font-family: "poppins-semibold";
}
.answer_wrapper ul li {
  /* margin: 0 !important;
  padding: 0 !important; */
  margin-left: -10px;
  font-size: 16px;
  line-height: 24px;
  font-size: 16px;
  color: rgba(79, 79, 79, 1);
  font-family: "poppins-regular";
}
.last_step {
  text-align: left;
}
.answer_wrapper ul li span {
  font-family: "poppins-semibold";
}
@media only screen and (max-width: 1200px) {
  .about_modal_content {
    width: 70%;
  }
  .step_img {
    width: 105px;
    height: 85px;
  }
  .last_step {
    text-align: center;
  }
}
@media only screen and (max-width: 1024px) {
  .about_modal_content {
    width: 80%;
  }
}
@media only screen and (max-width: 820px) {
  .about_modal_content {
    width: 95%;
  }
  .subscription_steps_wrapper .step_img {
    width: 110px;
    height: 90px;
  }
  .subscription_step p {
    font-size: 12px;
  }
  .about_modal_header h2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 575px) {
  .about_modal_content {
    padding-bottom: 30px;
  }
  .about_modal_header h2 {
    font-size: 22px;
  }
  .about_modal_body .question_wrapper {
    font-size: 16px;
    align-items: flex-start !important;
  }
  .answer_wrapper p {
    font-size: 16px;
  }
  .answer_wrapper ul li {
    font-size: 15px;
  }
  .subscription_steps_wrapper {
    width: 100%;
    height: 80%;
    gap: 10px;
    overflow: hidden;
    overflow-x: scroll;
    padding-left: 10px;
    padding-right: 10px;
    align-items: flex-start;
    padding-top: 7%;
    justify-content: flex-start;
  }
  .about_modal_body {
    padding: 30px 35px 0px 35px;
    background: #fff;
    height: 350px;
    overflow-y: scroll;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  .subscription_infographic {
    border-radius: 12px;
  }
}
@media only screen and (max-width: 480px) {
  .about_modal_header h2 {
    font-size: 18px;
  }
  .about_modal_header .header_infographic_section {
    bottom: 20px;
  }
  .about_modal_body {
    padding: 20px 20px 0px 20px;
  }
  .about_modal_header .close_about_modal {
    position: absolute;
    top: 10px;
    right: 10px;
  }
  .about_modal_body .question_wrapper {
    gap: 8px;
  }
  .answer_wrapper {
    gap: 8px;
  }
}
@media only screen and (max-width: 375px) {
  .about_modal_header h2 {
    font-size: 16px;
  }
  .about_modal_body .question_wrapper {
    font-size: 15px;
  }
  .answer_wrapper p {
    font-size: 15px;
  }
}
/* code for subscription faq end  */

/* subscription Request section start */
.subscription_request_container {
  width: 100%;
  background: #fafeff;
  margin-top: 23px;
  padding: 35px 0px;
  border-radius: 12px;
}
.subscription_request_container h3 {
  font-size: 24px;
  color: #20415b;
  font-family: "Noto-Bold";
  text-align: center;
  margin-bottom: 25px;
}
.applied_plan_info_wrapper {
  width: 100%;
  /* height: 95px; */
  border: 1px solid #cecece;
  border-radius: 5px;
  padding: 18px 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease;
  margin-bottom: 18px;
}
.applied_plan_info_wrapper:hover {
  background: #eaedf1;
}

.applied_info_box {
  width: 14%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.subscription_status {
  gap: 5px;
}
.applied_info_box p {
  margin: 0;
  text-transform: capitalize;
}
.applied_info_box h4 {
  margin: 0;
  color: #20415b;
  font-size: 16px;
  /* font-family: "Noto-Bold"; */
  font-family: "Noto-Semibold";
}
.applied_info_box div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.applied_info_box div img {
  margin: 0;
  padding: 0;
  width: 18px;
  height: 20px;
}
.applied_plan_info_wrapper .applied_plan h4 {
  color: #20415b;
  font-size: 16px;
  /* font-family: "Noto-Bold"; */
  font-family: "Noto-SemiBold";
}
.applied_plan_info_wrapper .date_box h4 {
  color: #20415b;
  font-size: 16px;
  font-family: "Noto-Bold";
  font-family: "Noto-SemiBold";
}

.applied_plan_info_wrapper .subscription_status .status {
  font-size: 14px;
  font-family: "Noto-Regular";
  border-radius: 25px;
  padding: 3.5px 8px;
  max-width: 100px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: capitalize;
}
.applied_plan_info_wrapper .subscription_status .status_upgrade {
  background: #c4e7e1;
  color: #528279;
}
.applied_plan_info_wrapper .subscription_status .status_renew {
  background: #c4d3e7;
  color: #365073;
}
.applied_plan_info_wrapper .subscription_status .status_downgrade {
  background: #dec4e7;
  color: #6d487a;
}
.applied_plan_info_wrapper .waiting {
  padding-left: 30px;
  gap: 5px;
}
.applied_plan_info_wrapper .waiting p {
  font-size: 16px;
  color: #20415b;
  font-family: "Noto-Bold";
}
.applied_plan_info_wrapper .waiting button {
  color: #c50003;
  font-family: "Noto-Semibold";
  font-size: 16px;
  background: transparent;
  border: none;
  outline: none;
  text-align: left;
  margin: 0;
  padding: 0;
}
.subscrion_table_header {
  font-size: 24px;
  color: #20415b;
  font-family: "Noto-Bold";
  text-align: center;
  margin-bottom: 25px;
}

/* subscription request section end  */
section.client-review {
  background-color: #f4f4f4;
  background-image: url(../img/Feature/texture-ClientsReview.png);
  text-align: center;
  padding-bottom: 60px;
  padding-top: 60px;
}
section.client-review .title {
  font-size: 20px;
  line-height: 34px;
  font-family: "Noto-Regular";
  color: #20415b;
  padding-bottom: 12px;
}
section.client-review .subtitle {
  font-size: 40px;
  line-height: 58px;
  color: #20415b;
  font-family: "Noto-Regular";
  padding-bottom: 28px;
}
section.client-review .subtitle span {
  font-family: "Noto-Bold";
}
section.client-review .body .container .row .col-sm-12 .review-card {
  background-color: #ffffff;
  border: 0.5px solid #afafaf;
  border-radius: 9px;
  padding: 70px 20px 30px;
  margin-top: 50px;
}
section.client-review .body .container .row .col-sm-12 .review-card .title {
  font-size: 24px;
  line-height: 1.5;
  color: #20415b;
  font-family: "Noto-Regular";
  text-align: left;
  position: relative;
}
section.client-review
  .body
  .container
  .row
  .col-sm-12
  .review-card
  .title::after {
  content: url(../img/Feature/Qourt.png);
  position: absolute;
  top: -50px;
  left: 0;
}
section.client-review
  .body
  .container
  .row
  .col-sm-12
  .review-card
  .review-name {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}
section.client-review
  .body
  .container
  .row
  .col-sm-12
  .review-card
  .review-name
  .left
  img {
  width: 31px;
  height: 31px;
  border-radius: 50%;
}
section.client-review
  .body
  .container
  .row
  .col-sm-12
  .review-card
  .review-name
  .right {
  text-align: left;
}
section.client-review
  .body
  .container
  .row
  .col-sm-12
  .review-card
  .review-name
  .right
  .name {
  font-size: 14px;
  line-height: 21px;
  color: #20415b;
  font-family: "Noto-Bold";
}
section.client-review
  .body
  .container
  .row
  .col-sm-12
  .review-card
  .review-name
  .right
  .designation {
  font-size: 12px;
  line-height: 21px;
  color: #20415b;
  font-family: "Noto-Regular";
}
section.get-started {
  background-color: #48637d;
  padding-top: 40px;
  padding-bottom: 40px;
}
section.get-started .container .row {
  display: flex;
  align-items: flex-end;
}
section.get-started .container .row .col-sm-12 {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
section.get-started .container .row .col-sm-12 .title {
  font-size: 20px;
  line-height: normal;
  font-family: "Noto-Regular";
  color: #ffffff;
  padding-bottom: 3px;
}
section.get-started .container .row .col-sm-12 .subtitle {
  font-size: 40px;
  line-height: 58px;
  color: #ffffff;
  font-family: "Noto-Regular";
  padding-bottom: 12px;
}
section.get-started .get_started_label {
  width: 74px;
  height: auto;
  max-height: 12px;
}
section.get-started .container .row .col-sm-12 .subtitle span {
  font-family: "Noto-Bold";
}
section.get-started .container .row .col-sm-12 .text {
  font-family: "Noto-Regular";
  font-size: 14px;
  line-height: 21px;
  color: #f2f2f2;
  padding-top: 25px;
}
section.get-started .container .row .col-sm-12 .text ul {
  padding-left: 0;
  padding-top: 15px;
}
section.get-started .container .row .col-sm-12 .text ul li {
  list-style: none;
  font-size: 14px;
  line-height: 24px;
  align-items: center;
  color: #fff;
}
section.get-started .container .row .col-sm-12 .text ul li img {
  margin-top: -5px;
}
/* section.get-started .container .row .col-sm-12 .buttons {
  padding-top: 30px;
}
section.get-started .container .row .col-sm-12 .buttons a {
  width: 140px;
  text-decoration: none;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  font-family: "Noto-Regular";
  color: #20415b;
  overflow: hidden;
  z-index: 12;
  position: relative;
  box-shadow: none;
  border-radius: 25px;
}
section.get-started .container .row .col-sm-12 .buttons a:hover {
  color: #20415b;
}
section.get-started .container .row .col-sm-12 .buttons a::after {
  content: "";
  position: absolute;
  top: -15px;
  left: -22px;
  width: 200px;
  height: 200px;
  background-color: #d9d6d6;
  border-radius: 50%;
  transform: translate(-10px, -70px) scale(0.1);
  opacity: 0;
  z-index: -1;
  transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}
section.get-started .container .row .col-sm-12 .buttons a:hover::after {
  opacity: 1;
  transform-origin: 100px 100px;
  transform: scale(1) translate(-10px, -70px);
} */
/* updated */
section.get-started .subscribe_btn {
  padding: 0;
  margin: 0;
  width: 160px;
  height: 40px;
  background-color: #d9d9d9;
  color: #20415b;
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  font-family: "Grotex-Medium";
  overflow: hidden;
  z-index: 12;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: none;
  border: none;
  /* outline: none; */
  transition: background 0.5s ease;
  /* border: 4px solid rgba(255, 255, 255, 0.18); */
  outline: 4px solid rgba(255, 255, 255, 0.18);
  margin-top: 30px;
}

section.get-started .subscribe_btn img {
  position: relative;
  z-index: 1;
}

section.get-started .subscribe_btn_label {
  position: relative;
  font-family: "Noto-Regular";

  transition: color 0.3s ease-out;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  transition: gap 0.5s ease;
}
section.get-started .subscribe_btn_label img {
  width: 10px;
  height: 14px;
}

section.get-started .subscribe_btn_bg {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 225%;
  min-height: 225%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #e5eef1;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease-in-out;
}

section.get-started .subscribe_btn:hover .subscribe_btn_label {
  gap: 20px;
}

section.get-started .subscribe_btn.hover-active .subscribe_btn_bg {
  transform: translate(-50%, -50%) scale(1);
}

/* updated */
section.get-started .container .row .col-sm-12 .right-card {
  /* background-color: #eef2f5; */
  /* border-radius: 14px;
  padding: 22px; */
}
section.get-started .container .row .col-sm-12 .right-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
section.get-started .container .row .col-sm-12 .right-card img:hover {
  transform: scale(1.05);
}
section.get-started .container .row .col-sm-12 .right-card .header .sec {
  display: flex;
  margin-bottom: 22px;
}
section.get-started .container .row .col-sm-12 .right-card .header .sec .left {
  width: 50%;
  position: relative;
  margin-right: 22px;
  border-radius: 8px;
}
section.get-started
  .container
  .row
  .col-sm-12
  .right-card
  .header
  .sec
  .left
  img {
  width: 100%;
}
section.get-started
  .container
  .row
  .col-sm-12
  .right-card
  .header
  .sec
  .left
  .layer {
  background: transparent
    linear-gradient(
      180deg,
      rgba(74, 92, 135, 0.38) 0%,
      rgba(34, 54, 97, 0.38) 78%,
      rgba(3, 24, 67, 0.38) 100%
    )
    0% 0% no-repeat padding-box;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 10px;
}
section.get-started
  .container
  .row
  .col-sm-12
  .right-card
  .header
  .sec
  .left
  .layer
  .title {
  font-size: 10px;
  line-height: 8px;
  font-family: "Noto-Bold";
  color: #ffffff;
}
section.get-started
  .container
  .row
  .col-sm-12
  .right-card
  .header
  .sec
  .left
  .layer
  .text {
  font-size: 10px;
  line-height: 15px;
  font-family: "Noto-Regular";
  color: #ffffff;
}
section.get-started .container .row .col-sm-12 .right-card .header .sec .right {
  width: 50%;
  position: relative;
  border-radius: 8px;
}
section.get-started
  .container
  .row
  .col-sm-12
  .right-card
  .header
  .sec
  .right
  img {
  width: 100%;
}
section.get-started
  .container
  .row
  .col-sm-12
  .right-card
  .header
  .sec
  .right
  .layer {
  background: transparent
    linear-gradient(
      180deg,
      rgba(74, 92, 135, 0.38) 0%,
      rgba(34, 54, 97, 0.38) 78%,
      rgba(3, 24, 67, 0.38) 100%
    )
    0% 0% no-repeat padding-box;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 10px;
}
section.get-started
  .container
  .row
  .col-sm-12
  .right-card
  .header
  .sec
  .right
  .layer
  .title {
  font-size: 10px;
  line-height: 8px;
  font-family: "Noto-Bold";
  color: #ffffff;
}
section.get-started
  .container
  .row
  .col-sm-12
  .right-card
  .header
  .sec
  .right
  .layer
  .text {
  font-size: 10px;
  line-height: 15px;
  font-family: "Noto-Regular";
  color: #ffffff;
}
section.get-started
  .container
  .row
  .col-sm-12
  .right-card
  .header
  .sec-full
  .full {
  position: relative;
}
section.get-started
  .container
  .row
  .col-sm-12
  .right-card
  .header
  .sec-full
  .full
  img {
  width: 100%;
  height: 100%;
}
section.get-started
  .container
  .row
  .col-sm-12
  .right-card
  .header
  .sec-full
  .full
  .layer {
  background: transparent
    linear-gradient(
      180deg,
      rgba(74, 92, 135, 0.38) 0%,
      rgba(34, 54, 97, 0.38) 78%,
      rgba(3, 24, 67, 0.38) 100%
    )
    0% 0% no-repeat padding-box;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  padding: 0 10px;
}
section.get-started
  .container
  .row
  .col-sm-12
  .right-card
  .header
  .sec-full
  .full
  .layer
  .title {
  font-size: 10px;
  line-height: 8px;
  font-family: "Noto-Bold";
  color: #ffffff;
}
section.get-started
  .container
  .row
  .col-sm-12
  .right-card
  .header
  .sec-full
  .full
  .layer
  .text {
  font-size: 10px;
  line-height: 15px;
  font-family: "Noto-Regular";
  color: #ffffff;
}
section.get-started .container .row .col-sm-12 .right-card .title {
  font-family: "Noto-Bold";
  font-size: 20px;
  line-height: 25px;
  color: #20415b;
  padding-top: 25px;
}
section.get-started .container .row .col-sm-12 .right-card .body {
  font-family: "Noto-Regular";
  font-size: 16px;
  line-height: 1.5;
  color: #20415b;
}
section.contact-faq {
  padding-bottom: 70px;
  padding-top: 70px;
  background-color: #eaebee;
}
section.contact-faq .container .row .col-sm-12 .faq-card {
  background-color: #eef2f5;
  padding-top: 56px;
  padding-bottom: 40px;
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 14px;
}
section.contact-faq .container .row .col-sm-12 .faq-card .title {
  font-size: 14px;
  line-height: normal;
  font-family: "Noto-Regular";
  color: #20415b;
  padding-bottom: 12px;
}
section.contact-faq .container .row .col-sm-12 .faq-card .subtitle {
  font-size: 24px;
  line-height: normal;
  color: #20415b;
  font-family: "Noto-Regular";
  padding-bottom: 18px;
}
section.contact-faq .container .row .col-sm-12 .faq-card .subtitle span {
  font-family: "Noto-Bold";
}
section.contact-faq .container .row .col-sm-12 .faq-card .line {
  padding-bottom: 25px;
}
section.contact-faq
  .container
  .row
  .col-sm-12
  .faq-card
  .faq-body
  #accordion
  .card {
  background-color: #e5e8eb;
  box-shadow: 0px 2px 3px rgba(7, 19, 71, 0.4);
  margin-bottom: 13px;
}
section.contact-faq
  .container
  .row
  .col-sm-12
  .faq-card
  .faq-body
  #accordion
  .card
  .card-header {
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.contact-faq
  .container
  .row
  .col-sm-12
  .faq-card
  .faq-body
  #accordion
  .card
  .card-header
  h5
  button {
  color: #20415b;
  font-size: 16px;
  line-height: 19px;
  font-family: "Noto-Bold";
  text-decoration: none;
  text-align: left;
  padding-left: 0;
}
section.contact-faq
  .container
  .row
  .col-sm-12
  .faq-card
  .faq-body
  #accordion
  .card
  .card-header
  img {
  width: 18px;
  object-fit: cover;
  cursor: pointer;
}
section.contact-faq
  .container
  .row
  .col-sm-12
  .faq-card
  .faq-body
  #accordion
  .card
  .accordion-content
  .card-body {
  background-color: #e5e8eb;
  font-family: "Noto-Regular";
  font-size: 16px;
  line-height: 24px;
  color: #20415b;
}
section.contact-faq .container .row .col-sm-12 .contact-card {
  background-color: #4c6a81;
  padding-top: 56px;
  padding-bottom: 40px;
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 14px;
}
section.contact-faq .container .row .col-sm-12 .contact-card .title {
  font-size: 14px;
  line-height: normal;
  font-family: "Noto-Regular";
  color: #ffffff;
  margin-left: 4px;
  padding-bottom: 12px;
}
section.contact-faq .container .row .col-sm-12 .contact-card .subtitle {
  font-size: 24px;
  line-height: normal;
  color: #ffffff;
  font-family: "Grotex-Regular";
  margin-left: 4px;
  padding-bottom: 18px;
}
section.contact-faq .container .row .col-sm-12 .contact-card .subtitle span {
  font-family: "Noto-Bold";
}
section.contact-faq .container .row .col-sm-12 .contact-card .line {
  padding-bottom: 25px;
  margin-left: 4px;
}
section.contact-faq .container .row .col-sm-12 .contact-card form .f-row {
  display: flex;
}
section.contact-faq .container .row .col-sm-12 .contact-card form .f-row input {
  width: 50%;
  background-color: #637d91;
  border: none;
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 10px;
  color: #e0e5e9;
}
section.contact-faq
  .container
  .row
  .col-sm-12
  .contact-card
  form
  .f-row
  input::placeholder {
  color: #ffffff;
  font-family: "Noto-Medium";
  color: #e0e5e9;
}
section.contact-faq
  .container
  .row
  .col-sm-12
  .contact-card
  form
  .f-row
  textarea {
  width: 100%;
  background-color: #637d91;
  border: none;
  margin-left: 5px;
  margin-right: 5px;
  height: 130px;
  color: #e0e5e9;
}
section.contact-faq
  .container
  .row
  .col-sm-12
  .contact-card
  form
  .f-row
  textarea::placeholder {
  color: #ffffff;
  font-family: "Noto-Medium";
  color: #e0e5e9;
}
section.contact-faq .container .row .col-sm-12 .contact-card form .buttons {
  padding-top: 47px;
  padding-bottom: 56px;
}
/* section.contact-faq
  .container
  .row
  .col-sm-12
  .contact-card
  form
  .buttons
  button {
  width: 135px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 6px rgba(58, 78, 177, 0.4);
  background-color: #ffffff;
  font-size: 12px;
  line-height: 24px;
  font-family: "Noto-Regular";
  color: #20415b;
  border: none;
  margin-left: 5px;
  overflow: hidden;
  z-index: 12;
  position: relative;
  box-shadow: none;
  border-radius: 25px;
  font-weight: 600;
}
section.contact-faq
  .container
  .row
  .col-sm-12
  .contact-card
  form
  .buttons
  button:hover {
  color: #20415b;
}
section.contact-faq
  .container
  .row
  .col-sm-12
  .contact-card
  form
  .buttons
  button::after {
  content: "";
  position: absolute;
  top: -15px;
  left: -22px;
  width: 200px;
  height: 200px;
  background-color: #d9d6d6;
  border-radius: 50%;
  transform: translate(-10px, -70px) scale(0.1);
  opacity: 0;
  z-index: -1;
  transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}
section.contact-faq
  .container
  .row
  .col-sm-12
  .contact-card
  form
  .buttons
  button:hover::after {
  opacity: 1;
  transform-origin: 100px 100px;
  transform: scale(1) translate(-10px, -70px);
} */
/* updated */
section.contact-faq
  .container
  .row
  .col-sm-12
  .contact-card
  form
  .buttons
  .subscribe_btn {
  padding: 0;
  margin: 0;
  width: 140px;
  height: 40px;
  background-color: #d9d9d9;
  color: #20415b;
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  font-family: "Grotex-Medium";
  overflow: hidden;
  z-index: 12;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: none;
  border: none;
  /* outline: none; */
  transition: background 0.5s ease;
  /* border: 4px solid rgba(255, 255, 255, 0.18); */
  outline: 4px solid rgba(255, 255, 255, 0.18);
}

section.contact-faq
  .container
  .row
  .col-sm-12
  .contact-card
  form
  .buttons
  .subscribe_btn
  img {
  position: relative;
  z-index: 1;
}

section.contact-faq
  .container
  .row
  .col-sm-12
  .contact-card
  form
  .buttons
  .subscribe_btn_label {
  position: relative;
  font-family: "Noto-Regular";

  transition: color 0.3s ease-out;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  transition: gap 0.5s ease;
}
section.contact-faq
  .container
  .row
  .col-sm-12
  .contact-card
  form
  .buttons
  .subscribe_btn_label
  img {
  width: 10px;
  height: 14px;
}

section.contact-faq
  .container
  .row
  .col-sm-12
  .contact-card
  form
  .buttons
  .subscribe_btn_bg {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 225%;
  min-height: 225%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #e5eef1;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease-in-out;
}

section.contact-faq
  .container
  .row
  .col-sm-12
  .contact-card
  form
  .buttons
  .subscribe_btn:hover
  .subscribe_btn_label {
  gap: 20px;
}

section.contact-faq
  .container
  .row
  .col-sm-12
  .contact-card
  form
  .buttons
  .subscribe_btn.hover-active
  .subscribe_btn_bg {
  transform: translate(-50%, -50%) scale(1);
}

/* updated */
section.footer {
  background-color: #224560;
  padding-top: 100px;
  padding-bottom: 100px;
}
section.footer .container .row .col-sm-12 .logo {
  margin-top: -25px;
  margin-left: -10px;
}
section.footer .container .row .col-sm-12 .logo img {
  height: 48px;
}
section.footer .container .row .col-sm-12 .text {
  font-size: 14px;
  line-height: 21px;
  font-family: "Noto-Light";
  color: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
}
section.footer .container .row .col-sm-12 .follow-up .title {
  font-size: 18px;
  line-height: 34px;
  font-family: "Noto-Bold";
  color: #ffffff;
  padding-bottom: 15px;
}
section.footer .container .row .col-sm-12 .follow-up .social-links {
  display: flex;
}
section.footer .container .row .col-sm-12 .follow-up .social-links .sec {
  padding-right: 25px;
}
section.footer .container .row .col-sm-12 .follow-up .social-links .sec a img {
  transition: transform 0.3s ease;
}
section.footer
  .container
  .row
  .col-sm-12
  .follow-up
  .social-links
  .sec
  a
  img:hover {
  transform: scale(1.15);
}
section.footer .container .row .col-sm-12 .resource {
  padding: 0 100px;
}
section.footer .container .row .col-sm-12 .resource .title {
  font-size: 18px;
  line-height: 34px;
  font-family: "Noto-Bold";
  color: #ffffff;
  padding-bottom: 22px;
}
section.footer .container .row .col-sm-12 .resource .links ul {
  padding-left: 0;
}
section.footer .container .row .col-sm-12 .resource .links ul li {
  list-style: none;
  padding-bottom: 10px;
}
section.footer .container .row .col-sm-12 .resource .links ul li a {
  font-size: 14px;
  text-decoration: none;
  line-height: 24px;
  font-family: "Noto-Regular";
  color: #ffffff;
}
section.footer .container .row .col-sm-12 .contact-info {
  flex-grow: 2;
}
section.footer .container .row .col-sm-12 .contact-info .title {
  font-size: 18px;
  line-height: 34px;
  font-family: "Noto-Bold";
  color: #ffffff;
  padding-bottom: 12px;
}
section.footer .container .row .col-sm-12 .contact-info .sec {
  display: flex !important;
  align-items: center;
  border-bottom: 1px solid #f2f2f2;
  padding: 8px 0;
}
section.footer .container .row .col-sm-12 .contact-info .sec .icon img {
  padding-right: 10px;
}
section.footer .container .row .col-sm-12 .contact-info .sec .text {
  font-size: 12px;
  line-height: 30px;
  font-family: "Noto-Regular";
  color: #ffffff;
  padding-top: 5px;
  padding-bottom: 0;
  display: flex !important;
  align-items: center !important;
}
section.footer .container .row .col-sm-12 .contact-info .sec:nth-child(4) {
  border: none;
}
section.footer .container .row .col-sm-12 .copy-right {
  transform: rotate(-90deg);
  margin: auto;
  color: #ffffff;
  font-size: 12px;
  padding: 0 0 0 50px;
}
section.footer .container .row .col-sm-12:nth-child(3) {
  display: flex;
}
section.last-footer {
  width: 100%;
  height: 60px;
  background-color: #285374;
  font-size: 16px;
  line-height: 50px;
  font-family: "Noto-Regular";
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

section.footer .resource .links ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding-bottom: 1.5px;
}

section.footer .resource .links ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: #fff;
  transition: width 0.3s ease-in-out;
}

section.footer .resource .links ul li a:hover::after {
  width: 100%;
}

/*  */

.slick-dots {
  bottom: -40px;
}

.slick-dots li button:before {
  font-size: 14px !important;
  color: #4c6a81 !important;
  opacity: 1;
}

.slick-dots .slick-active button:before {
  font-size: 20px !important;
  color: white !important;
  border: 1px solid #20415b;
  border-radius: 50%;
}

@media screen and (max-width: 1280px) {
  section.header .layer .title {
    font-size: 49px;
    line-height: 72px;
  }
  section.header .layer .subtitle {
    font-size: 25px;
    line-height: 37px;
  }
  section.about-us {
    padding-top: 100px;
  }
  section.about-us .container .row .col-sm-12 .title {
    font-size: 19px;
    line-height: 32px;
  }
  section.why-choose-us {
    padding: 57px 6px;
  }
  section.why-choose-us .title {
    font-size: 29px;
    line-height: 42px;
  }
  section.why-choose-us .subtitle {
    font-size: 38px;
    line-height: 55px;
  }
  section.why-choose-us .text {
    padding-top: 0px;
    padding-bottom: 20px;
    padding-left: 7px;
    padding-right: 7px;
  }
  section.why-choose-us .container .row .col-sm-12 .choose-card .right .title {
    font-size: 21px;
    line-height: 30px;
  }
  section.related-numbers {
    padding-top: 56px;
    padding-bottom: 42px;
  }
  section.related-numbers .container .row .col-sm-6 {
    padding-bottom: 25px;
    flex-basis: 50%;
  }
  section.related-numbers .container .row .col-sm-6 .number {
    font-size: 53px;
    line-height: 55px;
  }
  section.related-numbers .container .row .col-sm-6 .text {
    font-size: 21px;
    line-height: 55px;
  }
  section.features .container .row .col-sm-12 img.main {
    width: 100%;
  }
  section.features .container .row .col-sm-12 .title {
    font-size: 19px;
    line-height: 32px;
  }
  section.features .container .row .col-sm-12 .subtitle {
    font-size: 38px;
    line-height: 55px;
  }
  section.features .container .row .col-sm-12 .text {
    padding-bottom: 20px;
  }
  section.features .container .row .col-sm-12 .text .line-text {
    font-size: 12px;
    line-height: 24px;
  }
  section.features .container .row .col-sm-12 .text .line-text span img {
    padding-right: 10px;
  }
  section.subscribtion {
    padding-top: 105px;
    padding-bottom: 105px;
  }
  section.subscribtion .title {
    font-size: 19px;
    line-height: 32px;
  }
  section.subscribtion .subtitle {
    font-size: 38px;
    line-height: 55px;
  }
  section.subscribtion .body {
    padding-top: 47px;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card {
    margin-bottom: 10px;
    padding-bottom: 20px;
    padding-top: 20px;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card .title {
    font-size: 17px;
    line-height: 51px;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card .subtitle {
    font-size: 30px;
    line-height: 55px;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card .text {
    font-size: 14px;
    line-height: 38px;
    font-family: "Noto-Regular";
    color: #20415b;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card .buttons a {
    width: 200px;
  }
  section.subscribtion
    .body
    .container
    .row
    .col-sm-12
    .pur-card
    .buttons
    a.std {
    background-color: #436ea1;
    color: #ffffff;
  }
  section.subscribtion .body .container .row .col-sm-12:nth-child(2) {
    transform: scale(1);
  }
  section.client-review {
    padding-bottom: 94px;
  }
  section.client-review .title {
    font-size: 19px;
    line-height: 32px;
  }
  section.client-review .subtitle {
    font-size: 38px;
    line-height: 55px;
    text-align: center;
  }
  section.client-review .body .container .row .col-sm-12 .review-card {
    padding-bottom: 29px;
  }
  section.client-review .body .container .row .col-sm-12 .review-card .title {
    font-size: 25px;
  }
  section.client-review
    .body
    .container
    .row
    .col-sm-12
    .review-card
    .review-name
    .right
    .name {
    font-size: 12px;
    line-height: 20px;
  }
  section.get-started .container .row .col-sm-12 .title {
    font-size: 19px;
    line-height: 32px;
  }
  section.get-started .container .row .col-sm-12 .subtitle {
    font-size: 38px;
    line-height: 55px;
  }
  section.get-started .container .row .col-sm-12 .text {
    font-size: 12px;
  }
  section.get-started .container .row .col-sm-12 .text ul li {
    font-size: 12px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left {
    width: 100%;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left
    .layer {
    padding: 10px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left
    .layer
    .title {
    font-family: "Noto-Bold";
    color: #ffffff;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left
    .layer
    .text {
    font-size: 12px;
    line-height: 15px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .right {
    width: 100%;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .right
    .layer {
    padding: 10px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .right
    .layer
    .text {
    font-size: 12px;
    line-height: 15px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec-full
    .full
    .layer
    .text {
    font-size: 12px;
  }
  section.get-started .container .row .col-sm-12 .right-card .title {
    font-size: 19px;
    line-height: 20px;
  }
  section.get-started .container .row .col-sm-12 .right-card .body {
    font-size: 19px;
  }
  section.contact-faq {
    padding-bottom: 66px;
    padding-top: 66px;
  }
  section.contact-faq .container .row .col-sm-12 .faq-card .title {
    font-size: 12px;
  }
  section.contact-faq .container .row .col-sm-12 .faq-card .subtitle {
    font-size: 20px;
  }
  section.contact-faq
    .container
    .row
    .col-sm-12
    .faq-card
    .faq-body
    #accordion
    .card
    .card-header {
    border: none;
  }
  section.contact-faq
    .container
    .row
    .col-sm-12
    .faq-card
    .faq-body
    #accordion
    .card
    .accordion-content
    .card-body {
    font-size: 12px;
  }
  section.contact-faq .container .row .col-sm-12 .contact-card .title {
    font-size: 12px;
  }
  section.contact-faq .container .row .col-sm-12 .contact-card .subtitle {
    font-size: 20px;
  }
  section.contact-faq .container .row .col-sm-12 .contact-card .line {
    padding-bottom: 25px;
  }
  section.footer {
    padding-top: 94px;
    padding-bottom: 94px;
    padding-left: 20px;
    padding-right: 20px;
  }
  section.footer .container .row .col-sm-12 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 1200px) {
  section.header .layer .title {
    font-size: 46px;
    line-height: 67px;
  }
  section.header .layer .subtitle {
    font-size: 23px;
    line-height: 35px;
  }
  section.about-us {
    padding-top: 100px;
  }
  section.about-us .container .row .col-sm-12 .title {
    font-size: 18px;
    line-height: 30px;
  }
  section.why-choose-us {
    padding: 57px 6px;
  }
  section.why-choose-us .title {
    font-size: 27px;
    line-height: 39px;
  }
  section.why-choose-us .subtitle {
    font-size: 36px;
    line-height: 51px;
  }
  section.why-choose-us .text {
    padding-top: 0px;
    padding-bottom: 20px;
    padding-left: 7px;
    padding-right: 7px;
  }
  section.why-choose-us .container .row .col-sm-12 .choose-card .right .title {
    font-size: 20px;
    line-height: 29px;
  }
  section.related-numbers {
    padding-top: 52px;
    padding-bottom: 39px;
  }
  section.related-numbers .container .row .col-sm-6 {
    padding-bottom: 25px;
    flex-basis: 50%;
  }
  section.related-numbers .container .row .col-sm-6 .number {
    font-size: 50px;
    line-height: 51px;
  }
  section.related-numbers .container .row .col-sm-6 .text {
    font-size: 20px;
    line-height: 51px;
  }
  section.features .container .row .col-sm-12 img.main {
    width: 100%;
  }
  section.features .container .row .col-sm-12 .title {
    font-size: 18px;
    line-height: 30px;
  }
  section.features .container .row .col-sm-12 .subtitle {
    font-size: 36px;
    line-height: 51px;
  }
  section.features .container .row .col-sm-12 .text {
    padding-bottom: 20px;
  }
  section.features .container .row .col-sm-12 .text .line-text {
    font-size: 12px;
    line-height: 24px;
  }
  section.features .container .row .col-sm-12 .text .line-text span img {
    padding-right: 10px;
  }
  section.subscribtion {
    padding-top: 99px;
    padding-bottom: 98px;
  }
  section.subscribtion .title {
    font-size: 18px;
    line-height: 30px;
  }
  section.subscribtion .subtitle {
    font-size: 36px;
    line-height: 51px;
  }
  section.subscribtion .body {
    padding-top: 44px;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card {
    margin-bottom: 10px;
    padding-bottom: 20px;
    padding-top: 20px;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card .title {
    font-size: 16px;
    line-height: 48px;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card .subtitle {
    font-size: 29px;
    line-height: 51px;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card .text {
    font-size: 14px;
    line-height: 38px;
    font-family: "Noto-Regular";
    color: #20415b;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card .buttons a {
    width: 200px;
  }
  section.subscribtion
    .body
    .container
    .row
    .col-sm-12
    .pur-card
    .buttons
    a.std {
    background-color: #436ea1;
    color: #ffffff;
  }
  section.subscribtion .body .container .row .col-sm-12:nth-child(2) {
    transform: scale(1);
  }
  section.client-review {
    padding-bottom: 88px;
  }
  section.client-review .title {
    font-size: 18px;
    line-height: 30px;
  }
  section.client-review .subtitle {
    font-size: 36px;
    line-height: 51px;
    text-align: center;
  }
  section.client-review .body .container .row .col-sm-12 .review-card {
    padding-bottom: 27px;
  }
  section.client-review .body .container .row .col-sm-12 .review-card .title {
    font-size: 23px;
  }
  section.client-review
    .body
    .container
    .row
    .col-sm-12
    .review-card
    .review-name
    .right
    .name {
    font-size: 12px;
    line-height: 20px;
  }
  section.get-started .container .row .col-sm-12 .title {
    font-size: 18px;
    line-height: 30px;
  }
  section.get-started .container .row .col-sm-12 .subtitle {
    font-size: 36px;
    line-height: 51px;
  }
  section.get-started .container .row .col-sm-12 .text {
    font-size: 12px;
  }
  section.get-started .container .row .col-sm-12 .text ul li {
    font-size: 12px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left {
    width: 100%;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left
    .layer {
    padding: 10px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left
    .layer
    .title {
    font-family: "Noto-Bold";
    color: #ffffff;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left
    .layer
    .text {
    font-size: 12px;
    line-height: 15px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .right {
    width: 100%;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .right
    .layer {
    padding: 10px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .right
    .layer
    .text {
    font-size: 12px;
    line-height: 15px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec-full
    .full
    .layer
    .text {
    font-size: 12px;
  }
  section.get-started .container .row .col-sm-12 .right-card .title {
    font-size: 18px;
    line-height: 20px;
  }
  section.get-started .container .row .col-sm-12 .right-card .body {
    font-size: 18px;
  }
  section.contact-faq {
    padding-bottom: 62px;
    padding-top: 62px;
  }
  section.contact-faq .container .row .col-sm-12 .faq-card .title {
    font-size: 12px;
  }
  section.contact-faq .container .row .col-sm-12 .faq-card .subtitle {
    font-size: 20px;
  }
  section.contact-faq
    .container
    .row
    .col-sm-12
    .faq-card
    .faq-body
    #accordion
    .card
    .card-header {
    border: none;
  }
  section.contact-faq
    .container
    .row
    .col-sm-12
    .faq-card
    .faq-body
    #accordion
    .card
    .accordion-content
    .card-body {
    font-size: 12px;
  }
  section.contact-faq .container .row .col-sm-12 .contact-card .title {
    font-size: 12px;
  }
  section.contact-faq .container .row .col-sm-12 .contact-card .subtitle {
    font-size: 20px;
  }
  section.contact-faq .container .row .col-sm-12 .contact-card .line {
    padding-bottom: 25px;
  }
  section.footer {
    padding-top: 88px;
    padding-bottom: 88px;
    padding-left: 20px;
    padding-right: 20px;
  }
  section.footer .container .row .col-sm-12 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 1080px) {
  .applied_plan_info_wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .applied_info_box {
    width: 100%;
  }
  .applied_plan_info_wrapper .waiting {
    padding-left: 0px;
  }
  .applied_plan_info_wrapper .waiting button {
    margin-left: 0px;
    padding-left: 0px;
  }
  section.header .layer .title {
    font-size: 42px;
    line-height: 61px;
  }
  section.header .layer .subtitle {
    font-size: 21px;
    line-height: 31px;
  }
  section.about-us {
    padding-top: 100px;
  }
  section.about-us .container .row .col-sm-12 .title {
    font-size: 16px;
    line-height: 27px;
  }
  section.why-choose-us {
    padding: 57px 6px;
  }
  section.why-choose-us .title {
    font-size: 24px;
    line-height: 35px;
  }
  section.why-choose-us .subtitle {
    font-size: 32px;
    line-height: 46px;
  }
  section.why-choose-us .text {
    padding-top: 0px;
    padding-bottom: 20px;
    padding-left: 7px;
    padding-right: 7px;
  }
  section.why-choose-us .container .row .col-sm-12 .choose-card .right .title {
    font-size: 18px;
    line-height: 26px;
  }
  section.related-numbers {
    padding-top: 47px;
    padding-bottom: 35px;
  }
  section.related-numbers .container .row .col-sm-6 {
    padding-bottom: 25px;
    flex-basis: 50%;
  }
  section.related-numbers .container .row .col-sm-6 .number {
    font-size: 45px;
    line-height: 46px;
  }
  section.related-numbers .container .row .col-sm-6 .text {
    font-size: 18px;
    line-height: 46px;
  }
  section.features .container .row .col-sm-12 img.main {
    width: 100%;
  }
  section.features .container .row .col-sm-12 .title {
    font-size: 16px;
    line-height: 27px;
  }
  section.features .container .row .col-sm-12 .subtitle {
    font-size: 32px;
    line-height: 46px;
  }
  section.features .container .row .col-sm-12 .text {
    padding-bottom: 20px;
  }
  section.features .container .row .col-sm-12 .text .line-text {
    font-size: 12px;
    line-height: 24px;
  }
  section.features .container .row .col-sm-12 .text .line-text span img {
    padding-right: 10px;
  }
  section.subscribtion {
    padding-top: 89px;
    padding-bottom: 88px;
  }
  section.subscribtion .title {
    font-size: 16px;
    line-height: 27px;
  }
  section.subscribtion .subtitle {
    font-size: 32px;
    line-height: 46px;
  }
  section.subscribtion .body {
    padding-top: 40px;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card {
    margin-bottom: 10px;
    padding-bottom: 20px;
    padding-top: 20px;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card .title {
    font-size: 15px;
    line-height: 43px;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card .subtitle {
    font-size: 26px;
    line-height: 46px;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card .text {
    font-size: 14px;
    line-height: 38px;
    font-family: "Noto-Regular";
    color: #20415b;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card .buttons a {
    width: 200px;
  }
  section.subscribtion
    .body
    .container
    .row
    .col-sm-12
    .pur-card
    .buttons
    a.std {
    background-color: #436ea1;
    color: #ffffff;
  }
  section.subscribtion .body .container .row .col-sm-12:nth-child(2) {
    transform: scale(1);
  }
  section.client-review {
    padding-bottom: 80px;
  }
  section.client-review .title {
    font-size: 16px;
    line-height: 27px;
  }
  section.client-review .subtitle {
    font-size: 32px;
    line-height: 46px;
    text-align: center;
  }
  section.client-review .body .container .row .col-sm-12 .review-card {
    padding-bottom: 24px;
  }
  section.client-review .body .container .row .col-sm-12 .review-card .title {
    font-size: 21px;
  }
  section.client-review
    .body
    .container
    .row
    .col-sm-12
    .review-card
    .review-name
    .right
    .name {
    font-size: 12px;
    line-height: 20px;
  }
  section.get-started .container .row .col-sm-12 .title {
    font-size: 16px;
    line-height: 27px;
  }
  section.get-started .container .row .col-sm-12 .subtitle {
    font-size: 32px;
    line-height: 46px;
  }
  section.get-started .container .row .col-sm-12 .text {
    font-size: 12px;
  }
  section.get-started .container .row .col-sm-12 .text ul li {
    font-size: 12px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left {
    width: 100%;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left
    .layer {
    padding: 10px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left
    .layer
    .title {
    font-family: "Noto-Bold";
    color: #ffffff;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left
    .layer
    .text {
    font-size: 12px;
    line-height: 15px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .right {
    width: 100%;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .right
    .layer {
    padding: 10px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .right
    .layer
    .text {
    font-size: 12px;
    line-height: 15px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec-full
    .full
    .layer
    .text {
    font-size: 12px;
  }
  section.get-started .container .row .col-sm-12 .right-card .title {
    font-size: 16px;
    line-height: 20px;
  }
  section.get-started .container .row .col-sm-12 .right-card .body {
    font-size: 16px;
  }
  section.contact-faq {
    padding-bottom: 56px;
    padding-top: 56px;
  }
  section.contact-faq .container .row .col-sm-12 .faq-card .title {
    font-size: 12px;
  }
  section.contact-faq .container .row .col-sm-12 .faq-card .subtitle {
    font-size: 20px;
  }
  section.contact-faq
    .container
    .row
    .col-sm-12
    .faq-card
    .faq-body
    #accordion
    .card
    .card-header {
    border: none;
  }
  section.contact-faq
    .container
    .row
    .col-sm-12
    .faq-card
    .faq-body
    #accordion
    .card
    .accordion-content
    .card-body {
    font-size: 12px;
  }
  section.contact-faq .container .row .col-sm-12 .contact-card .title {
    font-size: 12px;
  }
  section.contact-faq .container .row .col-sm-12 .contact-card .subtitle {
    font-size: 20px;
  }
  section.contact-faq .container .row .col-sm-12 .contact-card .line {
    padding-bottom: 25px;
  }
  section.footer {
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 20px;
    padding-right: 20px;
  }
  section.footer .container .row .col-sm-12 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .subscription_cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  section.header .layer .title {
    font-size: 39px;
    line-height: 57px;
  }
  section.header .layer .subtitle {
    font-size: 20px;
    line-height: 30px;
  }
  section.about-us {
    padding-top: 100px;
  }
  section.about-us .container .row .col-sm-12 .title {
    font-size: 15px;
    line-height: 26px;
  }
  section.why-choose-us {
    padding: 57px 6px;
  }
  section.why-choose-us .title {
    font-size: 23px;
    line-height: 33px;
  }
  section.why-choose-us .subtitle {
    font-size: 30px;
    line-height: 44px;
  }
  section.why-choose-us .text {
    padding-top: 0px;
    padding-bottom: 20px;
    padding-left: 7px;
    padding-right: 7px;
  }
  section.why-choose-us .container .row .col-sm-12 .choose-card .right .title {
    font-size: 17px;
    line-height: 24px;
  }
  section.related-numbers {
    padding-top: 45px;
    padding-bottom: 33px;
  }
  section.related-numbers .container .row .col-sm-6 {
    padding-bottom: 25px;
    flex-basis: 50%;
  }
  section.related-numbers .container .row .col-sm-6 .number {
    font-size: 42px;
    line-height: 44px;
  }
  section.related-numbers .container .row .col-sm-6 .text {
    font-size: 17px;
    line-height: 44px;
  }
  section.features .container .row .col-sm-12 img.main {
    width: 100%;
  }
  section.features .container .row .col-sm-12 .title {
    font-size: 15px;
    line-height: 26px;
  }
  section.features .container .row .col-sm-12 .subtitle {
    font-size: 30px;
    line-height: 44px;
  }
  section.features .container .row .col-sm-12 .text {
    padding-bottom: 20px;
  }
  section.features .container .row .col-sm-12 .text .line-text {
    font-size: 12px;
    line-height: 24px;
  }
  section.features .container .row .col-sm-12 .text .line-text span img {
    padding-right: 10px;
  }
  section.subscribtion {
    padding-top: 84px;
    padding-bottom: 84px;
  }
  section.subscribtion .title {
    font-size: 15px;
    line-height: 26px;
  }
  section.subscribtion .subtitle {
    font-size: 30px;
    line-height: 44px;
  }
  section.subscribtion .body {
    padding-top: 38px;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card {
    margin-bottom: 10px;
    padding-bottom: 20px;
    padding-top: 20px;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card .title {
    font-size: 14px;
    line-height: 41px;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card .subtitle {
    font-size: 24px;
    line-height: 44px;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card .text {
    font-size: 14px;
    line-height: 38px;
    font-family: "Noto-Regular";
    color: #20415b;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card .buttons a {
    width: 200px;
  }
  section.subscribtion
    .body
    .container
    .row
    .col-sm-12
    .pur-card
    .buttons
    a.std {
    background-color: #436ea1;
    color: #ffffff;
  }
  section.subscribtion .body .container .row .col-sm-12:nth-child(2) {
    transform: scale(1);
  }
  section.client-review {
    padding-bottom: 75px;
  }
  section.client-review .title {
    font-size: 15px;
    line-height: 26px;
  }
  section.client-review .subtitle {
    font-size: 30px;
    line-height: 44px;
    text-align: center;
  }
  section.client-review .body .container .row .col-sm-12 .review-card {
    padding-bottom: 23px;
  }
  section.client-review .body .container .row .col-sm-12 .review-card .title {
    font-size: 20px;
  }
  section.client-review
    .body
    .container
    .row
    .col-sm-12
    .review-card
    .review-name
    .right
    .name {
    font-size: 12px;
    line-height: 20px;
  }
  section.get-started .container .row .col-sm-12 .title {
    font-size: 15px;
    line-height: 26px;
  }
  section.get-started .container .row .col-sm-12 .subtitle {
    font-size: 30px;
    line-height: 44px;
  }
  section.get-started .container .row .col-sm-12 .text {
    font-size: 12px;
  }
  section.get-started .container .row .col-sm-12 .text ul li {
    font-size: 12px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left {
    width: 100%;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left
    .layer {
    padding: 10px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left
    .layer
    .title {
    font-family: "Noto-Bold";
    color: #ffffff;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left
    .layer
    .text {
    font-size: 12px;
    line-height: 15px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .right {
    width: 100%;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .right
    .layer {
    padding: 10px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .right
    .layer
    .text {
    font-size: 12px;
    line-height: 15px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec-full
    .full
    .layer
    .text {
    font-size: 12px;
  }
  section.get-started .container .row .col-sm-12 .right-card .title {
    font-size: 15px;
    line-height: 20px;
  }
  section.get-started .container .row .col-sm-12 .right-card .body {
    font-size: 15px;
  }
  section.contact-faq {
    padding-bottom: 53px;
    padding-top: 53px;
  }
  section.contact-faq .container .row .col-sm-12 .faq-card .title {
    font-size: 12px;
  }
  section.contact-faq .container .row .col-sm-12 .faq-card .subtitle {
    font-size: 20px;
  }
  section.contact-faq
    .container
    .row
    .col-sm-12
    .faq-card
    .faq-body
    #accordion
    .card
    .card-header {
    border: none;
  }
  section.contact-faq
    .container
    .row
    .col-sm-12
    .faq-card
    .faq-body
    #accordion
    .card
    .accordion-content
    .card-body {
    font-size: 12px;
  }
  section.contact-faq .container .row .col-sm-12 .contact-card .title {
    font-size: 12px;
  }
  section.contact-faq .container .row .col-sm-12 .contact-card .subtitle {
    font-size: 20px;
  }
  section.contact-faq .container .row .col-sm-12 .contact-card .line {
    padding-bottom: 25px;
  }
  section.footer {
    padding-top: 75px;
    padding-bottom: 75px;
    padding-left: 20px;
    padding-right: 20px;
  }
  section.footer .container .row .col-sm-12 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 991px) {
  section.related-numbers .container .row .col-sm-6 .number_wrapper h6 {
    font-size: 35px;
  }
  section.header .layer .text {
    font-size: 16px;
  }
  .navbar {
    height: auto;
    padding-left: 20px;
    padding-right: 12px;
  }
  .navbar .navbar-collapse .navbar-nav:first-child {
    background: #e9e9ed;
    border-radius: 5px;
    margin: 20px;
    padding: 15px 0;
  }
  .navbar .navbar-collapse .navbar-nav.mx-auto {
    text-align: center;
    margin-right: 0px !important;
  }
  .navbar .navbar-collapse .navbar-nav.mx-auto li a {
    text-decoration: none;
    padding-left: 15px;
    padding-right: 15px;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    color: #20415b;
    font-size: 16px;
    line-height: 24px;
    font-family: "Noto-Regular";
    text-align: center;
    font-weight: 600;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.login {
    background-color: #1862ab;
    color: #ffffff;
    margin: 0 auto;
    width: 100%;
    border-radius: 3px;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link.registration {
    color: #ffffff;
    background-color: #20415b;
    margin: 10px auto;
    width: 100%;
    margin-bottom: 25px;
    border-radius: 3px;
  }
  section.header .layer .title {
    font-size: 42px;
    line-height: 63px;
  }
  section.header .layer .subtitle {
    font-size: 22px;
  }
  section.about-us {
    padding-top: 100px;
  }
  section.about-us .container .row .image {
    display: none;
  }
  section.about-us .container .row .col-sm-12 .title {
    font-size: 17px;
    text-align: center;
    padding-bottom: 10px;
  }
  section.about-us .container .row .col-sm-12 .subtitle {
    font-size: 30px;
    line-height: 44px;
    text-align: center;
  }
  section.about-us .container .row .col-sm-12 .icon-line {
    margin: auto;
  }
  section.about-us .container .row .col-sm-12 .icon-line .about-title-icon-sm {
    display: block;
    height: 13px;
    width: 128px;
    margin-top: -10px;
    margin-bottom: 10px;
  }
  section.about-us .container .row .col-sm-12 .icon-line .about-title-icon-lg {
    display: none;
  }
  section.about-us .container .row .col-sm-12 .text {
    font-size: 16px;
    line-height: 23px;
    padding-top: 20px;
    padding-bottom: 0px;
    text-align: center;
  }
  section.about-us .container .row .col-sm-12 .more {
    margin: 30px auto 20px;
  }
  section.about-us .container .row .col-sm-12 .hidden-about-image {
    display: block;
    height: 380px;
    width: auto;
  }
  section.about-us .container .row .col-sm-12 .hidden-about-image img {
    height: 350px;
    margin: 30px 0 20px;
    width: 100%;
  }
  section.why-choose-us {
    padding: 57px 6px;
  }
  section.why-choose-us .title {
    font-size: 22px;
    line-height: 32px;
  }
  section.why-choose-us .subtitle {
    font-size: 30px;
    line-height: 43px;
  }
  section.why-choose-us .text {
    padding-top: 0px;
    padding-bottom: 20px;
    padding-left: 7px;
    padding-right: 7px;
  }
  section.why-choose-us .container .row .col-sm-12 .choose-card .right .title {
    font-size: 16px;
    line-height: 24px;
  }
  section.why-choose-us
    .container
    .row
    .col-sm-12
    .choose-card
    .right
    .body
    ul
    li
    span {
    font-size: 16px;
    line-height: 21px;
  }
  section.related-numbers {
    padding-top: 43px;
    padding-bottom: 32px;
  }
  section.related-numbers .container .row .col-sm-6 {
    padding-bottom: 25px;
    flex-basis: 50%;
  }
  section.related-numbers .container .row .col-sm-6 .number {
    font-size: 41px;
    line-height: 43px;
  }
  section.related-numbers .container .row .col-sm-6 .text {
    font-size: 16px;
    /* line-height: 43px; */
    line-height: 30px;
    margin: 0;
    margin-top: -5px;
  }
  section.features {
    padding: 70px 0;
  }
  section.features .container .row .col-sm-12 img.main {
    width: 100%;
  }
  section.features .container .row .col-sm-12 .title {
    font-size: 15px;
    line-height: 25px;
  }
  section.features .container .row .col-sm-12 .subtitle {
    font-size: 30px;
    line-height: 43px;
  }
  section.features .container .row .col-sm-12 .text {
    padding-bottom: 20px;
  }
  section.features .container .row .col-sm-12 .text .line-text {
    font-size: 16px;
    line-height: 24px;
  }

  section.features .container .row .col-sm-12 .text .line-text span img {
    padding-right: 10px;
  }
  section.features .container .row .col-sm-12 .buttons {
    margin-top: 25px;
  }
  section.subscribtion {
    padding-top: 82px;
    padding-bottom: 81px;
  }
  section.subscribtion .title {
    font-size: 15px;
    line-height: 25px;
  }
  section.subscribtion .subtitle {
    font-size: 30px;
    line-height: 43px;
  }
  section.subscribtion .body {
    padding-top: 37px;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card {
    margin-bottom: 10px;
    padding-bottom: 20px;
    padding-top: 20px;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card .title {
    font-size: 14px;
    line-height: 40px;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card .subtitle {
    font-size: 24px;
    line-height: 43px;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card .text {
    font-size: 14px;
    line-height: 38px;
    font-family: "Noto-Regular";
    color: #20415b;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card .buttons a {
    width: 200px;
  }
  section.subscribtion
    .body
    .container
    .row
    .col-sm-12
    .pur-card
    .buttons
    a.std {
    background-color: #436ea1;
    color: #ffffff;
  }
  section.subscribtion .body .container .row .col-sm-12:nth-child(2) {
    transform: scale(1);
  }
  section.client-review {
    padding-bottom: 73px;
  }
  section.client-review .title {
    font-size: 15px;
    line-height: 25px;
  }
  section.client-review .subtitle {
    font-size: 30px;
    line-height: 43px;
    text-align: center;
  }
  section.client-review .body .container .row .col-sm-12 .review-card {
    padding-bottom: 22px;
  }
  section.client-review .body .container .row .col-sm-12 .review-card .title {
    font-size: 19px;
  }
  section.client-review
    .body
    .container
    .row
    .col-sm-12
    .review-card
    .review-name
    .right
    .name {
    font-size: 12px;
    line-height: 20px;
  }
  section.get-started {
    padding-top: 70px;
    padding-bottom: 40px;
  }
  section.get-started .container .row .col-sm-12 .title {
    font-size: 15px;
    line-height: 25px;
  }
  section.get-started .container .row .col-sm-12 .subtitle {
    font-size: 30px;
    line-height: 43px;
  }
  section.get-started .container .row .col-sm-12 .text {
    font-size: 16px;
  }
  section.get-started .container .row .col-sm-12 .text ul li {
    font-size: 16px;
  }
  section.get-started .container .row .col-sm-12 .buttons {
    padding-top: 15px;
    padding-bottom: 40px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left {
    width: 100%;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left
    .layer {
    padding: 10px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left
    .layer
    .title {
    font-family: "Noto-Bold";
    color: #ffffff;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left
    .layer
    .text {
    font-size: 12px;
    line-height: 15px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .right {
    width: 100%;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .right
    .layer {
    padding: 10px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .right
    .layer
    .text {
    font-size: 12px;
    line-height: 15px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec-full
    .full
    .layer {
    padding-left: 10px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec-full
    .full
    .layer
    .text {
    font-size: 12px;
  }
  section.get-started .container .row .col-sm-12 .right-card .title {
    font-size: 15px;
    line-height: 20px;
  }
  section.get-started .container .row .get-started-content {
    margin-top: 40px;
  }
  section.get-started .container .row .col-sm-12 .right-card .body {
    font-size: 15px;
  }
  section.contact-faq {
    padding-bottom: 51px;
    padding-top: 51px;
  }
  section.contact-faq .container .row .col-sm-12 .faq-card .title {
    font-size: 12px;
  }
  section.contact-faq
    .container
    .row
    .col-sm-12
    .faq-card
    .faq-body
    #accordion
    .card
    .card-header {
    border: none;
  }
  section.contact-faq
    .container
    .row
    .col-sm-12
    .faq-card
    .faq-body
    #accordion
    .card
    .accordion-content
    .card-body {
    font-size: 16px;
    line-height: 23px;
  }
  section.contact-faq .container .row .col-sm-12 .contact-card .title {
    font-size: 12px;
  }
  section.contact-faq .container .row .col-sm-12 .contact-card .subtitle {
    font-size: 20px;
  }
  section.contact-faq .container .row .col-sm-12 .contact-card .line {
    padding-bottom: 25px;
  }
  section.footer {
    padding-top: 73px;
    padding-bottom: 73px;
    padding-left: 20px;
    padding-right: 20px;
  }
  section.footer .container .row .col-sm-12 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  section.footer .container .row .col-sm-12 .resource {
    text-align: center;
  }
  section.features .container .row .col-sm-12.pd {
    padding-top: 40px;
  }
  section.get-started .container .row {
    flex-direction: column-reverse;
  }
  section.footer .container .row .col-sm-12 .text {
    font-size: 16px;
    line-height: 23px;
  }
  section.footer .container .row .col-sm-12 .resource .links ul li a {
    font-size: 16px;
  }
  section.footer .container .row .col-sm-12 .contact-info .sec .text {
    font-size: 16px;
  }
  /* #subscription */
  .subscription_cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
    row-gap: 20px;
    margin-top: 0;
    padding-top: 0px;
  }
  .basic_plan {
    margin-top: 0px !important;
  }
  .subscription_cards .subscription_card {
    margin-top: 0px;
  }
  .subscription_cards_wrapper .choose_subscription_duration {
    margin-bottom: 45px;
  }
  .subscription_cards .professional_plan {
    height: 540px;
  }
  /* new applied subscription section code */
  .applied_plan_info_wrapper .applied_plan h4 {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .subscription_cards .subscription_card {
    width: 450px;
    min-width: 450px;
  }
  .applied_plan_info_wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .subscription_cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    column-gap: 0px;
    row-gap: 20px;
    justify-items: center;
  }
  .applied_info_box {
    width: 100%;
    gap: 7px;
  }
  .subscription_info_card h2 {
    font-size: 19px;
  }
  .applied_plan_info_wrapper .waiting {
    padding-left: 0px;
  }
  .applied_plan_info_wrapper .applied_plan h4 {
    font-size: 17px;
  }
  .applied_info_box h4 {
    font-size: 17px;
  }

  /*  */
  section.about-us {
    padding-top: 60px;
    padding-bottom: 30px;
  }
  section.about-us .container .row {
    flex-direction: column-reverse;
  }
  section.about-us .container .row .col-sm-12 .hidden-about-image {
    height: 290px;
    margin: auto;
  }
  section.about-us .container .row .col-sm-12 .hidden-about-image img {
    height: 250px;
    margin: 30px auto 20px;
    width: 100%;
  }
  section.why-choose-us {
    padding: 57px 6px;
  }
  section.why-choose-us .title {
    font-size: 17px;
    line-height: 25px;
  }
  section.why-choose-us .subtitle {
    font-size: 23px;
    line-height: 33px;
  }
  section.why-choose-us .text {
    padding-top: 0px;
    padding-bottom: 20px;
    padding-left: 7px;
    padding-right: 7px;
  }
  section.why-choose-us .container .row .col-sm-12 .choose-card {
    padding: 15px;
    margin-bottom: 15px;
  }
  section.why-choose-us .container .row .col-sm-12 .choose-card .right .title {
    font-size: 22px;
  }
  section.related-numbers {
    padding-top: 34px;
    padding-bottom: 25px;
  }
  section.related-numbers .container .row .col-sm-6 {
    padding-bottom: 25px;
    flex-basis: 50%;
  }
  section.related-numbers .container .row .col-sm-6 .number {
    font-size: 32px;
    line-height: 33px;
  }
  section.related-numbers .container .row .col-sm-6 .text {
    font-size: 13px;
    line-height: 33px;
  }
  section.features .container .row .col-sm-12.pd {
    padding-left: 20px;
  }
  section.features .container .row .col-sm-12 img.main {
    width: 100%;
  }
  section.features .container .row .col-sm-12 .title {
    padding-top: 20px;
    font-size: 17px;
  }
  section.features .container .row .col-sm-12 .subtitle {
    font-size: 23px;
  }
  section.features .container .row .col-sm-12 .text {
    padding-bottom: 20px;
  }
  section.features .container .row .col-sm-12 .text .line-text {
    font-size: 16px;
    line-height: 24px;
  }
  section.features .container .row .col-sm-12 .text .line-text span img {
    padding-right: 10px;
  }
  section.subscribtion {
    padding-top: 63px;
    padding-bottom: 63px;
  }
  section.subscribtion .title {
    font-size: 17px;
    padding-bottom: 5px;
  }
  section.subscribtion .subtitle {
    font-size: 23px;
  }
  section.subscribtion .body {
    padding-top: 29px;
  }
  section.subscribtion .body .container .row .col-sm-12 {
    margin-top: 20px;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card .title {
    font-size: 18px;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card .subtitle {
    font-size: 28px;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card .text {
    font-size: 14px;
    line-height: 38px;
    font-family: "Noto-Regular";
    color: #20415b;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card .buttons {
    margin-bottom: 20px;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card .buttons a {
    width: 200px;
  }
  section.subscribtion
    .body
    .container
    .row
    .col-sm-12
    .pur-card
    .buttons
    a.std {
    background-color: #436ea1;
    color: #ffffff;
  }
  section.subscribtion .body .container .row .col-sm-12:nth-child(2) {
    transform: scale(1);
  }
  section.client-review {
    padding-bottom: 57px;
  }
  section.client-review .title {
    font-size: 17px;
    text-align: center;
    padding-bottom: 0;
  }
  section.client-review .subtitle {
    font-size: 23px;
    text-align: center;
  }
  section.client-review .body .container .row .col-sm-12 .review-card {
    padding-bottom: 17px;
  }
  section.client-review .body .container .row .col-sm-12 .review-card .title {
    font-size: 15px;
  }
  section.client-review
    .body
    .container
    .row
    .col-sm-12
    .review-card
    .review-name
    .right
    .name {
    font-size: 12px;
    line-height: 20px;
  }
  section.get-started .container .row .col-sm-12 .title {
    font-size: 17px;
    padding-bottom: 5px;
  }
  section.get-started .container .row .col-sm-12 .subtitle {
    font-size: 23px;
    line-height: 33px;
  }
  section.get-started .container .row .col-sm-12 .text {
    font-size: 16px;
  }
  section.get-started .container .row .col-sm-12 .text ul li {
    font-size: 16px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left {
    width: 100%;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left
    .layer {
    padding: 10px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left
    .layer
    .title {
    font-family: "Noto-Bold";
    color: #ffffff;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left
    .layer
    .text {
    font-size: 12px;
    line-height: 15px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .right {
    width: 100%;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .right
    .layer {
    padding: 10px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .right
    .layer
    .text {
    font-size: 12px;
    line-height: 15px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec-full
    .full
    .layer
    .text {
    font-size: 12px;
  }
  section.get-started .container .row .col-sm-12 .right-card .title {
    font-size: 16px;
    padding-bottom: 10px;
  }
  section.get-started .container .row .col-sm-12 .right-card .body {
    font-size: 12px;
  }
  section.contact-faq {
    padding-bottom: 40px;
    padding-top: 40px;
  }
  section.contact-faq .container .row .col-sm-12 .faq-card .title {
    font-size: 12px;
  }
  section.contact-faq .container .row .col-sm-12 .faq-card .subtitle {
    font-size: 19px;
  }
  section.contact-faq
    .container
    .row
    .col-sm-12
    .faq-card
    .faq-body
    #accordion
    .card
    .card-header {
    border: none;
  }
  section.contact-faq
    .container
    .row
    .col-sm-12
    .faq-card
    .faq-body
    #accordion
    .card
    .accordion-content
    .card-body {
    font-size: 16px;
  }
  section.contact-faq .container .row .col-sm-12 .contact-card {
    margin-top: 20px;
  }
  section.contact-faq .container .row .col-sm-12 .contact-card .title {
    line-height: 18px;
  }
  section.contact-faq .container .row .col-sm-12 .contact-card .subtitle {
    font-size: 20px;
  }
  section.contact-faq .container .row .col-sm-12 .contact-card .line {
    padding-bottom: 25px;
  }
  section.contact-faq
    .container
    .row
    .col-sm-12
    .contact-card
    form
    .f-row
    textarea {
    height: 150px;
  }
  section.contact-faq .container .row .col-sm-12 .contact-card form .buttons {
    padding-bottom: 15px;
  }
  section.footer {
    padding-top: 57px;
    padding-bottom: 57px;
    padding-left: 20px;
    padding-right: 20px;
  }
  section.footer .container .row .col-sm-12 {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  section.footer .container .row .col-sm-12 .resource {
    text-align: left;
    padding: 20px 0 0;
  }
  section.footer .container .row .col-sm-12 .contact-info {
    margin-bottom: 20px;
  }
  section.footer .container .row .col-sm-12 .copy-right {
    transform: none;
    margin: auto;
    padding: 0;
  }
  section.footer .container .row .col-sm-12:nth-child(3) {
    display: block;
  }
}
@media screen and (max-width: 575px) {
  .subscription_cards .subscription_card {
    width: 100%;
    min-width: 100%;
  }
  section.about-us .container .row .col-sm-12 .subtitle {
    font-size: 23px;
    line-height: normal;
  }
  .applied_plan_info_wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  section.header .layer .title {
    font-size: 30px;
    line-height: 48px;
  }
  section.header .layer .subtitle {
    font-size: 20px;
    letter-spacing: 3px;
    padding-bottom: 16px;
  }
  section.why-choose-us .subtitle span {
    display: block;
  }
  section.related-numbers .container .row .col-sm-6 {
    padding-bottom: 25px;
    flex-basis: 50%;
  }
  section.features .container .row .col-sm-12.pd {
    padding-left: 20px;
  }
  section.features .container .row .col-sm-12 img.main {
    width: 100%;
  }
  section.features .container .row .col-sm-12 .text .line-text span img {
    padding-right: 10px;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card .text {
    font-size: 14px;
    line-height: 38px;
    font-family: "Noto-Regular";
    color: #20415b;
  }
  section.subscribtion
    .body
    .container
    .row
    .col-sm-12
    .pur-card
    .buttons
    a.std {
    background-color: #436ea1;
    color: #ffffff;
  }
  section.subscribtion .body .container .row .col-sm-12:nth-child(2) {
    transform: scale(1);
  }
  section.client-review .body .container .row .col-sm-12 .review-card .title {
    font-size: 16px;
  }
  section.get-started .container .row .col-sm-12 .right-card .header .sec {
    flex-direction: column;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left {
    width: 100%;
    margin-bottom: 20px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left
    .layer {
    padding: 10px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left
    .layer
    .title {
    font-size: 14px;
    line-height: 21px;
    font-family: "Noto-Bold";
    color: #ffffff;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left
    .layer
    .text {
    font-size: 12px;
    line-height: 15px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .right {
    width: 100%;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .right
    .layer {
    padding: 10px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .right
    .layer
    .title {
    font-size: 14px;
    line-height: 21px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .right
    .layer
    .text {
    font-size: 12px;
    line-height: 15px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec-full
    .full {
    height: 169px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec-full
    .full
    .layer {
    display: flex;
    flex-direction: column-reverse;
    align-items: start;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec-full
    .full
    .layer
    .title {
    font-size: 14px;
    line-height: 21px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec-full
    .full
    .layer
    .text {
    font-size: 12px;
  }
  section.contact-faq .container .row .col-sm-12 .faq-card .title {
    line-height: 18px;
  }
  section.contact-faq
    .container
    .row
    .col-sm-12
    .faq-card
    .faq-body
    #accordion
    .card
    .card-header {
    border: none;
  }
  section.contact-faq .container .row .col-sm-12 .contact-card .line {
    padding-bottom: 25px;
  }
  section.footer .container {
    padding-left: 0px !important;
  }
  /* #arkan */
  .subscription_section .subscription_header h1 {
    font-size: 30px;
  }
  .subscription_section .subscription_header p {
    font-size: 16px;
    line-height: 24px;
  }
  .subscription_cards .professional_plan .badge {
    height: 40px;
  }
  .subscription_cards .subscription_card h1 {
    font-size: 32px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 480px) {
  .applied_plan_info_wrapper .subscription_status .status {
    margin: 0;
    padding: 0;
    width: 200px;
    height: 25px;
  }
}

@media screen and (max-width: 414px) {
  section.header .layer .title {
    font-size: 28px;
    line-height: 42px;
  }
  section.header .layer .subtitle {
    font-size: 20px;
    letter-spacing: 1px;
  }
  section.related-numbers .container .row .col-sm-6 {
    padding-bottom: 25px;
    flex-basis: 50%;
  }
  section.features .container .row .col-sm-12.pd {
    padding-left: 20px;
  }
  section.features .container .row .col-sm-12 img.main {
    width: 100%;
  }
  section.features .container .row .col-sm-12 .text .line-text span img {
    padding-right: 10px;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card .text {
    font-size: 14px;
    line-height: 38px;
    font-family: "Noto-Regular";
    color: #20415b;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card .buttons a {
    height: 40px;
  }
  section.subscribtion
    .body
    .container
    .row
    .col-sm-12
    .pur-card
    .buttons
    a.std {
    background-color: #436ea1;
    color: #ffffff;
  }
  section.subscribtion .body .container .row .col-sm-12:nth-child(2) {
    transform: scale(1);
  }
  section.get-started .container .row .col-sm-12 .right-card .header .sec {
    flex-direction: column;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left {
    width: 100%;
    margin-bottom: 20px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left
    .layer {
    padding: 10px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left
    .layer
    .title {
    font-family: "Noto-Bold";
    color: #ffffff;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left
    .layer
    .text {
    font-size: 12px;
    line-height: 15px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .right {
    width: 100%;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .right
    .layer {
    padding: 10px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .right
    .layer
    .text {
    font-size: 12px;
    line-height: 15px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec-full
    .full {
    height: 101px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec-full
    .full
    .layer
    .text {
    font-size: 12px;
  }
  section.contact-faq
    .container
    .row
    .col-sm-12
    .faq-card
    .faq-body
    #accordion
    .card
    .card-header {
    border: none;
  }
  section.contact-faq .container .row .col-sm-12 .contact-card .line {
    padding-bottom: 25px;
  }
  /* #arkan */
  .subscription_cards .subscription_card h1 {
    font-size: 28px;
  }
}
@media screen and (max-width: 375px) {
  section.header .layer .title {
    font-size: 23px;
    line-height: 1.5;
    text-align: center;
  }
  section.header .layer .subtitle {
    font-size: 18px;
    line-height: 1.5;
  }
  section.related-numbers .container .row .col-sm-6 {
    padding-bottom: 25px;
    flex-basis: 50%;
  }
  section.features .container .row .col-sm-12.pd {
    padding-left: 20px;
  }
  section.features .container .row .col-sm-12 img.main {
    width: 100%;
  }
  section.features .container .row .col-sm-12 .text .line-text span img {
    padding-right: 10px;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card .text {
    font-size: 14px;
    line-height: 38px;
    font-family: "Noto-Regular";
    color: #20415b;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card .buttons a {
    height: 40px;
  }
  section.subscribtion
    .body
    .container
    .row
    .col-sm-12
    .pur-card
    .buttons
    a.std {
    background-color: #436ea1;
    color: #ffffff;
  }
  section.subscribtion .body .container .row .col-sm-12:nth-child(2) {
    transform: scale(1);
  }
  section.get-started .container .row .col-sm-12 .right-card .header .sec {
    flex-direction: column;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left {
    width: 100%;
    margin-bottom: 20px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left
    .layer {
    padding: 10px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left
    .layer
    .title {
    font-family: "Noto-Bold";
    color: #ffffff;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left
    .layer
    .text {
    font-size: 12px;
    line-height: 15px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .right {
    width: 100%;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .right
    .layer {
    padding: 10px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .right
    .layer
    .text {
    font-size: 12px;
    line-height: 15px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec-full
    .full
    .layer
    .text {
    font-size: 12px;
  }
  section.contact-faq
    .container
    .row
    .col-sm-12
    .faq-card
    .faq-body
    #accordion
    .card
    .card-header {
    border: none;
  }
  section.contact-faq .container .row .col-sm-12 .contact-card .line {
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 360px) {
  section.why-choose-us .container .row .col-sm-12 .choose-card {
    height: 190px;
    gap: 12px;
  }
  section.why-choose-us .container .row .col-sm-12 .choose-card .right .title {
    font-size: 20px;
  }
  section.why-choose-us
    .container
    .row
    .col-sm-12
    .choose-card
    .right
    .body
    ul
    li
    span {
    font-size: 14px;
    line-height: 19px;
  }
}
@media screen and (max-width: 320px) {
  section.header .layer .subtitle {
    font-size: 14px;
    letter-spacing: 1px;
    padding-bottom: 7px;
    padding-top: 15px;
  }
  section.related-numbers .container .row .col-sm-6 {
    padding-bottom: 25px;
    flex-basis: 50%;
  }
  section.features .container .row .col-sm-12.pd {
    padding-left: 20px;
  }
  section.features .container .row .col-sm-12 img.main {
    width: 100%;
  }
  section.features .container .row .col-sm-12 .text .line-text span img {
    padding-right: 10px;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card .text {
    font-size: 14px;
    line-height: 38px;
    font-family: "Noto-Regular";
    color: #20415b;
  }
  section.subscribtion .body .container .row .col-sm-12 .pur-card .buttons a {
    height: 40px;
  }
  section.subscribtion
    .body
    .container
    .row
    .col-sm-12
    .pur-card
    .buttons
    a.std {
    background-color: #436ea1;
    color: #ffffff;
  }
  section.subscribtion .body .container .row .col-sm-12:nth-child(2) {
    transform: scale(1);
  }
  section.get-started .container .row .col-sm-12 .right-card .header .sec {
    flex-direction: column;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left {
    width: 100%;
    margin-bottom: 20px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left
    .layer {
    padding: 10px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left
    .layer
    .title {
    font-family: "Noto-Bold";
    color: #ffffff;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .left
    .layer
    .text {
    font-size: 12px;
    line-height: 15px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .right {
    width: 100%;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .right
    .layer {
    padding: 10px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec
    .right
    .layer
    .text {
    font-size: 12px;
    line-height: 15px;
  }
  section.get-started
    .container
    .row
    .col-sm-12
    .right-card
    .header
    .sec-full
    .full
    .layer
    .text {
    font-size: 12px;
  }
  section.contact-faq .container .row .col-sm-12 .faq-card .subtitle {
    font-size: 16px;
  }
  section.contact-faq
    .container
    .row
    .col-sm-12
    .faq-card
    .faq-body
    #accordion
    .card
    .card-header {
    border: none;
  }
  section.contact-faq .container .row .col-sm-12 .contact-card .subtitle {
    font-size: 18px;
  }
  section.contact-faq .container .row .col-sm-12 .contact-card .line {
    padding-bottom: 25px;
  }
}
/*Common Responsive*/
/*====== Common Responsive ======*/
/*Common*/
html {
  scroll-behavior: smooth;
}
::-webkit-scrollbar {
  width: 5px;
  background-color: transparent;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  transition: 0.3s;
  cursor: pointer;
}

.lazy[data-src] {
  opacity: 0;
}

.go-to-top {
  position: fixed;
  right: -50px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: #e4e4e4;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  transform: rotate(180deg);
  transition: 0.3s;
  z-index: 99;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.5);
}
.go-to-top:hover {
  background-color: #ddd;
}
.go-to-top img {
  width: 15px;
}
.go-to-top.shown {
  right: 20px;
}

/*# sourceMappingURL=style.css.map */
