@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Noto+Serif:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap");
/* Mixin */
.flex {
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
}

html {
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  margin: 0px;
  padding: 0px;
  color: #54536C;
}

* {
  font-family: 'Source Sans Pro', sans-serif;
}

*:focus, *:hover {
  outline: 0px;
  border: 0px;
  box-shadow: 0 0 0 0;
  -webkit-box-shadow: 0 0 0 0;
  -moz-box-shadow: 0 0 0 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', sans-serif;
  color: #2D2D2D;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: #F7686F;
}

a:hover {
  text-decoration: underline;
}

.transition {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.flex {
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
}

::-webkit-scrollbar {
  width: 10px;
  background: rgba(99, 214, 181, 0.2);
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(8, 179, 229, 0.4);
  cursor: pointer;
}

.btn {
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  display: block;
  max-width: 380px;
  text-align: center;
  padding: 14px 20px;
  line-height: 28px;
  font-size: 0.9375rem;
  font-weight: 800;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
}

.btn.orange {
  background: #F1821E;
}

.btn.orange:hover {
  box-shadow: 0px 3px 3px rgba(84, 83, 108, 0.5);
  -webkit-box-shadow: 0px 3px 3px rgba(84, 83, 108, 0.5);
  -moz-box-shadow: 0px 3px 3px rgba(84, 83, 108, 0.5);
}

.gradient {
  background: #EF3297;
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(#fad34f), to(#ef3297));
  background: linear-gradient(to right, #fad34f 0%, #ef3297 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fad34f', endColorstr='#ef3297',GradientType=1 );
}

.gradientBtn {
  background: #ef3297;
  background: linear-gradient(45deg, #ef3297 0%, #fad34f 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ef3297', endColorstr='#fad34f',GradientType=1 );
  color: #fff;
  box-shadow: 0 3px 6px rgba(84, 83, 108, 0.29);
  -webkit-box-shadow: 0 3px 6px rgba(84, 83, 108, 0.29);
  -moz-box-shadow: 0 3px 6px rgba(84, 83, 108, 0.29);
  padding: 19px 30px;
  text-align: center;
  margin-bottom: 15px;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
}

.gradientBtn:hover {
  text-decoration: none;
  color: #fff;
  box-shadow: 0 4px 4px #54536c;
  -webkit-box-shadow: 0 4px 4px #54536c;
  -moz-box-shadow: 0 4px 4px #54536c;
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
}

[class*=fx-reveal], [class^=fx-reveal] {
  -webkit-transition-property: opacity,-webkit-transform;
  transition-property: opacity,-webkit-transform;
  transition-property: opacity,transform;
  transition-property: opacity,transform,-webkit-transform;
  -webkit-transition-duration: 1.5s;
  transition-duration: 1.5s;
  -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}

[class*=fx-reveal].up, [class^=fx-reveal].up {
  transform: translateY(40px);
  -webkit-transform: translateY(40px);
  -moz-transform: translateY(40px);
}

[class*=fx-reveal].down, [class^=fx-reveal].down {
  transform: translateY(-40px);
  -webkit-transform: translateY(-40px);
  -moz-transform: translateY(-40px);
}

[class*=fx-reveal].animate, [class^=fx-reveal].animate {
  -webkit-transform: translate(0px, 0px) scale(1);
  transform: translate(0px, 0px) scale(1);
  opacity: 1;
}

header {
  padding: 18px 0;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  font-family: 'Lato', sans-serif;
}

header .hideOnScroll {
  display: block;
}

header .showOnScroll {
  display: none;
}

header.scrolled {
  box-shadow: 0px 0px 10px rgba(84, 83, 108, 0.1);
  -webkit-box-shadow: 0px 0px 10px rgba(84, 83, 108, 0.1);
  -moz-box-shadow: 0px 0px 10px rgba(84, 83, 108, 0.1);
  background: #fff;
}

header.scrolled .hideOnScroll {
  display: none;
}

header.scrolled .showOnScroll {
  display: block;
}

header.scrolled #menu li a {
  color: #54536C;
}

header.scrolled #menu li a.dropdown:after {
  content: url("../img/caret-scrolled.svg");
}

header .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .navbar-brand {
  padding: 0px;
}

header .navbar-brand a {
  display: block;
}

header .navbar-toggler {
  display: none;
}

header nav {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

header #menu {
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header #menu li {
  position: relative;
}

header #menu li.logo {
  display: none;
}

header #menu li:hover a {
  color: #F1821E;
}

header #menu li a {
  font-family: 'Lato', sans-serif;
  padding: 6px 15px;
  display: block;
  color: #54536C;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  text-decoration: none;
  font-size: 16px;
  line-height: 16px;
  white-space: nowrap;
  line-height: 20px;
}

header #menu li a.dropdown {
  padding-right: 25px;
}

header #menu li a.dropdown:after {
  content: url("../img/caret-scrolled.svg");
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: translateY(-20%) scaleY(-1);
  transform: translateY(-20%) scaleY(-1);
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
}

header #menu li a.signup {
  background: #f5811a;
  background-size: 100%;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-left: 10px;
  width: 105px;
  height: 32px;
}

header #menu li a.signup:hover {
  text-decoration: underline;
}

header #menu li .dropdown-menu {
  opacity: 0;
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
  transform: scaleY(0);
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  margin-top: 0px;
  border: 0px;
  box-shadow: 0 0 15px rgba(84, 83, 108, 0.15);
  -webkit-box-shadow: 0 0 15px rgba(84, 83, 108, 0.15);
  -moz-box-shadow: 0 0 15px rgba(84, 83, 108, 0.15);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

header #menu li .dropdown-menu a {
  color: #54536C;
}

header #menu li .dropdown-menu a:hover {
  color: #F1821E;
  text-decoration: none;
}

header #menu li:hover a:after {
  -webkit-transform: translateY(-50%) scaleY(1);
  transform: translateY(-50%) scaleY(1);
}

header #menu li:hover .dropdown-menu {
  opacity: 1;
  display: block;
  transform: scaleY(1);
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
}

.mainBanner {
  background: url("../img/bg-banner.svg") center no-repeat;
  background-size: cover;
  margin: 78px 0 0;
  min-height: 520px;
  padding: 40px 0 0;
}

.mainBanner.innnerbg {
  background: #2D2D2D url("../img/bg-innerblog.png") center no-repeat;
  background-size: cover;
  margin: 78px 0 0;
  min-height: 580px;
  padding: 0;
}

.blogslider {
  width: 100%;
  margin-top: -70px;
  padding: 0 0 50px;
  position: relative;
  z-index: 9;
}

.blogslider .slider {
  padding: 0 60px;
}

.blogslider .title {
  padding: 40px;
  border-radius: 4px;
  background-color: #fff;
  margin: 15px;
  -webkit-box-shadow: 0px 0px 8px #0000000A;
          box-shadow: 0px 0px 8px #0000000A;
}

.blogslider .title .tag {
  text-transform: uppercase;
  color: #C4C4C4;
  font-size: 0.75rem;
  font-family: 'Lato', sans-serif;
}

.blogslider .title a {
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
}

.blogslider .title a.link {
  margin-top: 12px;
  display: inline-block;
  text-decoration: underline;
  font-size: 0.9375rem;
  line-height: 1.2;
  font-weight: 500;
  color: #54536C;
  letter-spacing: 0.24px;
}

.blogslider .title a.link:hover {
  color: #F7686F;
}

.blogslider .title a h2 {
  font-size: 2.125rem;
  margin-top: 12px;
  line-height: 1.2;
  font-weight: 900;
  color: #2D2D2D;
  text-decoration: none;
  letter-spacing: 0.27px;
  font-family: 'Lato', sans-serif;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
}

.blogslider .title a h2:hover {
  color: #F7686F;
}

.blogslider .title p {
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0.14px;
  color: #54536C;
  margin-top: 15px;
}

.blogslider .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  display: block;
  margin-top: 0px;
}

.blogslider .owl-dots button {
  width: 30px;
  height: 3px;
  background-color: #e5e5e5;
  margin: 0 5px;
  border: 0;
  outline: 0;
}

.blogslider .owl-dots button.active {
  background-color: #F7686F;
}

.articles {
  width: 100%;
  padding: 70px 0;
  background-color: #F7F7F7;
  position: relative;
}

.articles .heading {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0px;
}

.articles .heading h1 {
  font-size: 1.5rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  color: #2D2D2D;
}

.articles .heading a {
  font-size: 1rem;
  text-decoration: none;
  color: #2D2D2D;
  display: inline-block;
  font-weight: 400;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
}

.articles .heading a img {
  position: relative;
  margin-left: -2px;
  top: 3px;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
}

.articles .heading a:hover {
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  color: #F7686F;
}

.articles .heading a:hover img {
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
}

.articles .flex {
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.articles .flex .blog {
  margin-top: 55px;
  width: calc(33.33% - 30px);
  overflow: hidden;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-box-shadow: 0px 4px 7px #FFE0EEBC;
          box-shadow: 0px 4px 7px #FFE0EEBC;
}

.articles .flex .blog img {
  width: 100%;
  height: auto;
}

.articles .flex .blog:hover {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -webkit-box-shadow: 0px 8px 15px #FFE0EEBC;
          box-shadow: 0px 8px 15px #FFE0EEBC;
}

.articles .flex .space {
  padding: 25px;
}

.articles .flex .space .tag {
  text-transform: uppercase;
  color: #C4C4C4;
  font-size: 0.75rem;
  font-family: 'Lato', sans-serif;
}

.articles .flex .space a {
  display: inline-block;
  margin-top: 10px;
  letter-spacing: 0.14px;
  color: #2D2D2D;
  line-height: 1.5;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
}

.articles .flex .space a:hover {
  color: #F7686F;
}

.articles .flex .space .date {
  margin-top: 10px;
  color: #2D2D2D;
  font-size: 0.75rem;
  letter-spacing: 0.1px;
  font-family: 'Lato', sans-serif;
}

.testimonials {
  background: #FCFCFC;
  padding: 70px 0;
}

.testimonials h6 {
  font-size: 36px;;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.3;
  color: #1D1D1D !important;
  font-weight: bold !important;
}

.testimonials h6 + p {
  font-size: 18px;
  text-align: center;
  line-height: 1.3;
  max-width: 620px;
  margin: 0 auto 40px;
}

.testimonials .owl-item {
  padding: 10px;
}

.testimonials .inner {
  background: #fff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  box-shadow: 0 0 6px rgba(45, 45, 45, 0.08);
  -webkit-box-shadow: 0 0 6px rgba(45, 45, 45, 0.08);
  -moz-box-shadow: 0 0 6px rgba(45, 45, 45, 0.08);
  padding: 60px 20px;
}

.testimonials .inner .proPic {
  text-align: center;
}

.testimonials .inner .proPic img {
  max-width: 100px;
  width: auto;
  height: auto;
  margin: 0 auto 30px;
  border-radius:50px;
}

.testimonials .inner blockquote {
  background: url("../img/quote.svg") center bottom no-repeat;
  padding-bottom: 85px;
}

.testimonials .inner blockquote p {
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
  padding: 0 15px;
  font-family: 'Lato', sans-serif;
  color: #54536C;
  height:162px;
}

.testimonials .inner .clientName {
  font-size: 18px;
  line-height: 1.7;
  font-weight: 700;
  text-align: center;
  font-family: 'Lato', sans-serif;
  color: #54536C;
}

.testimonials .inner .designation {
  font-size: 0.75rem;
  line-height: 1.4;
  color: #54536C;
  text-align: center;
  font-family: 'Lato', sans-serif;
}

.testimonials .owl-nav {
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.testimonials .owl-nav button {
  width: 38px;
  height: 38px;
  margin: 30px 10px 0;
  background: #EFEFEF url("../img/next.svg") center no-repeat !important;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
}

.testimonials .owl-nav button span {
  display: none;
}

.testimonials .owl-nav button:focus {
  outline: 0;
}

.testimonials .owl-nav button:hover {
  background: #aaa url("../img/next.svg") center no-repeat !important;
}

.testimonials .owl-nav button.owl-prev {
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
}

.ctaFull {
  background: url("../img/cta-last.svg") center;
  background-size: cover;
  padding: 120px 0;
}

.ctaFull h3 {
  font-size: 2.25rem;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  max-width: 770px;
  font-family: 'DM Serif Display', sans-serif;
  margin: 0 auto 25px;
  letter-spacing: 0.29px;
  font-weight: 600;
}

.ctaFull h3.col10 {
  max-width: 950px;
}

.ctaFull h3.fw {
  max-width: 100%;
}

.ctaFull .form-inline {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ctaFull .form-inline .form-control {
  padding: 25px 20px;
  font-weight: 400;
  line-height: 1.4;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  color: #2D2D2D;
  border: 0px;
  outline: 0;
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  min-height: 50px;
  min-width: 420px;
}

.ctaFull .form-inline button {
  background: url("../img/btn_bg.svg") center repeat-x;
  font-family: 'Lato', sans-serif;
  font-size: 1.125rem;
  color: #2D2D2D;
  font-weight: 700;
  line-height: 50px;
  padding: 0px 20px;
  max-width: 140px;
  min-height: 50px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  display: inline-block;
  border: 0px;
  outline: 0;
}

.ctaFull .form-inline button:hover {
  text-decoration: underline;
}

.tooltip-inner p {
  text-align: left;
  margin-bottom: 10px;
}

.tooltip-inner p:last-of-type {
  margin-bottom: 0;
}

.resourcing {
  width: 100%;
  margin-top: 50px;
}

.resourcing .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

.resourcing .maincontent {
  width: calc(100% - 270px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.resourcing .mobsidenav {
  display: none;
}

.resourcing .sidenav {
  width: 240px;
  background-color: #F8F8F8;
  padding: 20px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
}

.resourcing .sidenav button {
  display: none;
}

.resourcing .sidenav h2 {
  font-size: 1.125rem;
  color: #2D2D2D;
  margin-bottom: 20px;
}

.resourcing .sidenav h3 {
  font-size: 0.9375rem;
  color: #54536C;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.resourcing .sidenav ul {
  padding-right: 20px;
}

.resourcing .sidenav ul li a {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  padding: 10px 0;
  line-height: 1.4;
  color: #54536C;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
}

.resourcing .sidenav ul li a:hover {
  color: #F7686F;
}

.resourcing .content {
  margin-bottom: 30px;
  width: 65%;
}

.resourcing .content .tag {
  text-transform: uppercase;
  color: #54536C;
  font-size: 0.75rem;
  background-color: #EBEBEB;
  display: inline-block;
  padding: 8px 20px;
  margin-bottom: 20px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  font-family: 'Lato', sans-serif;
}

.resourcing .content .spacer {
  margin: 40px 0;
  border-top: 1px solid #EBEBEB;
}

.resourcing .content h1 {
  font-size: 2.125rem;
  color: #2D2D2D;
  font-weight: 900;
  margin-bottom: 20px;
}

.resourcing .content h1 + p {
  font-size: 1.125rem;
  color: #54536C;
  margin-bottom: 20px;
  line-height: 1.5;
  font-family: 'Noto Serif', serif;
}

.resourcing .content .userdtls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-items: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

.resourcing .content .userdtls .userpic {
  width: 40px;
  height: 40px;
  margin-right: 15px;
}

.resourcing .content .userdtls .userpic img {
  width: 100%;
  height: auto;
}

.resourcing .content .userdtls .nmdtcm {
  padding: 0;
  font-family: 'Lato', sans-serif;
  font-size: 0.9375rem;
}

.resourcing .content .userdtls .nmdtcm a {
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 0.9375rem;
}

.resourcing .content .userdtls .nmdtcm .comment {
  font-weight: 700;
}

.resourcing .content .cnt-image {
  margin: 40px 0 60px;
  width: 100%;
}

.resourcing .content .cnt-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  display: block;
}

.resourcing .content .cnt-image .img-cption {
  text-align: center;
  font-size: 0.75rem;
  color: #8D8D8D;
  line-height: 1.4;
  font-family: 'Lato', sans-serif;
  margin-top: 15px;
}

.resourcing .content blockquote {
  padding: 40px 60px;
  margin: 50px 0;
  display: block;
  width: 100%;
  background: rgba(248, 106, 110, 0.1);
  border-radius: 8px;
  position: relative;
  font-family: 'Noto Serif', serif;
  font-size: 1.125rem;
  color: #54536C;
  text-align: center;
  line-height: 1.6;
}

.resourcing .content blockquote:after {
  content: "";
  background: url(../img/pinkquote.svg) no-repeat;
  position: absolute;
  display: block;
  width: 45px;
  height: 45px;
  top: -18px;
  left: 50px;
  background-size: 100%;
}

.resourcing .content blockquote:before {
  content: "";
  background: url(../img/pinkquote.svg) no-repeat;
  position: absolute;
  display: block;
  width: 45px;
  height: 45px;
  bottom: -18px;
  right: 50px;
  background-size: 100%;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
}

.resourcing .content h2 {
  font-size: 2.125rem;
  color: #2D2D2D;
  font-weight: 900;
  margin-bottom: 30px;
}

.resourcing .content h2 .count {
  width: 40px;
  height: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  font-size: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #F86A6E;
  color: #fff;
  margin-right: 15px;
  font-weight: 900;
}

.resourcing .content p {
  font-size: 1.125rem;
  color: #54536C;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.6;
  font-family: 'Noto Serif', serif;
  letter-spacing: 0px;
}

.resourcing .content p a {
  text-decoration: none;
  font-size: 1.125rem;
  color: #F7686F;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
}

.resourcing .content p a:hover {
  text-decoration: underline;
}

.resourcing .content .template {
  padding: 30px 50px;
  margin: 50px 0;
  background: rgba(248, 106, 110, 0.1);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.resourcing .content .template img {
  width: auto;
  height: auto;
}

.resourcing .content .template p {
  display: block;
}

.resourcing .content .template p a {
  text-decoration: none;
  padding: 10px 25px;
  font-size: 0.9375rem;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 18px;
  background-color: #fff;
  font-family: 'Lato', sans-serif;
  box-shadow: 0 0 6px rgba(45, 45, 45, 0.08);
  -webkit-box-shadow: 0 0 6px rgba(45, 45, 45, 0.08);
  -moz-box-shadow: 0 0 6px rgba(45, 45, 45, 0.08);
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
}

.resourcing .content .template p a:hover {
  text-decoration: none;
  box-shadow: 0 4px 4px rgba(84, 83, 108, 0.4);
  -webkit-box-shadow: 0 4px 4px rgba(84, 83, 108, 0.4);
  -moz-box-shadow: 0 4px 4px rgba(84, 83, 108, 0.4);
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
}

.resourcing .content .template p:last-of-type {
  margin-bottom: 0;
}

.resourcing .content .cta {
  padding: 50px 30px 50px;
  text-align: center;
  background: #F86A6E url("../img/cta-last.svg") center no-repeat;
  background-size: cover;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  margin: 50px 0;
}

.resourcing .content .cta .title {
  font-size: 1.3125rem;
  font-weight: 800;
  font-family: 'DM Serif Display', sans-serif;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.17px;
  line-height: 1.5;
}

.resourcing .content .cta p {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
  display: block;
  font-family: 'Lato', sans-serif;
}

.resourcing .content .cta p a {
  background: url(../img/button-signup.svg) center repeat-x;
  background-size: 100%;
  display: inline-block;
  max-width: 320px;
  height: 40px;
  font-weight: 800;
  margin: 0 auto;
  font-weight: 600;
  color: #fff;
  text-align: center;
  font-family: 'Lato', sans-serif;
  color: #2D2D2D;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  padding: 10px 25px;
  font-size: 0.9375rem;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
}

.resourcing .content .cta p a:hover {
  text-decoration: underline;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(84, 83, 108, 0.4);
  -webkit-box-shadow: 0 2px 4px rgba(84, 83, 108, 0.4);
  -moz-box-shadow: 0 2px 4px rgba(84, 83, 108, 0.4);
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
}

.resourcing .content .cta p:last-of-type {
  margin-bottom: 0;
}

.resourcing .content ul {
  margin-bottom: 30px;
}

.resourcing .content ul li {
  list-style: none;
  position: relative;
  padding-left: 25px;
  line-height: 1.5;
  padding-bottom: 10px;
  margin-left: 35px;
  color: #54536C;
  font-size: 1.125rem;
  font-weight: 500;
  font-family: 'DM Serif Display', sans-serif;
}

.resourcing .content ul li:before {
  content: '';
  background: url("../img/yellow-bullet.svg") center no-repeat;
  background-size: auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  position: absolute;
  left: 0px;
  top: 4px;
}

.resourcing .content ul li a {
  display: block;
  line-height: 1.5;
  color: #F7686F;
  font-size: 1.125rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  font-family: 'DM Serif Display', sans-serif;
}

.resourcing .content ul li a:hover {
  text-decoration: underline;
}

.resourcing .content ul.featureul li {
  list-style: none;
  position: relative;
  padding-left: 30px;
  line-height: 1.5;
  padding-bottom: 10px;
  margin-left: 0px;
  color: #54536C;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: 'Noto Serif', serif;
}

.resourcing .content ul.featureul li:before {
  content: '';
  background: url("../img/openlink.svg") center no-repeat;
  background-size: auto;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 0px;
  top: 4px;
}

.resourcing .content ul.featureul li a {
  display: block;
  line-height: 1.5;
  color: #F7686F;
  font-size: 1.125rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  font-family: 'Noto Serif', serif;
}

.resourcing .content ul.featureul li a:hover {
  text-decoration: underline;
}

.resourcing .content h3 {
  font-size: 2.125rem;
  color: #2D2D2D;
  font-family: 'Lato', sans-serif;
  margin-bottom: 20px;
  font-weight: 800;
}

.resourcing .content .highlights {
  padding: 40px 60px;
  margin: 50px 0;
  display: block;
  width: 100%;
  background: rgba(248, 106, 110, 0.1);
  border-radius: 8px;
  position: relative;
  line-height: 1.6;
}

.resourcing .content .highlights p {
  font-family: 'Noto Serif', serif;
  font-size: 1.125rem;
  color: #54536C;
}

.resourcing .content .highlights p a {
  display: block;
  line-height: 1.5;
  color: #F7686F;
  font-size: 1.125rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  font-family: 'Noto Serif', serif;
}

.resourcing .content .highlights p a:hover {
  text-decoration: underline;
}

.resourcing .content .highlights p:last-of-type {
  margin-bottom: 0;
}

.resourcing .content .btnpink {
  text-decoration: none;
  padding: 15px 25px;
  font-size: 1.125rem;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  display: inline-block;
  margin: 25px 0;
  background-color: #F86A6E;
  color: #fff;
  font-family: 'Lato', sans-serif;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
}

.resourcing .content .btnpink:hover {
  text-decoration: none;
  box-shadow: 0 4px 4px rgba(84, 83, 108, 0.4);
  -webkit-box-shadow: 0 4px 4px rgba(84, 83, 108, 0.4);
  -moz-box-shadow: 0 4px 4px rgba(84, 83, 108, 0.4);
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
}

.resourcing .content .taggroup {
  margin: 40px 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.resourcing .content .taggroup .tagtitle {
  font-size: 1.125rem;
  color: #54536C;
  font-weight: 600;
  letter-spacing: 0.14px;
  font-family: 'Lato', sans-serif;
  margin-right: 12px;
}

.resourcing .content .taggroup ul {
  margin: 0;
}

.resourcing .content .taggroup ul li {
  list-style: none;
  letter-spacing: 0.1px;
  padding: 10px 15px;
  text-transform: uppercase;
  -webkit-box-shadow: 0px 1px 4px #00000029;
          box-shadow: 0px 1px 4px #00000029;
  font-size: 0.75rem;
  font-family: 'Lato', sans-serif;
  color: #54536C;
  margin-left: 8px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  display: inline-block;
}

.resourcing .content .taggroup ul li:before {
  content: none;
}

.resourcing .content .videoWrapper {
  margin: 0 auto 50px;
}

.resourcing .content .videoWrapper.screencastomatic {
  max-width: 100%;
}

.resourcing .content .videoWrapper .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.resourcing .content .videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #54536C;
}

.resourcing .sidebar {
  width: 30%;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.resourcing .sidebar .promo {
  padding: 20px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  background: rgba(248, 106, 110, 0.1);
}

.resourcing .sidebar .promo img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
}

.resourcing .sidebar .promo .promotitle {
  margin-top: 10px;
  font-size: 1.0625rem;
  font-family: 'Lato', sans-serif;
  color: #2D2D2D;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0px;
}

.resourcing .sidebar .promo a {
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  font-size: 0.9375rem;
  margin-top: 15px;
  color: #F7686F;
  display: inline-block;
}

.resourcing .sidebar .promo a svg {
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transform: translateX(4px);
  -webkit-transform: translateX(4px);
  -moz-transform: translateX(4px);
}

.resourcing .sidebar .promo a:hover svg {
  transform: translateX(8px);
  -webkit-transform: translateX(8px);
  -moz-transform: translateX(8px);
}

.resourcing .sidebar .social {
  margin-top: 40px;
}

.resourcing .sidebar .social a {
  display: inline-block;
  width: 38px;
  height: 38px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  font-size: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #F8F8F8;
  color: #fff;
  margin-right: 5px;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
}

.resourcing .sidebar .social a svg {
  width: 16px;
  height: 16px;
}

.resourcing .sidebar .social a:hover {
  background-color: #F86A6E;
}

.relatedBlog {
  padding: 40px 0 60px;
}

.relatedBlog .flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
}

.relatedBlog .flex h4 {
  color: #2D2D2D;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 30px;
  text-align: center;
}

.relatedBlog .flex .blogwrap {
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.relatedBlog .flex .blogwrap .blogitem {
  overflow: hidden;
  padding: 10px;
}

.relatedBlog .flex .blogwrap .blogitem a {
  display: inline-block;
  text-decoration: none;
}

.relatedBlog .flex .blogwrap .blogitem img {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
}

.relatedBlog .flex .blogwrap .blogitem h5 {
  color: #2D2D2D;
  font-size: 1.125rem;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  margin: 20px 0 0;
  line-height: 1.2;
}

.relatedBlog .flex .blogwrap .blogitem .date {
  color: #54536C;
  font-size: 0.75rem;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  margin: 15px 0 0;
}

.relatedBlog .flex .blogwrap .blogitem:hover h5 {
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  color: #F7686F;
}

.relatedBlog .flex .blogwrap .blogitem:hover img {
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transform: translateY(-4px);
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  overflow: hidden;
}

.relatedBlog .flex .blogwrap .owl-nav {
  display: -webkit-box;
  display: -ms-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: -60px;
  right: 0;
}

.relatedBlog .flex .blogwrap .owl-nav button {
  width: 38px;
  height: 38px;
  margin: 0px 5px 0;
  background: #EFEFEF url("../img/owl-arrow.svg") center no-repeat !important;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
}

.relatedBlog .flex .blogwrap .owl-nav button span {
  display: none;
}

.relatedBlog .flex .blogwrap .owl-nav button:focus {
  outline: 0;
}

.relatedBlog .flex .blogwrap .owl-nav button:hover {
  background: #FAD34F url("../img/owl-arrow.svg") center no-repeat !important;
}

.relatedBlog .flex .blogwrap .owl-nav button.owl-prev {
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
}

footer {
  padding: 80px 0;
  background: #212121 !important;
  position: relative;
  z-index: 1;
}

footer h6 {
  color: #f5811a !important;
  font-weight: 900 !important;
  font-size: 20px;
  margin-bottom: 20px;
  font-family: 'Lato', sans-serif !important;
}

footer h6.txtwht {
  color: #fff;
}

footer ul li a {
  display: inline-block;
  color: #fff;
  font-family: 'Lato', sans-serif;
  padding: 9px 0;
  line-height: 1.2;
  position: relative;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  font-size: 16px;
}

footer ul li a:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #fff;
  left: 0px;
  bottom: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
}

footer ul li a:hover {
  color: #fff;
  text-decoration: none;
}

footer ul li a:hover:before {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
}

footer .address h6 {
  font-size: 20px;
}

footer .address .comp {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 0px;
  font-family: 'Lato', sans-serif;
}

footer .address .comp span {
  color: #fff !important;
  font-weight: 700;
}

footer .address p {
  font-size: 14px;;
  color: #fff !important;
  line-height: 1.8;
  font-family: 'Lato', sans-serif;
  margin-bottom: 10px;
}

footer .address p small {
  font-size: 0.75rem;
}

footer .address p a {
  color: #AFAFAF;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
}

footer .address p a:hover {
  color: #fff;
}

footer .address .social {
  margin: 0px 0 0 -10px;
  padding-top: 10px;
}

footer .address .social a {
  padding: 10px 10px;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  opacity: .5;
}

footer .address .social a:hover {
  opacity: 1;
}

footer .address .social a svg {
  width: auto;
  height: 16px;
}

footer .logo {
  text-align: center;
  padding: 70px 0 30px;
}

footer .slogan {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  font-family: 'Lato', sans-serif;
  margin-bottom: 15px;
  line-height: 1.5;
}

footer .slogan span {
  color: #F1821E;
  font-family: 'Lato', sans-serif;
}

footer .logo {
  text-align: center;
  margin-top: 20px;
}

footer .copyright {
  font-size: 14px;
  color: #AFAFAF;
  font-family: 'Lato', sans-serif;
  text-align: center;
  line-height: 1.5;
}

footer .copyright a {
  color: #F86A6E;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
}

footer .copyright a:hover {
  color: #F1821E;
  text-decoration: none;
}

@media screen and (max-width: 1199px) {
  .mainBanner {
    min-height: 450px;
  }
  .mainBanner.innnerbg {
    margin: 78px 0 0;
    min-height: 420px;
  }
  .blogslider .title a h2 {
    font-size: 1.875rem;
  }
  .resourcing .content h1 {
    font-size: 1.875rem;
  }
  .resourcing .content h2 {
    font-size: 1.875rem;
  }
  .resourcing .content h2 .count {
    width: 36px;
    height: 36px;
    font-size: 1.125rem;
  }
  .resourcing .content .template img {
    width: 90%;
    height: auto;
  }
  .resourcing .content h3 {
    font-size: 1.875rem;
  }
}

@media screen and (max-width: 992px) {
  header .navbar-toggler {
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    border: 0px;
    margin-right: -7px;
  }
  header .navbar-toggler:hover, header .navbar-toggler:focus {
    outline: 0px;
  }
  header .navbar-toggler span {
    position: absolute;
    width: 24px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 2px;
    background: none;
    display: block;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
  }
  header .navbar-toggler span:before {
    content: '';
    width: 100%;
    height: 2px;
    background: #54536C;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    margin-top: 0px;
    left: 50%;
    width: 100%;
    position: absolute;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
  }
  header .navbar-toggler span:after {
    content: '';
    width: 100%;
    height: 2px;
    background: #54536C;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    margin-top: 0px;
    left: 50%;
    width: 100%;
    position: absolute;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
  }
  header .navbar-toggler.collapsed span {
    background: #54536C;
  }
  header .navbar-toggler.collapsed span:before {
    margin-top: -8px;
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
    width: 50%;
  }
  header .navbar-toggler.collapsed span:after {
    margin-top: 10px;
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
    width: 50%;
  }
  header #menu {
    position: absolute;
    background: #fff;
    left: 0px;
    top: 0%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0px 20px 20px;
    height: 100vh;
    width: 240px;
    overflow-y: auto;
    transform: translateX(-115%);
    -webkit-transform: translateX(-115%);
    -moz-transform: translateX(-115%);
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    box-shadow: 10px 0px 30px rgba(84, 83, 108, 0.3);
    -webkit-box-shadow: 10px 0px 30px rgba(84, 83, 108, 0.3);
    -moz-box-shadow: 10px 0px 30px rgba(84, 83, 108, 0.3);
  }
  header #menu li {
    width: 100%;
    border-bottom: 1px dotted rgba(84, 83, 108, 0.3);
  }
  header #menu li.logo {
    display: block;
  }
  header #menu li:last-of-type {
    border-bottom: 0px;
    padding: 20px 0 0;
  }
  header #menu li .dropdown-menu {
    position: static;
    opacity: 1;
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    background: none;
    box-shadow: 0 0 0 0;
    -webkit-box-shadow: 0 0 0 0;
    -moz-box-shadow: 0 0 0 0;
    padding: 0 0 10px 20px;
    margin-top: -15px;
  }
  header #menu li .dropdown-menu a {
    color: #54536C;
  }
  header #menu li a {
    padding: 20px 0px;
    color: #54536C;
  }
  header #menu li a:hover {
    color: #F1821E;
    text-decoration: none;
  }
  header #menu li a.signup {
    width: 100%;
    height: auto;
    margin-left: 0px;
    padding: 14px 0;
  }
  header #menu li a.signup:hover {
    color: #2D2D2D;
    text-decoration: underline;
  }
  header #menu li a.dropdown:after {
    display: none;
  }
  header #menu.show {
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
  }
  .mainBanner {
    min-height: 400px;
    padding: 60px 0 0;
    margin-bottom: 0px;
  }
  .blogslider .title {
    padding: 25px 30px;
  }
  .blogslider .title a h2 {
    font-size: 1.75rem;
  }
  .testimonials h6 {
    font-size: 1.75rem;
  }
  .testimonials h6 + p {
    font-size: 1.0625rem;
    margin: 0 auto 30px;
  }
  .testimonials .inner blockquote p {
    padding: 0 10px;
  }
  .ctaFull {
    padding: 90px 0;
  }
  .ctaFull h3 {
    font-size: 1.75rem;
  }
  .ctaFull h3 br {
    display: none;
  }
  .resourcing .maincontent {
    width: calc(100% - 270px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .resourcing .content {
    width: 100%;
    margin-bottom: 30px;
  }
  .resourcing .content h1 {
    font-size: 1.75rem;
  }
  .resourcing .content h2 {
    font-size: 1.75rem;
  }
  .resourcing .content h2 .count {
    width: 36px;
    height: 36px;
    font-size: 1.125rem;
  }
  .resourcing .content p {
    font-size: 1.0625rem;
  }
  .resourcing .content .template img {
    width: 90%;
    height: auto;
  }
  .resourcing .content h3 {
    font-size: 1.75rem;
  }
  .resourcing .sidebar {
    width: 100%;
  }
  footer .slogan {
    font-size: 1.875rem;
  }
}

@media screen and (max-width: 991px) {
  .articles .heading h1 {
    font-size: 1.3125rem;
  }
  .articles .heading a {
    font-size: 0.9375rem;
  }
  .articles .flex .blog {
    width: 48%;
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .mainBanner {
    min-height: 400px;
  }
  .mainBanner.innnerbg {
    min-height: 320px;
  }
  .blogslider .slider {
    padding: 0;
  }
  .blogslider .title {
    padding: 25px 30px;
  }
  .blogslider .title a h2 {
    font-size: 1.625rem;
  }
  .blogslider .title p {
    font-size: 1rem;
  }
  .articles .heading h1 {
    font-size: 1.3125rem;
  }
  .articles .heading a {
    font-size: 0.9375rem;
  }
  .articles .flex .blog {
    width: 96%;
    margin: 0 2%;
    margin-top: 40px;
  }
  .testimonials h6 {
    font-size: 1.625rem;
    margin-bottom: 20px;
  }
  .testimonials h6 + p {
    font-size: 1rem;
    margin: 0 auto 20px;
  }
  .ctaFull {
    padding: 50px 0;
  }
  .ctaFull h3 {
    font-size: 1.625rem;
  }
  .ctaFull h3 br {
    display: none;
  }
  .ctaFull .form-inline {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .ctaFull .form-inline .form-control {
    max-width: 100%;
    min-width: 300px;
  }
  .ctaFull .form-inline button {
    min-width: 120px;
    margin-top: 8px;
  }
  .resourcing {
    -webkit-box-flex: wrap;
        -ms-flex: wrap;
            flex: wrap;
  }
  .resourcing .flex {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-line-pack: start;
        align-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .resourcing .maincontent {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .resourcing .sidenav {
    display: none;
  }
  .resourcing .mobsidenav {
    display: block;
  }
  .resourcing .mobsidenav button {
    background: #F86A6E url("../img/mobnav.svg") center no-repeat;
    background-size: 25px;
    position: fixed;
    width: 60px;
    height: 60px;
    background-color: #F86A6E;
    bottom: 20px;
    left: 30px;
    display: block;
    z-index: 100;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border: 0px;
    outline: none;
  }
  .resourcing .mobsidenav button.active {
    background: #F86A6E url("../img/closed.svg") center no-repeat;
  }
  .resourcing .mobsidenav .hide {
    width: 100%;
    background-color: #F8F8F8;
    height: auto;
    opacity: 1;
    visibility: visible;
    margin-bottom: 20px;
    padding: 90px 40px 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    z-index: 99;
    overflow: hidden;
    scroll-behavior: unset;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
  }
  .resourcing .mobsidenav .hide h2 {
    font-size: 1.875rem;
    color: #2D2D2D;
    padding-bottom: 25px;
    margin-bottom: 20px;
    line-height: 1.5;
    border-bottom: 1px solid #D9DBDD;
  }
  .resourcing .mobsidenav .hide h3 {
    font-size: 1.25rem;
    color: #54536C;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.5;
  }
  .resourcing .mobsidenav .hide ul {
    padding-right: 20px;
  }
  .resourcing .mobsidenav .hide ul li a {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    padding: 15px 0;
    line-height: 1.4;
    color: #54536C;
    text-decoration: none;
    font-size: 1.125rem;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
  }
  .resourcing .mobsidenav .hide ul li a:hover {
    color: #F7686F;
  }
  .resourcing .mobsidenav .hide.active {
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
  }
  .resourcing .mobsidenav .hide button {
    background: #F86A6E url("../img/closed.svg") center no-repeat;
  }
  .resourcing .sidebar {
    width: 100%;
  }
  .resourcing .content {
    width: 100%;
    margin-bottom: 30px;
  }
  .resourcing .content h1 {
    font-size: 1.625rem;
  }
  .resourcing .content h2 {
    font-size: 1.625rem;
  }
  .resourcing .content h2 .count {
    width: 36px;
    height: 36px;
    font-size: 1.125rem;
  }
  .resourcing .content p {
    font-size: 1rem;
  }
  .resourcing .content p a {
    font-size: 1rem;
  }
  .resourcing .content .template {
    margin: 40px 0;
  }
  .resourcing .content .template img {
    width: 80%;
    height: auto;
  }
  .resourcing .content h3 {
    font-size: 1.625rem;
  }
  .resourcing .content blockquote {
    padding: 30px 50px;
    margin: 40px 0;
    font-size: 1.0625rem;
  }
  .resourcing .content .cta {
    padding: 40px 25px 40px;
    margin: 40px 0;
  }
  .resourcing .content .cta .title {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }
  .resourcing .content ul {
    margin-bottom: 30px;
  }
  .resourcing .content ul li {
    font-size: 1rem;
  }
  .resourcing .content ul li a {
    font-size: 1rem;
  }
  .resourcing .content ul.featureul li {
    font-size: 1rem;
  }
  .resourcing .content ul.featureul li a {
    font-size: 1rem;
  }
  .resourcing .content .highlights {
    padding: 30px 45px;
    margin: 40px 0;
  }
  .resourcing .content .highlights p {
    font-size: 1.0625rem;
    color: #54536C;
  }
  .resourcing .content .highlights p a {
    font-size: 1.0625rem;
  }
  .resourcing .content .taggroup {
    margin: 40px 0 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .resourcing .content .taggroup .tagtitle {
    margin-bottom: 15px;
  }
  .resourcing .content .videoWrapper {
    margin: 0 auto 40px;
  }
  .relatedBlog {
    padding: 40px 0 30px;
  }
  .relatedBlog .flex h4 {
    font-size: 1.25rem;
  }
  .relatedBlog .flex .blogwrap .blogitem h5 {
    font-size: 1.0625rem;
  }
  footer .slogan {
    font-size: 1.625rem;
  }
  footer ul {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  footer .showMore {
    padding: 0 0 30px;
  }
}

@media screen and (max-width: 579px) {
  footer {
    padding: 50px 0 30px;
  }
  footer .slogan {
    font-size: 1.5rem;
  }
  header #menu li a {
    white-space: unset;
  }
}
/*# sourceMappingURL=stylesheet.css.map */
