h1 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-size: 180px;
  line-height: 180px;
  font-weight: bold;
  font-family: var(--primary-font);
}

h2 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -1px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: var(--primary-font);
}

h3 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-size: 37px;
  line-height: 44px;
  letter-spacing: 2px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: var(--primary-font);
}

h4 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-size: 21px;
  line-height: 32px;
  font-weight: 300;
}

h5 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

h6 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

p {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-size: 16px;
  line-height: 26px;
  font-weight: normal;
}

blockquote {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  quotes: none;
}

blockquote:before {
  content: '';
  content: none;
}

blockquote:after {
  content: '';
  content: none;
}

q {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  quotes: none;
}

q:before {
  content: '';
  content: none;
}

q:after {
  content: '';
  content: none;
}

label {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  text-align: left;
}

/* pro cms styles */
.padding-full-top-bottom {
    padding: 0;
}

.submit {
  font-size: 24px;
  line-height: 28px;
  font-weight: bold;
}

.policy-maker-label {
  font-size: 14px;
  line-height: 26px;
  letter-spacing: 2px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: right;
}

.detail-label {
  font-size: 14px;
  line-height: 26px;
  font-weight: 300;
  text-transform: uppercase;
  text-align: left;
}

.detail-text {
  font-size: 26px;
  line-height: 26px;
  font-weight: normal;
  text-transform: uppercase;
  text-align: right;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.nopadding {
  padding: 0;
}

.custom-padding {
  padding-left: 10px;
  padding-right: 10px;
}

.no-margin {
  margin-right: 0;
  margin-left: 0;
}

.sup-title {
  display: inline-block;
  font-size: 1em;
  padding: 4px;
  text-transform: uppercase;
  font-weight: bold;
  color: #ffffff;
  background: #000000;
  margin: 0 0 20px 0;
}

.spacer {
  width: 100%;
  height: 50px;
  width: 100%;
  height: 50px;
}

#loading {
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  position: fixed;
  opacity: 1;
  background-color: #f2f2f2;
  z-index: 9999;
  text-align: center;
}

#loading-image {
  display: inline;
  top: 40%;
  position: relative;
  z-index: 9999;
}



p a {
  text-decoration:underline;
}


#main {
  height: 100%;
  margin-top: 0;
  /*background-color: #eee;*/
}

#main > * {
  /*max-width: 1080px;*/
  margin: 0 auto;
}

#main > .hero-section {
  position: relative;
  /*max-width: unset;*/
  background-color: #eeeeee;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 95px 0 0 0;
}

#main > .services-section {
  width: 100%;
  max-width: 1080px;
  }

#main > #features {
  width: 100%;
  max-width: 1080px;
  }

.blue-underline, .red-underline {
  display: inline-block;
  position: relative;
}

.fadeInUp .blue-underline::before {
  /* content: '';
  position: absolute;
  width: 200px;
  height: 4px;
  left: 50%;
  bottom:0;
  background-color: #007bc7;
  transition: all ease-in-out .2s; */
  content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	border-bottom: solid 4px #007bc7;
	animation: border_anim .4s forwards ease-in-out;
}

.fadeInUp.animated .blue-underline::before {
  content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	border-bottom: solid 4px #007bc7;
	animation: none;
}

.fadeInUp .red-underline::before {
  /* content: '';
  position: absolute;
  width: 300px;
  height: 4px;
  background-color: #dc0228;
  transition: all ease-in-out .2s; */
  content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	border-bottom: solid 4px #dc0228;
	animation: border_anim .4s forwards ease-in-out;
}

.fadeInUp.animated .red-underline::before {
  content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	border-bottom: solid 4px #dc0228;
	animation: none;
}

@keyframes border_anim {
	0%{
		width: 0%;
	}
	100%{
		width: 100%;
	}
}

.hero-section .hero-header {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 25%;
  padding-left: 5%;
  -webkit-box-pack: end; /* justify-content */
  -webkit-box-align: end; /* align-items */
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.hero-section .hero-pro {
  -webkit-writing-mode: tb-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: tb-rl;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  color: #030e28;
  margin-left: -35px;
  z-index: 2;
}

.hero-section .hero-what-makes {
  -webkit-writing-mode: tb-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: tb-rl;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  color: #cccccc;
  white-space: nowrap;
  z-index: 2;
}

.hero-section .hero-img {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.hero-section .hero-img.hero-parallax {
  position: absolute;
  width: 100%;
  top: 0 !important;
  left: 0 !important;
}

.hero-section .hero-img.hero-parallax .size-builder {
  margin-bottom: 52%;
}

.hero-section .hero-img .size-builder {
  width: 100%;
  display: block;
  margin-bottom: 104%;
}

.hero-section .hero-img img {
  width: 46%;
  position: absolute;
  bottom: 0 !important;
  left: 26% !important;
  z-index: 3;
}

.hero-section .hero-img .circle-container {
  display: inline-block;
  width: 42.5%;
  position: absolute;
  top: 11% !important;
  left: 25% !important;
  z-index: 1;
  opacity: 1;
}

.hero-section .hero-img .circle-container .dummy {
  margin-top: 100%;
}

.hero-section .hero-img .circle-container .circle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
  opacity: 0.5;
  border: 1px solid #dc0228;
}

.hero-section .hero-description {
  width: 25%;
  padding-right: 40px;
  color: #666666;
  position: relative;
  z-index: 4;
}

.hero-section .hero-description .arrow-down {
  width: 45px;
  height: 22.5px;
  margin: 10vw auto -10vw auto;
  display: block;
  text-align: center;
}

@media only screen and (max-width: 992px) and (min-width: 768px) {
  .hero-section .hero-description .arrow-down {
    margin-top: 5vw;
  }
}

.hero-content {
  width: 100%;
  padding: 200px 0 100px 0;
  overflow: hidden;
}

.hero-content h1 {
  font-size: 34px;
  color: #111111;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 14px;
  color: #111111;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.txt-white h1 {
  color: #ffffff;
}

.txt-white p {
  color: #ffffff;
}

.app-hero {
  background: #f3f3f3;
}

.app-hero-content {
  overflow: hidden;
  padding: 150px 0 0 0;
}

.app-hero-content h1 {
  color: #111111;
}

.app-hero-content p {
  color: #111111;
}

.app-hero-content img {
  margin-top: 50px;
}

.app-sub {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.6)), to(rgba(255, 255, 200, 0.1))), url(../feature_bg.html) no-repeat center center;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 200, 0.1)), url(../feature_bg.html) no-repeat center center;
  background-size: cover;
}

.app-sub-inner {
  width: 100%;
  height: 100%;
  padding: 100px 0 100px 0;
  overflow: hidden;
}

.app-sub-content {
  padding: 100px 0 0 0;
}

.app-sub-content h1 {
  font-size: 42px;
  font-weight: 700;
  color: #111111;
  line-height: 1.2;
  margin-bottom: 30px;
}

.app-sub-content p {
  font-size: 16px;
  font-weight: 100;
  color: #111;
  line-height: 1.4;
  margin-bottom: 30px;
}

.app-sub-content .subscribe-form {
  text-align: left;
}

.services-section {
  background: #ffffff;
  padding-top: 50px;
  padding-bottom: 0px;
}

.services-section p {
  font-size: 21px !important;
  font-weight: 400 !important;
  line-height: 32px !important;
  margin-top: 50px;
}

.services-section .row {
  margin: 0;
}

.services {
  overflow: hidden;
  padding-top: 50px;
  padding-bottom: 50px;
}

.services .services-icon {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid;
  border-color: transparent;
  background: #f6f6f6;
  margin: 0 auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.services .services-icon img {
  position: absolute;
  top: 10%;
  left: 11%;
  font-size: 42px;
}

.services .services-description {
  margin-bottom: 50px;
}

.services .services-description h1 {
  font-size: 18px;
  color: #111111;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  margin-top: 20px;
  margin-bottom: 20px;
}

.services .services-description p {
  font-size: 13px;
  color: #444444;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.5;
  margin-top: 0;
}

.services .col-sm-4:hover .services-icon {
  border-color: #5924ec;
}

.flex-features {
  padding-top: 0;
  padding-bottom: 50px;
  padding-left: 25px;
  padding-right: 25px;
}

.flex-split {
  padding-top: 50px;
  padding-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

.flex-split::before {
  content: '+';
  font-size: 24px;
  font-weight: bold;
  position: absolute;
  color: #007bc7;
  z-index: -1;
  top: 120px;
  left: 50%;
}

.flex-split::after {
  content: '+';
  font-size: 24px;
  font-weight: bold;
  position: absolute;
  color: #dc0228;
  z-index: -1;
  bottom: 100px;
  left: 40%;
}

.flex-split.right-align::before {
  bottom: 100px;
  left: 66%;
  top: unset;
}

.flex-split.right-align::after {
  top: 220px;
  bottom: unset;
  left: 50%;
}

@media (max-width: 767px) {
  .flex-split::after {
    top: 410px;
    bottom: unset;
    left: 5%;
  }
  .flex-split::before {
    bottom: 370px;
    bottom: unset;
    left: 60%;
  }
  .flex-split.right-align::before {
    bottom: 600px;
    left: 90%;
    top: unset;
  }
  .flex-split.right-align::after {
    top: 379px;
    bottom: unset;
    left: 10%;
  }
}

@media (max-width: 992px) {
  .flex-split::after {
    top: 410px;
    bottom: unset;
    left: 5%;
  }
  .flex-split::before {
    bottom: 370px;
    bottom: unset;
    left: 60%;
  }
  .flex-split.right-align::before {
    bottom: 370px;
    left: 5%;
    top: unset;
  }
}

.flex-split .right-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 390px;
}

.flex-split .left-content {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 60%;
          flex: 1 0 60%;
}

.flex-split .middle-content {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 40%;
          flex: 1 0 40%;
}

.flex-split .middle-content > * {
  margin: 0;
  margin-top: 40px;
  margin-left: 20%;
  width: 80%;
  text-transform: uppercase;
  font-family: var(--primary-font);
}

.flex-split .middle-content > .row:first-child {
  width: 100%;
  margin-left: 0;
}

.flex-split .profile-title {
  font-size: 14px;
  line-height: 26px;
  font-weight: bold;
  letter-spacing: 4px;
  text-align: right;
}

.flex-split .profile-label {
  font-size: 14px;
  font-weight: 300;
}

.flex-split .profile-content {
  font-size: 26px;
  font-weight: normal;
  line-height: 26px;
  text-align: right;
}

.flex-split .f-left {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-split .f-left .left-content {
  width: 100%;
}

.flex-split .f-left img {
  width: 100%;
  border-radius: 50%;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.flex-split .f-left img:hover {
  /* -webkit-transform: scale(1.05);
          transform: scale(1.05); */
}

.flex-split .f-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 390px;
}

.flex-split .f-right h2 {
  font-size: 28px;
  color: #111111;
  font-weight: 600;
  line-height: 1.2;
}

.flex-split .f-right p {
  font-size: 16px;
  color: #111111;
  line-height: 26px;
  margin: 40px 0 0 0;
}

.flex-split .f-right ul {
  margin-bottom: 20px;
}

.flex-split .f-right ul i {
  margin-right: 10px;
}

.flex-split .f-right li {
  font-size: 14px;
  color: #111111;
  line-height: 2;
}

.footer {
  background-color: #030e28;
  color: #ffffff;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 50px 25px 50px 25px;
  text-align: center;
}

.footer-container {
  max-width: 585px;
  margin: 0 auto;
}

.footer-container p {
  font-size: 21px !important;
  line-height: 32px !important;
  margin-top: 40px;
  margin-bottom: 25px;
  color: #ffffff !important;
}

.no-color {
  background: #ffffff;
}

.back-to-top {
  background: rgba(89, 36, 236, 0.5);
  margin: 0;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  z-index: 90;
  display: none;
  text-decoration: none;
  color: #0e1729;
}

.back-to-top i {
  position: relative;
  left: 13px;
  top: 8px;
  font-size: 24px;
  color: #ffffff;
  -webkit-transition: 200ms;
  transition: 200ms;
}

.back-to-top:hover {
  background: rgba(89, 36, 236, 0.9);
  color: #ffffff;
}

.back-to-top:hover i {
  top: 6px;
}

.back-to-top:focus {
  color: #ffffff;
}


@media only screen and (min-width: 767px) {
  #left {
    width: 25px;
  }
  #right {
    width: 25px;
  }
  #top {
    height: 25px;
  }
  #bottom {
    height: 25px;
  }
  .custom-padding {
    padding-left: 80px;
    padding-right: 80px;
  }
  .hero-content {
    width: 100%;
    padding: 260px 0 120px 0;
  }
  .hero-content h1 {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 0;
    letter-spacing: -2px;
    margin-bottom: 25px;
  }
  .hero-content p {
    font-size: 14px;
  }
  .services-content h1 {
    font-size: 28px;
    line-height: 1.4;
  }
  .services-content p {
    font-size: 14px;
  }
  .services .services-description {
    margin-bottom: 75px;
  }
  .flex-features {
    padding-top: 0px; /* 50px - wordpress style issue */
    padding-bottom: 50px;
  }

  .features-section {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .features-section .f-left {
    padding: 60px;
  }
  .features-section .f-left h2 {
    font-size: 34px;
  }
  .features-section .f-right {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 50%;
            flex: 1 0 50%;
  }
  .features-section-2 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .features-section-2 .features-content {
    padding: 50px;
  }
  .features-section-2 .features-content h2 {
    font-size: 34px;
    margin-top: 20px;
  }
  .features-section-2 .features-content h4 {
    font-size: 21px;
  }
  .features-section-2 .features-content p {
    font-size: 15px;
  }
  .col-md-5 { /* fix - wordpress style issue */
    -webkit-box-flex: 0;
    -ms-flex: unset;
    flex: none;
    max-width: none;
  }

}


@media only screen and (min-width: 992px) {
  .flex-split {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .flex-split .f-right {
    padding: 0;
  }
  .flex-split .f-right h2 {
    font-size: 34px;
  }
  .flex-split.right-align .f-left .middle-content {
    margin-left: -40px;
    margin-right: 40px;
  }
}

@media only screen and (min-width: 767px) and (max-width: 992px) {
  .flex-split .f-left img {
    width: 75%;
  }
  .right-align .f-left .left-content img {
    float: right;
  }
}

@media only screen and (max-width: 992px) {
  .hero-section .hero-img {
    width: 40%;
  }
  .hero-section .hero-img.hero-parallax .size-builder {
    margin-bottom: 41.5%;
  }
  .hero-section .hero-img img {
    width: 37%;
  }
  .hero-section .hero-img .circle-container {
    width: 31.5%;
  }
  .hero-section .hero-pro {
    margin-left: -55px;
  }
  .hero-section .hero-pro h1 {
    font-size: 120px;
  }
  .hero-section .hero-what-makes h2 {
    font-size: 45px;
    margin-top: 10px;
  }
  .hero-section .hero-description {
    width: 35%;
    padding-right: 40px;
    margin-left: -50px;
  }
}

@media only screen and (max-width: 766px) {
  #main > .hero-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
  }
  .hero-section .hero-img {
    width: 70%;
    display: none;
  }
  .hero-section .hero-img.hero-parallax {
    display: block;
    position: inherit;
    width: 70%;
    margin-top: 120px;
  }
  .hero-section .hero-img.hero-parallax .size-builder {
    margin-bottom: 0;
  }
  .hero-section .hero-img.hero-parallax img {
    width: 100%;
    position: relative;
    bottom: unset !important;
    left: unset !important;
    margin-bottom: -10px;
  }
  .hero-section .hero-img.hero-parallax .circle-container {
    top: 16% !important;
    left: 0% !important;
    width: 100%;
  }
  .hero-section .hero-header {
    text-align: center;
    width: 100%;
    padding-left: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    display: block;
  }
  .hero-section .hero-pro {
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    -webkit-transform: unset;
            transform: unset;
    margin-left: 0;
    margin-top: -20px;
  }
  .hero-section .hero-pro h1 {
    font-size: 100px;
    line-height: 100px;
  }
  .hero-section .hero-what-makes {
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    -webkit-transform: unset;
            transform: unset;
  }
  .hero-section .hero-what-makes h2 {
    font-size: 35px;
    margin-top: 10px;
  }
  .hero-section .hero-description {
    width: 70%;
    position: absolute;
    bottom: 5px;
    text-align: center;
    padding-right: 0;
    top: 160px;
    margin-left: 0;
    color: #666666;
  }
  .hero-section .hero-description .arrow-down {
    width: 45px;
    height: 22.5px;
    position: absolute;
    margin: 10vw auto -10vw auto;
    display: block;
    text-align: center;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media only screen and (max-width: 991px) {
  .flex-split {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .flex-split .f-left {
    padding: 0 25px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .flex-split .f-left .profile-title {
    font-size: 20px;
  }
  .flex-split .f-right {
    width: 100%;
  }
  .flex-split .f-right .right-content {
    width: 100%;
    text-align: center;
    padding: 25px;
  }
  .flex-split .f-right h2 {
    font-size: 34px;
  }
  .flex-split.right-align {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .flex-split.right-align .f-left .profile-title {
    text-align: left;
  }
  .flex-split.right-align .f-left .middle-content > * {
    margin-left: 0;
  }
}

@media only screen and (max-width: 768px) {
  .flex-split .f-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flex-split .f-left .middle-content > * {
    margin-left: 0;
    width: 100%;
  }
  .flex-split .f-left .profile-title {
    text-align: center !important;
  }
  .flex-split .f-left .profile-label {
    text-align: center !important;
  }
  .flex-split .f-left .profile-content {
    text-align: center !important;
  }
  .flex-split.right-align .f-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .flex-split .middle-content .row {
    margin-top: 20px;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .flex-split .f-left img {
    margin-top: 30px;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1180px) {
  .flex-split .f-left img {
    margin-top: 50px;
  }
}

@media (min-width: 1280px) {
  .hero-section .hero-pro {
    margin-left: -1vw;
  }
  .hero-section h1 {
    font-size: 16vw;
    line-height: 14vw;
  }
  .hero-section h2 {
    font-size: 5.5vw;
    line-height: 5.5vw;
    margin-top: 15px;
  }
  .hero-section .hero-description p {
    font-size: 1.3vw;
    line-height: 2vw;
    letter-spacing: -1px;
  }
}