/* Mixin */
.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flex;
  display: flex;
}

body {
  color: #54536C;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  display: block;
}
.navbar .nav .dropdown-menu li:hover{background-color: #63d6b5 !important;}
@media screen and (min-width: 991px) {
  .navbar .custom_container, footer .custom_container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
  }
}
.spacing, .howToRecord, .secWrap {
  padding: 70px 0;
}
@media screen and (min-width: 768px) {
  .spacing, .howToRecord, .secWrap {
    padding: 100px 0;
  }
}

.h2, .centerWrap h2, .secWrap h2.big,
.secWrap h3.big,
.secWrap .title.big, .howToRecord h2 {
  color: #54536C;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 100px;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .h2, .centerWrap h2, .secWrap h2.big,
.secWrap h3.big,
.secWrap .title.big, .howToRecord h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .h2, .centerWrap h2, .secWrap h2.big,
.secWrap h3.big,
.secWrap .title.big, .howToRecord h2 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 579px) {
  .h2, .centerWrap h2, .secWrap h2.big,
.secWrap h3.big,
.secWrap .title.big, .howToRecord h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
}

.sub-h2 {
  color: #54536C;
  font-size: 20px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin: 0 auto 20px;
  line-height: 1.3;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .sub-h2 {
    font-size: 24px;
  }
}

@media screen and (min-width: 992px) {
  .navbar {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    margin: 0px;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    font-weight: 400;
    border: 0px;
    align-items: center;
  }
  .navbar .dropdown-toggle:after {
    display: none;
  }
  .navbar .navbar-toggler {
    display: none;
  }
  .navbar .navbar-toggler.collapsed {
    display: none;
  }
  .navbar .collapse {
    display: block;
  }
  .navbar.active {
    background: #fff !important;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.001);
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.001);
    -moz-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.001);
  }
  .navbar .flex {
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .navbar .navbar-collapse {
    padding: 0px;
    flex-basis: auto;
    flex-grow: 0;
  }
  .navbar .navbar-header {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    display: -webkit-flex;
    display: flex;
  }
  .navbar .navbar-brand {
    padding: 0px;
  }
  .navbar .navbar-brand img {
    display: block;
    height: 34px;
    width: auto;
  }
  .navbar .nav {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    display: -webkit-flex;
    display: flex;
    font-family: "Open Sans", sans-serif;
  }
  .navbar .nav > li {
    margin-left: 10px;
    position: relative;
    padding: 0;
  }
  .navbar .nav > li a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    padding: 10px;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    cursor: pointer;
    color: #54536C;
    font-size: 15px;
    white-space: nowrap;
    font-family: "Open Sans", sans-serif;
  }
  .navbar .nav > li a span {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    display: -webkit-flex;
    display: flex;
    margin-left: 6px;
  }
  .navbar .nav > li a span svg {
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
  }
  .navbar .nav > li a:hover, .navbar .nav > li a:focus {
    background: none;
    color: #F47503;
  }
  .navbar .nav > li a.signUpButton {
    background: #F47503;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
  }
  .navbar .nav > li a.signUpButton:hover {
    color: #fff;
  }
  .navbar .nav > li:hover .dropdown-menu {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    opacity: 1;
    pointer-events: inherit;
  }
  .navbar .nav > li:hover > a {
    color: #F47503;
  }
  .navbar .nav > li:hover > a span svg {
    transform: scaleY(-1);
    -webkit-transform: scaleY(-1);
    -moz-transform: scaleY(-1);
  }
  .navbar .nav > li:hover > a span svg path {
    stroke: #F47503;
  }
  .navbar .nav .dropdown-menu {
    display: block;
    pointer-events: inherit;
    border: 0px;
    opacity: 0;
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    margin: 0px;
    transform-origin: top;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    top: 100%;
    box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.0015);
    -webkit-box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.0015);
    -moz-box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.0015);
    padding: 6px 0;
  }
  .navbar .nav .dropdown-menu a {
    padding: 12px 20px;
  }
  .navbar .nav .dropdown-menu a:hover, .navbar .nav .dropdown-menu a:focus {
    background: none;
  }
  .navbar .nav .dropdown-menu li:hover {
    background: rgba(99, 214, 181, 0.01);
  }
  .navbar .nav .dropdown-menu li:hover a {
    text-decoration: none;
    color: #fff;
    color: #fff;
  }
  .navbar .nav .dropdown-menu li:focus {
    background: rgba(99, 214, 181, 0.01);
  }
  .navbar .nav .dropdown-menu li:focus a {
    text-decoration: none;
    color: #fff;
    color: #fff;
  }
}
@media screen and (max-width: 991px) {
  .navbar {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    margin: 0px;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    font-weight: 400;
    border: 0px;
    align-items: center;
  }
  .navbar.active {
    background: #fff !important;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.001);
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.001);
    -moz-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.001);
  }
  .navbar .navbar-brand {
    padding: 0px;
  }
  .navbar .dropdown-toggle:after {
    display: none;
  }
  .navbar .flex {
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .navbar .nav {
    display: block;
    padding: 10px 0;
    width: 100%;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    box-shadow: inset 0px 3px 3px rgba(0, 0, 0, 0.0008);
    margin-top: 10px;
    align-items: center;
    max-height: calc(90vh - 80px);
    max-height: calc(var(--vh, 1vh) * 100 - 80px);
    overflow-y: auto;
    text-align: center;
  }
  .navbar .nav > li {
    text-align: left;
    width: 100%;
    margin: 0 auto;
    display: block;
    clear: both;
  }
  .navbar .nav > li:not(:last-of-type) > a {
    border-bottom: 1px solid #EBEBEB;
  }
  .navbar .nav > li:not(:last-of-type) > a.show {
    border-color: transparent;
  }
  .navbar .nav > li:hover a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    cursor: pointer;
    color: #54536C;
    font-size: 15px;
    white-space: nowrap;
    margin: 0 auto;
    font-family: "Open Sans", sans-serif;
    color: #54536C;
  }
  .navbar .nav > li:hover a span svg {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
  }
  .navbar .nav > li a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    cursor: pointer;
    color: #54536C;
    font-size: 15px;
    white-space: nowrap;
    max-width: 720px;
    margin: 0 auto;
    font-family: "Open Sans", sans-serif;
  }
  .navbar .nav > li a span {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    display: -webkit-flex;
    display: flex;
    margin-left: 6px;
  }
  .navbar .nav > li a span svg {
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    width: 12px;
    height: auto;
  }
  .navbar .nav > li a.show {
    color: #F47503;
  }
  .navbar .nav > li a.show span svg {
    transform: scaleY(-1);
    -webkit-transform: scaleY(-1);
    -moz-transform: scaleY(-1);
  }
  .navbar .nav > li a.show span svg path {
    stroke: #F47503;
  }
  .navbar .nav > li a.signUpButton {
    background: #F47503;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    margin-top: 20px;
    text-align: center;
    margin: 20px auto 0;
    justify-content: center;
  }
  .navbar .nav > li a.signUpButton:hover {
    color: #fff;
  }
  .navbar .nav > li a.signUpButton.show {
    color: #fff;
  }
  .navbar .nav > li .dropdown-menu {
    background: #fafafa;
    display: block;
    pointer-events: inherit;
    border: 0px;
    position: static;
    height: 0px;
    overflow: hidden;
    visibility: hidden;
    margin: 0px;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
    -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
    -moz-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    padding: 0;
  }
  .navbar .nav > li .dropdown-menu a {
    padding: 12px 0px;
    text-align: left;
    justify-content: flex-start;
  }
  .navbar .nav > li .dropdown-menu a:hover, .navbar .nav > li .dropdown-menu a:focus {
    background: none;
  }
  .navbar .nav > li .dropdown-menu li:hover {
    background: rgba(99, 214, 181, 0.01);
  }
  .navbar .nav > li .dropdown-menu li:hover a {
    text-decoration: none;
    color: #fff;
    color: #fff;
  }
  .navbar .nav > li .dropdown-menu li:focus {
    background: rgba(99, 214, 181, 0.01);
  }
  .navbar .nav > li .dropdown-menu li:focus a {
    text-decoration: none;
    color: #fff;
    color: #fff;
  }
  .navbar .nav > li .dropdown-menu.show {
    height: auto;
    visibility: visible;
  }
  .navbar .nav > li .dropdown-menu.show li:last-of-type a {
    border-bottom: 1px solid #e5e5e5;
  }
  .navbar .custom_container {
    padding: 0px;
  }
  .navbar .navbar-header {
    padding: 0;
    position: relative;
    z-index: 9;
    align-items: center;
  }
  .navbar .navbar-toggler {
    display: block;
    margin: 0px;
    margin-left: auto;
    width: 34px;
    height: 34px;
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 8px;
    background: #F5F5F7;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
  }
  .navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0;
    -webkit-box-shadow: 0 0 0 0;
    -moz-box-shadow: 0 0 0 0;
  }
  .navbar .navbar-toggler.collapsed {
    background: transparent;
    display: block;
  }
  .navbar .navbar-toggler.collapsed span {
    background: #54536C;
    display: block;
    height: 2px;
    width: 100%;
    position: relative;
  }
  .navbar .navbar-toggler.collapsed span:before, .navbar .navbar-toggler.collapsed span:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #54536C;
    border: 0px;
    left: 0px;
  }
  .navbar .navbar-toggler.collapsed span:before {
    -moz-transform: translateY(-6px) rotate(0deg);
    -o-transform: translateY(-6px) rotate(0deg);
    -ms-transform: translateY(-6px) rotate(0deg);
    -webkit-transform: translateY(-6px) rotate(0deg);
    transform: translateY(-6px) rotate(0deg);
  }
  .navbar .navbar-toggler.collapsed span:after {
    -moz-transform: translateY(6px) rotate(0deg);
    -o-transform: translateY(6px) rotate(0deg);
    -ms-transform: translateY(6px) rotate(0deg);
    -webkit-transform: translateY(6px) rotate(0deg);
    transform: translateY(6px) rotate(0deg);
  }
  .navbar .navbar-toggler span {
    background: transparent;
    display: block;
    height: 2px;
    width: 100%;
    position: relative;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
  }
  .navbar .navbar-toggler span:before, .navbar .navbar-toggler span:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #54536C;
    border: 0px;
    left: 0px;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
  }
  .navbar .navbar-toggler span:before {
    -moz-transform: translateY(0px) rotate(45deg);
    -o-transform: translateY(0px) rotate(45deg);
    -ms-transform: translateY(0px) rotate(45deg);
    -webkit-transform: translateY(0px) rotate(45deg);
    transform: translateY(0px) rotate(45deg);
  }
  .navbar .navbar-toggler span:after {
    -moz-transform: translateY(0px) rotate(-45deg);
    -o-transform: translateY(0px) rotate(-45deg);
    -ms-transform: translateY(0px) rotate(-45deg);
    -webkit-transform: translateY(0px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg);
  }
  .navbar .navbar-collapse {
    width: 100%;
    justify-content: center;
    background: #fff;
    padding: 10px 0 30px;
  }
  .navbar .navbar-collapse.show {
    overflow-y: inherit;
  }
  .navbar #navbar {
    position: absolute;
    left: 0;
    right: 0;
    top: 0px;
    padding-top: 65px;
  }
  .navbar .collapse {
    display: none;
    width: 100%;
  }
  .navbar .collapse.show {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    display: -webkit-flex;
    display: flex;
    height: auto;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.001);
    -webkit-box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.001);
    -moz-box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.001);
  }

  .navbar-header {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    display: -webkit-flex;
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  .navbar-header:before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .navbar .nav li a {
    max-width: 540px;
  }
  .navbar .nav > li .dropdown-menu li:hover {
    background: transparent;
  }
}
@media screen and (max-width: 579px) {
  .navbar .nav {
    padding: 0px;
  }
  .navbar .nav > li {
    margin: 0 auto;
  }
  .navbar .nav > li a {
    padding: 20px 24px;
    max-width: 100%;
  }
  .navbar .nav > li a.signUpButton {
    margin: 20px 24px 0;
  }
  .navbar .nav > li .dropdown-menu li a {
    padding: 12px 24px;
  }
}
footer {
  background: #212121;
  padding: 100px 0;
}
footer .flex {
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .flex .item {
  width: 25%;
  padding-right: 20px;
  margin-bottom: 70px;
}
footer .flex .item:last-of-type {
  margin-right: auto;
}
footer .flex .item.full {
  width: 100%;
}
footer h6 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 800;
  margin-bottom: 1.5em;
}
footer li a {
  display: inline-block;
  padding: 6px 0px;
  color: #AFAFAF;
  font-family: "Open Sans", sans-serif;
  font-size: clamp(16px, 3vw, 18px);
  text-decoration: none;
  position: relative;
}
footer li a:after {
  content: "";
  width: 100%;
  height: 2px;
  color: #AFAFAF;
  display: block;
  position: absolute;
  left: 0;
  transform-origin: left;
  bottom: 0;
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
}
footer li a:hover {
  color: #F47503;
  text-decoration: none !important;
}
footer li a:hover:after {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  background: #F47503;
}
footer .address h6 {
  font-size: clamp(18px, 4vw, 24px);
}
footer .address p {
  display: inline-block;
  padding: 0;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: clamp(16px, 3vw, 18px);
  line-height: 1.3;
}
footer .address p strong {
  font-weight: 800;
}
footer .address p span {
  color: #F47503;
}
footer .address p small {
  font-size: 12px;
  color: #AFAFAF;
  display: block;
  margin: 8px 0 12px;
}
footer .address p:last-of-type {
  font-size: clamp(13px, 3vw, 15px);
  color: #AFAFAF;
  line-height: 1.7;
}
footer .address p:last-of-type a {
  color: #AFAFAF;
}
footer .address p:last-of-type a:hover {
  color: #F47503;
}
footer .address .social {
  margin: 10px 0 0 -10px;
}
footer .address .social a {
  padding: 10px;
  opacity: 0.5;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  display: inline-block;
}
footer .address .social a svg {
  height: 18px;
  width: auto;
}
footer .address .social a:hover {
  opacity: 1;
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
}
footer .logo {
  width: 100%;
  text-align: center;
  margin: 50px 0 30px;
}
footer .slogan {
  text-align: center;
  width: 100%;
}
footer .slogan p {
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 5vw, 40px);
  font-weight: 800;
  color: #fff;
}
footer .slogan p span {
  color: #F47503;
}
footer .copyright {
  width: 100%;
}
footer .copyright p {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  text-align: center;
  font-size: clamp(13px, 5vw, 15px);
  margin: 10px 0 0;
  color: #AFAFAF;
  line-height: 1.4;
}
footer .copyright p strong {
  font-weight: 400;
  color: #63D6B5;
}

@media screen and (max-width: 991px) {
  footer .flex .item {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 991px) {
  footer {
    padding: 70px 0;
  }
}
@media screen and (max-width: 579px) {
  footer .flex .item {
    width: 100%;
    margin: 0px;
  }
  footer .flex .item:not(:last-of-type) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.001);
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
  footer .address p {
    width: 100%;
  }
}
.secWrap .leftAlign {
  text-align: left !important;
  margin: 0 0 20px !important;
}
.secWrap .centerAlign {
  text-align: left !important;
  margin: 0 0 20px !important;
}
.secWrap .container {
  max-width: 1000px;
}
.secWrap.green {
  background: #f0fffb;
}
.secWrap.green li a {
  color: #63d6b5;
}
.secWrap.noPDtop {
  padding-top: 0px;
}
.secWrap h4 {
  font-size: 1.125rem;
  margin-bottom: 1em;
  line-height: 1.3;
}
.secWrap .spacer {
  height: 60px;
}
.secWrap .spacer.big {
  height: 100px;
}
.secWrap .flex {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.secWrap .flex .col {
  width: 45%;
  width: 100%;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.secWrap .flex .col .h2, .secWrap .flex .col .centerWrap h2, .centerWrap .secWrap .flex .col h2, .secWrap .flex .col h2.big,
.secWrap .flex .col h3.big,
.secWrap .flex .col .title.big, .secWrap .flex .col .howToRecord h2, .howToRecord .secWrap .flex .col h2, .secWrap .flex .col .secWrap h2.big, .secWrap .flex .col .secWrap h3.big, .secWrap .flex .col .secWrap .title.big {
  margin-bottom: 36px;
  text-align: left;
}
.secWrap .flex .col .h2 p, .secWrap .flex .col .centerWrap h2 p, .centerWrap .secWrap .flex .col h2 p, .secWrap .flex .col h2.big p,
.secWrap .flex .col h3.big p,
.secWrap .flex .col .title.big p, .secWrap .flex .col .howToRecord h2 p, .howToRecord .secWrap .flex .col h2 p, .secWrap .flex .col .secWrap h2.big p, .secWrap .flex .col .secWrap h3.big p, .secWrap .flex .col .secWrap .title.big p {
  margin: -80px auto 40px;
}
.secWrap .flex .col .title.small {
  font-size: 30px;
  margin-bottom: 20px;
}
.secWrap .flex .col img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: auto;
  height: auto;
  margin-bottom: 2em;
  max-width: 300px;
}
.secWrap .flex .col.first {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.secWrap .note {
  background: #fff;
  margin-top: 3em;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  padding: 27px;
  text-align: center;
  font-size: 1.125rem;
  margin-bottom: 1.25em;
  line-height: 1.5;
  font-weight: bold;
  box-shadow: 0px 1px 2px #00000029;
  border: 1px solid #E5E5E5;
}
.secWrap .note a {
  color: #53d0be;
  font-weight: bold;
  text-decoration: underline;
}
.secWrap .note a:hover {
  color: #a37bff;
}
.secWrap .pointers {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.secWrap .pointers .item {
  width: 100%;
}
.secWrap .pointers .item.full {
  width: 100%;
}
.secWrap .pointers.greyBg {
  background: #fafafa;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  padding: 20px 40px;
}
.secWrap .pointers li {
  position: relative;
  padding-left: 25px;
  line-height: 1.5em;
  margin-bottom: 20px;
  font-size: 1.125rem;
}
.secWrap .pointers li:before {
  content: "";
  background: #0bdab3;
  border: 0px;
  width: 14px;
  height: 14px;
  position: absolute;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  left: 0px;
  top: 7px;
}
.secWrap.bonus .col-xs-12 {
  max-width: 860px;
  margin: 0 auto;
}
.secWrap.bonus h2 {
  font-size: 2.25rem;
  text-align: center;
  color: #63d6b5;
  margin-bottom: 1em;
}
.secWrap.bonus h2 + .subTitle {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1.5em;
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  line-height: 1.6;
}
.secWrap.bonus .video {
  display: block;
}
.secWrap.bonus .video video {
  max-width: 100%;
}
.secWrap.bonus .video img {
  width: 100%;
  height: auto;
}
.secWrap.bonus .video button {
  position: absolute;
  padding: 0px;
  border: 0px;
  background: none;
  left: 50%;
  top: 50%;
  margin: -39px 0 0 -39px;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transform-origin: center;
  transform-origin: center;
}
.secWrap.bonus .video button img {
  display: block;
}
.secWrap.bonus .video button:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
}
.secWrap.bonus .video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  background: #111;
  cursor: pointer;
}
.secWrap .link {
  text-align: center;
  margin: 2em 0 0;
}
.secWrap .flexTable {
  box-shadow: 0px 3px 16px rgba(84, 83, 108, 0.2);
  -webkit-box-shadow: 0px 3px 16px rgba(84, 83, 108, 0.2);
  -moz-box-shadow: 0px 3px 16px rgba(84, 83, 108, 0.2);
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  overflow: hidden;
  margin: 0 auto;
}
.secWrap .flexTable .item {
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.secWrap .flexTable .item:not(:last-of-type) {
  border-bottom: 1px solid #efefef;
}
.secWrap .flexTable .item > div {
  padding: 30px;
  font-size: 1.125rem;
  line-height: 1.5;
  width: 100%;
  padding: 20px;
}
.secWrap .flexTable .item > div:first-of-type {
  max-width: 300px;
  width: 100%;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  border-right: 1px solid #efefef;
  width: 40%;
  border: 0px;
  padding-bottom: 0px;
}
.secWrap .flexTable .item > div:first-of-type a {
  color: #54536c;
  text-decoration: none;
  font-weight: 600;
}
.secWrap .flexTable .item > div:last-of-type {
  width: 60%;
}
.secWrap div.link {
  font-weight: bold;
  font-size: 1.125rem;
  margin-top: 2.5em;
  line-height: 1.4;
}
.secWrap div.link a {
  color: #63d6b5;
}
.secWrap div.link a:hover {
  color: #a37bff;
}
.secWrap .flipImg {
  transform: scale(-1, 1);
}
.secWrap.greyBg {
  background: #fafafa;
}
.secWrap.screenRecording p {
  max-width: 880px;
  width: 100%;
}
.secWrap.typesRecording p {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}
.secWrap.typesRecording ul {
  width: 100%;
  display: flex;
  text-align: center;
  flex-wrap: wrap;
}
.secWrap.typesRecording ul.justify-center {
  justify-content: center;
}
.secWrap.typesRecording ul li {
  width: calc(33.33% - 20px);
  margin: 20px 10px 0;
  border-radius: 14px;
  border: 1px solid #E0DFDF;
  padding: 15px 10px;
}
.secWrap.typesRecording ul li:hover {
  box-shadow: 0px 3px 6px #00000029;
}
.secWrap.typesRecording ul li p {
  margin: 0 auto;
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  width: 100%;
  font-size: 15px;
  text-align: center;
  min-height: 140px;
}
.secWrap.typesRecording ul li img {
  height: 173px;
  width: 210px;
}
.secWrap.typesRecording ul li:first-child img {
  margin-top: -15px;
  height: 188px;
}
.secWrap.typesRecording ul h4 {
  font-size: 18px;
  text-align: center;
  margin: 10px 0 20px;
}
.secWrap.typesRecording ul a {
  color: #2B71F7;
  font-size: 14px;
  text-decoration: none;
  margin: 10px 0 10px;
  display: inline-block;
}
.secWrap.typesRecording ul a img {
  width: 10px;
  height: 10px !important;
  margin-top: 0px !important;
  transform: rotate(180deg);
}
.secWrap.typesRecording ul a:hover {
  color: #F47503;
}
.secWrap.typesRecording ul a:hover img {
  filter: hue-rotate(160deg);
}
.secWrap .ctaButton p a {
  height: 56px;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 700;
  line-height: 56px;
  padding: 0px 40px;
  max-width: 320px;
  width: 100%;
  margin-bottom: 8px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  display: inline-block;
  box-shadow: 0px 2px 4px rgba(84, 83, 108, 0.12);
  -webkit-box-shadow: 0px 2px 4px rgba(84, 83, 108, 0.12);
  -moz-box-shadow: 0px 2px 4px rgba(84, 83, 108, 0.12);
  text-decoration: none;
}

.bannerWrap .desc {
  max-width: 470px;
}

.howToRecord {
  background: #fafafa;
}
.howToRecord h2 + P {
  text-align: center;
  margin: -80px auto 100px;
  font-size: 18px;
  line-height: 24px;
}
.howToRecord h2.mw828 {
  max-width: 828px;
}
.howToRecord .flex {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}
.howToRecord .flex:not(:first-of-type) {
  margin-top: 140px;
}
.howToRecord .flex .txt {
  width: 40%;
}
.howToRecord .flex .txt h2 {
  font-size: 24px;
  text-align: left;
  margin: 0 0 12px;
}
.howToRecord .flex .txt h2 + p {
  font-size: 18px;
  line-height: 24px;
  text-align: left;
}
.howToRecord .flex .txt p {
  margin: 0 0 0px;
  font-size: 18px;
}
.howToRecord .flex .txt p b {
  font-size: 24px;
}
.howToRecord .flex .txt p.step {
  font-size: 18px;
  line-height: 24px;
  text-align: left;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.howToRecord .flex .txt ul {
  display: block;
  margin-top: 30px;
}
.howToRecord .flex .txt ul li {
  max-width: 100%;
  font-size: 18px;
  line-height: 24px;
  padding-left: 18px;
  text-align: left;
  position: relative;
}
.howToRecord .flex .txt ul li:not(:last-of-type) {
  margin-bottom: 10px;
}
.howToRecord .flex .txt ul li:before {
  content: "";
  position: absolute;
  background: #63D6B5;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  left: 0px;
  top: 9px;
}
.howToRecord .flex .graphics {
  width: 57%;
}
.howToRecord .flex .graphics img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.howToRecord .howToRecord .w-80.text-center p {
  font-size: 18px;
}
.howToRecord #howTo {
  background-color: #EDEDED;
  max-width: 676px;
  margin: 10px auto 90px;
  height: 85px;
  padding: 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  display: flex;
}
.howToRecord #howTo li {
  display: flex;
  width: 50%;
}
.howToRecord #howTo li .nav-link {
  display: block;
  width: 100%;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #B0B0BA;
  font-size: clamp(15px, 4vw, 18px);
  line-height: 1.3;
}
.howToRecord #howTo li .nav-link.active {
  background: #fff;
  color: #54536C;
  box-shadow: 0px 1px 3px #00000029;
}

.secWrap h2,
.secWrap h3,
.secWrap .title {
  margin-bottom: 36px;
  margin-bottom: 1em;
  line-height: 1.3;
  font-family: "poppins", sans-serif;
  font-weight: 700;
}

.secWrap h2 {
  margin-bottom: 10px;
}

.secWrap h2.medium,
.secWrap h3.medium,
.secWrap .title.medium {
  font-size: 30px;
}

.secWrap h2.small,
.secWrap h3.small,
.secWrap .title.small {
  font-size: 30px;
}

.secWrap h2.big,
.secWrap h3.big,
.secWrap .title.big {
  margin-bottom: 36px;
}
.secWrap h2.big.alignLeft,
.secWrap h3.big.alignLeft,
.secWrap .title.big.alignLeft {
  text-align: left;
  max-width: inherit;
}

.communicationSection .flexWrapper {
  padding: 90px 0px;
  border-bottom: 1px solid #C9C9C9;
}

.communicationSection .flexWrapper:last-child {
  border-bottom: 0px;
}

.communicationSection .flexWrapper .video {
  margin-top: 40px;
}

.communicationSection .flexWrapper .col-xs-12 {
  max-width: 860px;
  margin: 0 auto;
}

.secWrap .col ul li {
  margin-bottom: 10px;
}

.secWrap .col ul li label {
  font-weight: 600;
  color: #54536C;
  margin-bottom: 15px;
}

.secWrap .col ul li p {
  position: relative;
  padding-left: 20px;
  margin: 0px;
}

.secWrap .col ul li p:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 15px;
  border: solid #0BDAB3;
  border-width: 0 1px 1px 0;
  position: absolute;
  left: 0px;
  top: 7px;
  transform: rotate(45deg);
}

.synchronousMeeting p {
  font-size: 18px;
}

.synchronousMeeting ul li:before {
  display: none;
}

.synchronousMeeting ul a {
  font-size: 18px;
  position: relative;
  padding-left: 20px;
  color: #54536C !important;
  text-decoration: none !important;
}

.synchronousMeeting ul a:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 15px;
  border: solid #0BDAB3;
  border-width: 0 1px 1px 0;
  position: absolute;
  left: 0px;
  top: 4px;
  transform: rotate(45deg);
}

.screenRecord, .screenRecord .title, .screenRecord p {
  text-align: left;
  margin: 0px;
  color: #fff;
}

.screenRecord .col-xs-12 {
  padding-left: 170px;
}

.screenRecord p, .screenRecord ul li, .screenRecord .subTitle, .screenRecord .title {
  margin-bottom: 20px;
}

.screenRecord {
  padding: 100px 0 80px;
}

.communicationSection .flex .col .title.small {
  font-size: 24px;
  margin-bottom: 10px;
}

.howToRecord .w-80 {
  max-width: 70% !important;
}

.howToRecord h2.w-80 {
  margin: 0 auto 30px !important;
}

.howToRecord p.w-80 {
  margin: 0px auto 80px !important;
}

.howToRecord .w-80.text-center {
  margin: 100px auto 0;
}

.tutorialVedio {
  text-align: center;
}

.secWrap.tutorialVedio h2.big {
  font-size: 39px;
}

.tutorialVedio .video + p {
  text-align: center;
  margin-top: 40px;
}

.tutorialVedio {
  padding-bottom: 60px;
}

.tipTricks .title {
  margin-bottom: 25px;
}

.tipTricks .title + p {
  margin-bottom: 60px;
}

.tipTricks .item li strong {
  font-size: 20px;
}

.tipTricks .item li p {
  font-size: 18px;
}

.secWrap .flexTable {
  margin-top: 60px;
}

.secWrap .flexTable .heading {
  border-right: 1px solid #E5E5E5 !important;
}

.tableDiv.secWrap div.link {
  font-weight: normal;
  font-size: 18px;
}

.whoRecord .flex {
  margin-bottom: 30px;
}

.communicationSection {
  padding-bottom: 0px;
}

.screenRecord ul li {
  font-weight: 600;
}

.f40 {
  font-size: 36px !important;
}

.secWrap p,
.secWrap li {
  font-size: 1.125rem;
  margin-bottom: 1.25em;
  line-height: 1.5;
}

.secWrap p a,
.secWrap li a, a {
  color: #53d0be;
  font-weight: 500;
  text-decoration: none;
}

.references li a {
  font-weight: 600;
  color: #53d0be;
}

.secWrap p a:hover,
.secWrap li a:hover, a:hover {
  color: #F47503;
}

.secWrap p a:hover {
  color: #F47503 !important;
}

.secWrap p.mb2em,
.secWrap li.mb2em {
  margin-bottom: 2em;
}

.secWrap p, .secWrap li, .secWrap a {
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
}

.centerWrap {
  text-align: center;
  max-width: 910px;
  margin: 0 auto;
}
.centerWrap p {
  font-size: 18px;
  margin: 0 auto;
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
}

.cta {
  background: #08b3e5;
  background: -webkit-gradient(linear, left top, right top, from(#08b3e5), to(#63d6b5));
  background: linear-gradient(to right, #08b3e5 0%, #63d6b5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#08b3e5", endColorstr="#63d6b5",GradientType=1 );
  padding: 120px 0;
  position: relative;
  z-index: 5;
}
.cta h2 {
  font-size: 2.125rem;
  line-height: 1.4;
  text-align: center;
  color: #54536c;
  margin: 0 auto 1em;
  max-width: 900px;
  color: #fff;
}
.cta p {
  text-align: center;
  color: #54536c;
  line-height: 1.3;
  font-size: 1.125rem;
}
.cta p:last-of-type {
  margin-bottom: 0;
}
.cta p:last-of-type a {
  margin-bottom: 0;
}
.cta p small {
  font-size: 0.8125rem;
  opacity: 1;
  color: #fff;
}
.cta p a {
  height: 56px;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 700;
  line-height: 56px;
  padding: 0px 20px;
  max-width: 320px;
  width: 100%;
  margin-bottom: 8px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  display: inline-block;
  box-shadow: 0px 2px 4px rgba(84, 83, 108, 0.12);
  -webkit-box-shadow: 0px 2px 4px rgba(84, 83, 108, 0.12);
  -moz-box-shadow: 0px 2px 4px rgba(84, 83, 108, 0.12);
}
.cta .checkout {
  padding: 25px 150px 25px;
  margin-top: 50px;
  background: #fff;
  border: 1px solid #efefed;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cta .checkout .checkoutimg {
  width: 190px;
  height: auto;
}
.cta .checkout .checkoutimg img {
  width: 100%;
  height: auto;
}
.cta .checkout .checktxt {
  padding-left: 40px;
}
.cta .checkout .checktxt h4 {
  color: #54536c;
  max-width: 500px;
  width: 100%;
  line-height: 1.5;
  font-size: 1.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-bottom: 15px;
}
.cta .checkout .checktxt a {
  display: inline-block;
  text-decoration: none;
  color: #53d0be;
  font-size: 1.0625rem;
  font-weight: 700;
}
.cta .checkout .checktxt a img {
  margin: 0 0 0 10px;
  vertical-align: middle;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
}
.cta .checkout .checktxt a:hover img {
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
}

@media screen and (max-width: 1199px) {
  .secWrap.typesRecording ul li p {
    min-height: 135px;
  }
}
@media screen and (max-width: 992px) {
  .bannerWrap .desc h1 {
    font-size: 30px;
  }

  .bannerWrap .graphics img {
    margin-bottom: 20px;
  }

  .secWrap .flex {
    flex-wrap: wrap;
  }
  .secWrap .flex .col {
    width: 100%;
    flex: 100%;
  }

  .secWrap .container {
    max-width: 720px;
  }

  .mainBanner .flex {
    padding: 0px;
    -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;
    padding: 120px 0;
  }

  .mainBanner .flex .item {
    width: 100%;
  }

  .mainBanner .flex .item img {
    margin-bottom: 2em;
  }

  .mainBanner h1 {
    margin: 0px 0 20px;
    max-width: 100%;
    text-align: center;
  }

  .mainBanner h1 br {
    display: none;
  }

  .mainBanner p {
    margin: 0px 0 20px;
    padding-top: 0px;
    max-width: 100%;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .mainBanner p .btn {
    margin: 0 auto;
  }

  .mainBanner p small {
    max-width: 100%;
  }

  .mainBanner .graphics {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .mainBanner .graphics img {
    margin: 0px 0 30px;
    width: auto;
    height: auto;
    max-width: 100%;
  }

  .mainBanner.resources {
    padding: 60px 0 0;
  }

  .mainBanner.resources .flex {
    height: auto;
  }

  .mainBanner.resources .flex .item {
    text-align: center;
    width: 100%;
  }

  .mainBanner.resources .flex .item:last-child img {
    float: none;
    margin-bottom: -4px;
  }

  .mainBanner.resources h1 {
    text-align: center;
  }

  .mainBanner.resources h1 + p {
    text-align: center;
  }

  .mainBanner.resources.edu .flex .item {
    width: 100%;
  }

  .mainBanner.ourStory {
    padding: 170px 0 0;
    min-height: auto;
  }

  .secWrap.typesRecording ul li {
    width: calc(50% - 50px);
  }
}
@media screen and (max-width: 767px) {
  .secWrap .flexTable .item {
    flex-wrap: wrap;
  }
  .secWrap .flexTable .item div:first-of-type {
    width: 100%;
    max-width: inherit;
    font-weight: 600;
  }
  .secWrap .flexTable .item div:first-of-type a {
    font-weight: 600;
  }
  .secWrap .flexTable .item div:last-of-type {
    width: 100%;
    flex-grow: 0;
    max-width: inherit;
  }

  .f40 {
    font-size: 36px !important;
  }

  .secWrap .container {
    max-width: 540px;
  }

  .secWrap .flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .secWrap h2,
.secWrap h3,
.secWrap .title {
    margin: 1em 0 20px;
  }

  .secWrap .flex .col {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    flex: 100%;
  }

  .secWrap .flex .col.first {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .secWrap .pointers {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .secWrap .pointers .item {
    width: 100%;
  }

  .secWrap.typesRecording ul li:first-child img {
    margin-top: -8px;
    height: 120px;
    width: auto;
  }
  .secWrap.typesRecording ul li img {
    width: auto;
    height: 120px;
  }
}
@media screen and (max-width: 640px) {
  .mainBanner h1 {
    font-size: 1.875rem;
  }

  .secWrap .flexTable .item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .secWrap .flexTable .item > div {
    width: 100%;
    padding: 20px;
  }

  .secWrap .flexTable .item > div:first-of-type {
    width: 100%;
    max-width: 100%;
    border: 0px;
    padding-bottom: 0px;
  }

  .secWrap.typesRecording ul li {
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
    margin: 20px 25px;
    padding-bottom: 30px;
  }

  .secWrap.typesRecording ul li p {
    min-height: 1px;
  }
}
@media screen and (max-width: 570px) {
  .f40 {
    font-size: 30px !important;
  }

  .secWrap .spacer {
    height: 30px;
  }
  .secWrap .pointers.greyBg {
    padding: 20px 0;
  }
  .secWrap .spacer.big {
    height: 40px;
  }
  .secWrap .title {
    margin-top: 0px !important;
  }
  .secWrap .centerWrap > h2 {
    margin-top: 0 !important;
  }
}
@media screen and (min-width: 320px) and (max-width: 570px) {
  .secWrap, .secWrap h2.big.alignLeft, .secWrap h3.big.alignLeft, .secWrap .title.big.alignLeft {
    text-align: center;
  }

  .secWrap .col ul li p, .secWrap .pointers li {
    text-align: left;
  }

  .communicationSection .flexWrapper {
    padding: 40px 0;
  }

  .screenRecord .col-xs-12 {
    padding-left: 15px;
  }

  .howToRecord .flex {
    flex-direction: column;
  }

  .howToRecord .flex .graphics, .howToRecord .flex .txt {
    width: 100%;
  }

  .howToRecord .flex:not(:first-of-type) {
    margin-top: 40px;
  }

  .howToRecord .flex .txt {
    margin-bottom: 20px;
  }

  .howToRecord .w-80 {
    max-width: 90% !important;
  }

  .secWrap.tutorialVedio h2.big {
    font-size: 30px;
  }
}
@media screen and (min-width: 571px) and (max-width: 767px) {
  .secWrap.typesRecording ul li {
    width: calc(50% - 20px);
  }

  .secWrap.typesRecording ul li p {
    min-height: 190px;
  }

  .secWrap.typesRecording ul h4 {
    min-height: 46px;
  }

  .secWrap, .secWrap h2.big.alignLeft, .secWrap h3.big.alignLeft, .secWrap .title.big.alignLeft {
    text-align: center;
  }

  .secWrap .col ul li p, .secWrap .pointers li, .secWrap .col ul li label, .communicationSection li {
    text-align: left;
  }

  .communicationSection .flexWrapper {
    padding: 30px 0;
  }

  .secWrap.tutorialVedio h2.big, .h2, .centerWrap h2, .secWrap h2.big, .secWrap h3.big, .secWrap .title.big, .howToRecord h2 {
    font-size: 30px;
  }

  .screenRecord .col-xs-12 {
    padding-left: 15px;
  }

  .howToRecord .w-80 {
    max-width: 90% !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .secWrap.typesRecording ul li {
    width: calc(50% - 20px);
  }

  .secWrap, .secWrap h2.big.alignLeft, .secWrap h3.big.alignLeft, .secWrap .title.big.alignLeft {
    text-align: center;
  }

  .secWrap .col ul li p, .secWrap .pointers li, .secWrap .col ul li label, .communicationSection li, .references li {
    text-align: left;
  }

  .secWrap.tutorialVedio h2.big, .h2, .centerWrap h2, .secWrap h2.big, .secWrap h3.big, .secWrap .title.big, .howToRecord h2 {
    font-size: 30px;
  }

  .screenRecord .col-xs-12 {
    padding-left: 15px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1024px) {
  .screenRecord .col-xs-12 {
    padding-left: 15px;
  }
}

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