@charset "UTF-8";
/*
This is a simplified version of items from the DRAmatic theme

This is items needed for block support
 */
/************************************************************
FILE PATH

can be used by scss files when referencing images that are
part of the theme build and not directly editable through
WP admin interface
************************************************************/
/************************************************************
CONTAINER SETTINGS

defines the maximum width
************************************************************/
/************************************************************
BREAKPOINTS

standard breakpoints used with the shortcut 'mq' mixin
see _mixins.scss for mixin and use example
************************************************************/
/************************************************************
COLORS

primary use colors in theme, however content blocks should
rely more on the sites primary and secondary theme color and
allow manual color selection in most cases

tool to find real color names for variables
http://chir.ag/projects/name-that-color
************************************************************/
/************************************************************
HEADER

various header settings
************************************************************/
/*	Resets
	------	*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, hr, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figure, figcaption, hgroup, menu, footer, header, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
}

ul {
  list-style: none;
}

article, aside, canvas, figure, figure img, figcaption, hgroup, footer, header, nav, section, audio, video {
  display: block;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

b, strong {
  font-weight: bold;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

.clear:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
  font-size: 0;
}

a:active, a:focus {
  outline: none;
}

a img {
  border: 0;
  border-style: none;
}

a, input, select, textarea {
  outline: none;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  border-style: none;
}

/* Selection colours (easy to forget) */
img::selection {
  background: transparent;
}

img::-moz-selection {
  background: transparent;
}

a {
  text-decoration: none;
  display: inline-block;
}

input[type=number] {
  -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*******************************************
  FUNCTIONS
  assets/styles/scss/helpers/_function.scss
*******************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/***********************
FONT FUNCTIONS
***********************/
/*******************************************
  MIXINS
  assets/styles/scss/helpers/_mixins.scss
*******************************************/
/*********************
TRANSITION
*********************/
/* @include transition(all 0.2s ease-in-out); */
/**************************

      Quantity Query

      Allows you to apply different styling based on the number of a certain type
      of element within a shared parent.

      Example below changes the width based on the number of .child class items in a shared parent

      .child {
        display: inline-block;

        @include quantity-query( 1, equal) {
          width: 100%;
        }
        @include quantity-query( 2, equal) {
          width: 46%;
          margin-right: 8%;
          &:last-of-type { margin-right: 0 !important; }
        }
        @include quantity-query( 3, equal) {
          width: 30%;
          margin-right: 5%;
          &:last-of-type { margin-right: 0 !important; }
        }
        @include quantity-query( 4, greater) {
          width: 46%;
          margin-right: 8%;
          &:nth-child(2n+2) { margin-right: 0 !important; }
        }
      }

      https://www.sitepoint.com/using-sass-quantity-queries/

**************************/
/************************

      BREAKPOINT MIXINS

      Example 

      .site-header {
          padding: 2rem;
          font-size: 1.8rem;
          @include mq('tablet-wide') {
              padding-top: 4rem;
              font-size: 2.4rem;
          }
      }

*************************/
/************************

      CLEARFIX

      Example

      .container-with-floated-children {
        @extend %clearfix;
      }

      @extend %nowiggle

*************************/
/************************

      HARDWARE

      Simple and effective for when you need to trigger hardware acceleration 
      for some animation, keeping everything fast, slick and flicker-free.

*************************/
/************************

      VERTICAL ALIGN

      Helps vertically align text in a div
      ex.
      @include vertical-align(middle);

*************************/
/* Client Overrides */
.placeholder > a {
  visibility: hidden !important;
}

@media all and (max-width: 600px) {
  .home-logos {
    padding-left: 0 !important;
  }
  .home-logos > div {
    float: none !important;
    margin: auto !important;
    max-width: 95% !important;
    text-align: center !important;
  }
}
/* Override for image size of Sharaholic plugin */
.shareaholic-recommendation {
  padding-top: 30px !important;
}
.shareaholic-recommendation .shareaholic-image {
  background-size: contain !important;
  background-repeat: no-repeat;
  padding-bottom: 27%;
  width: 47% !important;
}
.shareaholic-recommendation .shareaholic-image img {
  height: 1px;
}

/* overrides for formatting on QA plugin */
.dwqa-container .dwqa-breadcrumbs {
  margin-left: 10%;
  text-align: left;
}
.dwqa-container .dwqa-breadcrumbs a, .dwqa-container .dwqa-breadcrumbs span:not(.dwqa-sep) {
  font-size: 1.2em;
}
.dwqa-container .dwqa-question-item {
  padding: 2% 0 2% 10%;
}
.dwqa-container .dwqa-question-item .dwqa-question-title {
  text-align: left;
}
.dwqa-container .dwqa-question-item .dwqa-question-meta {
  text-align: left;
}
.dwqa-container .dwqa-question-item .dwqa-question-meta img {
  left: 0;
}
.dwqa-container .dwqa-question-item .dwqa-question-meta .dwqa-question-actions label, .dwqa-container .dwqa-question-item .dwqa-question-meta .dwqa-question-actions a {
  font-size: 1em;
}
.dwqa-container .dwqa-questions-archive .dwqa-question-meta img {
  left: 15px;
}
.dwqa-container .dwqa-answer-item {
  margin-top: 8%;
  text-align: left;
}
.dwqa-container .dwqa-answer-item .dwqa-answer-meta {
  margin-left: 3%;
}
.dwqa-container .dwqa-answer-item .dwqa-answers-title {
  margin: 20px 0 10px 10%;
  text-align: left;
}
.dwqa-container .dwqa-answer-item .dwqa-answer-content p {
  font-size: 1.2em;
  line-height: 1.6em;
  text-align: left;
  padding-bottom: 4%;
}

#PE-chicklet {
  display: none !important;
}

/* DW Question and Answer Plugin Overrides */
.dwqa-container .dwqa-question-item,
.dwqa-container .dwqa-question-item .dwqa-question-meta {
  color: #656565 !important;
}

.dwqa-container .dwqa-question-item .dwqa-question-meta a {
  font-style: italic;
}

.dwqa-container a {
  color: #656565 !important;
}

.dwqa-breadcrumbs a {
  color: #656565 !important;
}

.dwqa-container .dwqa-answer-item .dwqa-answer-content p,
.dwqa-answer-content .section-title p,
.dwqa-answer-content .section-title ul,
.dwqa-answer-content .section-title ol {
  color: #656565 !important;
  font-weight: 400 !important;
  padding: 0 !important;
  font-size: 16px !important;
}

.dwqa-answer-content a {
  color: #000000;
  font-weight: 400;
  text-decoration: underline;
  display: inline;
}

@media (min-width: 768px) and (max-width: 1280px) {
  .shareaholic-recommendations-container.shareaholic-vertical.shareaholic-large .shareaholic-recommendations .shareaholic-recommendation .shareaholic-recommendation-article-link div.shareaholic-image {
    max-width: 120px;
  }
}
.more_content .company-logos__body img {
  margin-left: 0.8em;
  margin-right: 0.8em;
}
.more_content .company-logos__body img.xsmall {
  height: 24px;
}

.center-section {
  /* Hide the old text-content */
}
.center-section .testimonial-container {
  display: flex;
  flex-direction: column;
  font-size: 18px;
}
.center-section .testimonial__top {
  display: inline-flex;
  justify-content: center;
}
.center-section .testimonial__footer img {
  border-radius: 50%;
  max-width: 48px;
  margin-right: 8px;
}
.center-section .testimonial__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}
.center-section .stars-container i {
  color: #ed3f23;
}
.center-section .testimonial__name b {
  margin-right: 5px;
}
.center-section .learn-more-btn {
  cursor: pointer;
  font-weight: bold;
}
.center-section .testimonial__name,
.center-section .testimonial__content,
.center-section .service__title,
.center-section .cloud__title {
  color: #656565;
}
.center-section .testimonial__name {
  font-weight: 500;
  color: #656565;
}
.center-section .testimonial__content {
  text-align: center;
  margin-top: 12px;
  font-size: 44px;
  line-height: 54px;
  font-weight: normal;
}
.center-section .ourservices {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.center-section .ourservices .service-box {
  width: 48%;
  border-radius: 10px;
  text-align: center;
  background-color: #fcfcfc;
  border: 1px solid #f7f7f7;
  box-shadow: 10px 10px 15px -2px #f2f2f2;
  padding: 40px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  color: #000;
}
.center-section .ourservices .single-service {
  text-align: center;
  color: #000;
}
.center-section .ourservices .service-box:hover {
  background-color: #fbfbfb;
  border-color: #e4e4e4;
  box-shadow: 10px 10px 15px -2px #d4d3d4;
}
.center-section .ourservices .single-service img {
  width: auto;
  height: 150px;
  object-fit: contain;
  margin: auto;
}
.center-section .ourservices .service__title {
  text-align: center;
  font-weight: bold;
  margin: 12px 0;
}
.center-section .ourservices .service__body {
  color: #4d4d4d;
  margin: auto;
  font-weight: 500;
}
.center-section .ourservices .service__footer-items {
  display: flex;
  justify-content: space-evenly;
}
.center-section .ourservices .service__footer-title {
  color: #928e8e;
  margin-bottom: 8px;
}
.center-section .ourservices .service__footer-item {
  background-color: #fefefe;
  border-radius: 30px;
  display: inline-flex;
  border: 1px solid #d0d0d0;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 8px 12px;
}
.center-section .ourservices .service__footer {
  margin: 30px 0;
}
.center-section .cloud-benefits-container {
  text-align: center;
  margin-top: 55px;
}
.center-section .cloud__title {
  line-height: 1;
}
.center-section .cloud__title strong {
  color: #ed3f23;
  font-weight: normal;
}
.center-section .cloud__body {
  margin-top: 16px;
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 24px;
  color: #4d4d4d;
  font-weight: 500;
}
.center-section .cloud__footer {
  display: flex;
  justify-content: center;
  align-items: center;
}
.center-section .cloud__footer img {
  height: 80px;
  max-width: 100%;
}
.center-section .cloud__footer img:nth-child(2) {
  height: 40px;
}
.center-section .cloud__footer img:nth-child(3) {
  height: 90px;
}
.center-section .more_content > .text-content:nth-child(1) {
  display: none;
}
@media (min-width: 768px) {
  .center-section .service__footer-item {
    width: 30%;
    line-height: 1;
  }
}
@media (min-width: 1160px) {
  .center-section .service__footer-item {
    width: auto;
  }
}
@media (max-width: 1100px) {
  .center-section .cloud__body br,
.center-section .testimonial__content br {
    display: none;
  }
}
@media (max-width: 767px) {
  .center-section .testimonial__content {
    line-height: 1;
  }
  .center-section .service {
    width: 100%;
    padding: 30px;
  }
  .center-section .service__footer {
    margin: 20px 0;
  }
  .center-section .service__footer-item {
    line-height: 1;
    margin: auto;
  }
  .center-section .service__footer-item + .service__footer-item {
    margin-top: 12px;
  }
  .center-section .service__footer-items {
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
  }
  .center-section .services {
    flex-direction: column;
  }
  .center-section .service + .service {
    margin-top: 30px;
  }
  .center-section .cloud-benefits-container {
    margin-top: 30px;
  }
  .center-section .cloud__footer {
    flex-direction: column;
  }
  .center-section .cloud__footer img:nth-child(2) {
    margin: 0 0 12px 0;
  }
  .center-section .testimonial__content {
    font-size: 24px;
  }
  .center-section .service__body {
    font-size: 18px;
    line-height: 1.2;
  }
  .center-section .cloud__title {
    font-size: 38px;
  }
}

/* Typography */
/*@font-face {
  font-family: 'Helvetica';
  src: url('../fonts/Helvetica.eot?#iefix') format('embedded-opentype'),  url('../fonts/Helvetica.woff') format('woff'), url('../fonts/Helvetica.ttf')  format('truetype'), url('../fonts/Helvetica.svg#Helvetica') format('svg');
  font-weight: normal;
  font-style: normal;
}*/
/* Global style */
h1, h2, h3, h4, h5, h6 {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 300;
}

/*h1{font-size: 80px; line-height: 96px;}*/
h1 {
  text-align: left;
}

.section-title h2 {
  font-size: 50px;
  line-height: 60px;
}

h1 {
  font-size: 55px;
  line-height: 60px;
}

h2 {
  font-size: 50px;
  line-height: 60px;
}

h3 {
  font-size: 45px;
  line-height: 60px;
}

h4 {
  font-size: 44px;
  line-height: 52.8px;
}

h5 {
  font-size: 25px;
  line-height: 35px;
}

h6 {
  font-size: 20px;
  line-height: 24px;
}

dfn, address, em {
  font-style: normal;
}

@media only screen and (max-width: 767px) {
  input[type=text], input[type=email], input[type=tel], input[type=search], input[type=number], input[type=password], select, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
  }

  label {
    font-size: 13px;
    line-height: 20px;
    text-align: left;
  }

  h2 {
    font-size: 38px;
    line-height: 46px;
  }

  h1,
h3,
.section-title h2 {
    font-size: 28px;
    line-height: 34px;
  }

  h4 {
    font-size: 20px;
    line-height: 24px;
  }

  h5 {
    font-size: 18px;
    line-height: 35px;
  }

  h6 {
    font-size: 13px;
    line-height: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h2 {
    font-size: 40px;
    line-height: 50px;
  }

  h1, h3, .section-title h2 {
    font-size: 40px;
    line-height: 50px;
  }

  h4 {
    font-size: 34px;
    line-height: 42px;
  }

  h5 {
    font-size: 20px;
    line-height: 30px;
  }
}
#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  background-color: #ffffff;
}
@media only screen and (min-width: 1024px) {
  #header {
    background-color: transparent;
  }
}
#header .header_inner {
  display: flex;
  justify-content: space-between;
  padding: 0 5%;
  height: 65px;
  transition: 0.25s ease-in-out;
  align-items: center;
  /* Logo image in header */
  /* Main Menu */
}
@media only screen and (min-width: 768px) {
  #header .header_inner {
    height: 75px;
    padding: 0 3%;
  }
}
@media only screen and (min-width: 1024px) {
  #header .header_inner {
    height: 85px;
    padding: 0 2%;
  }
}
#header .header_inner .h_logo {
  align-items: center;
  display: flex;
}
#header .header_inner .h_logo a {
  display: block;
  height: 100%;
  width: 100%;
}
#header .header_inner .h_logo a img {
  height: 25px;
  transition: 0.25s ease-in-out;
}
@media only screen and (min-width: 768px) {
  #header .header_inner .h_logo a img {
    height: 40px;
  }
}
@media only screen and (min-width: 1024px) {
  #header .header_inner .h_logo a img {
    height: 50px;
  }
}
#header .header_inner .h_menu {
  transition: 0.25s ease-in-out;
}
@media only screen and (max-width: 1023px) {
  #header .header_inner .h_menu {
    height: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #f2f2f2;
    overflow-x: hidden;
    overflow-y: auto;
  }
}
@media only screen and (min-width: 1024px) {
  #header .header_inner .h_menu {
    position: relative;
    display: block;
    align-items: center;
    display: flex;
    width: auto;
    height: 100%;
  }
}
@media only screen and (max-width: 1023px) {
  #header .header_inner .h_menu .h_menu_inner {
    overflow: visible;
    width: 85%;
    position: absolute;
    top: 5%;
    left: 7.5%;
  }
}
@media only screen and (max-width: 1023px) and (min-width: 768px) {
  #header .header_inner .h_menu .h_menu_inner {
    width: 50%;
    left: 25%;
  }
}
@media only screen and (min-width: 1024px) {
  #header .header_inner .h_menu .h_menu_inner {
    height: 100%;
  }
}
#header .header_inner .h_menu .h_menu_inner #main-menu {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
@media only screen and (min-width: 1024px) {
  #header .header_inner .h_menu .h_menu_inner #main-menu {
    display: flex;
    text-align: right;
  }
}
#header .header_inner .h_menu .h_menu_inner #main-menu li a {
  font-weight: 400;
  font-size: 18px;
  color: #4D4D4F;
  padding-right: 25px;
}
@media only screen and (min-width: 1024px) {
  #header .header_inner .h_menu .h_menu_inner #main-menu li a {
    font-size: 14px;
    padding-right: 0;
  }
}
@media only screen and (min-width: 1300px) {
  #header .header_inner .h_menu .h_menu_inner #main-menu li a {
    font-size: 16px;
  }
}
#header .header_inner .h_menu .h_menu_inner #main-menu li a:hover {
  color: #4bb1bd;
}
#header .header_inner .h_menu .h_menu_inner #main-menu li.current-page-ancestor > a, #header .header_inner .h_menu .h_menu_inner #main-menu li.current-menu-item > a {
  color: #4bb1bd;
}
#header .header_inner .h_menu .h_menu_inner #main-menu > li {
  position: relative;
  margin: 25px 1em;
}
@media only screen and (min-width: 1024px) {
  #header .header_inner .h_menu .h_menu_inner #main-menu > li {
    display: inline-block;
    height: 100%;
    margin: 0;
    padding: 0;
  }
}
#header .header_inner .h_menu .h_menu_inner #main-menu > li > a {
  text-transform: uppercase;
  font-weight: 500;
}
@media only screen and (min-width: 1024px) {
  #header .header_inner .h_menu .h_menu_inner #main-menu > li > a {
    line-height: 85px;
    margin-left: 1em;
    margin-right: 1em;
  }
}
#header .header_inner .h_menu .h_menu_inner #main-menu > li.menu-item-has-children:before {
  content: "";
  opacity: 0;
  width: 18px;
  height: 18px;
  width: 1px;
  height: 1px;
  background: none;
  position: absolute;
  bottom: -10px;
  transform: translateX(-50%) rotate(45deg);
  left: 50%;
  z-index: 10;
  transition: opacity 0.25s ease-in-out;
}
#header .header_inner .h_menu .h_menu_inner #main-menu > li.menu-item-has-children > a:after {
  content: "▼";
  font-size: 8px;
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  color: #4D4D4F !important;
}
@media only screen and (min-width: 1024px) {
  #header .header_inner .h_menu .h_menu_inner #main-menu > li.menu-item-has-children > a:after {
    content: "";
  }
}
#header .header_inner .h_menu .h_menu_inner #main-menu > li > .sub-menu {
  display: none;
  margin-left: 10px;
}
@media only screen and (min-width: 1024px) {
  #header .header_inner .h_menu .h_menu_inner #main-menu > li > .sub-menu {
    margin: 0;
    position: fixed;
    height: 275px;
    padding: 1em 5% 1em 5%;
    left: 0;
    visibility: hidden;
    width: 100vw;
    transform: none;
    display: flex !important;
    justify-content: space-evenly;
    background: #ffffff;
    border-top: 1px solid #D2D4DB;
    box-sizing: border-box;
    display: none;
    opacity: 0;
    text-align: left;
    transition: 0.1s ease-in-out;
    z-index: 15;
  }
}
@media only screen and (min-width: 1300px) {
  #header .header_inner .h_menu .h_menu_inner #main-menu > li > .sub-menu {
    padding: 1em 12% 1em 12%;
  }
}
#header .header_inner .h_menu .h_menu_inner #main-menu > li > .sub-menu li {
  margin: 10px 0;
}
#header .header_inner .h_menu .h_menu_inner #main-menu > li > .sub-menu li a {
  font-size: 13px;
  position: relative;
  transition: 0.25s ease-in-out;
  display: block;
  transition: 0.25s ease-in-out;
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
}
@media only screen and (min-width: 1024px) {
  #header .header_inner .h_menu .h_menu_inner #main-menu > li > .sub-menu li a {
    font-size: 17px;
  }
}
#header .header_inner .h_menu .h_menu_inner #main-menu > li > .sub-menu .sub-menu {
  display: block;
}
@media only screen and (min-width: 1024px) {
  #header .header_inner .h_menu .h_menu_inner #main-menu > li:hover.menu-item-has-children:before {
    opacity: 1;
    width: 18px;
    height: 18px;
    background: #D2D4DB;
  }
  #header .header_inner .h_menu .h_menu_inner #main-menu > li:hover > .sub-menu {
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.1);
    display: block;
    opacity: 1;
    visibility: visible;
    transition: 0.1s ease-in-out;
  }
}
#header .header_inner .h_mobile_header {
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 1024px) {
  #header .header_inner .h_mobile_header {
    display: none;
  }
}
#header .header_inner .h_mobile_header #header-mobile-contact {
  margin-right: 15px;
}
@media only screen and (min-width: 350px) {
  #header .header_inner .h_mobile_header #header-mobile-contact {
    margin-right: 25px;
  }
}
@media only screen and (min-width: 768px) {
  #header .header_inner .h_mobile_header #header-mobile-contact {
    margin-right: 45px;
  }
}
#header .header_inner .h_mobile_header #header-mobile-contact li a {
  font-size: 13px;
  font-weight: 600;
}
#header .header_inner .h_mobile_header #header-mobile-contact li.menu_cta {
  margin-top: 0 !important;
}
#header .header_inner .h_mobile_header #h_mobile-menu {
  width: 30px;
  height: 30px;
  z-index: 700;
  right: 5px;
  top: 0;
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  #header .header_inner .h_mobile_header #h_mobile-menu {
    width: 35px;
    height: 35px;
  }
}
@media only screen and (min-width: 1024px) {
  #header .header_inner .h_mobile_header #h_mobile-menu {
    display: none;
  }
}
#header .header_inner .h_mobile_header #h_mobile-menu #nav-hamburger {
  width: 30px;
  height: 2px;
  position: relative;
  display: block;
  cursor: pointer;
  transition: all 0.3s ease;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: black;
}
@media only screen and (min-width: 768px) {
  #header .header_inner .h_mobile_header #h_mobile-menu #nav-hamburger {
    width: 35px;
  }
}
#header .header_inner .h_mobile_header #h_mobile-menu #nav-hamburger:after, #header .header_inner .h_mobile_header #h_mobile-menu #nav-hamburger:before {
  content: "";
  width: 30px;
  height: 2px;
  right: 0;
  position: absolute;
  transition: all 0.3s ease;
  background: black;
}
@media only screen and (min-width: 768px) {
  #header .header_inner .h_mobile_header #h_mobile-menu #nav-hamburger:after, #header .header_inner .h_mobile_header #h_mobile-menu #nav-hamburger:before {
    width: 35px;
  }
}
#header .header_inner .h_mobile_header #h_mobile-menu #nav-hamburger:before {
  top: -7px;
}
#header .header_inner .h_mobile_header #h_mobile-menu #nav-hamburger:after {
  bottom: -7px;
}
@media only screen and (min-width: 1024px) {
  #header .menu_html {
    text-align: center;
  }
}
#header .menu_html img {
  display: none;
}
@media only screen and (min-width: 1024px) {
  #header .menu_html img {
    display: block;
    height: 100px;
    width: auto;
    margin: 0 auto 15px auto;
  }
}
@media only screen and (min-width: 1024px) {
  #header .menu_html .button {
    border: 1px solid #d1c6da;
    padding: 5px 20px !important;
    min-width: 160px;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 50px;
    margin: 0;
    transition: 0.25s ease-in-out;
  }
  #header .menu_html .button:hover {
    background: #ddd;
    color: #4d4d4f !important;
  }
}
#header .menu_html h6 {
  display: none;
}
@media only screen and (min-width: 1024px) {
  #header .menu_html h6 {
    display: block;
    margin-top: 15px;
    font-size: 16px;
  }
}
#header .menu_ad {
  display: none;
}
@media only screen and (min-width: 1024px) {
  #header .menu_ad {
    display: block;
  }
}
#header .menu_ad > a {
  height: 90%;
  width: auto;
  transition: 0.25s ease-in-out;
}
#header .menu_ad > a:hover {
  transform: scale(1.025);
}
#header .menu_ad > a > img {
  height: 100%;
  width: auto;
}
#header .menu_bold > a {
  font-weight: 600 !important;
  text-transform: uppercase;
}
#header .menu_cta {
  text-align: center;
  height: 65px !important;
  display: flex !important;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  #header .menu_cta {
    height: 75px !important;
  }
}
@media only screen and (min-width: 1024px) {
  #header .menu_cta {
    height: 85px !important;
    margin: 0 !important;
  }
}
#header .menu_cta a {
  font-weight: 600 !important;
  padding: 6px 8px !important;
  color: white !important;
  white-space: nowrap;
  background: #4bb1bd;
  border-radius: 50px;
  line-height: 1 !important;
  transition: 0.25s ease-in-out;
  text-transform: uppercase;
}
@media only screen and (min-width: 350px) {
  #header .menu_cta a {
    padding: 10px 15px !important;
  }
}
#header .menu_cta a:hover {
  background: #40a3af;
}
#header .menu_cta.menu_cta--large a {
  padding: 8px 12px !important;
}
@media only screen and (min-width: 350px) {
  #header .menu_cta.menu_cta--large a {
    padding: 10px 20px !important;
  }
}
@media only screen and (min-width: 1024px) {
  #header .menu_cta.menu_cta--large a {
    padding: 15px 35px !important;
  }
}
@media only screen and (max-width: 1023px) {
  #header .menu-no-mobile {
    display: none !important;
  }
}
@media only screen and (min-width: 1024px) {
  #header.header--compact {
    background: #ffffff;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.1);
  }
  #header.header--compact .header_inner {
    height: 60px;
  }
  #header.header--compact .header_inner .h_logo a img {
    height: 40px;
  }
  #header.header--compact .header_inner .h_menu .h_menu_inner #main-menu > li > a {
    line-height: 60px;
  }
  #header.header--compact .header_inner .menu_cta {
    height: 60px !important;
  }
}
#header.menu--show #nav-hamburger {
  background: transparent !important;
}
#header.menu--show #nav-hamburger:before {
  transform: rotate(130deg);
  top: 0 !important;
}
#header.menu--show #nav-hamburger:after {
  transform: rotate(-130deg);
  bottom: 0 !important;
}
#header.menu--show .h_menu {
  height: calc(100vh - 60px);
}

.customize-support header {
  margin-top: 46px;
}
@media only screen and (min-width: 783px) {
  .customize-support header {
    margin-top: 32px;
  }
}

footer {
  color: white;
  background: -webkit-linear-gradient(45deg, #170746 0%, #4a3184 100%);
  background: -o-linear-gradient(45deg, #170746 0%, #4a3184 100%);
  background: -moz-linear-gradient(45deg, #170746 0%, #4a3184 100%);
  background: linear-gradient(45deg, #170746 0%, #4a3184 100%);
  padding: 80px 0 75px;
}
footer a {
  color: white;
}
@media only screen and (min-width: 1100px) {
  footer .footer-inner .footer-top-widget {
    display: flex;
  }
}
footer .footer-inner .footer-top-widget .footer-top-left {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 768px) {
  footer .footer-inner .footer-top-widget .footer-top-left {
    justify-content: space-around;
  }
}
@media only screen and (min-width: 1100px) {
  footer .footer-inner .footer-top-widget .footer-top-left {
    width: 30%;
    margin-right: 5%;
  }
}
footer .footer-inner .footer-top-widget .footer-top-left .footer-location {
  padding-left: 36px;
  margin-bottom: 80px;
}
@media only screen and (min-width: 768px) {
  footer .footer-inner .footer-top-widget .footer-top-left .footer-location {
    width: 45%;
  }
}
footer .footer-inner .footer-top-widget .footer-top-left .footer-location h6 {
  position: relative;
  font-size: 16px;
  line-height: 25px;
  font-weight: 700;
  text-transform: uppercase;
}
footer .footer-inner .footer-top-widget .footer-top-left .footer-location h6:before {
  position: absolute;
  width: 22px;
  height: 30px;
  left: -35px;
  top: -12px;
  content: "";
  background-image: url(../svg/footer-thum.svg);
  background-repeat: no-repeat;
  background-size: 22px 30px;
  background-position: left center;
}
footer .footer-inner .footer-top-widget .footer-top-left .footer-location address {
  margin-top: 10px;
  color: #fff;
  font-weight: 300;
  font-size: 13px;
  line-height: 23px;
}
@media only screen and (min-width: 768px) {
  footer .footer-inner .footer-top-widget .footer-top-left .footer-location address {
    margin-top: 31px;
  }
}
footer .footer-inner .footer-top-widget .footer-top-left .footer-location a {
  padding: 0 12px;
  margin-top: 24px;
}
@media only screen and (min-width: 1100px) {
  footer .footer-inner .footer-top-widget .footer-top-right {
    width: 65%;
  }
}
footer .footer-inner .footer-top-widget .footer-top-right #footer-menu {
  display: flex;
  flex-wrap: wrap;
}
footer .footer-inner .footer-top-widget .footer-top-right #footer-menu > li {
  width: 45%;
  margin: 0 2.5% 50px 2.5%;
}
@media only screen and (min-width: 768px) {
  footer .footer-inner .footer-top-widget .footer-top-right #footer-menu > li {
    width: 30%;
    margin: 0 1.5% 50px 1.5%;
  }
}
@media only screen and (min-width: 1024px) {
  footer .footer-inner .footer-top-widget .footer-top-right #footer-menu > li {
    width: 14%;
    margin: 0 1.25% 0 1.25%;
  }
}
footer .footer-inner .footer-top-widget .footer-top-right #footer-menu > li a {
  position: relative;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}
@media only screen and (min-width: 1300px) {
  footer .footer-inner .footer-top-widget .footer-top-right #footer-menu > li a {
    font-size: 16px;
  }
}
footer .footer-inner .footer-top-widget .footer-top-right #footer-menu > li .sub-menu li {
  margin-top: 5px;
}
@media only screen and (min-width: 1100px) {
  footer .footer-inner .footer-top-widget .footer-top-right #footer-menu > li .sub-menu li {
    margin-top: 12px;
  }
}
footer .footer-inner .footer-top-widget .footer-top-right #footer-menu > li .sub-menu li a {
  font-size: 14px;
  font-weight: 300;
  text-transform: none;
}
@media only screen and (min-width: 1300px) {
  footer .footer-inner .footer-top-widget .footer-top-right #footer-menu > li .sub-menu li a {
    font-size: 15px;
  }
}
footer .footer-inner .footer-top-widget .footer-top-right #footer-menu > li .sub-menu li a:hover {
  text-decoration: underline;
}
@media only screen and (min-width: 1100px) {
  footer .footer-inner .footer-top-widget .footer-top-right #footer-menu > li:first-child {
    margin-left: 0;
  }
}
footer .footer-inner .footer-bottom-widget {
  max-width: 620px;
  padding: 91px 15px 0;
  margin: 0 auto;
  text-align: center;
}
footer .footer-inner .footer-bottom-widget .social-wrap {
  width: 100%;
  text-align: center;
  margin-bottom: 25px;
}
footer .footer-inner .footer-bottom-widget .social-wrap a {
  width: 40px;
  height: 40px;
  display: inline-block;
  margin: 0 5px;
}
@media only screen and (min-width: 768px) {
  footer .footer-inner .footer-bottom-widget .social-wrap a {
    width: 50px;
    height: 50px;
    margin: 0 11px;
  }
}
footer .footer-inner .footer-bottom-widget .social-wrap a:first-child {
  margin-left: 0;
}
footer .footer-inner .footer-bottom-widget .social-wrap a:last-child {
  margin-right: 0;
}
footer .footer-inner .footer-bottom-widget .footer-contact p {
  display: inline-block;
  font-size: 13px;
  line-height: 16px;
}
footer .footer-inner .footer-bottom-widget .footer-contact p span {
  margin: 0 10px;
}
footer .footer-inner .footer-bottom-widget .footer-contact p a:hover {
  text-decoration: underline;
}
footer .footer-inner #footer_recent_posts span {
  font-size: 15px !important;
}

/*		Default Layout 
-------------------------------------------------------------------------------
*/
body {
  background: white;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 16px;
  line-height: 23px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 300;
  color: #4D4D4F;
}

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

header, footer, .main-wrap, section {
  float: left;
  width: 100%;
}

label, input[type=submit] {
  cursor: pointer;
}

button:focus {
  outline: none;
}

.hidden,
.hide {
  display: none;
}

/* btn */
.btn {
  text-align: center;
  border-radius: 30px;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  line-height: 21.6px;
  font-weight: 400;
  border: 1px solid transparent;
  width: auto;
  padding: 0 30px;
}

.large-btn, .medium-btn {
  line-height: 58px;
  min-width: 155px;
}

.small-btn {
  line-height: 26px;
  font-size: 15px;
  min-width: 100px;
  padding: 0 20px;
}

/*.gradient-btn{background:-webkit-linear-gradient(45deg, rgba(32,189,181,1) 0%, rgba(75,177,189,1) 100%); background:-o-linear-gradient(45deg, rgba(32,189,181,1) 0%, rgba(75,177,189,1) 100%); background:-moz-linear-gradient(45deg, rgba(32,189,181,1) 0%, rgba(75,177,189,1) 100%); background:linear-gradient(45deg, rgba(32,189,181,1) 0%, rgba(75,177,189,1) 100%);} 
.gradient-btn:hover{background:-webkit-linear-gradient(45deg, rgba(32,189,181,1) 0%, rgba(17,193,92,1) 100%); background:-o-linear-gradient(45deg, rgba(32,189,181,1) 0%, rgba(17,193,92,1) 100%); background:-moz-linear-gradient(45deg, rgba(32,189,181,1) 0%, rgba(17,193,92,1) 100%); background:linear-gradient(45deg, rgba(32,189,181,1) 0%, rgba(17,193,92,1) 100%);}*/
.transparent-btn {
  background-color: transparent !important;
  border: 1px solid #d1c6da;
  color: #4D4D4F !important;
  padding: 0 25px;
  min-width: 127px;
  line-height: 36px;
  font-size: 20px;
  font-weight: 600;
}

.transparent-btn.medium-btn {
  font-size: 16px;
  font-weight: normal;
  line-height: 36px;
}

.transparent-btn:hover, .transparent-btn:active {
  background-color: #F1F1F1 !important;
  border: 1px solid #d1c6da;
}

/* btn */
/* Color */
.red-light {
  color: #876E47;
}

.red {
  color: #7D6645;
}

/*.blue-light{color: #4BB1BD}*/
.blue-light {
  color: #0000ba;
}

.black {
  color: #000000;
}

.white {
  color: #ffffff;
}

/* Color */
/* form */
label {
  float: left;
  font-size: 20px;
  line-height: 24px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 300;
  color: #4D4D4F;
  text-transform: uppercase;
}

label, input[type=submit] {
  cursor: pointer;
}

input[type=text], input[type=email], input[type=tel], input[type=number], input[type=search], textarea {
  height: 66px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 300;
  padding: 10px 15px;
  font-family: "Nunito Sans", sans-serif;
  background: #ffffff;
  width: 100%;
  border: 0;
}

textarea {
  resize: none;
}

/* form */
/* common style */
.common-wrap {
  max-width: 1230px;
  margin: 0 auto;
  clear: both;
  padding: 0 20px;
}

.header-inner, .footer-inner {
  max-width: 1780px;
}

.section-title {
  max-width: 1080px;
  margin: 0 auto;
  clear: both;
  text-align: center;
}

.section-title h1,
.section-title h2,
.section-title h3 {
  color: #656565;
}

.section-title p,
.section-title ul,
.section-title ol {
  margin-top: 35px;
  color: #656565;
  font-size: 20px;
  line-height: 33px;
  font-weight: 300;
  padding: 0 30px;
}

.section-title ul,
.section-title ol {
  display: inline-block;
  padding: 0 0 0 30px;
}

.section-title ul {
  list-style: disc;
}

.section-title ul li,
.section-title ol li {
  text-align: left;
}

.section-title em {
  font-style: italic;
}

.section-title hr {
  border-bottom: 1px solid #929497;
}

.section-title.white * {
  color: #ffffff;
}

.main-wrap {
  overflow: hidden;
}

/* common style */
/* home page */
/*
.hero-wrap{background-position: bottom center; background-repeat: no-repeat; background-size: cover; padding-top: 120px; min-height: 800px; position:  relative;}
.hero-graphcis{position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: 100%; background-repeat: no-repeat; background-position: bottom center; z-index: -1; }
.hero-graphcis:before, .join-us-wrap:before{background: rgb(215,217,223); background: -moz-linear-gradient(left, rgba(215,217,223,1) 0%, rgba(242,242,242,1) 76.61%, rgba(255,255,255,1) 100%); background: -webkit-linear-gradient(left, rgba(215,217,223,1) 0%,rgba(242,242,242,1) 76.61%,rgba(255,255,255,1) 100%); background: linear-gradient(to right, rgba(215,217,223,1) 0%,rgba(242,242,242,1) 76.61%,rgba(255,255,255,1) 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d7d9df', endColorstr='#ffffff',GradientType=1 ); position: absolute;  top: 0; left: 0; right: 0; content: ''; z-index: -1; bottom: 35%}
.hero-inner{max-width: 1630px; padding-top: 53px}
.hero-content{float: left; width: 52.20125786163522%; margin-top: 57px; padding-right: 40px; max-width: 830px;}
.hero-content h5{margin-top: 28px; letter-spacing: 2.5px;}
.hero-content a{margin-top: 35px; letter-spacing: 2.4px; position: relative; z-index: 5;}
.hero-thum{float: left; width: 40.56603773584906%; max-width: 645px; margin-bottom: -120px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; transition: all 1s ease; margin-top: 24px}
*/
.company-logos__body {
  margin-top: 35px;
}
@media only screen and (min-width: 1024px) {
  .company-logos__body {
    margin-top: 0;
  }
}

.feature-container {
  float: left;
  width: 100%;
  padding-bottom: 56px;
}

.feature-container .section-title {
  max-width: 100%;
}

.feature-container .section-title > p {
  padding: 0;
  margin-top: 30px;
}

.feature-row {
  float: left;
  width: 100%;
  padding: 0px 0px 50px 0;
  border-bottom: 1px solid #929497;
  text-align: center;
  margin-bottom: 50px;
}

.feature-row:last-child {
  border-bottom: 0;
}

.feature-row-content {
  float: left;
  width: 100%;
}

.acordian-wrap {
  float: left;
  width: 41.697479%;
  text-align: left;
  margin-right: 3.6974789916%;
  padding-top: 18px;
}

.acordian-item {
  float: left;
  width: 100%;
  margin-top: 26px;
}

.acordian-item:first-child {
  margin-top: 0;
}

.acordian-item h4 {
  font-weight: 400;
  padding-left: 30px;
  position: relative;
  cursor: pointer;
  color: #7D6645;
}

.acordian-item:first-child h4 {
  margin-top: 0;
}

.acordian-item h4:before {
  position: absolute;
  content: "";
  width: 18px;
  height: 10px;
  background-image: url(../svg/Asset3.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  left: 0;
  bottom: 5px;
}

.acordian-item.active h4 {
  font-weight: 700;
}

.acordian-item.active h4:before {
  background-image: url(../svg/Asset1.svg);
  top: 5px;
  bottom: auto;
}

.accordion-content {
  padding-left: 69px;
  display: none;
  float: left;
  width: 100%;
}

.acordian-item:first-child .accordion-content {
  display: block;
}

.acordian-item p {
  padding: 19px 0 27px;
  float: left;
  width: 100%;
}

.feature-row-thum {
  float: right;
  width: 52.0168067227%;
  margin-right: -51px;
  position: relative;
}

.feature-row-thum .graphic-overlay {
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: right bottom;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  display: inline-block;
  float: right;
  z-index: 1;
}

.feature-row a.btn {
  margin-top: 45px;
}

.row-wrap, .item-row {
  margin-top: 105px;
  float: left;
  width: 100%;
}

.row-item {
  float: left;
  margin: 0;
  width: 25%;
  padding: 0 40px;
}

.row-item:first-child {
  margin-left: 0;
}

.row-item:last-child {
  margin-right: 0;
}

.row-item-content {
  float: left;
  width: 100%;
}

.row-item h6 {
  margin-top: 25px;
}

.row-item a.btn {
  min-width: 127px;
  padding: 0 30px;
  text-transform: capitalize;
}

.feature-graphic {
  height: 250px;
  position: relative;
  width: 30%;
  margin: 0 5%;
}
@media only screen and (min-width: 768px) {
  .feature-graphic {
    width: auto;
    margin: 0;
  }
}

.feature-graphic img {
  height: 100%;
}

.community-container {
  float: left;
  width: 100%;
  background: -webkit-linear-gradient(45deg, #170746 0%, #4b3286 100%);
  background: -o-linear-gradient(45deg, #170746 0%, #4b3286 100%);
  background: -moz-linear-gradient(45deg, #170746 0%, #4b3286 100%);
  background: linear-gradient(45deg, #170746 0%, #4b3286 100%);
  padding: 136px 0 228px;
  text-align: center;
}

.community-container .section-title p {
  margin-top: 35px;
}

.content-container-item {
  float: left;
  width: 31.4285714286%;
  margin: 0 1.4285714286%;
}

.content-container-item:first-child {
  margin-left: 0;
}

.content-container-item:last-child {
  margin-right: 0;
}

.content-container-item figure {
  max-width: 100px;
  margin: 0 auto;
}

.content-container-wrap {
  float: left;
  width: 100%;
  margin-top: 166px;
}

.content-container-item figure {
  max-width: 100px;
  margin: 0 auto;
  display: block;
}

.content-container-item h2 {
  margin: 25px 0 29px;
  font-size: 80px;
  line-height: 96px;
}

.content-container-item h4 {
  float: left;
  width: 100%;
  margin-top: 2px;
}

.content-container-item * {
  color: #ffffff;
}

.partners-container {
  float: left;
  width: 100%;
  padding: 134px 0 242px;
}

.partners-container h2 {
  text-align: center;
}

.partners-item-wrap {
  float: left;
  width: 100%;
  margin-top: 96px;
}

.partners-row {
  width: 100%;
  display: inline-block;
  text-align: center;
}

.partners-item {
  margin: 34px 2.5%;
  display: inline-block;
  width: 29.33%;
}

.partners-item:nth-child(3n+1) {
  margin-left: 0;
  text-align: left;
  clear: both;
}

.partners-item:nth-child(3n+2) {
  text-align: center;
}

.partners-item:nth-child(3n+3) {
  margin-right: 0;
  text-align: right;
}

.partners-row:nth-child(even) .partners-item:nth-child(3n+1) {
  text-align: right;
}

.partners-row:nth-child(even) .partners-item:nth-child(3n+3) {
  text-align: left;
}

.partners-item img {
  display: inline-block;
  max-height: 67px;
}

.join-us-wrap {
  float: left;
  width: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  position: relative;
  padding: 192px 0 147px;
}

.join-us-wrap:before {
  top: 400px;
  bottom: 0;
}

.join-us-thum {
  position: absolute;
  top: -120px;
  width: 276px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 287px;
}

.join-us-thum img {
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
  max-height: 100%;
}

.join-us-title {
  text-align: center;
  float: left;
  width: 100%;
  margin: 130px 0 42px;
}

.input-form-wrap {
  float: left;
  width: 100%;
  position: relative;
  margin-top: 38px;
}

.input-row {
  float: left;
  width: 100%;
  margin-top: 46px;
  text-align: center;
}

.input-row label {
  margin-bottom: 10px;
}

.input-col {
  float: left;
  width: 47.8991596639%;
  margin-right: 4.2016806723%;
}

.input-col:nth-child(2n+2), .input-inner-col:nth-child(2n+2) {
  margin-right: 0;
}

.input-inner-col {
  width: 47.3684210526%;
  float: left;
  margin-right: 5.2631578947%;
}

.msg {
  margin-top: 60px;
}

.input-row input[type=submit] {
  margin-top: 38px;
  border: 0;
}

.modal-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #F1F1F1;
  z-index: 99;
  display: none;
  -webkit-box-shadow: 3px 4px 5px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 3px 4px 5px 0px rgba(0, 0, 0, 0.3);
}

.modal-inner-wrap {
  display: table;
  text-align: center;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 50px 0;
}

.modal-inner {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.modal {
  background-color: rgba(51, 51, 51, 0.8);
}

.modal-open .modal {
  overflow-y: hidden;
}

.modal-dialog {
  width: 100%;
  max-width: 800px;
}

.modal-content {
  margin: 0 auto;
  clear: both;
  padding: 20px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.modal-content .close {
  color: #38c5b5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0;
  margin-left: auto;
  font-size: 28px;
  background: none;
  border: 0;
  cursor: pointer;
}
.modal-content .screen-reader {
  visibility: hidden;
  width: 1px;
  height: 1px;
  position: absolute;
  display: block;
  border: 0;
  overflow: hidden;
  word-wrap: normal !important;
}
.modal-content .modal-body {
  background-color: #38454E;
  padding: 20px;
}
.modal-content iframe {
  width: 100%;
}
.modal-content p {
  font-size: 20px;
  line-height: 36px;
}

@media (max-width: 767px) {
  .modal-content iframe {
    height: auto;
  }
}
.testomonials-wrap,
.new-testomonials-wrap {
  display: inline-block;
  float: left;
  width: 100%;
  text-align: center;
  margin: 80px 0;
  padding: 0 90px 80px;
}

.testomonials-wrap p,
.new-testomonials-wrap p {
  font-size: 20px;
  line-height: 24px;
  padding-bottom: 20px;
}

.testomonials-wrap h5,
.testomonials-wrap h6,
.new-testomonials-wrap h5,
.new-testomonials-wrap h6 {
  font-size: 16px;
  line-height: initial;
}

.testomonials-wrap h5,
.new-testomonials-wrap h5 {
  font-weight: bold;
}

.testomonials-wrap .flex-direction-nav {
  top: 10%;
}

.testomonials-wrap .flex-direction-nav .flex-prev,
.testomonials-wrap .flex-direction-nav .flex-next {
  width: 45px;
  height: 80px;
  margin: 0;
}

.testomonials-wrap .flex-direction-nav .flex-prev {
  background-image: url(../img/left_arrow.png);
  left: 0;
}

.testomonials-wrap .flex-direction-nav .flex-next {
  background-image: url(../img/right_arrow.png);
  right: 0;
}

/* End home page */
/* Page Content */
.page-content .hero-wrap {
  min-height: 573px;
}

.page-content-info {
  min-height: 600px;
  padding-bottom: 290px;
}

.page-content-info h3:nth-child(n+1) {
  margin-top: 60px;
}

.page-content-info a {
  color: #656565;
  font-weight: normal;
}

.page-content-info a:hover {
  text-decoration: underline;
}

/* Gravity/HTML Forms */
body .gform_wrapper {
  margin-top: 38px;
}

body .gform_confirmation_message {
  font-size: 32px;
  line-height: 60px;
  margin-top: 60px;
}

body .gform_wrapper .gform_body .gform_fields {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

body .gform_wrapper .gform_body .gform_fields .gfield {
  display: inline-block;
  float: left;
  width: 50%;
  padding: 0 15px;
  margin-top: 26px;
}

body .gform_wrapper .gform_body .gform_fields .gfield textarea {
  resize: vertical;
  height: 66px;
  padding-top: 22px;
}

body .gform_wrapper .gform_body .gform_fields .gfield .gfield_label {
  font-weight: normal;
  /*margin-bottom: 10px*/
}

body .gform_wrapper .gform_body .gform_fields .gfield span.gfield_required {
  display: none;
}

body .gform_wrapper .gform_body .gform_fields .gfield.gfield_contains_required .gfield_label:after {
  content: "";
  background: url(../img/required.gif) no-repeat top right;
  width: 16px;
  height: 20px;
  display: inline-block;
}

body .gform_wrapper .gform_footer {
  margin-top: 38px;
}

body .gform_wrapper .gform_footer input[type=submit] {
  background: -webkit-linear-gradient(45deg, #20bdb5 0%, #4bb1bd 100%);
  background: -o-linear-gradient(45deg, #20bdb5 0%, #4bb1bd 100%);
  background: -moz-linear-gradient(45deg, #20bdb5 0%, #4bb1bd 100%);
  background: linear-gradient(45deg, #20bdb5 0%, #4bb1bd 100%);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  line-height: 58px;
  font-weight: 400;
  color: #FFFFFF;
  height: 60px;
  min-width: 292px;
  margin: 38px 0 0;
  border: 0;
  border-radius: 30px;
  text-transform: uppercase;
}

body .gform_wrapper .gform_footer input[type=submit]:hover {
  background: -webkit-linear-gradient(45deg, #20bdb5 0%, #11c15c 100%);
  background: -o-linear-gradient(45deg, #20bdb5 0%, #11c15c 100%);
  background: -moz-linear-gradient(45deg, #20bdb5 0%, #11c15c 100%);
  background: linear-gradient(45deg, #20bdb5 0%, #11c15c 100%);
}

body .gform_wrapper .validation_error {
  padding: 0 15px;
  color: #876E47;
  font-size: 20px;
  line-height: 33px;
  font-weight: normal;
  text-align: left;
}

body .gform_wrapper .gform_body .gform_fields .gfield .gfield_description {
  font-size: 16px;
}

.html-form label {
  font-weight: normal;
}

.html-form .required label:after {
  content: "";
  background: url(../img/required.gif) no-repeat top right;
  width: 16px;
  height: 20px;
  display: inline-block;
}

.html-form textarea {
  resize: vertical;
  height: 66px;
  padding-top: 22px;
}

.html-form .field-wrap {
  display: inline-block;
  float: left;
  width: 50%;
  padding: 0 15px;
  margin-top: 26px;
}

.html-form .field-wrap.hidden {
  display: none;
}

.html-form .submit-wrap {
  margin-top: 38px;
  text-align: center;
  display: inline-block;
  width: 100%;
}

.html-form .submit-wrap input {
  /*background: -webkit-linear-gradient(45deg, rgba(32,189,181,1) 0%, rgba(75,177,189,1) 100%);
  background: -o-linear-gradient(45deg, rgba(32,189,181,1) 0%, rgba(75,177,189,1) 100%);
  background: -moz-linear-gradient(45deg, rgba(32,189,181,1) 0%, rgba(75,177,189,1) 100%);
  background: linear-gradient(45deg, rgba(32,189,181,1) 0%, rgba(75,177,189,1) 100%);*/
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  line-height: 58px;
  font-weight: 400;
  height: 60px;
  min-width: 292px;
  margin: 38px 0 0;
  border: 0;
  border-radius: 30px;
  text-transform: uppercase;
  -webkit-appearance: none;
}

.html-form .submit-wrap input:hover {
  /*background: -webkit-linear-gradient(45deg, rgba(32,189,181,1) 0%, rgba(17,193,92,1) 100%);
  background: -o-linear-gradient(45deg, rgba(32,189,181,1) 0%, rgba(17,193,92,1) 100%);
  background: -moz-linear-gradient(45deg, rgba(32,189,181,1) 0%, rgba(17,193,92,1) 100%);
  background: linear-gradient(45deg, rgba(32,189,181,1) 0%, rgba(17,193,92,1) 100%);*/
}

/* End Gravity/HTML Forms */
/* Contact Style */
/*
.contact-content .hero-wrap{min-height: 573px}
.contact-content .hero-inner{max-width: 1284px; text-align: center; position: relative}
.contact-content .hero-content{float: none; margin: 57px auto 0}
.contact-content .hero-thum{position: absolute; top: -40px; right: -32px; width: auto}
*/
.contact-content .join-us-wrap {
  padding: 0 0 100px;
}

.contact-content .join-us-wrap:before {
  display: none;
}

.contact-content input[type=text], .contact-content input[type=email], .contact-content input[type=tel], .contact-content input[type=number], .contact-content input[type=search], .contact-content textarea {
  background-color: #f1f1f1;
  border: 1px solid #D1C6DA;
}

.contact-content .input-row input[type=submit] {
  margin-top: 24px;
}

.contact-content .intro {
  display: flex;
}

.contact-content .intro_txt {
  width: 75%;
}

.contact-content .intro_txt h4 {
  text-align: left;
  color: #656565;
}

.contact-content .intro_img {
  width: 25%;
}

/* End Contact Style */
/* Solution Page Style */
/*
.solution-content .hero-content{width: 46.58385093167702%; max-width: 750px}
.solution-content .hero-thum{width: 53.41614906832298%; max-width: 860px; margin-bottom: -66px}
.solution-content .feature-container{padding-top: 106px}
*/
.solution-content .feature-row:first-child {
  padding-top: 0;
}

.solution-content .feature-row:last-child {
  padding-bottom: 60px;
}

.solution-content .item-row {
  max-width: 933px;
  margin: 105px auto 0;
  clear: both;
  float: none;
}

.solution-content .item-row-inner {
  margin: 0 -33px;
}

.solution-content .single-item {
  min-width: 25%;
  width: auto;
  margin: 0 0 31px;
}

.solution-content .single-item img {
  max-width: 84px;
}

.solution-content .row-item a.btn {
  min-width: 143px;
}

.solution-content .item-row.solution-features {
  max-width: 100%;
  margin-top: 60px;
}

.solution-content .item-row.solution-features img {
  max-width: 124px;
  margin-bottom: 15px;
}

.solution-content .item-row.solution-features h4 {
  color: #656565;
}

.solution-content .feature-row-thum, .support-content .feature-row-thum {
  width: 66.016807%;
  margin-right: -257px;
}

.solution-content .feature-row-content, .support-content .feature-row-content {
  margin-top: 57px;
}

.solution-content .feature-row a.btn {
  margin-top: 20px;
}

.solution-content .community-container {
  padding: 100px 0 250px;
}

.solution-content .community-container .section-title {
  padding: 0 90px;
}

.tab-content {
  float: left;
  width: 100%;
  margin-top: 50px;
}

.tab-content .slick-track {
  display: -webkit-flex !important;
  display: -webkit-box !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.tab-content .slick-slide {
  display: -webkit-flex !important;
  display: -webkit-box !important;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  height: auto;
  justify-content: center;
}

.tab-content .slick-slide div {
  height: 100%;
  width: 100%;
}

.tab-item {
  float: left;
  width: 203px;
  font-size: 20px;
  line-height: 24px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 300;
  position: relative;
  color: #ffffff;
  padding: 27px 0 27px;
  cursor: pointer;
}

.tab-item:after {
  position: absolute;
  content: "";
  width: 100%;
  bottom: 0;
  height: 1px;
  background-color: #FFFFFF;
  left: 0;
}

.slick-current .tab-item {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
}

.slick-current .tab-item:after {
  background-color: #7D44C8;
  height: 13px;
  border-radius: 10px;
}

.slick-slide:focus {
  outline: none;
}

.tab-content .slick-slide {
  padding: 0 19px;
}

.comunity-slider {
  float: left;
  width: 100%;
  margin-top: 40px;
  position: relative;
}

.comunity-slider .slick-dots {
  bottom: -83px;
}

.comunity-slider .slick-dots li {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 100%;
  width: 13px;
  height: 13px;
}

.comunity-slider .slick-dots li.slick-active {
  background-color: #ffffff;
}

/* End Solution Page Style */
/* Solution Child Style */
/*
.solution-content-child .hero-wrap{min-height: 690px;}
.solution-content-child .hero-graphcis:before{bottom: 30%;}
.solution-content-child .hero-inner, .solution-content .hero-inner{max-width: 1650px}
.solution-content-child .hero-content{width: 47.82608695652174%; max-width: 770px}
.hero-content h1,.hero-content h3,.hero-content p{color: #4D4D4F; text-align: left}
.hero-content p{padding: 0}
//.solution-content-child .hero-thum{width: 52.04968944099379%; max-width: 838px; margin-bottom: -176px}
.hero-content a.btn{float: left}
*/
.solution-content-child .feature-row:first-child {
  padding-top: 0;
}

.solution-content-child .feature-row:last-child .section-title {
  max-width: 865px;
}

.solution-content-child .feature-row-content {
  margin-top: 118px;
}

.solution-content-child .feature-row-thum {
  margin-right: -88px;
}

.solution-content-child .community-container {
  position: relative;
  padding: 182px 0 234px;
}

.middle-thum {
  position: absolute;
  top: -45.5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
}

.solution-content-child .community-container .section-title {
  max-width: 100%;
}

.solution-content-child .community-container .section-title h1,
.solution-content-child .community-container .section-title h3 {
  line-height: 76px;
}

.solution-content-child .community-container a.btn {
  margin-top: 90px;
}

.solution-content-child .join-us-thum {
  width: 100%;
  height: 318px;
  left: 62%;
  top: -160px;
  max-width: 663px;
}

/* End Solution child Style */
/* Support Style */
/*
.support-content .hero-graphcis:before{bottom: 40%;}
.support-content .hero-inner{max-width: 1705px}
.support-content .hero-content{width: 47.68768768768769%; max-width: 794px}
.support-content .hero-thum{width: 52.31231231231231%; max-width: 871px; margin-bottom: 141px}
.support-content .hero-content a{margin-top: 20px}
*/
.support-content .section-title {
  max-width: 950px;
}

.support-content .feature-container {
  padding-top: 147px;
}

.support-content .feature-row {
  padding: 20px 0;
}

.support-content .feature-row .section-title {
  max-width: 935px;
}

.support-content .community-container {
  padding: 140px 0 482px;
}

.support-content .join-us-thum {
  width: 170px;
  height: 318px;
  left: 65%;
  top: -170px;
}

/* End Support Style */
/* Technology Style */
/*
.technology-content .hero-wrap{min-height: 570px;}
.technology-content .hero-content{width: 52.83018867924528%; max-width: 840px}
.technology-content .hero-thum{width: 43.27044025157233%; max-width: 688px; float: right; margin-bottom: -234px; margin-right: -116px; margin-top: -20px;}
*/
.technology-content .feature-container {
  padding-top: 15px;
}

.technology-content .feature-item-row .section-title {
  max-width: 890px;
}

.technology-content .feature-row {
  padding-bottom: 130px;
}

.technology-content .feature-item-row {
  padding: 130px 0 20px;
}

/*.technology-content .join-us-thum {width: 218px; height: 311px; left: 59%; top: -130px;}*/
.item-row-inner {
  margin: 0 -23.5px;
  font-size: 0;
  line-height: 0;
  display: -webkit-flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: center;
  justify-content: center;
}

.single-item {
  width: 25%;
  margin: 9px 0;
  display: inline-block;
  padding: 0 23.5px;
}

.support-section .row-item:first-child {
  margin-left: 0;
}

.support-section .row-item:last-child {
  margin-right: 0;
}

.single-item img {
  margin: 0 auto;
  clear: both;
  display: block;
}

.single-item a.btn, .technology-content .row-item a.btn {
  min-width: 155px;
}

.single-item h6 {
  margin-top: 25px;
}

.technology-content .row-item img {
  margin: 0 auto;
  clear: both;
  display: block;
}

.tech-row {
  max-width: 900px;
  margin: 0 auto;
  clear: both;
  float: none;
  padding-top: 18px;
}

.tech-row .row-item {
  width: 27%;
  margin: 0 4.75%;
}

.technology-content .community-container {
  padding: 103px 0 300px;
}

.community-container .section-title h6 {
  margin-top: 40px;
}

.support-section {
  float: left;
  width: 100%;
  padding: 145px 0 304px;
}

.support-section .feature-item-row {
  padding: 0;
}

.support-section .row-wrap {
  /*display: -webkit-flex; display: -webkit-box; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-flex-flow: row wrap; flex-flow: row wrap; -webkit-box-pack: justify; -moz-box-pack: justify; -ms-flex-pack: justify; -webkit-justify-content: space-between; justify-content: space-between;  -webkit-box-align: center; align-items: center;*/
  text-align: center;
}

.support-section .row-item {
  display: inline-block;
  float: none;
  width: auto;
  margin: 0 10px;
  padding: 0;
}

/*.support-section .row-item a.btn{padding: 0 35px;}*/
.technology-content .join-us-wrap {
  padding: 192px 0 170px;
}

/* Nested virtualization */
.nested-virtual-content .hero-wrap {
  min-height: 640px;
}

/*.nested-virtual-content .hero-thum{position: absolute; right: -174px; max-width: 951px; width: 59.81132075471698%; margin-top: -78px}
.nested-virtual-content .feature-item-row .row-item figure{float: left; width: 100%;text-align: center}
.nested-virtual-content .feature-item-row .row-item img{width: 56px; margin: 0 auto;}*/
.virtualization-cloudshare-section .section-title h1,
.virtualization-cloudshare-section .section-title h3 {
  max-width: 770px;
  margin: 0 auto;
  clear: both;
  float: none;
}

.cloudshare-content-wrap {
  float: left;
  width: 100%;
  text-align: left;
  margin-top: 60px;
}

.cloudshare-content {
  float: left;
  width: 60%;
  width: -webkit-calc(100% - 478px);
  width: calc(100% - 478px);
  padding-right: 65px;
}

.cloudshare-content p {
  float: left;
  width: 100%;
  font-size: 20px;
  line-height: 33px;
  margin-top: 30px;
}

.cloudshare-content p:first-child {
  margin-top: 0;
}

.cloudshare-image {
  float: left;
  width: 478px;
}

.cloudshare-image figure {
  float: left;
  width: 310px;
}

.processing-step-wrap {
  float: left;
  width: 110px;
  margin-left: 57px;
}

.processing-step {
  float: left;
  width: 100%;
  margin-top: 80px;
}

.processing-step:first-child {
  margin-top: 0;
}

.processing-step:last-child {
  margin-top: 70px;
}

.processing-step p {
  float: left;
  width: 100%;
  font-size: 14px;
  line-height: 22px;
  margin-top: 0 !important;
}

.processing-step strong {
  float: left;
  width: 100%;
}

.just-wroks {
  text-align: center;
}

.just-wroks .item-row-inner {
  margin: 0 -56.8333333333px;
}

.just-wroks .single-item {
  width: 33.333333%;
  margin: 60px 0;
}

.just-wroks .single-item img {
  width: 56px;
  margin: 0 auto;
}

.nested-virtual-content .join-us-thum img {
  width: 168px;
}

.nested-virtual-content .feature-container {
  padding-top: 0;
}

/* End Nested virtualization */
/* Beginning Resources Page Style */
.common-wrap {
  width: 100%;
}

/*
.resources-content .hero-wrap{min-height: 571px}
*/
.resources-content-wrap {
  float: left;
  width: 100%;
  margin-top: -22px;
}

.link-wrap {
  float: left;
  width: 100%;
}

.link-wrap ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.link-wrap > ul > li {
  display: inline-block;
  text-align: center;
  width: auto;
  margin: 0 32px;
  position: relative;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  font-family: "Nunito Sans", sans-serif;
  color: #4d4d4f;
}

.link-wrap > ul > li:first-child {
  margin-left: 0px;
  /*width: 18.23529411764706%; */
}

/*.link-wrap > ul > li:nth-child(2){width: 16.5546218487395%;}
.link-wrap > ul > li:nth-child(3){width: 10.58823529411765%;}
.link-wrap > ul > li:nth-child(4),.link-wrap > ul > li:nth-child(5){width: 12.26890756302521%;}*/
.link-wrap > ul > li:last-child {
  margin-right: 0px;
}

.link-wrap > ul > li > a {
  text-align: center;
  display: inline-block;
  width: 100%;
  padding: 7px 21px;
  border: 1px solid #d1c6da;
  border-radius: 30px;
  margin-top: 68px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #4d4d4f;
}

.link-wrap > ul > li > a:hover,
.link-wrap > ul > li.current_page_item > a {
  background-color: #ddd;
}

.link-wrap > ul ul > li,
.link-wrap > ul ul > li a {
  color: #808285;
  font-weight: 300;
}

.link-wrap > ul ul > li a:hover,
.link-wrap > ul ul > li.current-cat a {
  color: #4d4d4f;
  font-weight: 400;
}

#accordion > li:before {
  content: "";
  width: 100%;
  height: 52px;
  background-image: url(../img/link-icon1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
  position: absolute;
  top: 5px;
}

#accordion > li:nth-child(2):before {
  background-image: url(../img/link-icon2.png);
}

#accordion > li:nth-child(3):before {
  background-image: url(../img/link-icon3.png);
}

#accordion > li:nth-child(4):before {
  background-image: url(../img/link-icon4.png);
}

#accordion > li:nth-child(5):before {
  background-image: url(../svg/link-icon7.svg);
}

#accordion > li:nth-child(6):before {
  background-image: url(../img/link-icon6.png);
}

.icon {
  margin: 0 auto;
  width: 50px;
  overflow: hidden;
  clear: both;
}

.icon img {
  width: 100%;
}

.counting-info {
  float: left;
  width: 1190px;
}

.counting-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.counting-info ul li {
  display: inline-block;
  text-align: center;
  margin: 0 20px 30px;
  font-size: 20px;
  line-height: 24px;
  color: #808285;
}

.counting-info ul li a {
  color: #808285;
}

.counting-info ul li.current-cat a,
.counting-info ul li a:hover {
  color: #4d4d4f;
  font-weight: 400;
}

.counting-info ul li span {
  display: inline-block;
  margin-left: 5px;
}

.counting-info ul li a:before {
  position: relative;
  content: attr(title);
  bottom: 0;
  display: block;
  overflow: hidden;
  height: 0px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  font-family: "Nunito Sans", sans-serif;
}

.resource-content-info {
  float: left;
  width: 100%;
  margin-top: 90px;
}

.resource-item-wrap {
  float: left;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
}

.resource-item {
  float: left;
  max-width: 384px;
  width: 32.268907563%;
  margin: 60px 0.7983193277% 0;
  padding-bottom: 58px;
  position: relative;
}

.resource-item a.btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
}

.resource-item:nth-child(3n+1) {
  margin-left: 0px;
  clear: both;
}

.resource-item:nth-child(-3n+3), .resource-item:nth-child(3n+3) {
  margin-right: 0px;
}

.thumb {
  float: left;
  width: 100%;
}

.thumb img {
  width: 100%;
}

a.thumb-title {
  display: inline-block;
  width: 100%;
  text-decoration: none;
  font-size: 24px;
  line-height: 32px;
  margin-top: 21px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 300;
  color: #656565;
  margin-bottom: 22px;
}

a.thumb-title:hover {
  text-decoration: underline;
}

.resources-content .join-us-wrap {
  margin-top: 280px;
  background-position: right top;
}

.resources-content .section-title, .team-content .section-title {
  max-width: 661px;
}

.resources-content .section-title h1, .resources-content .section-title h3, .resources-content .section-title p, .article-thumb p {
  color: #866d46;
}

.resources-content .join-us-thum {
  left: 53.5%;
  top: -177px;
}

.article-row {
  float: left;
  width: 100%;
  margin-top: 70px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  padding-bottom: 60px;
  border-bottom: 1px solid #929497;
}

.article-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.article-row .resource-item {
  margin-top: 0;
  margin-bottom: 60px;
  padding-bottom: 0;
}

.article-info {
  float: left;
  max-width: 794px;
  width: 66.7226890756%;
}

.blog-article-info h1,
.blog-article-info h3 {
  float: left;
  width: 100%;
  padding-right: 65px;
  color: #656565;
}

.blog-article-info h1,
.blog-article-info h1 a,
.blog-article-info h3,
.blog-article-info h3 a,
.blog-article-info h4,
.blog-article-info h4 a,
.blog-article-info h5,
.blog-article-info h5 a,
.blog-article-info p,
.blog-article-info ul,
.blog-article-info ol,
.content-thumb-info h3,
.content-row p {
  color: #656565;
}

.blog-article-info h3 a,
.blog-article-info h4 a,
.blog-article-info h5 a {
  text-decoration: underline;
}

.blog-article-info h3 a:hover,
.blog-article-info h4 a:hover,
.blog-article-info h5 a:hover {
  text-decoration: none;
}

.blog-article-info h4,
.blog-article-info h5 {
  width: 100%;
  line-height: 45px;
  margin-top: 35px;
}

.blog-article-info p,
.blog-article-info h1,
.blog-article-info h3 {
  width: 100%;
  margin-top: 30px;
}

.blog-article-info p,
.blog-article-info li {
  color: #656565;
  font-weight: 400;
}

.blog-article-info a {
  color: inherit;
  font-weight: 400;
  text-decoration: underline;
  display: inline;
}

.blog-article-info a:hover {
  text-decoration: none;
}

.blog-article-info ul,
.blog-article-info ol {
  margin: 15px 0 0 20px;
}
.blog-article-info ul ul,
.blog-article-info ol ul {
  margin-top: 0px;
  margin-bottom: 5px;
}

.blog-article-info pre {
  background: #f5f5f5;
  white-space: pre-wrap;
  font-size: 14px;
  padding: 5px 5px 0 5px;
}

.blog-article-info ul {
  list-style: disc;
}

.article-thumb {
  float: left;
  max-width: 380px;
  width: 33.2773109244%;
  padding-left: 1.3445378151%;
}

.article-thumb img, .article-info img {
  width: 100%;
}

.article-thumb.gotten a.thumb-title {
  margin-top: 38px;
}

.article-thumb p {
  margin-top: 30px;
  font-size: 20px;
  line-height: 33px;
}

.article-thumb a {
  font-size: 50px;
  line-height: 60px;
}

.article-thumb a.thumb-title {
  text-align: left;
  margin-top: 22px;
  margin-bottom: 0;
}

.article-thumb a.btn,
.blog-article-info a.btn {
  margin-top: 42px;
}

.pagination-wrap {
  float: left;
  width: 100%;
  text-align: center;
  margin-top: 40px;
}

.text-gotten, .article-thumb, .article-row .resource-item {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.text-gotten:hover {
  background: #f1f1f1;
}

.resources-news-content .common-wrap {
  max-width: 1280px;
}

.content-row {
  float: left;
  width: 100%;
  margin-top: 200px;
}

.content-row:first-child {
  margin-top: 0;
}

.content-row p {
  float: left;
  width: 100%;
  margin-top: 80px;
  font-size: 20px;
  line-height: 26px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 300;
  color: #866d46;
  padding-right: 50px;
}

.content-thumb {
  float: left;
  max-width: 494px;
  width: 39.8387096774%;
}

.content-thumb-info {
  float: left;
  max-width: 694px;
  width: 55.9677419355%;
  margin-left: 4.1935483871%;
}

.content-thumb-info h3 {
  font-weight: 300;
}

.resources-news-content .resource-content-info {
  margin-top: 137px;
}

.resources-content .hero-thum {
  position: absolute;
  right: 0;
  max-width: 325px;
  width: 100%;
  top: 33px;
  z-index: 5;
}

.resources-blog-content .title-text-wrap h2, .resources-blog-2-content .title-text-wrap h2 {
  text-transform: uppercase;
}

.resources-blog-content .resource-content-info {
  margin-top: 0px;
}

.resources-blog-content .hero-thum {
  top: 100px;
}

.blog-thumb {
  float: left;
  width: 100%;
}

.blog-thumb img {
  float: left;
  max-width: 100%;
}

.blog-article-info {
  float: left;
  width: 100%;
}

.date-category {
  display: inline-block;
  color: #656565;
  margin-top: 25px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  width: 100%;
}

.date-category .category a {
  font-weight: 400;
  color: #656565;
}

.date-category .category a:hover {
  text-decoration: underline;
}

.article-thumb .date-category {
  margin-top: 0;
  text-align: left;
}

.blog-article-info .date-category {
  text-align: left;
}

.blog-article-info h2 {
  float: left;
  width: 100%;
  font-size: 35px;
  line-height: 45px;
  color: #656565;
  margin-top: 35px;
}

.blog-article-info h3 {
  font-size: 30px;
}

.blog-article-info h4 {
  font-size: 26px;
}

.blog-article-info h5 {
  font-size: 23px;
}

.blog-article-info h6 {
  font-size: 20px;
}

.resources-blog-content .article-row,
.resources-blog-2-content .article-row {
  border: 0;
}

.resources-blog-2-content .article-row {
  padding-bottom: 0;
  margin-top: 0;
}

.resources-blog-2-content .article-row p {
  font-size: 18px;
  line-height: 27px;
}

.resources-blog-2-content .article-row p a {
  color: #656565;
  font-weight: 400;
}

.resources-blog-2-content .article-row p a:hover {
  text-decoration: underline;
}

.malinky-ajax-pagination-loading,
.malinky-load-more {
  width: 100%;
  text-align: center;
}

.malinky-load-more__button {
  display: inline-block;
  width: auto;
  padding: 7px 21px;
  margin-bottom: 40px;
  border: 1px solid #d1c6da;
  border-radius: 30px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  font-family: "Nunito Sans", sans-serif;
  color: #4d4d4f;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.malinky-load-more__button:hover {
  background: #ddd;
}

/* // End Resources Page Style */
/* Beginning Team Page Style */
/*
.team-content .hero-wrap{min-height: 571px}
*/
.team-item-wrap {
  float: left;
  width: 100%;
}

.team-item {
  float: left;
  max-width: 382px;
  width: 32.1848739496%;
  margin: 36px 0.8613445378% 0;
}

.team-item figure {
  float: left;
  width: 100%;
  position: relative;
}

.team-item figure img {
  width: 100%;
}

.team-item:nth-child(3n+1) {
  margin-left: 0px;
  clear: both;
}

.team-item:nth-of-type(-n+3) {
  margin-top: 17px;
}

.team-item:nth-child(-3n+3), .team-item:nth-child(3n+3) {
  margin-right: 0px;
}

.overlay-text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(255, 255, 255, 0.5);
  padding: 22px;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.Teamget figure:hover .overlay-text {
  opacity: 1;
}

.overlay-text h3, .team-top-text h3 {
  float: left;
  width: 100%;
  color: #4d4d4f;
}

.team-top-text {
  background: #ffffff;
  cursor: default !important;
}

.team-top-text p {
  float: left;
  width: 100%;
  font-size: 20px;
  line-height: 24px;
  margin-top: 40px;
}

.team-top-text h3, .team-top-text p {
  color: #866d46;
}

.team-top-text p {
  padding-right: 50px;
}

.team-info {
  float: left;
  width: 100%;
  position: relative;
}

.double-width .team-item:first-child {
  float: left;
  max-width: 793px;
  width: 66.3865546218%;
  margin-right: 0.5%;
}

.double-width .team-item:last-child {
  margin-right: 0;
}

.team-deals {
  position: absolute;
  right: 0;
  z-index: 10;
  max-width: 808px;
  min-height: 382px;
  width: 67.8991596639%;
  padding: 40px 70px 26px 36px;
  background: #f8f8f8;
  display: none;
  overflow: hidden;
  overflow-y: auto;
}

.team-item:nth-child(3n+1) .team-deals {
  right: 0;
}

.team-item:nth-child(3n+3) .team-deals {
  right: auto;
  left: 0;
}

.team-item:nth-child(5) .team-deals {
  right: auto;
  left: 0;
}

.team-info:nth-child(3) .team-item:nth-child(2) .team-deals {
  right: auto;
  left: 0;
}

.team-item.Teamget {
  cursor: pointer;
}

.team-item figure.mobile {
  display: none;
}

/*.team-item:nth-child(3n+3) .team-deals{right: auto; left: 0;}*/
.team-deals p {
  float: left;
  width: 100%;
  font-size: 20px;
  line-height: 24px;
  color: #866d46;
  margin-top: 45px;
}

.team-deals h3 {
  float: left;
  width: 100%;
}

.team-deals a {
  float: left;
  width: 30px;
}

.team-deals a img {
  width: 100%;
  margin-top: 30px;
}

.close-icon {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 17px;
  z-index: 5;
  cursor: pointer;
  display: none;
}

.close-icon img {
  width: 100%;
}

.quote-text {
  right: auto;
  max-width: 382px;
  background: rgba(255, 255, 255, 0.6);
  color: #4d4d4f;
  padding: 20px;
}

.quote-text .close-icon {
  right: 12px;
  top: 6px;
}

.quote-text p {
  color: #4d4d4f;
  margin-top: 0;
  font-size: 32px;
  line-height: 40px;
}

.quote-text em {
  font-size: 26px;
  font-weight: 600;
  font-style: italic;
}

.team-item:nth-child(3n+3) .team-deals.quote-text {
  left: auto;
}

.team-modal {
  position: fixed;
  overflow-y: auto;
}

.team-modal .moadl-inner {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  position: relative;
}

.team-modal .team-deals {
  display: block;
  max-width: 650px;
  margin: 0 auto;
  clear: both;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  overflow: hidden;
}

.team-item-wrap.no-popup .team-info {
  margin-bottom: 60px;
}

.team-item-wrap.no-popup .team-info figure {
  width: 27%;
  display: inline-block;
  float: left;
  max-width: 320px;
}

.team-item-wrap.no-popup .team-info .team-text-info {
  display: inline-block;
  float: left;
  padding-left: 62px;
  width: 73%;
  color: #866d46;
}

.team-item-wrap.no-popup .team-info .team-text-info h3 {
  margin-bottom: 20px;
}

.team-item-wrap.no-popup .team-info .team-text-info p {
  font-size: 22px;
  line-height: 32px;
  text-align: justify;
}

.team-item-wrap.no-popup .team-info:nth-child(even) .team-text-info {
  float: left;
  padding: 0 62px 0 0;
}

.team-item-wrap.no-popup .team-info:nth-child(even) figure {
  float: right;
}

.team-content .join-us-thum {
  top: -196px;
  left: 56%;
  z-index: -1;
}

/*.hero-wrap{min-height: 573px;}*/
.home-content .hero-wrap {
  min-height: 100%;
}

.title-text-wrap {
  float: left;
  width: 100%;
  position: relative;
  margin-top: 111px;
  text-align: center;
}

.title-text-wrap .common-wrap {
  position: relative;
}

/* // End Team Page Style */
/* Beginning Template Page Style */
/*
.template-content .hero-wrap{min-height: 573px}
*/
.template-content .title-text-wrap .common-wrap {
  padding: 0 20px;
  max-width: 626px;
}

.template-content .title-text-wrap p {
  float: left;
  width: 100%;
  text-align: center;
  font-size: 20px;
  line-height: 26px;
  margin-top: 30px;
  color: #4D4D4F;
}

.template-info {
  float: left;
  width: 100%;
  margin-top: -33px;
  padding-bottom: 80px;
  border-bottom: 1px solid #c5c6c7;
}

.template-info h3 {
  float: none;
  text-align: center;
}

.template-wrap {
  float: left;
  width: 100%;
}

.template-item {
  float: left;
  max-width: 270px;
  width: 22.6890756303%;
  margin: 100px 7.9831932773% 0;
  text-align: center;
}

.template-item .icon {
  width: 60px;
}

.template-item:nth-of-type(-n+3) {
  margin-top: 123px;
}

.template-item:nth-child(3n+1) {
  margin-left: 0px;
  clear: both;
}

.template-item:nth-child(3n+3), .template-item:nth-child(-3n+3) {
  margin-right: 0px;
}

.template-item a {
  float: none;
  text-align: center;
  display: inline-block;
  margin-top: 33px;
  font-size: 20px;
  line-height: 24px;
  padding: 7px 14.230769%;
  border: 1px solid #d1c6da;
  height: 38px;
  border-radius: 30px;
  font-weight: 600;
  font-family: "Nunito Sans", sans-serif;
  color: #4d4d4f;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.template-item span {
  display: block;
  text-align: center;
  margin-top: 20px;
  color: #4d4d4f;
  font-weight: 400;
}

.template-item a:hover {
  background: #f1f1f1;
}

.more-template {
  padding-top: 80px;
  border: 0;
  margin-top: 0;
}

.template-content .join-us-wrap {
  margin-top: 280px;
}

.template-content .join-us-thum {
  top: -242px;
  left: 54%;
}

.template-content .section-title p {
  margin: 35px auto 0;
  float: none;
  overflow: hidden;
  clear: both;
  /* max-width: 650px; */
}

.sharepoint-wrap {
  float: left;
  width: 100%;
  margin-top: 22px;
  padding-bottom: 100px;
  border-bottom: 1px solid #c5c6c7;
}

.sharepoint-info {
  width: 100%;
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 768px) {
  .sharepoint-info {
    flex-wrap: nowrap;
  }
}

.sharepoint-cta {
  text-align: center;
  margin-top: 45px;
}

.share-item-info {
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .share-item-info {
    width: 30%;
    margin-left: 5%;
  }
}

.share-item-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.share-item-info:nth-child(3n+1) {
  margin-left: 0px;
}

.share-item-info ul li {
  float: left;
  width: 100%;
  padding-left: 18px;
  position: relative;
  font-size: 16px;
  line-height: 23px;
  color: #4D4D4F;
  margin-top: 26px;
}

.share-item-info ul li:before {
  position: absolute;
  left: 0;
  top: 2px;
  content: ">";
  font-size: 16px;
  line-height: 16px;
  color: #4D4D4F;
  z-index: 2;
}

.share-item-info a {
  margin-top: 110px;
  background: -webkit-linear-gradient(45deg, #20bdb5 0%, #11c15c 100%);
  background: -o-linear-gradient(45deg, #20bdb5 0%, #11c15c 100%);
  background: -moz-linear-gradient(45deg, #20bdb5 0%, #11c15c 100%);
  background: linear-gradient(45deg, #20bdb5 0%, #11c15c 100%);
}

.share-item-info a:hover {
  background: -webkit-linear-gradient(45deg, #20bdb5 0%, #4bb1bd 100%);
  background: -o-linear-gradient(45deg, #20bdb5 0%, #4bb1bd 100%);
  background: -moz-linear-gradient(45deg, #20bdb5 0%, #4bb1bd 100%);
  background: linear-gradient(45deg, #20bdb5 0%, #4bb1bd 100%);
}

.share-icon {
  float: left;
  width: 286px;
}

.share-icon img {
  width: 100%;
}

.sharepoint-wrap h3 {
  float: left;
  width: 100%;
  color: #4D4D4F;
  font-weight: 300;
}

/* // End Template Page Style */
/* Beginning Default Page Style */
.page-content.resources-blog-2-content .resource-content-info,
.page-content.resources-blog-2-content .article-row {
  margin-top: 0;
}

/* // End Default Page Style */
/* Beginning About Page Style */
/*.about-content .hero-wrap:after{position: absolute;bottom: 0;left: 0;right: 0;content: '';z-index: 0;top: 20%;background: url('../img/hero-starts.png')no-repeat;background-position: center;background-size: 100% auto}*/
.about-content .feature-container {
  text-align: center;
  margin: 20px 0 80px;
}

.about-content .feature-container .btn {
  margin-top: 60px;
}

.about-content .feature-container p {
  margin-top: 35px;
  font-size: 20px;
  line-height: 33px;
  font-weight: 300;
  padding: 0 30px;
}

.about-content-wrap {
  margin-top: 70px;
}

.about-content-info {
  margin-bottom: 60px;
  float: left;
  text-align: center;
}

.about-content-info h3,
.about-content .content-details-wrap h3 {
  float: left;
  width: 100%;
  color: #656565;
}

.about-content-info p {
  float: left;
  color: #656565;
  font-size: 18px;
  line-height: 27px;
  margin-top: 30px;
  width: 100%;
}

.about-content-info p img {
  margin: 15px 30px;
}

.about-content .content-details-wrap h3 {
  text-align: center;
  margin-bottom: 30px;
}

.about-content .team-info {
  text-align: center;
}

.about-content .team-item.Teamget {
  cursor: default;
  display: inline-block;
  margin: 17px 6.5px 0;
  padding: 0;
  width: 100%;
  max-width: 380px;
  float: none;
}

.about-content .team-item.Teamget figure {
  display: inline-block;
}

.about-content .partners-container {
  padding-bottom: 342px;
}

/* // End About Page Style */
/* Beginning Integrations Page Style */
/*
.integrations-content .hero-wrap{min-height: 640px}
*/
.integrations-content-wrap {
  margin-top: 140px;
}

.integrations-content-info h3 {
  float: left;
  width: 100%;
  color: #876E47;
  text-align: center;
  margin-bottom: 30px;
}

.integrations-content-info p {
  float: left;
  color: #876E47;
  font-size: 18px;
  line-height: 27px;
  margin-top: 30px;
}

.integrations-thumb {
  float: left;
  width: 100%;
  margin: 40px 0 0;
  padding-bottom: 60px;
  border-bottom: 1px solid #929497;
}

.integrations-thumb img {
  width: 100%;
}

.integrations-content .feature-container {
  padding: 70px 0;
}

/* // End Integrations Page Style */
.phone-nav {
  float: right;
  width: 25px;
  display: none;
}

.phone-nav div {
  width: 100%;
  height: 3px;
  background: #000000;
  border-radius: 5px;
  margin-top: 3px;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s;
}

.phone-nav.expanded div:first-child {
  -webkit-transform: rotate(-45deg) translate(-0.35rem, 0.475rem);
  -moz-transform: rotate(-45deg) translate(-0.35rem, 0.475rem);
  transform: rotate(-45deg) translate(-0.35rem, 0.475rem);
}

.phone-nav.expanded div:last-child {
  -webkit-transform: rotate(45deg) translate(-0.3875rem, -0.4125rem);
  -moz-transform: rotate(45deg) translate(-0.3875rem, -0.4125rem);
  transform: rotate(45deg) translate(-0.3875rem, -0.4125rem);
}

.phone-nav.expanded div:nth-child(2) {
  opacity: 0;
}

.mobi {
  display: none !important;
}

#feature-row-thum img {
  display: none;
}

/* New fix */
/*
.hero-inner, .header-inner{padding-right: 70px;padding-left:  70px; max-width: 1730px}
*/
.header-inner {
  max-width: 1880px;
}

/* Pricing Page Style */
.pricing-content .hero-wrap {
  min-height: 570px;
}

.pricing-content .hero-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  background-image: url(../img/pricing-stars.png);
  z-index: 1;
}

.pricing-content .hero-content {
  padding: 0;
  width: 52%;
}

.pricing-content .hero-content a {
  margin-top: 0;
}

.pricing-content .hero-thum {
  width: 48%;
  max-width: 758px;
}

.pricing-content .hero-graphcis {
  background-color: #fff;
  background-position: top center;
}

.pricing-content .hero-graphcis:before {
  /*background: rgba(13,6,125,1);background: -moz-linear-gradient(left, rgba(200,212,219,1) 0%, rgba(13,6,125,1) 100%);background: -webkit-linear-gradient(left, rgba(200,212,219,1) 0%, rgba(13,6,125,1) 100%);background: linear-gradient(to right, rgba(200,212,219,1) 0%, rgba(13,6,125,1) 100%);filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c8d4db', endColorstr='#2a2582',GradientType=1 );bottom: 50%*/
  display: none;
}

.pricing-content .join-us-wrap {
  padding-top: 0;
}

.pricing-content-wrap {
  background: #fff;
  padding-bottom: 100px;
}

.pricing-content-wrap .common-wrap {
  max-width: 1730px;
  padding: 0 70px;
  position: relative;
}

.pricing-column {
  display: inline-block;
  float: left;
  width: 50%;
  max-width: 595px;
}

.pricing-column:nth-child(even) {
  float: right;
  max-width: 50%;
}

.pricing-column .section-title {
  margin-top: 80px;
}

.pricing-column p {
  text-align: left;
  color: #4D4D4F;
}

.form-wrap h4 {
  text-align: center;
  width: 100%;
}

/*.form-wrap iframe{height: auto!important;min-height: 698px;}*/
.form-wrap .width100 {
  width: 100%;
}

.form-wrap .field-wrap input[type=text],
.form-wrap .field-wrap input[type=email],
.form-wrap .field-wrap textarea {
  background: linear-gradient(90deg, #d4d5d6 0%, #f3f3f4 100%);
  background: -moz-linear-gradient(left, #d4d5d6 0%, #f3f3f4 100%);
  background: -webkit-linear-gradient(left, #d4d5d6 0%, #f3f3f4 100%);
  background: linear-gradient(to right, #d4d5d6 0%, #f3f3f4 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#d4d5d6", endColorstr="#f3f3f4",GradientType=1 );
}

.pricing-content .partners-container {
  padding: 0 0 134px;
}

.pricing-content .partners-container .common-wrap {
  position: relative;
}

.pricing-solo {
  margin: 0 auto 100px;
  border-top: 2px solid #d4d5d6;
  border-bottom: 2px solid #d4d5d6;
  max-width: 1060px;
}

/*.pricing-solo .circle-bg{background: -webkit-linear-gradient(90deg, rgba(250,138,62,1) 0%, rgba(250,138,62,1) 33.230%, rgba(250,138,62,1) 0%, rgba(250,138,62,1) 33.230%, rgba(239,15,15,1) 100%) 100%);background: -o-linear-gradient(90deg, rgba(250,138,62,1) 0%, rgba(250,138,62,1) 33.230%, rgba(239,15,15,1) 100%) 100%);background: -moz-linear-gradient(90deg, rgba(250,138,62,1) 0%, rgba(250,138,62,1) 33.230%, rgba(239,15,15,1) 100%) 100%);background: linear-gradient(90deg, rgba(250,138,62,1) 0%, rgba(250,138,62,1) 33.230%, rgba(239,15,15,1) 100%);filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fa8a3e', endColorstr='#EF0F0F',GradientType=1 );border-radius: 50%;height: 100%;width: 100%;display: inline-flex;align-items: center;margin-bottom: -60px;position: relative;}
.pricing-solo .circle-bg:before{content: '';position: absolute;top: -100px;left: -200px;width: 351px;height: 100%;background-size: 100% auto;background-repeat: no-repeat;background-position: top center;background-image: url(../img/pricing-graphic2.png);z-index: 1;}*/
.pricing-solo .center-wrap {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 60px 40px;
}

.pricing-solo p {
  margin: 0 auto;
  font-size: 30px;
  line-height: 36px;
  color: #876E47;
}

.pricing-solo .btn {
  background: #f0f0f1;
  color: #000;
  margin-top: 40px;
  background: linear-gradient(90deg, #d4d5d6 0%, #f3f3f4 100%);
}

/*.pricing-content .join-us-wrap{background: rgb(215,217,223);
	background: -moz-linear-gradient(left, rgba(215,217,223,1) 0%, rgba(242,242,242,1) 76.61%, rgba(255,255,255,1) 100%);
	background: -webkit-linear-gradient(left, rgba(215,217,223,1) 0%,rgba(242,242,242,1) 76.61%,rgba(255,255,255,1) 100%);
	background: linear-gradient(to right, rgba(215,217,223,1) 0%,rgba(242,242,242,1) 76.61%,rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d7d9df', endColorstr='#ffffff',GradientType=1 );}*/
/* // End Pricing Page Style */
/* Solo Plan Page Style */
.pricing-solo-plan .common-wrap,
.pricing-solo-faq .common-wrap {
  padding-right: 70px;
  padding-left: 70px;
  max-width: 1730px;
  position: relative;
}

.pricing-solo-faq .common-wrap {
  background-position: 70px 0px;
  background-repeat: no-repeat;
  padding-top: 140px;
}

.columns-wrap {
  display: inline-block;
  float: left;
  width: 100%;
  margin: 60px 0 60px -40px;
  position: relative;
}

.columns-wrap:before,
.columns-wrap:after {
  content: "";
  width: 2px;
  height: 100%;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 24%;
  background: #d4d5d6;
}

.columns-wrap:after {
  left: 48%;
}

.col {
  width: 24%;
  float: left;
  padding: 0 38px;
}

.col h5 {
  color: #876E47;
  margin-bottom: 20px;
  font-weight: normal;
}

.col ul,
.pricing-solo-faq ul {
  padding-left: 20px;
  list-style: disc;
  color: #876E47;
}

.col li,
.pricing-solo-faq ul li {
  display: list-item;
  margin-bottom: 15px;
}

.col a {
  text-decoration: underline;
  color: #876E47;
}

.col a:hover {
  text-decoration: none;
}

.col-graphic {
  position: absolute;
  top: -75px;
  right: 215px;
  max-width: 375px;
}

.pricing-solo-faq h6 {
  font-weight: normal;
  font-size: 16px;
}

.pricing-solo-faq ul {
  margin: 30px 0 60px;
  max-width: 740px;
}

.pricing-solo-faq ul li {
  color: #4D4D4F;
  margin-bottom: 20px;
}

.pricing-solo-content join-us-wrap {
  padding: 80px 0;
}

/* // End Solo Plan Page Style */
h4.related-posts {
  font-size: 50px;
  line-height: 60px;
}

/* Override for images within lottie contianer */
div[id^=lottie_] {
  width: 100%;
  height: 100%;
}

div[id^=lottie_] img {
  max-width: none;
}

/* =======================================================================================================
============================================ Responsive style ========================================== */
/*      Mobile Layout: 320px and 480px and more but less than or equal to 767px.
----------------------------------------------------------------------------------
*/
@media only screen and (max-width: 767px) {
  input[type=text], input[type=email], input[type=tel], input[type=search], input[type=number], input[type=password], select, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
  }

  label {
    font-size: 13px;
    line-height: 20px;
    text-align: left;
  }

  .small-btn {
    font-size: 14px;
  }

  .input-row label {
    margin-bottom: 5px;
  }

  .logo-wrap {
    width: 100%;
  }

  .main-logo {
    width: 140px;
  }

  .hero-wrap {
    padding-top: 0;
    background-image: url(../svg/home-hero-mobi.svg);
    min-height: 100%;
  }

  .header-section {
    padding: 22px 0 0;
  }

  .hero-inner, .header-inner {
    padding: 0 20px;
  }

  .hero-inner {
    padding-top: 53px;
  }

  .hero-graphcis {
    background-image: none !important;
    display: none;
  }

  .hero-content, .solution-content-child .hero-content, .support-content .hero-content, .solution-content .hero-content, .technology-content .hero-content {
    float: left;
    width: 100%;
    margin-top: 0;
    padding: 0;
  }

  .hero-content h5 {
    margin-top: 15px;
  }

  .hero-content a.btn {
    margin-top: 17px;
    font-size: 13px;
    line-height: 28px;
    width: auto;
  }

  .hero-thum, .support-content .hero-thum, .solution-content .hero-thum, .technology-content .hero-thum, .nested-virtual-content .hero-thum {
    float: left;
    width: 100%;
    margin-bottom: -114px;
    margin-top: 50px;
  }

  .support-content .hero-thum {
    margin-bottom: 0;
  }

  .feature-container {
    padding: 80px 0 0;
  }

  .feature-container .section-title > p {
    margin-top: 20px;
    font-size: 13px;
    line-height: 19px;
  }

  .feature-row, .solution-content-child .feature-row, .solution-content .feature-row {
    padding: 36px 0 48px;
  }

  .feature-row-thum, .solution-content .feature-row-thum, .support-content .feature-row-thum {
    float: none;
    width: 100%;
    margin: 0 auto;
    display: block;
  }

  .acordian-wrap {
    float: left;
    width: 100%;
  }

  .acordian-item {
    margin-top: 15px;
  }

  .acordian-item h4:before {
    width: 12px;
    height: 12px;
    left: 6px;
  }

  .accordion-content {
    padding-left: 50px;
  }

  .acordian-item p {
    padding: 15px 0 27px;
  }

  .feature-row a.btn, .solution-content-child .community-container a.btn {
    width: 127px;
    line-height: 28px;
    font-size: 12px;
  }

  .row-wrap, .item-row {
    margin-top: 35px;
  }

  .row-item {
    padding: 0;
  }

  .row-item:nth-child(4n+1), .row-item:nth-child(4n+2), .row-item:nth-child(4n+3), .row-item:nth-child(4n+4) {
    width: 100%;
    float: left;
    margin: 25px 0 0;
  }

  .home-content .row-item {
    margin: 0 !important;
  }

  .row-item, .single-item {
    display: -webkit-flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
  }

  .single-item h4,
.single-item h6 {
    width: 100%;
  }

  .row-item-content {
    float: left;
    width: 50%;
    /*padding-left: 20px*/
  }

  .home-content .row-item-content {
    margin-right: 10%;
  }

  .row-item-content h6 {
    font-size: 14px;
    line-height: 17px;
  }

  .row-item-content h6 br {
    display: none;
  }

  .row-item a.btn {
    margin-top: 25px;
    padding: 0 20px;
    font-size: 12px;
    line-height: 28px;
  }

  .row-item-content h6 br {
    display: none;
  }

  .community-container {
    padding: 43px 0 60px;
  }

  .content-container-wrap {
    margin-top: 60px;
  }

  .content-container-item {
    width: 100%;
    margin: 0 0 40px;
  }

  .content-container-item h2 {
    margin: 10px 0;
    font-size: 22px;
    line-height: 26px;
  }

  .content-container-item h4 {
    font-size: 14px;
    line-height: 18px;
  }

  .partners-container {
    padding: 55px 0 110px;
  }

  .partners-item-wrap {
    margin-top: 18px;
  }

  .partners-item {
    margin: 16px 2.5%;
  }

  .join-us-wrap {
    padding: 80px 0 60px;
  }

  /*.join-us-wrap iframe{min-height: 1040px}*/
  .template-content .join-us-wrap {
    margin-top: 80px;
  }

  .join-us-thum, .support-content .join-us-thum, .template-content .join-us-thum {
    width: 80px;
    height: 80px;
    top: -45px;
  }

  .solution-content .join-us-thum {
    width: 140px;
    top: -55px;
  }

  .join-us-wrap .section-title p, .community-container .section-title p {
    padding: 0;
    font-size: 13px;
    line-height: 19px;
  }

  .join-us-wrap .section-title p br, .community-container .section-title p br {
    display: none;
  }

  .input-form-wrap {
    margin-top: 20px;
  }

  .input-row {
    margin-top: 0;
  }

  .input-col {
    float: left;
    width: 100%;
    margin: 20px 0 0;
  }

  .msg {
    margin-top: 20px;
  }

  .msg textarea {
    height: 110px;
  }

  .header-section {
    background: #f2f2f2;
    position: fixed;
    z-index: 9999;
    padding-top: 0px;
  }

  .header-inner {
    padding: 0;
  }

  .logo-wrap {
    padding: 20px 20px;
    background: #f2f2f2;
    position: relative;
  }

  .phone-nav {
    display: block;
    width: 25px;
    margin-top: 2px;
    width: 1.25rem;
  }

  .phone-nav.expanded div:first-child {
    -webkit-transform: rotate(-45deg) translate(-0.25rem, 0.375rem);
    -moz-transform: rotate(-45deg) translate(-0.25rem, 0.375rem);
    transform: rotate(-45deg) translate(-0.25rem, 0.375rem);
  }

  .phone-nav.expanded div:last-child {
    -webkit-transform: rotate(45deg) translate(-0.1875rem, -0.3125rem);
    -moz-transform: rotate(45deg) translate(-0.1875rem, -0.3125rem);
    transform: rotate(45deg) translate(-0.1875rem, -0.3125rem);
  }

  .nav-wrap {
    float: left;
    width: 100%;
    z-index: 9999;
    padding: 30px 20px;
    position: relative;
    height: -webkit-calc(100vh - 63px);
    height: calc(100vh - 63px);
    display: none;
    overflow-y: auto;
  }

  .nav-inner, .main-nav, .contact-wrap, .solutions ul li, .product ul {
    width: 100%;
    float: left;
  }

  .main-nav > ul > li {
    float: left;
    width: 100%;
    clear: both;
    display: block;
    text-align: left;
    margin: 0;
  }

  .contact-wrap {
    float: left;
    width: 100%;
  }

  .main-nav > ul > li > .sub-menu-wrap {
    float: left;
    width: 100%;
    position: relative;
    background: transparent;
    padding-top: 25px;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    display: none;
    -webkit-transition-property: none;
    -moz-transition-property: none;
    -o-transition-property: none;
    transition-property: none;
    opacity: 1;
    visibility: visible;
    background-color: #f2f2f2;
  }

  .sub-inner-wrap {
    float: left;
    width: 100%;
    min-width: 10px;
  }

  .sub-menu-container {
    width: 100%;
    padding: 0 0 25px;
  }

  .sub-menu-container.solutions {
    padding-bottom: 25px;
  }

  .product ul {
    margin-top: 10px;
  }

  .product ul:first-child {
    margin-top: 0;
  }

  .product a.btn {
    width: 100%;
    margin-left: 0;
    max-width: 292px;
  }

  .sub-menu-container .large-btn {
    height: 55px;
    line-height: 55px;
    font-size: 18px;
    margin-top: 15px;
  }

  .contact-wrap a {
    float: left;
    clear: both;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .solutions ul li {
    margin: 0;
  }

  .sub-menu-container .transparent-btn {
    padding: 0 15px;
  }

  .sub-menu-inner {
    padding-right: 0;
  }

  .solutions ul li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    margin: 20px 0;
  }

  .solutions ul li:first-child {
    margin-top: 0;
  }

  .header-section .row-item-content {
    width: 55%;
  }

  .solutions ul li img {
    float: left;
    margin: 0;
    width: auto;
    max-width: 125px;
  }

  .contact-wrap {
    position: static;
  }

  .desktop {
    display: none !important;
  }

  .mobi {
    display: block !important;
  }

  .contact-btn {
    width: auto;
    position: absolute;
    right: 60px;
    top: 20px;
    height: 25px;
    font-size: 13px;
    line-height: 25px;
  }

  .main-content-wrap {
    padding-top: 63px;
  }

  .hero-content h5 br {
    display: none;
  }

  input[type=text], input[type=email], input[type=tel], input[type=number], input[type=search], textarea {
    height: 45px;
  }

  .main-nav > ul > li > a:hover {
    font-weight: 400;
  }

  .main-nav > ul > li > a.active {
    font-weight: 700;
  }

  .input-row input[type=submit] {
    width: 160px;
    /*height: 30px;*/
    line-height: 28px;
    font-size: 12px;
    letter-spacing: 1px;
  }

  .social-wrap a {
    width: 40px;
    height: 40px;
    margin: 0 6px;
  }

  .solution-content-child .hero-thum {
    width: 100%;
    max-width: 100%;
    margin: 50px 0 0;
  }

  .solution-content-child .feature-container {
    padding: 50px 0;
  }

  .solution-content-child .feature-row-thum {
    margin: 0 auto;
  }

  .solution-content .feature-row-thum,
.support-content .feature-row-thum {
    padding: 0 70px;
  }

  .solution-content-child .feature-row-content {
    margin-top: 48px;
  }

  .solution-content-child .community-container .section-title h1,
.solution-content-child .community-container .section-title h3 {
    line-height: 34px;
  }

  .solution-content-child .community-container {
    padding: 100px 0;
  }

  .solution-content-child .join-us-thum {
    width: 240px;
    height: 170px;
    left: 49%;
    top: -65px;
  }

  .solution-content .row-wrap {
    margin-top: 30px;
  }

  .solution-content .feature-row-content, .support-content .feature-row-content {
    margin-top: 30px;
  }

  /*.solution-content .row-item img, .single-item img{width: 35% !important; float: left; margin: 0}*/
  .solution-content .community-container, .technology-content .community-container {
    padding: 50px 0 100px;
  }

  .solution-content .community-container .section-title {
    padding: 0;
  }

  .comunity-slider .slick-dots {
    bottom: -35px;
  }

  .tab-item {
    padding: 20px 0;
    min-height: 10px;
  }

  .contact-content .hero-wrap {
    min-height: 400px;
  }

  .team-content .hero-wrap,
.resources-content .hero-wrap,
.contact-content .hero-wrap {
    min-height: 140px;
  }

  .resources-content .hero-thum,
.contact-content .hero-thum {
    display: none;
  }

  .title-text-wrap {
    margin-top: 50px;
  }

  .contact-content .hero-thum {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 30px;
    width: 100%;
  }

  /*.contact-content .join-us-wrap{padding: 0 0 50px}*/
  .contact-content .join-us-wrap {
    background-image: none !important;
  }

  .contact-content textarea {
    height: 110px;
  }

  .support-content .feature-container {
    padding-top: 35px;
  }

  .support-content .feature-row {
    padding: 20px 0 50px;
  }

  .support-content .feature-row-content, .tab-content, .comunity-slider {
    margin-top: 30px;
  }

  .support-content .community-container {
    padding: 43px 0 200px;
  }

  .support-content .join-us-thum {
    top: -95px;
    left: 50%;
  }

  .technology-content .hero-wrap {
    min-height: 480px;
  }

  .technology-content .hero-thum {
    margin-right: 0;
  }

  .technology-content .feature-container {
    padding-top: 15px;
  }

  .technology-content .feature-item-row, .technology-content .feature-row {
    padding: 50px 0;
  }

  .single-item .row-item-content {
    width: 65%;
    padding-left: 15px;
  }

  .technology-content .row-item img {
    width: 56px;
    float: none;
  }

  .technology-content .row-item-content {
    width: 100%;
  }

  .technology-content .row-item a.btn {
    min-width: 165px;
  }

  .support-section {
    padding: 0 0 100px;
  }

  .technology-content .join-us-wrap {
    padding-bottom: 50px;
    padding-top: 120px;
  }

  .technology-content .join-us-thum {
    top: -40px;
    left: 49%;
    width: 80px;
    height: 80px;
  }

  .nested-virtual-content .hero-wrap {
    min-height: 350px;
  }

  .nested-virtual-content .hero-thum {
    position: relative;
    right: auto;
    left: auto;
  }

  .nested-virtual-content .feature-item-row .row-item figure {
    width: 50%;
  }

  .nested-virtual-content .feature-item-row .row-item img {
    max-width: 100%;
    width: auto;
  }

  .cloudshare-content-wrap, .cloudshare-image {
    margin-top: 30px;
    width: 100%;
  }

  .cloudshare-content {
    width: 100%;
    padding-right: 0;
  }

  .cloudshare-content p {
    font-size: 13px;
    line-height: 19px;
    text-align: center;
  }

  .cloudshare-image figure {
    width: 70%;
  }

  .processing-step-wrap {
    width: 26%;
    margin-left: 10px;
  }

  .processing-step {
    margin-top: 15px;
  }

  .processing-step p {
    font-size: 12px;
    line-height: 21px;
  }

  .template-content .hero-wrap {
    min-height: 10px;
    padding-bottom: 110px;
  }

  .template-info, .sharepoint-wrap {
    margin-top: 0;
    padding-bottom: 50px;
  }

  .more-template {
    padding-top: 50px;
  }

  .template-item {
    width: 100%;
    margin: 30px 0 0;
    max-width: 100%;
  }

  .template-item:nth-of-type(-n+3) {
    margin-top: 30px;
  }

  .template-item a {
    font-size: 15px;
  }

  .sharepoint-info {
    margin-top: 30px;
  }

  .share-item-info {
    width: 100%;
    margin-left: 0;
    max-width: 100%;
    text-align: center;
  }

  .share-item-info ul li {
    text-align: left;
  }

  .share-item-info a {
    margin-top: 30px;
    width: 200px;
    height: 42px;
    line-height: 40px;
    font-size: 15px;
    display: inline-block;
  }

  .team-content .join-us-thum {
    top: -70px;
    z-index: 1;
    left: 50%;
  }

  .team-item, .double-width .team-item:first-child {
    width: 100%;
    max-width: 100%;
  }

  .team-deals {
    width: 100%;
    padding: 20px 20px;
  }

  .team-item:nth-of-type(-n+3) {
    margin-top: 30px;
  }

  .team-info {
    text-align: center;
  }

  .team-item {
    display: none;
    float: none;
    margin: 0;
    max-width: 320px;
    padding: 0 20px;
    pointer-events: none;
  }

  .team-item:nth-of-type(-n+3) {
    margin-top: 0;
  }

  .team-item figure {
    display: none;
  }

  .team-item figure.mobile {
    display: inline-block;
    margin: 0 0 20px;
  }

  .team-item.team-top-text {
    display: inline-block;
    margin-bottom: 40px;
  }

  .team-top-text br {
    display: none;
  }

  .team-top-text p {
    padding: 0;
    margin-top: 20px;
  }

  .team-item-wrap.no-popup .team-info figure {
    text-align: center;
    margin-bottom: 40px;
  }

  .team-item-wrap.no-popup .team-info figure img {
    display: inline-block;
  }

  .team-item-wrap.no-popup .team-info figure,
.team-item-wrap.no-popup .team-info .team-text-info {
    width: 100%;
  }

  .team-item-wrap.no-popup .team-info .team-text-info,
.team-item-wrap.no-popup .team-info:nth-child(even) .team-text-info {
    padding: 0 20px;
  }

  .link-wrap > ul > li a {
    margin-top: 0;
    background: none;
  }

  #accordion > li {
    margin-top: 15px;
  }

  #accordion > li a.ui-accordion-header-active {
    background: #ddd;
  }

  #accordion > li:before {
    display: none;
  }

  #accordion > li ul {
    margin-bottom: 15px;
    margin-bottom: 15px;
    display: inline-block;
  }

  .counting-info {
    width: 100%;
    margin-top: 40px;
    display: none;
  }

  .counting-info ul li {
    margin: 20px 20px 0;
  }

  .link-wrap > ul > li:first-child, .link-wrap > ul > li:nth-child(2), .link-wrap > ul > li:nth-child(3), .link-wrap > ul > li:nth-child(4), .link-wrap > ul > li:nth-child(5), .link-wrap > ul > li:last-child {
    width: 100%;
    margin: 15px 0 0 0;
  }

  .resource-item, .resource-item:nth-child(3n+1), .resource-item:nth-child(3n+3) {
    width: 100%;
    margin: 30px 0 30px 0;
    max-width: 100%;
  }

  .link-wrap > ul > li li {
    margin-top: 20px;
  }

  .resources-content .join-us-wrap {
    margin-top: 120px;
  }

  .resources-content .join-us-thum {
    top: -78px;
    width: 130px;
  }

  .resource-content-info {
    margin-top: 20px;
  }

  .resources-news-content .resource-content-info, .content-row {
    margin-top: 50px;
  }

  .content-row p {
    padding-right: 0;
    margin-top: 30px;
  }

  .content-thumb {
    width: 100%;
    max-width: 100%;
  }

  .content-thumb-info {
    width: 100%;
    margin: 15px 0 0;
  }

  .article-row {
    margin-top: 30px;
    padding: 0;
  }

  .article-row:first-child {
    margin-top: 80px;
  }

  .article-info, .article-thumb {
    width: 100%;
    max-width: 100%;
  }

  .article-thumb {
    margin: 30px 0 0;
  }

  .article-thumb a {
    font-size: 28px;
    line-height: 34px;
    margin-top: 10px;
  }

  .blog-article-info h1, .blog-article-info h3, .blog-article-info p {
    padding-right: 0;
    margin-top: 15px;
  }

  .resources-blog-content .hero-thum {
    top: 0;
  }

  .hero-thum, .join-us-thum img {
    -webkit-transform: translate(0, 0) !important;
    -moz-transform: translate(0, 0) !important;
    transform: translate(0, 0) !important;
  }

  /*.logo-wrap{z-index: 10;}
  .header-section, .logo-wrap{background: transparent;}
  .hero-thum{padding: 0 25px; margin-bottom: -25px;}
  .hero-inner{padding-top: 110px;}
  .hero-wrap{background-image: url(../svg/home-hero-mobi.svg) !important;}
  .main-content-wrap{padding-top: 0;}
  .nav-wrap{background-color: #f2f2f2; position: absolute; top: 0; left: 0; z-index: 1;}
  .nav-inner{padding-top: 63px;}*/
  .hero-thum {
    padding: 0 25px;
    margin-bottom: -25px;
  }

  .content-container-item figure {
    max-width: 50px;
  }

  .just-wroks .item-row-inner, .item-row-inner, .solution-content .item-row-inner {
    margin: 0;
  }

  .single-item, .just-wroks .single-item, .solution-content .single-item {
    margin: 15px 0;
    width: 100%;
    padding: 0;
  }

  .single-item figure {
    width: 35%;
    float: left;
  }

  .single-item figure img {
    width: 100% !important;
    float: left;
  }

  .single-item img + a.btn, .single-item .row-item-content a.btn {
    margin-top: 0;
  }

  .solution-content .single-item a.btn {
    width: 100%;
    float: left;
  }

  .community-container .section-title h6 {
    margin-top: 25px;
  }

  .comunity-slider .slick-dots li {
    width: 10px;
    height: 10px;
  }

  .team-modal .modal-inner-wrap {
    padding: 100px 0 63px;
  }

  .team-modal .team-deals {
    padding: 50px 20px;
  }

  .team-modal .close-icon {
    top: 20px;
  }

  .team-deals p {
    margin-top: 15px;
    font-size: 16px;
    line-height: 20px;
  }

  .article-row .resource-item {
    padding-bottom: 0;
  }

  a.thumb-title {
    margin-top: 20px;
  }

  .blog-article-info {
    padding-bottom: 30px;
  }

  .solution-content-child .feature-row:first-child {
    padding-top: 0;
  }

  .solution-content-child .community-container a.btn {
    margin-top: 30px;
  }

  .solution-content .feature-row:last-child {
    padding-bottom: 50px;
  }

  .tab-item br {
    display: none;
  }

  .testomonials-wrap,
.new-testomonials-wrap {
    margin: 0 0 40px;
    padding: 0 0 40px;
  }

  .testomonials-wrap .flex-direction-nav,
.new-testomonials-wrap .flex-direction-nav {
    display: none;
  }

  .about-content .feature-container {
    margin: 0 0 40px;
  }

  .about-content .feature-container p {
    font-size: 16px;
  }

  /* Gravity Forms */
  body .gform_confirmation_message {
    font-size: 24px;
    line-height: 40px;
  }

  body .gform_wrapper .gform_body .gform_fields .gfield,
.html-form .field-wrap {
    display: inline-block;
    float: left;
    width: 100%;
  }

  body .gform_wrapper .gform_body .gform_fields .gfield .gfield_label {
    font-size: 14px;
  }

  body .gform_wrapper .gform_body .gform_fields .gfield.gfield_contains_required .gfield_label:after {
    height: 15px;
  }

  body .gform_wrapper .validation_error {
    font-size: 18px;
    line-height: 26px;
  }

  body .gform_wrapper .gform_body .gform_fields .gfield .gfield_description {
    font-size: 14px;
  }

  /* Pricing Page Style */
  .pricing-content-wrap .common-wrap {
    padding: 0 30px;
  }

  /*
  .pricing-content .hero-wrap{min-height: 240px;background-position: bottom 110px left 0px;}
      .pricing-content .hero-content{width: 100%!important}
      .pricing-content .hero-content h1,
      .pricing-content .hero-content h3{text-align: center;}
      .pricing-content .hero-content a.btn{float: none;}
      .pricing-content .hero-thum{display: none}
      */
  .pricing-content .join-us-wrap {
    padding-top: 80px;
  }

  .pricing-column {
    width: 100%;
  }

  .pricing-column:nth-child(even) {
    max-width: 100%;
  }

  .pricing-column .section-title {
    margin-top: 0;
  }

  .pricing-solo .center-wrap {
    padding: 60px 20px;
  }

  .form-wrap {
    margin-top: 40px;
  }

  .form-wrap h4 {
    font-size: 30px;
    line-height: 36px;
  }

  /* Solo Plan Page Style */
  .pricing-solo-plan {
    margin-top: 0;
    text-align: center;
  }

  .pricing-solo-plan .common-wrap {
    padding: 0;
  }

  .columns-wrap {
    margin: 60px 0 0;
  }

  .columns-wrap:before,
.columns-wrap:after {
    display: none;
  }

  .col {
    width: 100%;
    margin-bottom: 40px;
    text-align: left;
  }

  .col-graphic {
    display: none;
  }

  .pricing-solo-faq .common-wrap {
    padding: 100px 38px 0;
    background-position: 38px 0;
    background-size: 48px auto;
  }
}
@media only screen and (min-width: 320px) and (max-width: 374px) {
  .content-container-item h2 {
    margin: 10px 0;
    font-size: 18px;
    line-height: 26px;
  }

  .content-container-item h4 {
    font-size: 14px;
    line-height: 18px;
  }
}
/*      Wide Mobile Layout: 480px.
------------------------------------------------------------
*/
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .feature-container {
    padding-top: 120px;
  }

  .template-item {
    width: 50%;
    max-width: 100%;
  }

  .template-item:nth-child(3n+1) {
    clear: none;
  }

  .technology-content .feature-container {
    padding-top: 90px;
  }

  .content-container-item {
    width: 31.4285714286%;
    margin: 0 1.4285714286%;
  }
}
/*      Tablet Layout: 768px.
-----------------------------------------------------------------
*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  input[type=text], input[type=email], input[type=tel], input[type=search], input[type=number], input[type=submit], input[type=password], select, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  label {
    font-size: 13px;
    line-height: 15px;
    text-align: left;
  }

  .common-wrap {
    padding: 0 35px;
  }

  .header-section {
    background: #f2f2f2;
    position: fixed;
    z-index: 9999;
    padding-top: 0px;
  }

  .header-inner {
    padding: 0;
  }

  .logo-wrap {
    padding: 60px 76px;
    background: #f2f2f2;
    position: relative;
    width: 100%;
  }

  .phone-nav {
    display: block;
    width: 48px;
    margin-top: 15px;
  }

  .phone-nav div {
    height: 5px;
    margin: 4px 0;
  }

  .nav-wrap {
    float: left;
    width: 100%;
    z-index: 9999;
    padding: 20px 76px 30px;
    position: relative;
    height: calc(100vh - 181px);
    display: none;
    overflow-y: auto;
  }

  .nav-inner, .main-nav, .contact-wrap, .solutions ul li, .product ul {
    width: 100%;
    float: left;
  }

  .main-nav > ul > li {
    float: left;
    width: auto;
    clear: both;
    display: block;
    text-align: left;
    margin: 0;
  }

  .contact-wrap {
    float: left;
    width: 41.733333%;
  }

  .main-nav > ul > li > .sub-menu-wrap {
    width: 57.0666666667%;
    left: auto;
    background: transparent;
    padding-top: 5px;
    top: 20px;
    display: none;
    opacity: 1;
    visibility: visible;
    -webkit-transition-property: none;
    -moz-transition-property: none;
    -o-transition-property: none;
    transition-property: none;
    background-color: #f2f2f2;
  }

  .main-nav > ul > li > .sub-menu-wrap:after {
    position: absolute;
    left: 0px;
    width: 2px;
    top: 0;
    bottom: 40px;
    background: #d7d7d8;
    content: "";
  }

  .sub-inner-wrap {
    float: left;
    width: 100%;
    min-width: 10px;
  }

  .sub-menu-container {
    width: 100%;
    padding: 0 104px 35px;
  }

  .sub-menu-container.solutions {
    padding-left: 50px;
  }

  .product ul {
    margin-top: 10px;
  }

  .product ul:first-child {
    margin-top: 0;
  }

  .product a.btn {
    width: 100%;
    margin-left: 0;
    max-width: 292px;
  }

  .sub-menu-container .large-btn {
    height: 55px;
    line-height: 55px;
    font-size: 18px;
    margin-top: 15px;
  }

  .contact-wrap a {
    float: left;
    clear: both;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .solutions ul li {
    margin: 0;
  }

  .sub-menu-container .transparent-btn {
    padding: 0 15px;
  }

  .sub-menu-inner {
    padding-right: 0;
  }

  .solutions ul li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    margin: 20px 0;
  }

  .solutions ul li:first-child {
    margin-top: 0;
  }

  .header-section .row-item-content {
    width: 46%;
  }

  .solutions ul li img {
    width: auto;
  }

  .contact-wrap {
    position: static;
  }

  .header-section .desktop {
    display: none !important;
  }

  .header-section .mobi {
    display: block !important;
  }

  .contact-btn {
    width: 138px;
    position: absolute;
    right: 160px;
    top: 76px;
    height: 30px;
  }

  .main-content-wrap {
    padding-top: 181px;
  }

  .feature-row-thum {
    margin-right: 0;
  }

  .community-container {
    padding-bottom: 120px;
  }

  .content-container-wrap {
    margin-top: 120px;
  }

  .content-container-item h2 {
    font-size: 48px;
    line-height: 56px;
  }

  .feature-container .row-item:nth-child(4n+1), .row-item:nth-child(4n+2), .row-item:nth-child(4n+3), .row-item:nth-child(4n+4) {
    width: 48%;
    margin: 20px 2%;
  }

  .feature-container .row-item:nth-child(2n+1) {
    margin-left: 0;
  }

  .feature-container .row-item:nth-child(2n+2) {
    margin-right: 0;
  }

  .feature-container {
    padding-top: 90px;
  }

  .main-nav > ul > li > a:hover {
    font-weight: 400;
  }

  .main-nav > ul > li > a.active {
    font-weight: 700;
  }

  .social-wrap a {
    width: 40px;
    height: 40px;
    margin: 0 6px;
  }

  .title-text-wrap {
    margin-top: 35px;
  }

  .share-item-info {
    width: 28.6458333333%;
    margin-left: 7.03125%;
  }

  /*.solution-content-child .hero-thum, .solution-content-child .hero-content{width: 100%}*/
  .solution-content-child .feature-row-thum {
    margin-right: 0;
  }

  .solution-content-child .community-container .section-title h1,
.solution-content-child .community-container .section-title h3 {
    line-height: 50px;
  }

  .solution-content .feature-row-thum,
.support-content .feature-row-thum {
    width: 50%;
    margin-right: 0;
    padding-right: 70px;
  }

  .tab-item {
    font-size: 15px;
    line-height: 20px;
    padding: 27px 0;
  }

  .support-section .row-item:nth-child(2n+1) {
    margin-left: 0;
  }

  .cloudshare-content {
    width: 100%;
    padding: 0;
  }

  .cloudshare-image {
    width: 100%;
    margin-top: 50px;
    text-align: center;
  }

  .cloudshare-image figure, .processing-step-wrap {
    display: inline-block;
    float: none;
  }

  .processing-step-wrap {
    display: inline-block;
    text-align: left;
    float: none;
  }

  .just-wroks .row-item a.btn {
    padding: 0 20px;
    font-size: 15px;
  }

  .team-item, .double-width .team-item:first-child {
    width: 100%;
    max-width: 100%;
    position: relative;
  }

  .team-deals {
    width: 100%;
    padding: 70px 70px;
  }

  .team-item:nth-of-type(-n+3) {
    margin-top: 30px;
  }

  .team-info {
    text-align: center;
  }

  .team-item {
    display: none;
    float: none;
    margin: 0;
    max-width: 320px;
    padding: 0 20px;
    pointer-events: none;
  }

  .team-item:nth-of-type(-n+3) {
    margin-top: 0;
  }

  .team-item figure {
    display: none;
  }

  .team-item figure.mobile {
    display: inline-block;
    margin: 0 0 20px;
  }

  .team-item.team-top-text {
    display: inline-block;
    margin-bottom: 40px;
  }

  .team-top-text br {
    display: none;
  }

  .team-top-text p {
    padding: 0;
    margin-top: 20px;
  }

  .link-wrap > ul > li:first-child, .link-wrap > ul > li:nth-child(2), .link-wrap > ul > li:nth-child(3), .link-wrap > ul > li:nth-child(4), .link-wrap > ul > li:nth-child(5), .link-wrap > ul > li:last-child {
    width: 30%;
    margin: 20px 2.5%;
  }

  .link-wrap > ul > li:first-child, .link-wrap > ul > li:nth-child(2), .link-wrap > ul > li:nth-child(3), .link-wrap > ul > li:nth-child(4), .link-wrap > ul > li:nth-child(5), .link-wrap > ul > li:last-child {
    width: 30%;
    margin: 20px 2.5%;
  }

  .link-wrap > ul > li:first-child, .link-wrap > ul > li:nth-child(4) {
    margin-left: 0;
  }

  .link-wrap > ul > li:nth-child(3), .link-wrap > ul > li:last-child {
    margin-right: 0;
  }

  .link-wrap > ul > li:nth-child(4) {
    clear: both;
  }

  .counting-info {
    width: 100%;
    margin-top: 40px;
  }

  .counting-info ul li {
    margin: 20px 20px 0;
  }

  .resource-item a.btn {
    width: 200px;
  }

  .resources-news-content .resource-content-info, .content-row {
    margin-top: 50px;
  }

  .content-row p {
    padding-right: 0;
    margin-top: 30px;
  }

  /*.join-us-wrap iframe{min-height: 1040px}*/
  .resources-content .join-us-wrap {
    background-position: center;
  }

  .article-row:first-child, .article-row {
    margin-top: 50px;
  }

  .article-info, .article-thumb {
    width: 100%;
    max-width: 100%;
  }

  .article-thumb {
    margin: 30px 0 0;
  }

  .solution-content-child .join-us-thum {
    max-width: 410px;
    top: -115px;
    height: auto;
  }

  .item-row-inner, .just-wroks .item-row-inner, .solution-content .item-row-inner {
    margin: 0 -15px;
  }

  .single-item, .just-wroks .single-item, .solution-content .single-item {
    width: 33.33333%;
    padding: 0 15px;
  }

  .just-wroks .single-item {
    padding: 0 15px;
    margin: 15px 0;
  }

  .single-item a.btn {
    font-size: 14px;
  }

  .comunity-slider {
    margin-top: 30px;
  }

  .template-item {
    max-width: 100%;
    width: 26.6483516484%;
    margin: 50px 5.0137362637% 0;
  }

  .about-content .feature-container {
    margin: 60px 0 40px;
  }

  /* Gravity Forms */
  body .gform_wrapper .gform_body .gform_fields .gfield .gfield_label {
    font-size: 16px;
  }

  body .gform_wrapper .gform_body .gform_fields .gfield.gfield_contains_required .gfield_label:after {
    height: 16px;
  }
}
/*      Tablet Layout: 1024px.
-----------------------------------------------------------------
*/
@media only screen and (min-width: 992px) and (max-width: 1024px) {
  input[type=text], input[type=email], input[type=tel], input[type=search], input[type=number], input[type=submit], input[type=password], select, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  .feature-row-thum {
    margin-right: 0;
  }

  .content-container-item h2 {
    font-size: 70px;
    line-height: 86px;
  }

  .main-nav > ul > li > a:hover {
    font-weight: 400;
  }

  .main-nav > ul > li > a.active {
    font-weight: 700;
  }

  .feature-container {
    padding-top: 100px;
  }

  .title-text-wrap {
    margin-top: 35px;
  }

  /*.team-item, .double-width .team-item:first-child{width: 100%; max-width: 100%; position: relative}*/
  .team-deals {
    width: 100%;
    padding: 70px 70px;
  }

  .team-item:nth-of-type(-n+3) {
    margin-top: 30px;
  }

  .solution-content .feature-row-thum, .support-content .feature-row-thum {
    width: 58%;
    margin-right: -40px;
  }

  .solution-content-child .feature-row-thum {
    margin-right: -35px;
  }

  .just-wroks .row-item a.btn {
    padding: 0 20px;
  }

  .counting-info {
    width: 100%;
    margin-top: 40px;
  }

  .counting-info ul li {
    margin: 20px 20px 0;
  }

  .resources-news-content .resource-content-info, .content-row {
    margin-top: 50px;
  }

  .content-row p {
    padding-right: 0;
    margin-top: 30px;
  }

  .resources-content .join-us-wrap {
    background-position: center;
  }

  .article-row:first-child, .article-row {
    margin-top: 50px;
  }

  .article-info, .article-thumb {
    width: 100%;
    max-width: 100%;
  }

  .article-thumb {
    margin: 30px 0 0;
  }

  .solution-content .community-container {
    padding: 100px 0 250px;
  }

  .support-content .community-container {
    padding: 120px 0 350px;
  }

  .about-content .feature-container {
    margin: 60px 0 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1279px) {
  .team-info {
    text-align: center;
  }

  .team-item {
    display: none;
    float: none;
    margin: 0;
    max-width: 320px;
    padding: 0 20px;
    pointer-events: none;
  }

  .team-item:nth-of-type(-n+3) {
    margin-top: 0;
  }

  .team-item figure {
    display: none;
  }

  .team-item figure.mobile {
    display: inline-block;
    margin: 0 0 20px;
  }

  .team-item.team-top-text {
    display: inline-block;
    margin-bottom: 40px;
  }

  .team-top-text br {
    display: none;
  }

  .team-top-text p {
    padding: 0;
    margin-top: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  input[type=text], input[type=email], input[type=tel], input[type=search], input[type=number], input[type=submit], input[type=password], select, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
  }

  .common-wrap {
    padding: 0 35px;
  }

  .header-section {
    background: #f2f2f2;
    position: fixed;
    z-index: 9999;
    padding-top: 0px;
  }

  .header-inner {
    padding: 0;
  }

  .phone-nav div {
    height: 5px;
    margin: 4px 0;
  }

  .nav-wrap {
    float: left;
    width: 100%;
    z-index: 9999;
    padding: 20px 76px 30px;
    position: relative;
    height: calc(100vh - 84px);
    display: none;
    overflow-y: auto;
  }

  .nav-inner, .main-nav, .contact-wrap, .solutions ul li, .product ul {
    width: 100%;
    float: left;
  }

  .main-nav > ul > li {
    float: left;
    width: auto;
    clear: both;
    display: block;
    text-align: left;
    margin: 0;
  }

  .main-nav > ul > li > .sub-menu-wrap {
    width: 57.0666666667%;
    left: auto;
    background: transparent;
    padding-top: 5px;
    top: 20px;
    display: none;
    opacity: 1;
    visibility: visible;
    -webkit-transition-property: none;
    -moz-transition-property: none;
    -o-transition-property: none;
    transition-property: none;
    background-color: #f2f2f2;
  }

  .main-nav > ul > li > .sub-menu-wrap:after {
    position: absolute;
    left: 0px;
    width: 2px;
    top: 0;
    bottom: 40px;
    background: #d7d7d8;
    content: "";
  }

  .sub-inner-wrap {
    float: left;
    width: 100%;
    min-width: 10px;
  }

  .sub-menu-container {
    width: 100%;
    padding: 0 50px 35px;
  }

  .sub-menu-container.solutions {
    padding-left: 50px;
  }

  .product ul {
    margin-top: 10px;
  }

  .product ul:first-child {
    margin-top: 0;
  }

  .product a.btn {
    width: 100%;
    margin-left: 0;
    max-width: 292px;
  }

  .sub-menu-container .large-btn {
    height: 55px;
    line-height: 55px;
    font-size: 18px;
    margin-top: 15px;
  }

  .contact-wrap a {
    float: left;
    clear: both;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .solutions ul li {
    margin: 0;
  }

  .sub-menu-container .transparent-btn {
    padding: 0 15px;
  }

  .sub-menu-inner {
    padding-right: 0;
  }

  .solutions ul li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    margin: 20px 0;
  }

  .solutions ul li:first-child {
    margin-top: 0;
  }

  .header-section .row-item-content {
    width: 40%;
  }

  .solutions ul li img {
    width: auto;
  }

  .contact-wrap {
    position: static;
  }

  .header-section .desktop {
    display: none !important;
  }

  .header-section .mobi {
    display: block !important;
  }

  .main-logo {
    width: 250px;
  }

  .phone-nav {
    display: block;
    width: 48px;
    margin-top: 7px;
  }

  .logo-wrap {
    padding: 20px 76px;
    background: #f2f2f2;
    position: relative;
    width: 100%;
  }

  .main-content-wrap {
    padding-top: 65px;
  }

  .contact-btn {
    width: 138px;
    position: absolute;
    right: 160px;
    top: 50%;
    height: 30px;
    margin-top: -15px;
  }

  /*.hero-wrap{background-size: inherit;}*/
  .partners-container {
    padding: 80px 0 180px;
  }

  .partners-item-wrap {
    margin-top: 50px;
  }

  .partners-item {
    margin: 20px 2.5%;
  }

  .community-container {
    padding: 100px 0 150px;
  }

  .content-container-wrap {
    margin-top: 80px;
  }

  .join-us-wrap {
    padding: 192px 0 100px;
    position: relative;
  }

  .join-us-thum {
    width: 220px;
  }

  .section-title {
    max-width: 900px;
  }

  .contact-wrap {
    float: left;
    width: 41.733333%;
  }

  .contact-content .join-us-wrap {
    padding: 50px 0 120px;
  }

  .feature-row, .solution-content-child .feature-row, .solution-content .feature-row {
    padding: 100px 0;
  }

  .solution-content .feature-row:last-child {
    padding-bottom: 59px;
  }

  .solution-content-child .feature-row:first-child, .solution-content .feature-row:first-child {
    padding-top: 0;
  }

  .comunity-slider {
    margin-top: 30px;
  }

  .tab-item {
    padding: 25px 0 35px;
    min-height: 100px;
  }

  .solution-content .community-container {
    padding: 100px 0 250px;
  }

  .resources-content-wrap {
    margin-top: 50px;
  }

  .resource-content-info {
    margin-top: 0px;
  }

  .more-template {
    padding-top: 70px;
  }

  .sharepoint-wrap {
    padding-bottom: 70px;
  }

  .share-item-info a.btn {
    width: 100%;
  }

  .technology-content .feature-row {
    padding-bottom: 70px;
  }

  .technology-content .feature-item-row {
    padding: 70px 0 20px;
  }

  .single-item {
    margin: 20px 0;
  }

  .technology-content .community-container {
    padding: 80px 0 150px;
  }

  .support-section {
    padding: 0 0 220px;
  }

  .support-section .row-wrap .item-row {
    margin-top: 60px;
  }

  .template-item a {
    font-size: 13px;
  }

  /* Pricing Page Style */
  .pricing-content-wrap .common-wrap {
    padding: 0 30px;
  }

  /*
  .pricing-content .hero-wrap{min-height: 300px;background-position: bottom 110px left 0px;}
  .pricing-content .hero-content{width: 100%!important}
  .pricing-content .hero-content h1,
  .pricing-content .hero-content h3{text-align: center;}
  .pricing-content .hero-content a.btn{float: none;}
  .pricing-content .hero-thum{display: none}
  */
  .pricing-column {
    width: 100%;
    margin: 0 auto 20px;
    float: none;
    display: block;
  }

  .pricing-column:nth-child(even) {
    max-width: 100%;
  }

  .pricing-column .section-title {
    margin-top: 0;
  }

  .pricing-solo .center-wrap {
    padding: 60px 20px;
  }

  .form-wrap {
    margin-top: 40px;
  }

  .form-wrap h4 {
    font-size: 30px;
    line-height: 36px;
  }

  /* Solo Plan Page Style */
  .pricing-solo-plan {
    margin-top: 0;
    text-align: center;
  }

  .pricing-solo-plan .common-wrap {
    padding: 0;
  }

  .columns-wrap {
    margin: 60px 0 0;
  }

  .columns-wrap:before,
.columns-wrap:after {
    display: none;
  }

  .col {
    width: 100%;
    margin-bottom: 40px;
    text-align: left;
  }

  .col-graphic {
    display: none;
  }

  .pricing-solo-faq .common-wrap {
    padding: 100px 38px 0;
    background-position: 38px 0;
    background-size: 48px auto;
  }
}
@media only screen and (min-width: 768px) {
  #accordion li ul {
    display: none !important;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1100px) {
  .main-nav > ul > li {
    margin: 0 10px;
  }

  .main-nav > ul > li > a {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1375px) {
  .logo-wrap {
    width: auto;
  }

  .main-logo {
    width: 180px;
  }

  .nav-wrap {
    width: -webkit-calc( 100% - 200px);
    width: -moz-calc( 100% - 200px);
    width: calc( 100% - 200px);
  }

  .main-nav > ul > li {
    margin: 0 7px;
  }

  .main-nav > ul > li > a {
    font-size: 11px;
    margin-top: 0;
  }

  .contact-wrap {
    width: auto;
  }

  .contact-wrap a {
    font-size: 11px;
    margin: 0 5px 0;
  }

  .contact-wrap a.btn {
    font-size: 11px;
  }

  /* Pricing Page Style */
  /* Solo Plan Page Style */
  .columns-wrap:before {
    left: 33.33%;
  }

  .columns-wrap:after {
    left: 66.66%;
  }

  .col {
    width: 33.33%;
  }

  .col-graphic {
    display: none;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1630px) {
  .solution-content .feature-row-thum,
.support-content .feature-row-thum {
    width: 50%;
    margin-right: 0;
    padding: 0 20px;
  }
}
@media only screen and (min-width: 1130px) and (max-width: 1375px) {
  .contact-wrap a, .main-nav > ul > li > a {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1375px) and (max-width: 1550px) {
  .contact-wrap {
    width: auto;
  }

  .contact-wrap a.btn, .main-nav > ul > li > a, .contact-wrap a {
    font-size: 14px;
  }

  .main-nav > ul > li {
    margin: 0 5px;
  }

  .contact-wrap a {
    margin: 19px 8.5px 12.5px;
  }
}
/*      About Hero Fixes
-----------------------------------------------------------------
*/
@media only screen and (max-width: 767px) {
  .about-content .partners-container {
    padding-bottom: 142px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .about-content .hero-content {
    width: 100%;
  }
}
@font-face {
  font-family: "cloudshare";
  src: url("../fonts/cloudshare.eot");
  src: url("../fonts/cloudshare.eot?#iefix") format("embedded-opentype"), url("../fonts/cloudshare.woff") format("woff"), url("../fonts/cloudshare.ttf") format("truetype"), url("../fonts/cloudshare.svg#cloudshare") format("svg");
  font-weight: normal;
  font-style: normal;
}
[data-icon]:before {
  font-family: "cloudshare" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^=cs-icon-]:before,
[class*=" cs-icon-"]:before {
  font-family: "cloudshare" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cs-icon-twitter:before {
  content: "a";
}

.cs-icon-facebook:before {
  content: "b";
}

.cs-icon-linkedin:before {
  content: "c";
}

.cs-icon-instagram:before {
  content: "d";
}

.cs-icon-youtube-play:before {
  content: "e";
}

.widget_image_ad a {
  display: block;
  width: 100%;
}
.widget_image_ad a img {
  width: 100%;
  height: auto;
}

.social_links_widget a {
  opacity: 1;
  display: inline-block;
  background: #312166;
  border-radius: 50px;
  height: 45px;
  width: 45px;
  color: white;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  margin-right: 10px;
  margin-top: 10px;
  transition: 0.25s ease-in-out;
}
.social_links_widget a i {
  opacity: 1;
}
.social_links_widget a:hover {
  background: #4bb1bd;
}

/*
 * jQuery FlexSlider v2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author:Tyler Smith (@mbmufffin)
 */
/* Browser Resets */
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
  outline: none;
}

.slides,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.slide {
  display: none;
}

/* FlexSlider Necessary Styles
*********************************/
.flexslider {
  position: relative;
  zoom: 1;
}

.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
}

.loading .flex-viewport {
  max-height: 300px;
}

.flexslider .slides {
  zoom: 1;
}

/* Direction Nav */
.flex-direction-nav {
  *height: 0;
}

.flex-direction-nav a {
  width: 30px;
  height: 56px;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: -28px;
  -webkit-transition: none;
  transition: none;
  text-indent: -9999px;
  -moz-transition: none;
}

.flex-direction-nav .flex-next, .flex-direction-nav .flex-prev {
  width: 11px;
  height: 20px;
  background: url(../images/right-arrow.png) no-repeat center center/contain;
  cursor: pointer;
  right: 30px;
  left: auto;
}

.flex-direction-nav .flex-prev {
  right: auto;
  left: 30px;
  margin-right: 30px;
  background: url(../images/left-arrow.png) no-repeat center center/contain;
}

/* add new */
.flex-direction-nav {
  width: 100%;
  top: 50%;
  left: 0;
  position: absolute;
  display: block;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}

.flex-direction-nav .flex-disabled {
  cursor: default;
}

/* Control Nav */
.flex-control-nav {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  padding: 0;
  z-index: 100;
  text-align: center;
}

.flex-control-nav li {
  display: inline-block;
  margin: 0px 6px;
  font-size: 6px;
  line-height: 6px;
  cursor: pointer;
}

.flex-control-paging li a {
  float: left;
  width: 10px;
  height: 10px;
  display: block;
  background: #d8d8d8;
  text-indent: -9999px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  cursor: pointer;
}

.flex-control-paging li a:hover {
  background: #1ab394;
}

.flex-control-paging li a.flex-active {
  background: #1ab394;
}

/* add new */
.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}

.flex-control-thumbs img {
  width: 100%;
  display: block;
  opacity: 0.7;
  cursor: pointer;
}

.flex-control-thumbs img:hover {
  opacity: 1;
}

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}

@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
  }

  .flex-direction-nav .flex-next {
    opacity: 1;
  }
}
.background {
  background-repeat: no-repeat;
  /* custom background-position */
  background-position: 50% 50%;
  /* ie8- graceful degradation */
  background-position: 50% 50% \9  !important;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
}

/* Views - Blog */
@media only screen and (min-width: 768px) {
  .blog .blog-content-wrap .common-wrap {
    display: flex;
  }
}
.blog .blog-content-wrap .common-wrap .blog_column_1 {
  color: #656565;
  padding-bottom: 150px;
}
@media only screen and (min-width: 768px) {
  .blog .blog-content-wrap .common-wrap .blog_column_1 {
    width: 65%;
    margin-right: 5%;
  }
}
.blog .blog-content-wrap .common-wrap .blog_column_1 a {
  color: #000000;
}
.blog .blog-content-wrap .common-wrap .blog_column_1 .right-ad {
  margin-bottom: 15%;
  position: relative;
  z-index: 9999;
}
@media only screen and (min-width: 768px) {
  .blog .blog-content-wrap .common-wrap .blog_column_1 .right-ad {
    float: right;
    width: 25%;
    margin-bottom: -100%;
  }
}
.blog .blog-content-wrap .common-wrap .blog_column_1.full-width {
  width: 100%;
  margin-right: 0;
  position: relative;
}
.blog .blog-content-wrap .common-wrap .blog_column_1 .article-row {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  margin-top: 0;
}
.blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .hidden {
  display: none;
}
.blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .filter-row {
  background-color: #EEE;
  margin-bottom: 5%;
  padding: 2%;
  text-align: center;
  width: 110%;
}
.blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .filter-row li.cat-item {
  display: inline-block;
  padding-right: 5%;
  text-transform: uppercase;
}
.blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .filter-row li.cat-item:last-child {
  padding-right: 0;
}
.blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .filter-row li.cat-item:hover {
  color: #4bb1bd;
  cursor: pointer;
}
.blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .blog_article_info .date-category, .blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .blog_article_info p {
  color: #656565;
}
.blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .blog_post_item {
  position: relative;
  margin-bottom: 50px;
}
@media only screen and (min-width: 768px) {
  .blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .blog_post_item {
    width: 47.5%;
  }
}
@media only screen and (min-width: 1024px) {
  .blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .blog_post_item {
    width: 30%;
  }
}
.blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .blog_post_item .post_img_container {
  width: 100%;
  padding-bottom: 54.5%;
  /* keep aspect ratio of old images */
  position: relative;
}
.blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .blog_post_item .post_img_container .post_img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
.blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .blog_post_item .post_text_container {
  opacity: 1;
}
.blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .blog_post_item .post_text_container .post_categories {
  margin: 5px 0;
  color: #656565;
  font-size: 0.9em;
  z-index: 101;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .blog_post_item .post_text_container .post_categories {
    margin: 15px 0 5px 0;
  }
}
.blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .blog_post_item .post_text_container .post_categories a {
  color: #656565;
}
.blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .blog_post_item .post_text_container .post_categories a:hover {
  text-decoration: underline !important;
}
.blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .blog_post_item .post_text_container .post_title {
  color: #656565;
  margin: 20px 0;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 500;
}
@media only screen and (min-width: 1024px) {
  .blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .blog_post_item .post_text_container .post_title {
    height: 150px;
  }
}
.blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .blog_post_item .post_text_container .post_meta {
  color: #656565;
  margin-bottom: 15px;
  font-size: 0.9em;
  font-style: italic;
}
.blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .blog_post_item .post_text_container .post_excerpt {
  color: #656565;
  display: none;
}
@media only screen and (min-width: 768px) {
  .blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .blog_post_item .post_text_container .post_excerpt {
    display: block;
    height: 210px;
  }
}
.blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .blog_post_item .post_text_container .post_readmore {
  color: #000000;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 15px;
  display: none;
}
@media only screen and (min-width: 768px) {
  .blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .blog_post_item .post_text_container .post_readmore {
    display: block;
  }
}
.blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .blog_post_item .post_text_container .post_readmore:hover {
  text-decoration: underline;
}
.blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .blog_post_item .full_size_anchor {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
}
.blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .blog_post_item:hover .post_readmore {
  text-decoration: underline;
}
.blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .blog_post_item:nth-child(2) {
  margin-right: 35%;
}
.blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .blog_post_item.first {
  max-width: none;
}
@media only screen and (min-width: 768px) {
  .blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .blog_post_item.first {
    margin-right: 27%;
    width: 75% !important;
    min-height: 637px;
  }
}
.blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .blog_post_item.first .post_img_container {
  padding-bottom: 46%;
}
@media only screen and (min-width: 768px) {
  .blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .blog_post_item.first .post_img_container {
    width: 870px;
    height: 474px;
  }
}
.blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .blog_post_item.first .post_title {
  height: auto;
}
.blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .blog_post_item.first .post_excerpt {
  height: auto;
}
.blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .blog_post_item:nth-child(2) {
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .blog .blog-content-wrap .common-wrap .blog_column_2 {
    width: 30%;
  }
}
.blog .blog-content-wrap .common-wrap .blog_column_2 > div {
  margin-bottom: 40px;
  color: #656565;
}
.blog .blog-content-wrap .common-wrap .blog_column_2 > div h3 {
  color: #656565;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 10px;
}
.blog .blog-content-wrap .common-wrap .blog_column_2 .widget_categories a {
  color: #656565 !important;
  font-weight: 300;
  font-size: 20px;
  margin-top: 6px;
}
.blog .blog-content-wrap .common-wrap .blog_column_2 .widget_categories a:hover {
  text-decoration: underline;
}
.blog .join-us-wrap {
  padding: 192px 0 20px;
}
.blog .join-us-wrap .testomonials-wrap,
.blog .join-us-wrap .new-testomonials-wrap {
  margin-bottom: 20px;
  border: none;
}

.blog .widget_image_ad {
  margin-bottom: 20px;
}

.blog .form_container {
  background-color: #d1d3da;
  background-image: -webkit-gradient(linear, left center, right center, from(#d1d3da), to(#e9eaeb));
  background-image: -webkit-linear-gradient(left, #d1d3da, #e9eaeb);
  background-image: -moz-linear-gradient(left, #d1d3da, #e9eaeb);
  background-image: -o-linear-gradient(left, #d1d3da, #e9eaeb);
  background-image: -ms-linear-gradient(left, #d1d3da, #e9eaeb);
  background-image: linear-gradient(left, #d1d3da, #e9eaeb);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1,StartColorStr="#d1d3da", EndColorStr="#e9eaeb");
}
.blog .form_container h3 {
  padding: 20px 20px 10px 20px;
  text-align: center;
  font-size: 25px;
  line-height: 1.2;
}
.blog .form_container p {
  width: 95%;
  margin: auto;
  text-align: center;
  font-size: 16px;
  line-height: 23px;
}
.blog .form_container form .field-wrap {
  width: 100%;
}
.blog .form_container form .field-wrap input {
  text-align: center;
  height: 50px;
  font-size: 20px;
}
.blog .form_container form .submit-wrap {
  margin-top: 0;
  margin-bottom: 30px;
}
.blog .form_container form .submit-wrap input {
  margin-top: 20px;
  width: 80%;
  min-width: 0 !important;
}

/* New blog Layout */
.blog-col {
  margin-bottom: 80px;
}

.blog-article-info h2, .blog-article-info h3, .blog-article-info h4, .blog-article-info h5, .blog-article-info h6 {
  font-weight: bold;
  line-height: 1.2em;
  margin-top: 35px;
  text-align: left;
}
.blog-article-info h2 + p, .blog-article-info h3 + p, .blog-article-info h4 + p, .blog-article-info h5 + p, .blog-article-info h6 + p {
  margin-top: 15px;
}

.blog-grid-heading {
  margin: 0 0 30px;
  line-height: 1;
}
.blog-grid-heading a {
  font-family: "Nunito Sans", sans-serif;
  color: #4bb1bd !important;
  font-size: 24px;
  font-weight: 500;
  line-height: 1em;
  display: block;
}
.blog-grid-heading a:hover {
  color: black !important;
  cursor: pointer;
}

.blog-grid .blog_post_item {
  width: 100%;
}

.blog .blog-content-wrap .common-wrap .blog_column_1 .blog-grid .btn {
  color: #ffffff;
  margin-top: 20px;
  display: inline-block;
}

@media only screen and (min-width: 768px) {
  .blog-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 150px;
  }

  .blog-col {
    width: 47.5%;
  }

  /*overwrite styles */
  .blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .blog-grid .blog_post_item {
    width: 100%;
  }

  .blog .blog-content-wrap .common-wrap .blog_column_1 .blog-grid .btn {
    margin-top: 40px;
  }
}
@media only screen and (min-width: 1024px) {
  .blog-col {
    width: 30%;
  }

  /*overwrite styles */
  .blog .blog-content-wrap .common-wrap .blog_column_1 .article-row .blog-grid .blog_post_item {
    width: 100%;
  }
}
@media all and (min-width: 768px) {
  .blog.blog-single .blog_column_1 {
    margin-right: 3%;
    width: 75% !important;
  }
  .blog.blog-single .blog_column_1 .blog-thumb {
    height: 474px !important;
    width: 870px !important;
  }
  .blog.blog-single .blog_column_1 .blog-thumb img {
    height: 100%;
    width: 100%;
  }
}
.landing_page_template {
  position: relative;
}
.landing_page_template .lp_bg_image {
  position: absolute;
  top: -2%;
  right: -2%;
  width: 55%;
  z-index: 10;
}
@media only screen and (min-width: 768px) {
  .landing_page_template .lp_bg_image {
    top: -9%;
  }
}
@media only screen and (min-width: 1024px) {
  .landing_page_template .lp_bg_image {
    top: -25%;
  }
}
.landing_page_template .lp_bg_image img {
  width: 100%;
  height: auto;
}
.landing_page_template .lp_bg_color {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.landing_page_template .lp_bg_color.lp_blue {
  background-color: #F1F8F3;
}
.landing_page_template .lp_bg_color.lp_dark_bg {
  background-color: #0d067d;
  background-image: -webkit-gradient(radial, 0% 100%, 0, 0% 100%, 200, from(#c8d4f1), to(#0d067d));
  background-image: -webkit-radial-gradient(0% 100%, #0d067d, #c8d4f1);
  background-image: -moz-radial-gradient(0% 100%, #0d067d, #c8d4f1);
  background-image: -o-radial-gradient(0% 100%, #0d067d, #c8d4f1);
  background-image: -ms-radial-gradient(0% 100%, #0d067d, #c8d4f1);
}
.landing_page_template .lp_bg_color.lp_light_bg {
  background-color: #d7d9df;
  background-image: -webkit-gradient(linear, left center, right center, from(#d7d9df), to(#f1f1f1));
  background-image: -webkit-linear-gradient(left, #d7d9df, #f1f1f1);
  background-image: -moz-linear-gradient(left, #d7d9df, #f1f1f1);
  background-image: -o-linear-gradient(left, #d7d9df, #f1f1f1);
  background-image: -ms-linear-gradient(left, #d7d9df, #f1f1f1);
  background-image: linear-gradient(left, #d7d9df, #f1f1f1);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1,StartColorStr="#d7d9df", EndColorStr="#f1f1f1");
}
.landing_page_template .lp_logo {
  padding: 20px 0 20px 0;
}
@media only screen and (min-width: 768px) {
  .landing_page_template .lp_logo {
    padding: 50px 0 30px 0;
  }
}
.landing_page_template .lp_logo img {
  height: 30px;
  width: auto;
}
@media only screen and (min-width: 768px) {
  .landing_page_template .lp_logo img {
    height: 50px;
  }
}
.landing_page_template .lp_inner {
  position: relative;
  z-index: 100;
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
}
.landing_page_template .lp_inner .lp_content {
  width: 100%;
  position: relative;
  z-index: 50;
}
.landing_page_template .lp_inner .lp_content h1 {
  margin-bottom: 30px;
}
.landing_page_template .lp_inner .lp_content .lp_text {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: white;
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  .landing_page_template .lp_inner .lp_content .lp_text {
    font-size: 18px;
  }
}
.landing_page_template .lp_inner .lp_content .lp_text h1, .landing_page_template .lp_inner .lp_content .lp_text h3 {
  float: left;
  width: 100%;
  padding-right: 65px;
}
.landing_page_template .lp_inner .lp_content .lp_text em {
  font-style: italic;
}
.landing_page_template .lp_inner .lp_content .lp_text a {
  text-decoration: underline;
}
.landing_page_template .lp_inner .lp_content .lp_text a:hover {
  text-decoration: none;
}
.landing_page_template .lp_inner .lp_content .lp_text h4, .landing_page_template .lp_inner .lp_content .lp_text h5 {
  width: 100%;
  line-height: 45px;
  margin-top: 35px;
}
.landing_page_template .lp_inner .lp_content .lp_text p, .landing_page_template .lp_inner .lp_content .lp_text h1, .landing_page_template .lp_inner .lp_content .lp_text h3 {
  width: 100%;
  margin-top: 30px;
}
.landing_page_template .lp_inner .lp_content .lp_text ul, .landing_page_template .lp_inner .lp_content .lp_text ol {
  margin: 15px 0 0 40px;
  list-style: disc;
}
.landing_page_template .lp_inner .lp_content .lp_text ul ul, .landing_page_template .lp_inner .lp_content .lp_text ol ul {
  margin-top: 0px;
  margin-bottom: 5px;
}
.landing_page_template .lp_inner .lp_content .lp_form iframe {
  width: 100%;
  height: 900px;
}
@media only screen and (min-width: 1024px) {
  .landing_page_template .lp_inner .lp_content .lp_form iframe {
    height: 650px;
  }
}
@media only screen and (min-width: 1024px) {
  .landing_page_template .lp_inner .lp_content .lp_2col {
    display: flex;
    justify-content: space-between;
  }
  .landing_page_template .lp_inner .lp_content .lp_2col > div {
    width: 47.5%;
  }
}
.landing_page_template .lp_inner .lp_content .lp_2col .lp_form iframe {
  width: 100%;
  height: 600px;
}
@media only screen and (min-width: 1024px) {
  .landing_page_template .lp_inner .lp_content .lp_2col .lp_form iframe {
    height: 650px;
  }
}
.landing_page_template .lp_social {
  padding-bottom: 50px;
}
.landing_page_template .lp_social ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.landing_page_template .lp_social ul li {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  line-height: 42px;
  text-align: center;
  margin-right: 15px;
}
.landing_page_template .lp_social ul li i {
  font-size: 18px;
}
@media only screen and (min-width: 768px) {
  .landing_page_template.lp_template_lady_night .lp_inner .lp_content {
    width: 72%;
  }
}
.landing_page_template.lp_template_lady_night .lp_inner .lp_content .lp_text {
  width: 75%;
}
@media only screen and (min-width: 1024px) {
  .landing_page_template.lp_template_lady_night .lp_inner .lp_content .lp_text {
    width: auto;
  }
}
.landing_page_template.lp_template_lady_night h1 {
  width: 75%;
}
@media only screen and (min-width: 768px) {
  .landing_page_template.lp_template_lady_night h1 {
    width: auto;
  }
}
.landing_page_template.lp_template_lady_night h1, .landing_page_template.lp_template_lady_night h2, .landing_page_template.lp_template_lady_night h3, .landing_page_template.lp_template_lady_night h4, .landing_page_template.lp_template_lady_night h5, .landing_page_template.lp_template_lady_night h6, .landing_page_template.lp_template_lady_night p, .landing_page_template.lp_template_lady_night li {
  color: white;
}
.landing_page_template.lp_template_lady_night .lp_img {
  width: 40%;
  position: absolute;
  top: 5%;
  right: 0;
  z-index: 40;
  max-width: 200px;
}
@media only screen and (min-width: 768px) {
  .landing_page_template.lp_template_lady_night .lp_img {
    height: 60%;
    width: auto;
    max-width: none;
  }
}
@media only screen and (min-width: 1024px) {
  .landing_page_template.lp_template_lady_night .lp_img {
    height: 75%;
    top: 1%;
    right: -3%;
  }
}
@media only screen and (min-width: 1300px) {
  .landing_page_template.lp_template_lady_night .lp_img {
    height: 90%;
  }
}
.landing_page_template.lp_template_lady_night .lp_img img {
  height: auto;
  width: 100%;
  float: right;
  max-width: none;
}
@media only screen and (min-width: 768px) {
  .landing_page_template.lp_template_lady_night .lp_img img {
    height: 60%;
    width: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .landing_page_template.lp_template_lady_night .lp_img img {
    height: 90%;
  }
}
.landing_page_template.lp_template_lady_night .lp_social li {
  background: white;
}
.landing_page_template.lp_template_lady_night .lp_social li i {
  color: #1D1686;
}
@media only screen and (min-width: 768px) {
  .landing_page_template.lp_template_lady_day .lp_inner .lp_content {
    width: 72%;
  }
}
.landing_page_template.lp_template_lady_day .lp_inner .lp_content .lp_text {
  width: 75%;
}
@media only screen and (min-width: 1024px) {
  .landing_page_template.lp_template_lady_day .lp_inner .lp_content .lp_text {
    width: auto;
  }
}
.landing_page_template.lp_template_lady_day h1 {
  width: 75%;
}
@media only screen and (min-width: 768px) {
  .landing_page_template.lp_template_lady_day h1 {
    width: auto;
  }
}
.landing_page_template.lp_template_lady_day h1, .landing_page_template.lp_template_lady_day h2, .landing_page_template.lp_template_lady_day h3, .landing_page_template.lp_template_lady_day h4, .landing_page_template.lp_template_lady_day h5, .landing_page_template.lp_template_lady_day h6, .landing_page_template.lp_template_lady_day p, .landing_page_template.lp_template_lady_day li {
  color: black;
}
.landing_page_template.lp_template_lady_day .lp_img {
  width: 40%;
  position: absolute;
  top: 5%;
  right: 0;
  z-index: 40;
  max-width: 200px;
}
@media only screen and (min-width: 768px) {
  .landing_page_template.lp_template_lady_day .lp_img {
    height: 60%;
    width: auto;
    max-width: none;
  }
}
@media only screen and (min-width: 1024px) {
  .landing_page_template.lp_template_lady_day .lp_img {
    height: 75%;
    top: 1%;
    right: -3%;
  }
}
@media only screen and (min-width: 1300px) {
  .landing_page_template.lp_template_lady_day .lp_img {
    height: 90%;
  }
}
.landing_page_template.lp_template_lady_day .lp_img img {
  height: auto;
  width: 100%;
  float: right;
  max-width: none;
}
@media only screen and (min-width: 768px) {
  .landing_page_template.lp_template_lady_day .lp_img img {
    height: 60%;
    width: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .landing_page_template.lp_template_lady_day .lp_img img {
    height: 90%;
  }
}
.landing_page_template.lp_template_lady_day .lp_social li {
  background: #1D1686;
}
.landing_page_template.lp_template_lady_day .lp_social li i {
  color: white;
}
@media only screen and (min-width: 1024px) {
  .landing_page_template.lp_template_cloud_touch .lp_inner .lp_content {
    width: 72%;
  }
}
.landing_page_template.lp_template_cloud_touch .lp_inner .lp_content .lp_logo {
  margin-bottom: 60px;
}
@media only screen and (min-width: 768px) {
  .landing_page_template.lp_template_cloud_touch .lp_inner .lp_content .lp_logo {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  .landing_page_template.lp_template_cloud_touch h1 {
    width: 60%;
  }
}
@media only screen and (min-width: 1024px) {
  .landing_page_template.lp_template_cloud_touch h1 {
    width: 100%;
  }
}
.landing_page_template.lp_template_cloud_touch h1, .landing_page_template.lp_template_cloud_touch h2, .landing_page_template.lp_template_cloud_touch h3, .landing_page_template.lp_template_cloud_touch h4, .landing_page_template.lp_template_cloud_touch h5, .landing_page_template.lp_template_cloud_touch h6, .landing_page_template.lp_template_cloud_touch p, .landing_page_template.lp_template_cloud_touch li {
  color: white;
}
.landing_page_template.lp_template_cloud_touch .lp_img {
  width: 35%;
  position: absolute;
  top: 0;
  right: 5%;
  z-index: 40;
  max-width: 200px;
}
@media only screen and (min-width: 768px) {
  .landing_page_template.lp_template_cloud_touch .lp_img {
    width: 25%;
    top: 0;
    right: 10%;
    max-width: none;
  }
}
@media only screen and (min-width: 1024px) {
  .landing_page_template.lp_template_cloud_touch .lp_img {
    height: 100%;
    top: 1%;
    right: 0%;
    width: 30%;
  }
}
@media only screen and (min-width: 1300px) {
  .landing_page_template.lp_template_cloud_touch .lp_img {
    right: 5%;
    width: 25%;
  }
}
.landing_page_template.lp_template_cloud_touch .lp_img img {
  height: auto;
  width: 100%;
  float: right;
  max-width: none;
}
.landing_page_template.lp_template_cloud_touch .lp_social li {
  background: white;
}
.landing_page_template.lp_template_cloud_touch .lp_social li i {
  color: #1D1686;
}
.landing_page_template.lp_template_meditation .lp_bg_color {
  background: #c8d4db;
  /* Old browsers */
  background: -moz-linear-gradient(45deg, #c8d4db 0%, #130b7f 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, #c8d4db 0%, #130b7f 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, #c8d4db 0%, #130b7f 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#c8d4db", endColorstr="#130b7f",GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
}
.landing_page_template.lp_template_meditation .lp_logo_cont {
  max-width: 900px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  z-index: 200;
}
.landing_page_template.lp_template_meditation .lp_logo_cont .lp_logo {
  padding: 20px 0 0 0 !important;
  text-align: left;
}
.landing_page_template.lp_template_meditation .lp_logo_cont .lp_logo img {
  width: auto !important;
}
.landing_page_template.lp_template_meditation .lp_img {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.landing_page_template.lp_template_meditation .lp_img:before {
  content: "";
  height: 80%;
  position: absolute;
  width: 100%;
  left: 0;
  background: white;
}
.landing_page_template.lp_template_meditation .lp_img img {
  width: 80%;
  max-width: 600px;
  position: relative;
  z-index: 100;
}
.landing_page_template.lp_template_meditation .lp_inner {
  max-width: 900px;
}
.landing_page_template.lp_template_meditation h1 {
  margin-top: 10px;
  text-align: center;
}
.landing_page_template.lp_template_meditation h1, .landing_page_template.lp_template_meditation h2, .landing_page_template.lp_template_meditation h3, .landing_page_template.lp_template_meditation h4, .landing_page_template.lp_template_meditation h5, .landing_page_template.lp_template_meditation h6, .landing_page_template.lp_template_meditation p, .landing_page_template.lp_template_meditation li {
  color: white;
}
.landing_page_template.lp_template_meditation .lp_btm_row {
  padding-bottom: 50px;
  margin-top: 50px;
}
@media only screen and (min-width: 768px) {
  .landing_page_template.lp_template_meditation .lp_btm_row {
    display: flex;
    align-items: center;
  }
}
.landing_page_template.lp_template_meditation .lp_btm_row .lp_logo {
  padding: 0;
  margin-right: 100px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .landing_page_template.lp_template_meditation .lp_btm_row .lp_logo {
    margin-bottom: 0;
  }
}
.landing_page_template.lp_template_meditation .lp_btm_row .lp_social {
  padding-bottom: 0;
}
.landing_page_template.lp_template_meditation .lp_btm_row .lp_social li {
  background: white;
}
.landing_page_template.lp_template_meditation .lp_btm_row .lp_social li i {
  color: #1D1686;
}
.landing_page_template.lp_template_sit_back .lp_inner {
  max-width: 900px;
}
.landing_page_template.lp_template_sit_back h1, .landing_page_template.lp_template_sit_back h2, .landing_page_template.lp_template_sit_back h3, .landing_page_template.lp_template_sit_back h4, .landing_page_template.lp_template_sit_back h5, .landing_page_template.lp_template_sit_back h6, .landing_page_template.lp_template_sit_back p, .landing_page_template.lp_template_sit_back li {
  color: white;
}
.landing_page_template.lp_template_sit_back .lp_img {
  width: 100%;
  margin-top: -100px;
}
@media only screen and (min-width: 768px) {
  .landing_page_template.lp_template_sit_back .lp_img {
    margin-top: -200px;
  }
}
.landing_page_template.lp_template_sit_back .lp_social {
  margin-top: -50px;
  padding-bottom: 100px;
}
.landing_page_template.lp_template_sit_back .lp_social li {
  background: white;
}
.landing_page_template.lp_template_sit_back .lp_social li i {
  color: #1D1686;
}
.landing_page_template.lp_template_sailing .lp_inner {
  margin: 0;
  max-width: none;
}
.landing_page_template.lp_template_sailing .lp_inner .lp_content {
  max-width: 1200px;
  margin: auto;
  width: 90%;
}
@media only screen and (min-width: 1024px) {
  .landing_page_template.lp_template_sailing .lp_inner .lp_content .lp_content_inner {
    width: 66%;
  }
}
@media only screen and (min-width: 768px) {
  .landing_page_template.lp_template_sailing .lp_inner .lp_content .lp_content_inner .lp_form {
    width: 66%;
  }
}
@media only screen and (min-width: 1024px) {
  .landing_page_template.lp_template_sailing .lp_inner .lp_content .lp_content_inner .lp_form {
    width: 100%;
  }
}
.landing_page_template.lp_template_sailing h1, .landing_page_template.lp_template_sailing h2, .landing_page_template.lp_template_sailing h3, .landing_page_template.lp_template_sailing h4, .landing_page_template.lp_template_sailing h5, .landing_page_template.lp_template_sailing h6, .landing_page_template.lp_template_sailing p, .landing_page_template.lp_template_sailing li {
  color: #4d4d4f;
}
.landing_page_template.lp_template_sailing .lp_img {
  width: 100%;
  position: relative;
  z-index: 90;
}
.landing_page_template.lp_template_sailing .lp_img .lp_social {
  margin-top: -50px;
  padding-bottom: 40px;
}
.landing_page_template.lp_template_sailing .lp_img .lp_social .water {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 200%;
  height: auto;
  max-width: none;
}
@media only screen and (min-width: 768px) {
  .landing_page_template.lp_template_sailing .lp_img .lp_social .water {
    width: 100%;
  }
}
.landing_page_template.lp_template_sailing .lp_img .lp_social ul {
  position: relative;
  z-index: 10;
  padding-top: 60px;
  max-width: 1200px;
  width: 90%;
  margin: auto;
}
@media only screen and (min-width: 1024px) {
  .landing_page_template.lp_template_sailing .lp_img .lp_social ul {
    padding-top: 80px;
  }
}
@media only screen and (min-width: 1300px) {
  .landing_page_template.lp_template_sailing .lp_img .lp_social ul {
    padding-top: 120px;
  }
}
.landing_page_template.lp_template_sailing .lp_img .lp_social ul li {
  background: white;
}
.landing_page_template.lp_template_sailing .lp_img .lp_social ul li i {
  color: #1D1686;
}
.landing_page_template.lp_template_sailing .lp_img .boat {
  position: absolute;
  bottom: 60%;
  width: 50%;
  right: 20px;
}
@media only screen and (min-width: 1024px) {
  .landing_page_template.lp_template_sailing .lp_img .boat {
    bottom: 60%;
    width: 55%;
    right: 20px;
  }
}
@media only screen and (min-width: 1300px) {
  .landing_page_template.lp_template_sailing .lp_img .boat {
    bottom: 50%;
    width: 50%;
    right: 100px;
  }
}
.landing_page_template.lp_template_sweets .lp_bg_color {
  background-color: #eeb6cf;
}
.landing_page_template.lp_template_sweets .box_content {
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
}
.landing_page_template.lp_template_sweets .lp_inner {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 100;
  max-width: none;
  width: 100%;
  margin: 0 auto;
}
.landing_page_template.lp_template_sweets .lp_inner .lp_row {
  padding: 1% 0;
}
.landing_page_template.lp_template_sweets .lp_inner .lp_content h1 {
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 70px;
  line-height: 1em;
  margin-bottom: 45px !important;
  margin-top: 10px !important;
  padding-right: 0 !important;
  text-align: center;
}
.landing_page_template.lp_template_sweets .lp_inner .lp_content h2 {
  color: #000;
  font-family: "Nunito", sans-serif;
  font-size: 28px;
  line-height: 40px;
}
.landing_page_template.lp_template_sweets .lp_inner .lp_content h5 {
  color: #000;
  font-family: "Felipa", cursive;
}
.landing_page_template.lp_template_sweets .lp_inner .lp_content p {
  color: #000;
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.4em;
  font-weight: 200;
  padding-bottom: 2%;
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
}
.landing_page_template.lp_template_sweets .lp_inner .lp_content ul {
  margin-top: 1%;
}
.landing_page_template.lp_template_sweets .lp_inner .lp_content ul li {
  color: #000;
  font-size: 1.2em;
  line-height: 1.4em;
  list-style-position: inside;
  list-style: none;
  margin-left: 0;
  padding: 5px 0;
  text-align: left;
}
.landing_page_template.lp_template_sweets .lp_inner .lp_content ul li:before {
  content: "▼";
  font-size: 0.8em;
  padding-right: 7px;
}
.landing_page_template.lp_template_sweets .lp_inner .lp_boxed {
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
}
.landing_page_template.lp_template_sweets .lp_inner .lp_text {
  margin-bottom: 0;
  text-align: center;
}
.landing_page_template.lp_template_sweets .lp_inner .white_box {
  background: none !important;
  padding: 3% 0;
}
.landing_page_template.lp_template_sweets .lp_inner .white_box ul {
  margin-top: 1%;
}
.landing_page_template.lp_template_sweets .lp_inner .white_box ul li {
  color: #000;
  font-size: 1.2em;
  line-height: 1.4em;
  list-style-position: inside;
  list-style: none;
  margin-left: 0;
  padding: 5px 0;
  text-align: left;
}
.landing_page_template.lp_template_sweets .lp_inner .white_box ul li:before {
  content: "▼";
  font-size: 0.8em;
  padding-right: 7px;
}
.landing_page_template.lp_template_sweets .lp_inner .lp_logo {
  text-align: left;
}
.landing_page_template.lp_template_sweets .lp_inner .button {
  background: #de5573;
  /* Old browsers */
  background: -moz-linear-gradient(left, #de5573 0%, #e7989c 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #de5573 0%, #e7989c 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #de5573 0%, #e7989c 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#de5573", endColorstr="#e7989c",GradientType=1 );
  /* IE6-9 */
  color: #000;
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.4em;
  font-weight: 200;
  text-decoration: none !important;
  text-transform: uppercase;
  text-align: center;
  border-radius: 30px;
  text-transform: uppercase;
  transition: all 0.4s ease-in-out;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  line-height: 21.6px;
  font-weight: 400;
  border: 1px solid transparent;
  width: auto;
  padding: 0 30px;
  min-width: 155px;
  letter-spacing: 2.4px;
  position: relative;
  z-index: 5;
  margin-top: 35px;
  cursor: pointer;
  line-height: 58px;
  -webkit-appearance: none;
}
.landing_page_template.lp_template_sweets .landing_page_template .lp_social {
  padding-bottom: 0;
}

.glossary_main_template .banner_container .banner_container_inner .banner_content {
  width: 90% !important;
}
.glossary_main_template a {
  color: #000000 !important;
  font-weight: 600;
  text-decoration: underline;
}
.glossary_main_template p {
  color: #656565;
  margin-top: 35px;
  text-align: left;
}
.glossary_main_template h2, .glossary_main_template h3, .glossary_main_template h4, .glossary_main_template h5, .glossary_main_template h6 {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2em;
  margin-top: 15px;
  padding-left: 0 !important;
  text-align: left;
}
.glossary_main_template h1 + p, .glossary_main_template h2 + p, .glossary_main_template h3 + p, .glossary_main_template h4 + p, .glossary_main_template h5 + p, .glossary_main_template h6 + p {
  margin-top: 15px;
}
.glossary_main_template .section-title p {
  padding: 0;
}
.glossary_main_template .section-title p.intro {
  color: #656565;
  font-size: 24px;
  margin-bottom: 3em;
}
@media (max-width: 991.9px) {
  .glossary_main_template .section-title p.intro {
    font-size: 20px;
  }
}
.glossary_main_template .entry_wrapper {
  display: flex;
  font-size: 50px;
}
@media (max-width: 991.9px) {
  .glossary_main_template .entry_wrapper {
    font-size: 40px;
  }
}
@media (max-width: 767.9px) {
  .glossary_main_template .entry_wrapper {
    font-size: 28px;
  }
}
.glossary_main_template .entry_wrapper .entry_star {
  margin-right: 0.6em;
  display: block;
}
.glossary_main_template .entry_wrapper .entry_star img {
  min-width: 1em;
  max-width: 1em;
  margin-top: 5px;
}
.glossary_main_template .entry_wrapper .entry_star:before {
  margin-top: 5px;
  display: block;
  content: "";
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: cover;
}
.glossary_main_template .entry_wrapper:nth-of-type(1n+0) .entry_star:before {
  background-image: url(../img/aqua.png);
}
.glossary_main_template .entry_wrapper:nth-of-type(2n+2) .entry_star:before {
  background-image: url(../img/gold.png);
}
.glossary_main_template .entry_wrapper:nth-of-type(3n+3) .entry_star:before {
  background-image: url(../img/grey.png);
}
.glossary_main_template .entry_wrapper:nth-of-type(4n+4) .entry_star:before {
  background-image: url(../img/indigo.png);
}
.glossary_main_template .entry_wrapper:nth-of-type(5n+5) .entry_star:before {
  background-image: url(../img/lavender.png);
}
.glossary_main_template .entry_wrapper:nth-of-type(6n+6) .entry_star:before {
  background-image: url(../img/orange.png);
}
.glossary_main_template .entry_wrapper:nth-of-type(7n+7) .entry_star:before {
  background-image: url(../img/pink.png);
}
.glossary_main_template .entry_wrapper:nth-of-type(8n+8) .entry_star:before {
  background-image: url(../img/purple.png);
}
.glossary_main_template .entry_wrapper:nth-of-type(9n+9) .entry_star:before {
  background-image: url(../img/red.png);
}
.glossary_main_template .entry_wrapper:nth-of-type(10n+10) .entry_star:before {
  background-image: url(../img/seafoam.png);
}
.glossary_main_template .entry_wrapper .entry_title {
  text-align: left;
}
.glossary_main_template .entry_wrapper .entry_title a {
  text-decoration: none;
}
.glossary_main_template .entry_wrapper .entry_desc {
  text-align: left;
  border-bottom: 1px solid #ccc;
  margin-bottom: 0.5em;
  padding-bottom: 0.4em;
}
.glossary_main_template .entry_wrapper .entry_desc p {
  column-count: 2;
  column-gap: 1em;
}
@media (max-width: 991.9px) {
  .glossary_main_template .entry_wrapper .entry_desc p {
    column-count: initial;
  }
}
.glossary_main_template .entry_wrapper .entry_desc i {
  color: #656565;
  font-size: 0.8em;
  line-height: 1.5;
}
.glossary_main_template ul {
  list-style: disc;
  margin: 15px 0 0 50px;
  width: 100%;
}
.glossary_main_template .shareaholic-recommendations-container .shareaholic-recommendations-header {
  color: #656565 !important;
  font-size: 40px !important;
  line-height: 1;
  margin-bottom: 10px;
  margin-top: 5%;
  font-weight: 300 !important;
}
.glossary_main_template .shareaholic-recommendations {
  display: flex;
  flex-wrap: wrap;
}
.glossary_main_template .shareaholic-recommendations .shareaholic-recommendation .shareaholic-recommendation-article-link {
  display: flex;
  flex-wrap: wrap;
}
.glossary_main_template .shareaholic-recommendations .shareaholic-recommendation .shareaholic-recommendation-article-link .shareaholic-recommendation-article-title {
  margin-left: 0 !important;
  margin-top: 1em !important;
  color: #656565;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 500;
}

.request-demo-content {
  /* section-title */
}
.request-demo-content .page_banner.page_banner--hero {
  z-index: 1;
}
@media (min-width: 768px) {
  .request-demo-content .page_banner.page_banner--hero .banner_container {
    min-height: 360px;
  }
}
.request-demo-content .page_banner.page_banner--hero .banner_content {
  display: none;
}
@media (min-width: 768px) {
  .request-demo-content .page_banner.page_banner--hero .banner_content {
    display: block;
  }
}
.request-demo-content .page_banner.page_banner--hero .banner_image {
  display: block;
  min-height: 150px;
}
@media (min-width: 768px) {
  .request-demo-content .page_banner.page_banner--hero .banner_image {
    display: none;
  }
}
@media (min-width: 768px) {
  .request-demo-content .common-wrap {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
  }
}
@media (min-width: 1300px) {
  .request-demo-content .pricing-content-wrap {
    top: -80px;
    position: relative;
    padding-bottom: 0px;
  }
}
.request-demo-content .pricing-content-wrap iframe.frame-request-demo {
  min-height: 990px !important;
  height: auto !important;
  max-width: 100% !important;
  width: 100% !important;
}
@media only screen and (min-width: 1024px) {
  .request-demo-content .pricing-content-wrap iframe.frame-request-demo {
    min-height: 920px !important;
  }
}
.request-demo-content .pricing-content-wrap iframe.frame-request-demo html {
  overflow-x: hidden !important;
}
.request-demo-content .pricing-content-wrap iframe.frame-request-demo .form-field select {
  width: 100% !important;
}
@media (max-width: 767px) {
  .request-demo-content .pricing-column {
    width: 100%;
  }
}
@media (min-width: 991px) {
  .request-demo-content .pricing-column:nth-child(odd) {
    margin-right: 30px;
  }
}
.request-demo-content .pricing-column:nth-child(even) {
  background-color: #00a1f1;
  position: relative;
  padding: 10px;
  box-shadow: 10px 10px 15px -2px #d4d3d4;
}
@media (min-width: 768px) {
  .request-demo-content .pricing-column:nth-child(even) {
    max-width: 35%;
    padding: 40px;
  }
}
.request-demo-content .section-title {
  margin-top: 0;
  /* ul */
}
.request-demo-content .section-title h3 {
  margin-top: 30px;
  font-weight: bold;
  text-align: left;
  padding: 0 30px;
  line-height: 1.2;
}
.request-demo-content .section-title p {
  display: block;
  font-weight: 600;
}
.request-demo-content .section-title ul {
  list-style: none;
  padding: 0 30px;
  margin-bottom: 20px;
  width: 100%;
}
.request-demo-content .section-title ul li {
  padding-left: 35px;
  margin-bottom: 0.5em;
  font-weight: 600;
}
.request-demo-content .section-title ul li:before {
  content: "";
  font-family: "Font Awesome 5 Free";
  color: #47a8f1;
  display: inline-block;
  margin-left: -35px;
  width: 20px;
  height: 20px;
  margin-right: 15px;
  font-weight: 900;
}
.request-demo-content .form-wrap h4 {
  padding-top: 20px;
  font-weight: bold;
  color: #fff;
  font-size: 26px;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .request-demo-content .form-wrap {
    margin-top: 0;
  }
}
.request-demo-content .solo-plan {
  position: absolute;
  bottom: -45px;
  margin: 0 auto;
  left: 0;
  right: 0;
  text-align: center;
  font-weight: 600;
}
.request-demo-content .solo-plan a {
  color: #83bfc8;
}

.join-us-wrap {
  min-height: 500px;
}

.page_banner {
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 20px;
  position: relative;
}
.page_banner .banner_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
  z-index: -1;
}
@media only screen and (min-width: 1024px) {
  .page_banner .banner_bg {
    background-size: 100%;
  }
}
.page_banner .banner_container {
  width: 100%;
  position: relative;
  text-align: center;
  padding: 50px 0 80px 0;
}
@media only screen and (min-width: 1024px) {
  .page_banner .banner_container {
    padding: 120px 0 130px 0;
  }
}
@media only screen and (min-width: 1300px) {
  .page_banner .banner_container {
    padding: 120px 0 165px 0;
  }
}
.page_banner.page_banner--hero {
  margin-bottom: 0;
}
.page_banner.page_banner--hero .banner_bg {
  background-size: cover;
}
@media only screen and (min-width: 768px) {
  .page_banner.page_banner--hero .banner_bg {
    background-size: 100%;
  }
}
.page_banner.page_banner--hero .banner_container {
  padding: 30px 0 70px 0;
}
@media only screen and (min-width: 1024px) {
  .page_banner.page_banner--hero .banner_container {
    padding: 120px 0 90px 0;
  }
}
@media only screen and (min-width: 1300px) {
  .page_banner.page_banner--hero .banner_container {
    padding: 120px 0 115px 0;
  }
}
.page_banner.page_banner--hero .banner_container .banner_container_inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 1350px;
  margin: 0 auto;
  width: 90%;
  justify-content: center;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .page_banner.page_banner--hero .banner_container .banner_container_inner {
    width: 90%;
    flex-wrap: nowrap;
  }
}
@media only screen and (min-width: 1024px) {
  .page_banner.page_banner--hero .banner_container .banner_container_inner {
    align-items: center;
  }
}
.page_banner.page_banner--hero .banner_container .banner_container_inner .banner_content {
  width: 100%;
  text-align: left;
  margin-bottom: 40px;
  align-self: center;
}
@media only screen and (min-width: 768px) {
  .page_banner.page_banner--hero .banner_container .banner_container_inner .banner_content {
    width: 65%;
    margin-right: 2.5%;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .page_banner.page_banner--hero .banner_container .banner_container_inner .banner_content {
    width: 55%;
  }
}
.page_banner.page_banner--hero .banner_container .banner_container_inner .banner_content h1 {
  color: #4d4d4f;
  line-height: 1.25;
  font-size: 45px;
}
.page_banner.page_banner--hero .banner_container .banner_container_inner .banner_content h1 strong {
  position: relative;
  white-space: nowrap;
}
.page_banner.page_banner--hero .banner_container .banner_container_inner .banner_content h1 strong::after {
  content: "";
  position: absolute;
  top: calc(87%);
  left: 50%;
  width: 100%;
  height: 15px;
  border-radius: 100%;
  transform: translateX(-50%);
  border-top: 3px solid #e13616;
}
.page_banner.page_banner--hero .banner_container .banner_container_inner .banner_content p {
  color: #4d4d4f;
  margin-top: 25px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 300;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .page_banner.page_banner--hero .banner_container .banner_container_inner .banner_content p {
    font-size: 18px;
    margin-top: 35px;
  }
}
@media only screen and (min-width: 1024px) {
  .page_banner.page_banner--hero .banner_container .banner_container_inner .banner_content p {
    font-size: 20px;
    line-height: 33px;
  }
}
.page_banner.page_banner--hero .banner_container .banner_container_inner .banner_content a {
  color: #4bb1bd;
  position: relative;
  z-index: 5;
  transition: all 0.2s ease-in-out;
}
.page_banner.page_banner--hero .banner_container .banner_container_inner .banner_content a:hover {
  color: #197f8b;
}
.page_banner.page_banner--hero .banner_container .banner_container_inner .banner_content .btn {
  border: 1px solid #4bb1bd;
  color: #fff;
  background: #4bb1bd;
  margin-top: 25px;
  margin-bottom: 10px;
  width: 225px;
}
@media only screen and (min-width: 768px) {
  .page_banner.page_banner--hero .banner_container .banner_container_inner .banner_content .btn {
    margin-top: 35px;
    width: auto;
  }
}
.page_banner.page_banner--hero .banner_container .banner_container_inner .banner_content .btn:hover {
  color: rgba(255, 255, 255, 0.65);
}
.page_banner.page_banner--hero .banner_container .banner_container_inner .banner_image {
  width: 80%;
  position: relative;
  align-self: normal;
}
@media only screen and (min-width: 768px) {
  .page_banner.page_banner--hero .banner_container .banner_container_inner .banner_image {
    min-height: 200px;
    width: 32.5%;
  }
}
@media only screen and (min-width: 1024px) {
  .page_banner.page_banner--hero .banner_container .banner_container_inner .banner_image {
    min-height: 250px;
    width: 42.5%;
  }
}
@media only screen and (min-width: 768px) {
  .page_banner.page_banner--hero .banner_container .banner_container_inner .banner_image .banner_image_mobile {
    display: none;
  }
}
.page_banner.page_banner--hero .banner_container .banner_container_inner .banner_image .banner_image_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  display: none;
}
@media only screen and (min-width: 768px) {
  .page_banner.page_banner--hero .banner_container .banner_container_inner .banner_image .banner_image_inner {
    height: 100%;
    display: block;
    background-position: top center;
  }
}
@media only screen and (min-width: 1024px) {
  .page_banner.page_banner--hero .banner_container .banner_container_inner .banner_image .banner_image_inner {
    height: 120%;
  }
}
@media only screen and (min-width: 1300px) {
  .page_banner.page_banner--hero .banner_container .banner_container_inner .banner_image .banner_image_inner {
    height: 140%;
  }
}
.page_banner.page_banner--hero .banner_container .banner_container_inner .banner_image .banner_image_animated {
  display: none;
}
.page_banner.page_banner--hero.page_banner--bg2 {
  margin-bottom: 150px;
}
@media only screen and (min-width: 768px) {
  .page_banner.page_banner--hero.page_banner--bg2 {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .page_banner.page_banner--hero.page_banner--bg2 {
    margin-bottom: 75px;
  }
}
@media only screen and (min-width: 768px) {
  .page_banner.page_banner--hero.page_banner--bg2 .banner_container {
    padding: 30px 0 50px 0;
  }
}
@media only screen and (min-width: 1024px) {
  .page_banner.page_banner--hero.page_banner--bg2 .banner_container {
    padding: 120px 0 50px 0;
  }
}
@media only screen and (min-width: 1300px) {
  .page_banner.page_banner--hero.page_banner--bg2 .banner_container {
    padding: 120px 0 65px 0;
  }
}
.page_banner.page_banner--hero.page_banner--bg2 .banner_container .banner_container_inner .banner_image {
  position: absolute;
  top: 100%;
}
@media only screen and (min-width: 768px) {
  .page_banner.page_banner--hero.page_banner--bg2 .banner_container .banner_container_inner .banner_image {
    position: relative;
    top: 0;
  }
}
@media only screen and (min-width: 1300px) {
  .page_banner.page_banner--hero.page_banner--bg2 .banner_container .banner_container_inner .banner_image .banner_image_inner {
    height: 130%;
  }
}
.page_banner.page_banner--small .banner_container .banner_container_inner {
  max-width: 1230px;
  margin: 0 auto;
}
.page_banner.page_banner--small .banner_container .banner_container_inner p {
  margin: 20px auto 0 auto;
  max-width: 600px;
}
.page_banner.page_banner--small .accent_img {
  position: absolute;
  right: 5%;
  height: calc(100% - 75px);
  top: 75px;
  width: 20%;
  display: none;
}
@media only screen and (min-width: 768px) {
  .page_banner.page_banner--small .accent_img {
    display: block;
  }
}
.page_banner.page_banner--small .accent_img .accent_inner {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
}
.page_banner.page_banner--animated .banner_container .banner_container_inner .banner_image {
  height: 200px;
}
.page_banner.page_banner--animated .banner_container .banner_container_inner .banner_image .banner_image_mobile {
  display: none;
}
.page_banner.page_banner--animated .banner_container .banner_container_inner .banner_image .banner_image_inner {
  display: none !important;
}
.page_banner.page_banner--animated .banner_container .banner_container_inner .banner_image .banner_image_animated {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
@media only screen and (min-width: 1024px) {
  .page_banner.page_banner--animated .banner_container .banner_container_inner .banner_image .banner_image_animated {
    height: 120%;
  }
}
@media only screen and (min-width: 1300px) {
  .page_banner.page_banner--animated .banner_container .banner_container_inner .banner_image .banner_image_animated {
    height: 140%;
  }
}
.page_banner.page_banner--animated .banner_container .banner_container_inner .banner_image .banner_image_animated > div {
  position: absolute;
  top: -5%;
  left: 0;
  width: 100%;
  height: 125%;
}

.more_content section:not(.page_banner) {
  padding: 50px 0px;
}
.more_content section:not(.page_banner) h2 {
  margin-bottom: 50px;
}
.more_content section:not(.page_banner) h1, .more_content section:not(.page_banner) h2, .more_content section:not(.page_banner) h3, .more_content section:not(.page_banner) h4, .more_content section:not(.page_banner) h5, .more_content section:not(.page_banner) h6 {
  margin-bottom: 30px;
}
.more_content section:not(.page_banner) p {
  font-size: 20px;
  line-height: 33px;
  font-weight: 300;
  padding: 0 0 30px 0;
}
.more_content section:not(.page_banner).text-content ul li {
  font-size: 20px;
  line-height: 33px;
  font-weight: 300;
  padding-left: 20px;
  position: relative;
}
.more_content section:not(.page_banner).text-content ul li:before {
  content: ">";
  position: absolute;
  left: 0px;
  color: #876e47;
}
.more_content section:not(.page_banner).tabs-wrap {
  background: -webkit-linear-gradient(45deg, #170746 0%, #4b3286 100%);
  background: -o-linear-gradient(45deg, #170746 0%, #4b3286 100%);
  background: -moz-linear-gradient(45deg, #170746 0%, #4b3286 100%);
  background: linear-gradient(45deg, #170746 0%, #4b3286 100%);
}
.more_content section:not(.page_banner).tabs-wrap .common-wrap {
  padding-bottom: 50px;
}
.more_content section:not(.page_banner).banner-wrap {
  position: relative;
  margin-top: 110px;
}
.more_content section:not(.page_banner).banner-wrap .common-wrap {
  padding: 75px 0 30px 0;
  text-align: center;
}
.more_content section:not(.page_banner).banner-wrap .common-wrap .middle-thum {
  top: 100px;
  height: 250px;
  transform: translate(-50%, -100%);
}
.more_content section:not(.page_banner).banner-wrap .common-wrap .middle-thum img {
  height: 100%;
  width: auto;
}
.more_content section:not(.page_banner).banner-wrap .common-wrap .section-title {
  max-width: none;
}
.more_content section:not(.page_banner).banner-wrap .common-wrap .section-title h2 {
  margin-bottom: 50px;
  line-height: 1.5;
}
.more_content section:not(.page_banner).accordion-wrap .common-wrap {
  border-bottom: 1px solid #929497;
}
.more_content section:not(.page_banner).accordion-wrap .common-wrap .feature-row {
  border-bottom: none !important;
}
.more_content section:not(.page_banner).accordion-wrap .common-wrap .feature-row .acordian-item h4 {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 0;
}
.more_content section:not(.page_banner).accordion-wrap .common-wrap .feature-row .acordian-item .accordion-content p {
  line-height: 1.25;
  font-size: 16px;
  padding: 15px 0 27px;
}
.more_content section:not(.page_banner).list-and-image .inner {
  display: flex;
  flex-wrap: wrap;
}
.more_content section:not(.page_banner).list-and-image .inner .list-col {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .more_content section:not(.page_banner).list-and-image .inner .list-col {
    width: 50%;
  }
}
.more_content section:not(.page_banner).list-and-image .inner .list-col .list-item h4 {
  font-size: 20px;
  line-height: 24px;
  color: #7d6645;
  font-weight: 900;
  margin-bottom: 10px;
}
.more_content section:not(.page_banner).list-and-image .inner .list-col .list-item > div {
  width: 98%;
  margin-left: 2%;
}
.more_content section:not(.page_banner).list-and-image .inner .list-col .list-item > div p {
  font-size: 16px;
  line-height: 1.3;
}
.more_content section:not(.page_banner).list-and-image .inner .img-col {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .more_content section:not(.page_banner).list-and-image .inner .img-col {
    width: 50%;
  }
}
@media only screen and (min-width: 768px) {
  .more_content section:not(.page_banner).list-and-image .inner .img-col img {
    width: 95%;
    margin-left: 5%;
  }
}
.more_content section:not(.page_banner).list-and-image .cta-container {
  text-align: center;
  margin-top: 25px;
}
.more_content section:not(.page_banner).join-us-wrap {
  margin-top: 125px;
}

.pagination-wrap {
  margin-bottom: 12%;
}
.pagination-wrap .page-numbers {
  background: #DFE0E4;
  color: black;
  font-weight: 500;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  border-radius: 40px;
  display: inline-block;
  transition: 0.25s ease-in-out;
  margin: 0 5px;
}
.pagination-wrap .page-numbers:hover, .pagination-wrap .page-numbers.current {
  background: #312166;
  color: white;
}
.pagination-wrap .prev, .pagination-wrap .next, .pagination-wrap .dots {
  width: auto;
  background: none;
  color: black;
}

.cta-box {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #f8fcff;
  padding: 10px 20px;
  box-shadow: 0 0 8px 4px #b2d4ef;
  border-radius: 10px;
  margin-top: 50px;
  min-height: 350px;
}
.cta-box .image {
  position: absolute;
  z-index: 0;
  width: auto;
  bottom: 10px;
  left: 10%;
  transform: translateX(-10%);
}
.cta-box .image img {
  max-height: 120px;
}
.cta-box .col-L {
  width: calc(100% - 400px);
  position: relative;
  z-index: 1;
}
.cta-box .col-L h3 {
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: #5a5281;
}
.cta-box .col-L p {
  color: #5a5281;
}
.cta-box .col-R {
  width: 350px;
}
.cta-box .col-R iframe {
  height: 375px !important;
}

@media (max-width: 1199.9px) {
  .cta-box .col-L {
    width: auto;
  }

  .cta-box .image {
    position: relative;
    order: 1;
    width: 100%;
    text-align: center;
    left: 0;
  }
}
.modal {
  z-index: 99999;
  padding: 0 !important;
}

.modal .modal-dialog {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}

@media (max-width: 767px) {
  /* hide on mobile because iframe breaks the view */
  .modal-content {
    width: 90%;
    padding: 0;
  }

  .modal .modal-dialog {
    padding: 0;
    margin: 0;
  }
}
@media (min-width: 768px) {
  .modal_button {
    margin-left: 20px;
  }

  .modal .modal-content {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
}

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