.f1 {
  font-family: "brandon-grotesque", sans-serif;
}

.f2 {
  font-family: "Inter", sans-serif;
}

.c1 {
  background: #3d7572;
}

.c2 {
  background: #dda893;
}

.c3 {
  background: #374E4D;
}

.c4 {
  background: #3A3E3F;
}

.c5 {
  background: #E5E6E6;
}

.c6 {
  background: #80D6FF;
}

.cg1 {
  background: linear-gradient(180deg, #3d7572 13.36%, rgba(255, 245, 236, 0) 100%);
}

/*Transition CSS*/
/*Transform CSS*/
/*Border Radius*/
/*Box Shadow*/
/*Gradient*/
button.btn {
  border: 0;
}

main.wrapper .btn {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transition: all 0.3s linear;
  text-transform: uppercase;
  color: #fff;
  font-size: 16px;
  font-family: "brandon-grotesque", sans-serif;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  /* 18px */
  display: inline-flex;
  padding: 18px 40px 16px 40px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 32px;
  background: #3d7572;
}
main.wrapper .btn::before, main.wrapper .btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 0;
  transition: all 0.4s ease-in;
}
main.wrapper .btn:before {
  display: none;
}
main.wrapper .btn::after {
  opacity: 0;
  background: linear-gradient(180deg, #FFBC80 0%, #3d7572 100%);
}
main.wrapper .btn:hover::after, main.wrapper .btn:active::after, main.wrapper .btn:focus::after {
  opacity: 1;
}
main.wrapper .btn span {
  display: block;
  position: relative;
  z-index: 1;
  color: inherit;
}
main.wrapper .btn-sm {
  padding: 10px 24px 8px 24px;
  border-radius: 32px;
}
main.wrapper .btn-lg {
  font-size: 18px;
}
main.wrapper .btn-white {
  color: #dda893;
  background: #fff;
  padding: 14px 24px 12px 24px;
}
main.wrapper .btn-white::after {
  opacity: 0;
  background: linear-gradient(180deg, #FFF 0%, #CCC 100%);
}
main.wrapper .btn-white:hover::after, main.wrapper .btn-white:active::after, main.wrapper .btn-white:focus::after {
  opacity: 1;
}
main.wrapper .btn-blue {
  color: #fff;
  background: #dda893;
  padding: 15px 29px 11px 29px;
}
main.wrapper .btn-blue::after {
  opacity: 0;
  background: linear-gradient(180deg, #dda893 0%, #001E47 100%);
}
main.wrapper .btn-blue:hover::after, main.wrapper .btn-blue:active::after, main.wrapper .btn-blue:focus::after {
  opacity: 1;
}
main.wrapper .btn-outline {
  border: 1px solid #dda893;
  color: #dda893;
  background-color: transparent;
  padding: 14px 24px 12px 24px;
}
main.wrapper .btn-outline em,
main.wrapper .btn-outline i {
  padding-right: 6px;
}
main.wrapper .btn-outline:before, main.wrapper .btn-outline:after {
  display: none;
}
main.wrapper .btn-outline:hover {
  background-color: #dda893;
  color: #fff;
}
main.wrapper .btn-arrow span {
  padding-right: 24px;
  transition: all 0.3s ease-in-out;
}
main.wrapper .btn-arrow span:before {
  content: "";
  width: 16px;
  height: 1px;
  background: #333;
  position: absolute;
  top: 34%;
  right: 1.2px;
  transition: all 0.4s ease-in;
}
main.wrapper .btn-arrow span:after {
  content: "";
  position: absolute;
  top: 34%;
  right: 0px;
  margin-top: -1px;
  transition: all 0.3s ease;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  width: 5px;
  height: 5px;
  transform: rotate(-45deg) translateY(-25%);
  transition: all 0.4s ease-in;
}
main.wrapper .btn-arrow.skyblue span:before {
  background: #3A3E3F;
}
main.wrapper .btn-arrow.skyblue span:after {
  border-color: #3A3E3F;
}
main.wrapper .btn-read-more {
  font-size: 16px;
  font-weight: 600;
  font-family: "brandon-grotesque", sans-serif;
  line-height: 100%;
  letter-spacing: -0.32px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dda893;
}
main.wrapper .btn-read-more span {
  display: block;
  position: relative;
  z-index: 1;
}
main.wrapper .btn-read-more span::before {
  background: #dda893;
}
main.wrapper .btn-read-more span::after {
  border-color: #dda893;
}
main.wrapper .btn-read-more.skyblue {
  color: #3A3E3F;
}
main.wrapper .btn-read-more.btn-read-white {
  color: #fff;
}
main.wrapper .btn-read-more.btn-read-white span::before {
  background: #fff;
}
main.wrapper .btn-read-more.btn-read-white span::after {
  border-color: #fff;
}
main.wrapper .btn-back {
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.32px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dda893;
}
main.wrapper .btn-back span {
  display: block;
  position: relative;
  z-index: 1;
  padding-left: 12px;
  transition: all 0.4s ease-in;
}
main.wrapper .btn-back span::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 1px;
  top: 50%;
  left: 0px;
  right: auto;
  background: #dda893;
  transition: all 0.4s ease-in;
}
main.wrapper .btn-back span::after {
  content: "";
  position: absolute;
  top: 51%;
  width: 5px;
  height: 5px;
  left: 0px;
  right: auto;
  margin-top: -1px;
  border-left: 1px solid #dda893;
  border-top: 1px solid #dda893;
  transform: rotate(-45deg) translateY(-25%);
  transition: all 0.4s ease-in;
}
main.wrapper .btn-back:hover span {
  padding-left: 18px;
}
main.wrapper .btn-back:hover span::before {
  width: 12px;
}
main.wrapper .btn-back.skyblue {
  color: #3A3E3F;
}
@media (max-width: 400px) {
  main.wrapper .btn {
    font-size: 15px;
  }
}

.slider-arrows .slider-arrow {
  display: inline-block;
  color: #fff;
  border-radius: 2px;
  cursor: pointer;
}
.slider-arrows .slider-arrow:last-child {
  margin-left: 16px;
}
.slider-arrows .slider-arrow span {
  color: #fff;
  display: flex;
  height: inherit;
  align-items: center;
  justify-content: center;
  background: #dda893;
  position: relative;
  width: 41px;
  height: 41px;
  border-radius: 30px;
  transition: 0.4s;
}
.slider-arrows .slider-arrow span em {
  font-size: 22px;
}
.slider-arrows .slider-arrow span .arrow-left::after {
  border-right: 0;
  border-bottom: 0;
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;
  left: 21px;
}
.slider-arrows .slider-arrow span:hover {
  background: linear-gradient(180deg, #dda893 0%, #001E47 100%);
}
.slider-arrows .slider-arrow span:hover i {
  color: #fff;
}
.slider-arrows .slider-arrow span:hover i::before {
  background-color: #333;
}
.slider-arrows .slider-arrow span:hover i::after {
  border-color: #333;
}
@media (max-width: 400px) {
  .slide-btn .btn-outline {
    padding: 12px 26px !important;
  }
  .slide-btn .slider-arrows .slider-arrow:last-child {
    margin-left: 8px;
  }
}
.cnt-left-margin {
  margin-left: calc((100% - 1304px) / 2);
}
@media (max-width: 1366px) {
  .cnt-left-margin {
    margin-left: calc((100% - 1254px) / 2);
  }
}
@media (max-width: 1300px) {
  .cnt-left-margin {
    margin-left: calc((100% - 1172px) / 2);
  }
}
@media (max-width: 1200px) {
  .cnt-left-margin {
    margin-left: calc((100% - 1078px) / 2);
  }
}
@media (max-width: 1100px) {
  .cnt-left-margin {
    margin-left: calc((100% - 938px) / 2);
  }
}
@media (max-width: 991px) {
  .cnt-left-margin {
    margin-left: calc((100% - 750px) / 2);
  }
}
@media (max-width: 767px) {
  .cnt-left-margin {
    margin-left: 0;
  }
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 20px;
}

.h1,
h1 {
  color: #333;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 300;
  line-height: 110%;
  letter-spacing: -1.92px;
}
.h1 b,
.h1 strong,
h1 b,
h1 strong {
  font-weight: 500;
}

.h2,
h2 {
  color: #333;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: 110%;
  /* 35.2px */
  letter-spacing: -1.28px;
}
.h2 b,
.h2 strong,
h2 b,
h2 strong {
  font-weight: 500;
}
@media (max-width: 768px) {
  .h2,
  h2 {
    font-size: 24px;
    letter-spacing: -0.96px;
  }
}

.h3,
h3 {
  color: #333;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  /* 15.4px */
  letter-spacing: 0.28px;
  text-transform: uppercase;
}
.h4,
h4 {
  color: #333;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  /* 26.4px */
  letter-spacing: -0.96px;
}
.h4 b,
.h4 strong,
h4 b,
h4 strong {
  font-weight: 300;
}

.h5,
h5 {
  color: #333;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  /* 28px */
  letter-spacing: -0.8px;
}
.h5 b,
.h5 strong,
h5 b,
h5 strong {
  font-weight: 600;
}

h6,
.h6 {
  color: #333;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  /* 28px */
  letter-spacing: -0.8px;
}

p strong,
p b,
li strong,
li b {
  font-weight: 600;
}
p:last-of-type,
li:last-of-type {
  margin-bottom: 0 !important;
}

main ul {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 25px;
}
main ul li {
  list-style: disc;
  position: relative;
  color: #333;
  font-family: "Inter", sans-serif;
  margin-bottom: 15px;
  word-wrap: break-word;
}

dl {
  clear: both;
  overflow: hidden;
}
dl dt {
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  float: left;
  clear: left;
  min-width: 154px;
}
dl dd {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  float: left;
  padding-left: 20px;
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s linear;
}
a:active, a:focus, a:hover {
  text-decoration: none;
  color: #3d7572;
}

.design-system-box {
  width: 100%;
  height: 150px;
}

.costs_table .btns {
  margin-bottom: 40px;
}
.costs_table a {
  margin-right: 30px;
}
.costs_table .select {
  min-width: 270px;
}

.table_responsive h2 {
  font-weight: 600;
  position: relative;
  margin-bottom: 50px;
}
.table_responsive h2:after {
  display: none;
  content: "";
  width: 68px;
  height: 2px;
  background: #374E4D;
  position: absolute;
  bottom: -21px;
  left: 0;
}
@media (max-width: 767px) {
  .table_responsive {
    overflow-y: auto;
  }
  .table_responsive .table {
    width: 650px;
  }
}

.table {
  border: 0px solid #3d7572;
  display: table;
}
.table tbody tr td,
.table tbody tr th,
.table thead tr td,
.table thead tr th {
  border: 0;
  border-bottom: unset;
  padding: 63px 25px;
  font-size: 16px;
  text-align: left;
  background: #fff;
  border-right: 0px solid #374E4D;
}
.table tbody tr th,
.table thead tr th {
  font-size: 16px;
  font-weight: 800;
  background: #fff;
  color: #333;
}
.table tbody tr th,
.table tbody tr td:first-child,
.table thead tr th,
.table thead tr td:first-child {
  padding-left: 48px;
  border-left: 0px solid #374E4D;
}
.table tbody tr th,
.table tbody tr th:first-child,
.table thead tr th,
.table thead tr th:first-child {
  padding-right: 48px;
  border-left: 0px solid #374E4D;
}
.table tbody tr.last-tr td,
.table thead tr.last-tr td {
  background-color: white !important;
}
.table thead tr th {
  color: #dda893;
}
.table tr:nth-child(odd) td {
  background: #f9f9f9;
}
.table tr:nth-child(odd) td:first-of-type {
  border-radius: 32px 0 0 32px;
}
.table tr:nth-child(odd) td:last-of-type {
  border-radius: 0 32px 32px 0;
}
@media all and (max-width: 767px) {
  .table thead tr th {
    padding: 12px 10px;
    font-size: 13px;
    min-width: 180px;
  }
  .table tbody tr td:first-child {
    padding-left: 20px;
  }
  .table tbody tr td,
  .table tbody tr th {
    padding: 20px 20px;
  }
  .table tbody tr td {
    font-size: 13px;
    min-width: 180px;
  }
}

@media all and (max-width: 1440px) {
  thead tr th {
    padding: 12px 10px;
    font-size: 13px;
  }
  tbody tr td,
  tbody tr th {
    padding: 7px 10px;
  }
  tbody tr td {
    font-size: 13px;
  }
}
.table-bordered {
  border: 1px solid #3d7572;
}

.wrapper {
  max-width: none;
  margin: 0 auto;
}

@media all and (max-width: 1366px) {
  .wrapper {
    padding: 0;
  }
}
.flex {
  display: flex;
}
.flex .align_center {
  -ms-align-self: center;
  align-self: center;
}
.flex .align_left {
  margin-left: 0;
}
.flex .align_right {
  margin-right: 0;
}

.align_bottom {
  -ms-align-self: flex-end;
  align-self: flex-end;
}

.align_top {
  -ms-align-self: flex-start;
  align-self: flex-start;
}

.no-flex {
  display: block !important;
}

.jc_end {
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
}

._cnt {
  margin-left: calc((100% - 1300px) / 2);
}

@media (max-width: 1300px) {
  ._cnt {
    margin-left: calc((100% - 1160px) / 2);
  }
}
@media (max-width: 1200px) {
  ._cnt {
    margin-left: calc((100% - 1035px) / 2);
  }
}
@media (max-width: 1100px) {
  ._cnt {
    margin-left: calc((100% - 895px) / 2);
  }
}
@media (max-width: 990px) {
  ._cnt {
    margin-left: calc((100% - 750px) / 2);
  }
}
@media (max-width: 767px) {
  ._cnt {
    margin-left: 0;
    margin: auto;
    max-width: 92%;
  }
}
.cnt {
  margin: auto;
  max-width: 1304px;
}

.cnt-md {
  max-width: 1544px;
  margin: auto;
}

.cnt-lg {
  max-width: 1748px;
  margin: auto;
}

@media all and (max-width: 1366px) {
  .cnt {
    max-width: 92%;
  }
}
@media all and (max-width: 1200px) {
  .cnt {
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 991px) {
  .cnt-md {
    max-width: 100%;
  }
  .cnt-lg {
    max-width: 100%;
  }
}
.img {
  margin: 0 !important;
}
.img img {
  width: auto;
  height: auto;
  max-width: 100%;
}

.space_botm {
  height: 120px;
}
@media (max-width: 1440px) {
  .space_botm {
    height: 100px;
  }
}
@media (max-width: 991px) {
  .space_botm {
    height: 50px;
  }
}

.tab-pane.fade {
  opacity: 0.5;
  transition: opacity 0.25s linear;
}

.tab-pane.fade.show {
  opacity: 1;
}

.progress {
  margin: 15px 0;
  display: none;
  height: 10px;
  background-color: #dda893;
  width: 100%;
  overflow: hidden;
}

.progress-bar-value {
  width: 100%;
  height: 100%;
  background-color: #3d7572;
  animation: indeterminateAnimation 1s infinite linear;
  transform-origin: 0% 50%;
}

@keyframes indeterminateAnimation {
  0% {
    transform: translateX(0) scaleX(0);
  }
  40% {
    transform: translateX(0) scaleX(0.4);
  }
  100% {
    transform: translateX(100%) scaleX(0.5);
  }
}
.nav-tabs {
  display: inline-flex;
  margin: 0;
  padding: 0;
  border: none;
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: 1px solid transparent;
  list-style: none;
}
.nav-tabs li {
  margin: 0;
  position: relative;
  margin-right: 32px;
  padding-bottom: 0px;
  list-style: none;
}
.nav-tabs li:before, .nav-tabs li::marker {
  display: none;
  opacity: 0;
}
.nav-tabs li:last-child {
  margin-right: 0;
}
.nav-tabs a {
  position: relative;
  display: block;
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  font-family: "brandon-grotesque", sans-serif;
  line-height: normal;
  cursor: pointer;
  padding-bottom: 10px;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 1;
  /* 21.6px */
}
.nav-tabs a::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  opacity: 0;
  background-color: #374E4D;
}
.nav-tabs a:hover, .nav-tabs a.active, .nav-tabs a:focus {
  opacity: 1;
  color: #333;
}
.nav-tabs a:hover::before, .nav-tabs a.active::before, .nav-tabs a:focus::before {
  opacity: 1;
}
.nav-tabs a:hover {
  opacity: 1;
}
.nav-tabs a:hover::before {
  opacity: 1;
}
.nav-tabs.btns {
  margin-bottom: 50px;
}
.nav-tabs.btns li {
  margin-right: 25px;
  margin-bottom: 25px;
}
.nav-tabs.btns a {
  display: block;
  text-align: center;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.72px;
  text-transform: uppercase;
  color: #dda893;
  padding: 16px 32px;
  border: 1px solid #dda893;
  border-radius: 0px;
  box-shadow: none;
  text-decoration: none;
}
.nav-tabs.btns a:after {
  display: none;
}
.nav-tabs.btns a:hover, .nav-tabs.btns a.active {
  background: #dda893;
  color: #fff;
}
@media (max-width: 990px) {
  .nav-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
  }
}
.play-icon {
  display: inline-block;
  text-align: center;
  color: #fff;
  position: relative;
}
.play-icon .play-circle {
  display: inline-block;
  color: #fff;
  width: 94px;
  height: 94px;
  border-radius: 94px;
  opacity: 0.9;
  background: #3d7572;
  font-size: 24px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.play-icon .play-circle i {
  font-size: 38px;
  position: absolute;
  top: 52%;
  left: 52%;
  z-index: 1;
  color: #fff;
  transform: translate(-50%, -50%);
}
.play-icon .play-txt {
  display: block;
  margin-top: 16px;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  position: absolute;
  left: 20%;
  bottom: -28%;
  line-height: 140%;
  letter-spacing: -0.36px;
  text-transform: capitalize;
}
.play-icon:hover .play-txt, .play-icon:focus .play-txt {
  color: #fff;
}
@media (max-width: 991px) {
  .play-icon .play-txt {
    white-space: nowrap;
  }
}

.red-circle-cta {
  position: relative;
  display: inline-block;
}
.red-circle-cta .icon-circle {
  position: relative;
  display: inline-block;
  width: 215px;
  height: 215px;
  border-radius: 50%;
  background: linear-gradient(180deg, #e03d88 0%, #9e1956 100%);
  transition: all 0.3s ease-in-out;
}
.red-circle-cta .icon-txt {
  position: absolute;
  left: 29px;
  top: 49px;
  width: 100%;
}
.red-circle-cta:hover .icon-circle {
  transform: scale(1.1);
}

.generic-slider .item {
  height: 300px;
  background-color: #374E4D;
  color: #333;
  font-size: 30px;
  text-align: center;
}

.slide-btn {
  margin-top: 64px;
}
@media (max-width: 786px) {
  .slide-btn {
    margin-top: 48px;
  }
}

.cnt-star {
  position: relative;
  z-index: 2;
}
.cnt-star .star {
  position: absolute;
  top: -80px;
  right: 20%;
  background-size: contain;
  background-repeat: no-repeat;
  width: 150px;
  height: 150px;
}
@media (max-width: 991px) {
  .cnt-star .star {
    top: 10px;
    width: 86px;
    height: 81px;
  }
}
@media (max-width: 767px) {
  .cnt-star .star {
    top: 20px;
    width: 66px;
    height: 61px;
  }
}

.timing {
  padding-left: 30px;
}
.timing dt,
.timing dd {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 21px */
  color: #333;
}
.timing dt {
  text-transform: none;
}

.header {
  /* Basic dropdown styles */
}
.header .dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
  opacity: 0;
  display: block;
}
.header {
  /* Opened state */
}
.header .dropdown-menu.show {
  max-height: initial;
  /* Adjust based on content height */
  opacity: 1;
}

header.main {
  background-color: #3d7572;
  position: static;
}

.btn {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transition: all 0.3s linear;
  text-transform: capitalize;
  color: #fff;
  font-size: 18px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  /* 18px */
  display: inline-flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 32px;
  background: #3d7572;
}
.btn:hover, .btn:active, .btn:focus {
  color: #fff;
}
.btn:hover::after, .btn:active::after, .btn:focus::after {
  opacity: 1;
}
.btn span {
  display: block;
  position: relative;
  z-index: 1;
  color: inherit;
}

.btn-arrow span {
  padding-right: 24px;
  transition: all 0.3s ease-in-out;
}
.btn-arrow span:before {
  content: "";
  width: 16px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 1.2px;
  transition: all 0.4s ease-in;
}
.btn-arrow span:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  margin-top: -1px;
  transition: all 0.3s ease;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: 5px;
  height: 5px;
  transform: rotate(-45deg) translateY(-25%);
  transition: all 0.4s ease-in;
}
.btn-arrow:hover span {
  color: inherit;
  padding-right: 32px;
}
.btn-arrow:hover span:before {
  width: 24px;
  right: -4px;
  background: #fff;
}
.btn-arrow:hover span:after {
  right: -6px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.sbs_form {
  position: relative;
  margin-top: -120px;
  margin-bottom: 120px;
}
.sbs_form .flex {
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
}
.sbs_form .txt_wrap {
  width: 50%;
  padding-bottom: 30px;
}
.sbs_form .txt_wrap .txt h1 {
  color: #333;
  font-size: 48px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  line-height: 48px;
  margin-bottom: 24px;
}
.sbs_form .txt_wrap .txt h3 {
  color: #333;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  margin-bottom: 24px;
}
.sbs_form .txt_wrap .txt h4 {
  color: #333;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 20px;
}
.sbs_form .txt_wrap .txt h4 span {
  display: inline-block;
  padding: 4px 14px;
  color: #374E4D;
  margin-left: 8px;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0);
  box-shadow: 0 0 0 0 #FFF inset, 0 0 0 1px rgba(66, 95, 94, 0.2) inset;
}
.sbs_form .txt_wrap .txt ul {
  margin: 0;
  padding: 0;
}
.sbs_form .txt_wrap .txt ul li {
  color: #333;
  font-size: 18px;
  font-weight: 420;
  line-height: 20px;
  list-style: none;
  margin-bottom: 20px;
}
.sbs_form .txt_wrap .txt ul li:last-of-type {
  margin-bottom: 0px;
}
.sbs_form .txt_wrap .txt ul li img {
  margin-right: 8px;
  margin-bottom: 0px;
}
.sbs_form .txt_form {
  width: 46%;
}
.sbs_form .txt_form .form_wrap {
  text-align: center;
  padding: 50px 60px;
  border-radius: 12px;
  border: 1px solid #BED1CF;
  background: #3d7572;
}
.sbs_form .txt_form .form_wrap .form_title {
  margin-bottom: 20px;
}
.sbs_form .txt_form .form_wrap .form_title h2 {
  color: #fff;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 19.8px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.sbs_form .txt_form .form_wrap .form_title h4 {
  color: #fff;
  text-align: center;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 19.8px;
  letter-spacing: 1px;
  margin-bottom: 0px;
}
.sbs_form .txt_form .form_wrap .form_title h4 a {
  text-decoration: underline;
}
.sbs_form .txt_form .form_wrap .form_title h4 a:hover {
  color: #dda893;
}
.sbs_form .txt_form .form_wrap .form-control {
  color: #999;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
  width: 100%;
  padding: 12px;
  border: 1px solid #CCC;
  background: #fff;
  margin-bottom: 8px;
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.08) inset;
}
.sbs_form .txt_form .form_wrap .form-control::-moz-placeholder {
  color: #999;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
}
.sbs_form .txt_form .form_wrap .form-control::placeholder {
  color: #999;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
}
.sbs_form .txt_form .form_wrap .btn {
  color: #fff;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 13.7px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  width: 100%;
  padding: 12px;
  border-radius: 0px;
  margin: 0 0 16px;
  border: 1px solid transparent;
  background-color: #dda893;
  text-transform: uppercase;
}
.sbs_form .txt_form .form_wrap .btn:hover {
  color: #dda893;
  border-color: #dda893;
  background-color: unset;
}
.sbs_form .txt_form .form_wrap .privacy {
  color: #FFF;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 420;
  line-height: 14.4px;
  letter-spacing: 0.5px;
}
.sbs_form .txt_form .form_wrap .privacy a {
  text-decoration: underline;
}
.sbs_form .txt_form .form_wrap .privacy a:hover {
  color: #dda893;
}
@media (max-width: 991px) {
  .sbs_form {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .sbs_form .txt_wrap {
    width: 100%;
    padding-bottom: 32px;
  }
  .sbs_form .txt_wrap .txt {
    max-width: 100%;
  }
  .sbs_form .txt_form {
    width: 100%;
  }
  .sbs_form .txt_form .form_wrap {
    padding: 40px;
  }
}

.private_children_braces {
  position: relative;
  margin-top: 48px;
}
.private_children_braces .content {
  max-width: 1174px;
  margin-bottom: 48px;
}
.private_children_braces .content h3 {
  color: #3d7572;
  margin-bottom: 16px;
}
.private_children_braces .content p {
  color: #333;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 420;
  line-height: 140%;
  /* 42px */
}
.private_children_braces .p_info {
  display: flex;
}
.private_children_braces .p_info .img {
  width: 48px;
  height: 48px;
}
.private_children_braces .p_info .img img {
  border-radius: 50%;
}
.private_children_braces .p_info .text {
  margin-left: 12px;
}
.private_children_braces .p_info .text h3 {
  color: #424848;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.4px;
  margin-bottom: 2px;
}
.private_children_braces .p_info .text h3 span {
  color: #828E8E;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: -0.4px;
}
.private_children_braces .p_info .text h4 {
  color: #3d7572;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  /* 142.857% */
  margin-bottom: 0px;
}
.private_children_braces .p_info .text h5 {
  color: #828E8E;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 450;
  line-height: 16px;
  /* 114.286% */
  margin-bottom: 0px;
}
@media (max-width: 767px) {
  .private_children_braces .content {
    max-width: 100%;
    margin-bottom: 48px;
  }
  .private_children_braces .content p {
    font-size: 22px;
    line-height: 140%;
    /* 42px */
  }
}

.plain_content {
  position: relative;
  margin-top: 80px;
  margin-bottom: 108px;
}
.plain_content .title_sec {
  margin-bottom: 36px;
}
.plain_content .title_sec h3 {
  color: #3d7572;
  line-height: 24px;
  margin-bottom: 24px;
}
.plain_content .title_sec h2 {
  color: #333;
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  margin-bottom: 16px;
}
.plain_content .wrap {
  max-width: 346px;
}
.plain_content .wrap .icon-box {
  margin-bottom: 8px;
}
.plain_content .wrap .icon-box i {
  color: #3d7572;
}
.plain_content .wrap h4 {
  color: #3d7572;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 12px;
}
.plain_content.bg_green {
  padding: 120px 0;
  margin-top: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.plain_content.bg_green .wrap h4 {
  font-size: 16px;
}
@media (max-width: 991px) {
  .plain_content {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .plain_content .col-lg-4 .wrap {
    max-width: 100%;
    margin-bottom: 40px;
  }
  .plain_content .col-lg-4:last-of-type .wrap {
    margin-bottom: 0px;
  }
  .plain_content.bg_green {
    padding: 64px 0;
    margin-top: 0;
  }
  .plain_content.bg_green .wrap h4 {
    font-size: 16px;
  }
}

.sbs {
  position: relative;
  margin-top: 160px;
  margin-bottom: 160px;
}
.sbs .flex {
  flex-wrap: wrap;
  justify-content: space-between;
}
.sbs .txt_wrap {
  width: 58%;
}
.sbs .txt_wrap .txt {
  max-width: 744px;
}
.sbs .txt_wrap .txt h3 {
  color: #3d7572;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.sbs .txt_wrap .txt h2 {
  color: #333;
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 48px;
  margin-bottom: 30px;
}
.sbs .txt_wrap .txt h4 {
  color: #3A3E3F;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 24px;
}
.sbs .txt_wrap .txt .btn {
  margin-top: 36px;
}
.sbs .img {
  width: 40%;
}
.sbs .img img {
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.sbs.bg_blue {
  padding: 160px 0;
  margin-top: 0;
}
.sbs.flip .flex {
  flex-direction: row-reverse;
}
.sbs.sbs_comment .flex {
  justify-content: space-between;
}
.sbs.sbs_comment .txt_wrap {
  width: 50%;
}
.sbs.sbs_comment .txt_wrap .txt {
  max-width: 632px;
  margin: 0 auto;
}
.sbs.sbs_comment .txt_wrap .txt .item {
  margin-bottom: 36px;
}
.sbs.sbs_comment .txt_wrap .txt .item:last-of-type {
  margin-bottom: 0px;
}
.sbs.sbs_comment .txt_wrap .txt .item p {
  color: #3A3E3F;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}
.sbs.sbs_comment .txt_wrap .txt .item .p-info {
  display: flex;
  align-items: center;
  margin-top: 16px;
}
.sbs.sbs_comment .txt_wrap .txt .item .p-info .img {
  width: auto;
}
.sbs.sbs_comment .txt_wrap .txt .item .p-info .img img {
  border-radius: 50%;
}
.sbs.sbs_comment .txt_wrap .txt .item .p-info .content {
  margin-left: 8px;
}
.sbs.sbs_comment .txt_wrap .txt .item .p-info .content h3 {
  color: #677273;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 0px;
}
.sbs.sbs_comment .txt_wrap .txt .item .p-info .content h3 span {
  color: #ACB4B4;
}
.sbs.sbs_comment .txt_wrap .txt .btn {
  color: #374E4D;
  background: rgba(84, 120, 118, 0.3);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.sbs.sbs_comment .txt_wrap .txt .btn span::before {
  background: #374E4D;
}
.sbs.sbs_comment .txt_wrap .txt .btn span::after {
  border-color: #374E4D;
}
.sbs.sbs_comment .img {
  width: 44%;
}
.sbs.sbs_accrodin .txt_wrap {
  width: 50%;
}
.sbs.sbs_accrodin .txt_wrap h3 {
  margin-bottom: 36px;
}
.sbs.sbs_accrodin .txt_wrap .accordion_container {
  position: relative;
  z-index: 30;
}
.sbs.sbs_accrodin .txt_wrap .accordion_container h4 {
  position: relative;
  cursor: pointer;
  color: #3A3E3F;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 0px;
  text-transform: inherit;
}
.sbs.sbs_accrodin .txt_wrap .accordion_container h4 .plusminus {
  position: absolute;
  right: 25px;
  top: 0px;
}
.sbs.sbs_accrodin .txt_wrap .accordion_container h4 .plusminus:before {
  position: absolute;
  top: 6px;
  color: #3A3E3F;
  font-size: 16px;
  display: inline-block;
  content: "\f078";
  font-weight: 900;
  font-family: "FontAwesome";
  transform-origin: center;
  transition: all 0.3s;
}
.sbs.sbs_accrodin .txt_wrap .accordion_container .item {
  margin-left: 0px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  transition: all 0.3s;
  border-bottom: 1px solid #CED3D3;
}
.sbs.sbs_accrodin .txt_wrap .accordion_container .item:last-child {
  margin-bottom: 0;
}
.sbs.sbs_accrodin .txt_wrap .accordion_container .item.active h4 .plusminus::before {
  content: "\f054";
}
.sbs.sbs_accrodin .txt_wrap .accordion_container .accordion_body {
  padding-left: 0px;
  padding: 0px;
  max-width: 95%;
}
.sbs.sbs_accrodin .txt_wrap .accordion_container .accordion_body p {
  color: #333;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 420;
  line-height: 140%;
  margin-top: 16px;
}
.sbs.sbs_accrodin .img {
  width: 44%;
}
@media (max-width: 991px) {
  .sbs {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .sbs .txt_wrap {
    width: 100%;
    padding-bottom: 32px;
  }
  .sbs .txt_wrap .txt {
    width: 100%;
  }
  .sbs .txt_wrap .txt h4 {
    font-size: 20px;
  }
  .sbs .txt_wrap .txt .btn {
    margin-top: 24px;
  }
  .sbs .img {
    width: 100%;
  }
  .sbs .img img {
    width: 100%;
  }
  .sbs.bg_blue {
    padding: 64px 0;
  }
  .sbs.sbs_comment .txt_wrap {
    width: 100%;
  }
  .sbs.sbs_comment .txt_wrap .txt {
    max-width: 100%;
  }
  .sbs.sbs_comment .img {
    width: 100%;
  }
  .sbs.sbs_accrodin .txt_wrap {
    width: 100%;
  }
  .sbs.sbs_accrodin .txt_wrap .txt {
    max-width: 100%;
  }
  .sbs.sbs_accrodin .img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .sbs .txt_wrap .txt h4 {
    font-size: 20px;
  }
  .sbs.sbs_comment .txt_wrap .txt .item p {
    font-size: 18px;
  }
  .sbs.sbs_accrodin .txt_wrap .accordion_container h4 {
    padding-right: 32px;
  }
}

.btn-self {
  color: #fff;
  font-size: 16px;
  padding: 18px 30px;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 420;
  line-height: 26.4px;
  letter-spacing: 1px;
  border-radius: 0px;
  text-transform: uppercase;
}

.self_banner_hero {
  position: relative;
  padding: 290px 0 160px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.self_banner_hero .txt {
  text-align: center;
}
.self_banner_hero .txt h1 {
  color: #fff;
  font-size: 40px;
  font-style: normal;
  font-weight: 420;
  line-height: 50px;
  letter-spacing: 2px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
@media (max-width: 990px) {
  .self_banner_hero {
    padding: 120px 0 80px;
  }
  .self_banner_hero .self_banner_hero .txt h1 {
    font-size: 32px;
  }
}

.self_services_sec {
  position: relative;
  padding: 30px 0;
  background: #E8EFEE;
}
.self_services_sec .cnt {
  max-width: 1080px;
}
.self_services_sec .txt {
  display: flex;
  align-items: center;
}
.self_services_sec .txt em {
  color: #3d7572;
  font-size: 20px;
}
.self_services_sec .txt p {
  color: #3d7572;
  font-weight: 420;
  line-height: 26.4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding-left: 14px;
}
@media (max-width: 1300px) {
  .self_services_sec .cnt {
    max-width: 92%;
  }
}
@media (max-width: 1200px) {
  .self_services_sec .cnt {
    max-width: 100%;
    padding: 0 24px;
  }
}
@media (max-width: 990px) {
  .self_services_sec .col-lg-6 .txt {
    margin-bottom: 16px;
  }
  .self_services_sec .col-lg-6:last-of-type .txt {
    margin-bottom: 0px;
  }
}

.self_plain_content {
  position: relative;
  margin-top: 120px;
  margin-bottom: 120px;
}
.self_plain_content .cnt {
  max-width: 1080px;
}
.self_plain_content .title_sec {
  text-align: center;
  margin-bottom: 60px;
}
.self_plain_content .title_sec h2 {
  color: #222;
  font-size: 38px;
  font-style: normal;
  font-weight: 450;
  line-height: 52px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.self_plain_content .wrap {
  text-align: center;
  margin-bottom: 80px;
}
.self_plain_content .wrap .icon-box {
  margin-bottom: 24px;
}
.self_plain_content .wrap h4 {
  color: #222;
  font-size: 18px;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 450;
  line-height: 120%;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.self_plain_content .col-lg-3:nth-last-child(3) .wrap, .self_plain_content .col-lg-3:nth-last-child(2) .wrap, .self_plain_content .col-lg-3:nth-last-child(1) .wrap {
  margin-bottom: 0px;
}
@media (max-width: 1300px) {
  .self_plain_content .cnt {
    max-width: 92%;
  }
}
@media (max-width: 1200px) {
  .self_plain_content .cnt {
    max-width: 100%;
    padding: 0 24px;
  }
}
@media (max-width: 990px) {
  .self_plain_content {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .self_plain_content .col-lg-3 .wrap {
    margin-bottom: 40px;
  }
  .self_plain_content .col-lg-3:nth-last-child(3) .wrap, .self_plain_content .col-lg-3:nth-last-child(2) .wrap {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .self_plain_content .self_plain_content .title_sec h2 {
    font-size: 24px;
  }
}

.sbs.sbs_self {
  margin-top: 120px;
  margin-bottom: 120px;
}
.sbs.sbs_self .cnt {
  max-width: 1080px;
}
.sbs.sbs_self .flex {
  align-items: center;
}
.sbs.sbs_self .img {
  width: 50%;
}
.sbs.sbs_self .img img {
  border-radius: 0px;
  box-shadow: unset;
}
.sbs.sbs_self .txt_wrap {
  width: 50%;
}
.sbs.sbs_self .txt_wrap .txt {
  max-width: 500px;
  margin: 0 auto;
}
.sbs.sbs_self .txt_wrap .txt h2 {
  color: #222;
  font-size: 38px;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 450;
  line-height: 52px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
@media (max-width: 1300px) {
  .sbs.sbs_self .cnt {
    max-width: 92%;
  }
}
@media (max-width: 1200px) {
  .sbs.sbs_self .cnt {
    max-width: 100%;
    padding: 0 24px;
  }
}
@media (max-width: 990px) {
  .sbs.sbs_self {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .sbs.sbs_self .img {
    width: 100%;
  }
  .sbs.sbs_self .txt_wrap {
    width: 100%;
  }
  .sbs.sbs_self .txt_wrap .txt {
    max-width: 100%;
  }
}

.self_Pqa {
  padding: 120px 0px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.self_Pqa .cnt {
  max-width: 1080px;
}
.self_Pqa .title_sec {
  margin-bottom: 30px;
}
.self_Pqa .title_sec h3 {
  color: #3d7572;
  font-size: 16px;
  font-style: normal;
  font-weight: 450;
  line-height: 140%;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.self_Pqa .title_sec h2 {
  color: #222;
  font-size: 38px;
  font-style: normal;
  font-weight: 450;
  line-height: 140%;
  text-transform: uppercase;
  margin-bottom: 0px;
}
.self_Pqa .accordion_container {
  position: relative;
  z-index: 30;
}
.self_Pqa .accordion_container h4 {
  position: relative;
  cursor: pointer;
  color: #3A3E3F;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 450;
  line-height: 24px;
  margin-bottom: 0px;
  text-transform: inherit;
}
.self_Pqa .accordion_container h4 .plusminus {
  position: absolute;
  right: 25px;
  top: 0px;
}
.self_Pqa .accordion_container h4 .plusminus:before {
  position: absolute;
  top: 6px;
  color: #3A3E3F;
  font-size: 16px;
  display: inline-block;
  content: "\f078";
  font-weight: 900;
  font-family: "FontAwesome";
  transform-origin: center;
  transition: all 0.3s;
}
.self_Pqa .accordion_container .item {
  margin-left: 0px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  transition: all 0.3s;
  border-bottom: 1px solid #3d7572;
}
.self_Pqa .accordion_container .item:last-child {
  margin-bottom: 0;
}
.self_Pqa .accordion_container .item.active h4 .plusminus::before {
  content: "\f054";
}
.self_Pqa .accordion_container .accordion_body {
  padding-left: 0px;
  padding: 0px;
  max-width: 95%;
}
.self_Pqa .accordion_container .accordion_body p {
  color: #333;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 420;
  line-height: 24px;
  margin-top: 18px;
}
@media (max-width: 1300px) {
  .self_Pqa .cnt {
    max-width: 92%;
  }
}
@media (max-width: 1200px) {
  .self_Pqa .cnt {
    max-width: 100%;
    padding: 0 24px;
  }
}
@media (max-width: 990px) {
  .self_Pqa {
    padding: 64px 0;
  }
}

.self_sbs_form {
  position: relative;
  padding: 130px 0 50px;
  margin-bottom: 120px;
}
.self_sbs_form::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  width: 57%;
  height: 100%;
  background: #E8EFEE;
}
.self_sbs_form .form_title {
  max-width: 496px;
  text-align: center;
  margin: 0 auto 64px;
}
.self_sbs_form .form_title h2 {
  color: #5D5D5D;
  font-size: 40px;
  font-style: normal;
  font-weight: 420;
  line-height: 48px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.self_sbs_form .form_title p {
  font-style: normal;
  font-weight: 420;
  line-height: 22.4px;
  letter-spacing: 0.5px;
}
.self_sbs_form .form-group {
  margin-bottom: 26px;
}
.self_sbs_form .form-control {
  position: relative;
  padding: 5px 0px 8px;
  color: #222;
  font-size: 15px;
  font-style: normal;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 420;
  width: 100%;
  line-height: normal;
  background-color: transparent;
  border-bottom: 2px solid #222;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.self_sbs_form .form-control::-moz-placeholder {
  color: #222;
  font-size: 15px;
  font-style: normal;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 420;
  line-height: normal;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.self_sbs_form .form-control::placeholder {
  color: #222;
  font-size: 15px;
  font-style: normal;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 420;
  line-height: normal;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.self_sbs_form .form-check {
  text-align: center;
}
.self_sbs_form .form-check label {
  font-size: 15.9px;
  font-style: normal;
  font-weight: 420;
  line-height: 22.4px;
  letter-spacing: 0.5px;
}
.self_sbs_form .form-btn-box {
  text-align: center;
}
.self_sbs_form .txt_content {
  max-width: 404px;
  margin: 0 auto;
}
.self_sbs_form .txt_content .img {
  margin-bottom: 12px !important;
}
.self_sbs_form .txt_content .wrap {
  margin-bottom: 50px;
}
.self_sbs_form .txt_content .wrap .rating {
  margin-bottom: 12px;
}
.self_sbs_form .txt_content .wrap .rating em {
  color: #3d7572;
  font-size: 16px;
}
.self_sbs_form .txt_content .wrap:last-of-type {
  margin-bottom: 0px;
}
@media (max-width: 1440px) {
  .self_sbs_form::before {
    width: 59%;
  }
}
@media (max-width: 990px) {
  .self_sbs_form {
    padding: 64px 0;
  }
  .self_sbs_form::before {
    right: 0px;
    width: 100%;
  }
  .self_sbs_form .txt_content {
    max-width: 100%;
    padding-top: 32px;
  }
}
@media (max-width: 767px) {
  .self_sbs_form .form_title {
    margin-bottom: 32px;
  }
  .self_sbs_form .form_title h2 {
    font-size: 24px;
  }
}/*# sourceMappingURL=atf.css.map */