@charset "UTF-8";
#snackbar {
  visibility: hidden;
  background-color: #000;
  color: #fff;
  padding: 16px;
  position: fixed;
  z-index: 10;
  left: 45%;
  bottom: 50px;
  font-size: 15px;
  font-family: opensansregular;
}
#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 50px;
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 50px;
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  from {
    bottom: 50px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
@keyframes fadeout {
  from {
    bottom: 50px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
@media (max-width: 766px) {
  #snackbar {
    width: 100%;
    left: 0%;
    text-align: center;
    bottom: 0px;
  }
  #snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }
  @-webkit-keyframes fadein {
    from {
      bottom: -50px;
      opacity: 0;
    }
    to {
      bottom: 0px;
      opacity: 1;
    }
  }
  @keyframes fadein {
    from {
      bottom: -50px;
      opacity: 0;
    }
    to {
      bottom: 0px;
      opacity: 1;
    }
  }
  @-webkit-keyframes fadeout {
    from {
      bottom: 0px;
      opacity: 1;
    }
    to {
      bottom: -50px;
      opacity: 0;
    }
  }
  @keyframes fadeout {
    from {
      bottom: 0px;
      opacity: 1;
    }
    to {
      bottom: -50px;
      opacity: 0;
    }
  }
}
.breadcrumb {
  padding: 10px 0px 30px;
  font-size: 13px;
  line-height: 15px;
}
.breadcrumb .active {
  color: #C23571;
}
.breadcrumb .breadcrumb-item a {
  color: #333333;
}
.breadcrumb .breadcrumb-item a:hover {
  color: #C23571;
}
.breadcrumb .breadcrumb-item a svg {
  vertical-align: top;
}
.breadcrumb .home-mobile {
  padding: 0;
}
.breadcrumb .home-mobile::before {
  display: none;
}

@media (max-width: 767px) {
  .breadcrumb-item + .breadcrumb-item::before {
    float: none !important;
    margin: 0px 7px -3px 0 !important;
  }
  .breadcrumb {
    padding: 10px 0px 0;
    overflow: auto;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .breadcrumb .breadcrumb-item {
    white-space: nowrap;
    line-height: 17px;
  }
  .breadcrumb::-webkit-scrollbar {
    width: 0px;
    height: 0px;
  }
}
.space60 {
  padding: 60px 0;
}

.title-head {
  font-size: 30px;
  line-height: 36px;
  color: #1d1d1d;
  font-family: opensanssemibold;
  text-align: center;
  position: relative;
}
.title-head::after {
  content: "";
  border-bottom: 1px solid #C23571;
  display: block;
  width: 23%;
  margin: 8px auto 0;
}
.title-head:before {
  content: "";
  border-bottom: 5px solid #C23571;
  display: block;
  width: 40px;
  position: absolute;
  bottom: -2px;
  left: 49%;
}
.title-head .title-subhead {
  font-size: 16px;
  line-height: 18px;
  font-family: opensansregular;
  display: block;
  padding: 6px 0 0;
}

.common-btn {
  background: #FFBE00;
  padding: 9px 26px;
  border-radius: 3px;
  font-size: 20px;
  line-height: 25px;
  font-family: opensanssemibold;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #1d1d1d;
}
.common-btn:hover {
  background: #ffc827;
}

.testimonial .testimonial-slider {
  padding: 20px 0 0;
  width: 88%;
  margin: auto;
}
.testimonial .testimonial-slider .slick-next {
  right: -30px;
}
.testimonial .testimonial-box {
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 25px;
  margin: 45px 15px 5px 5px;
  color: #1d1d1d;
}
.testimonial .testimonial-box .quote {
  width: 50px;
  height: 50px;
  background: #C23571;
  margin: -55px auto 20px;
}
.testimonial .testimonial-box .quote svg {
  margin: 12px;
}
.testimonial .testimonial-box .content {
  font-size: 15px;
  line-height: 20px;
  font-family: opensansregular;
  color: #333333;
  height: 102px;
  overflow: overlay;
}
.testimonial .testimonial-box .content::-webkit-scrollbar {
  width: 0px;
}
.testimonial .testimonial-box .content:hover::-webkit-scrollbar {
  width: 1px;
}
.testimonial .testimonial-box .content:hover::-webkit-scrollbar-thumb {
  background: #C23571;
}
.testimonial .testimonial-box .username {
  font-size: 16px;
  line-height: 19px;
  font-family: opensanssemibold;
}
.testimonial .testimonial-box .user-city {
  font-size: 14px;
  line-height: 18px;
  color: #2a2a2a;
}
.testimonial .testimonial-box .rating .rating-star, .testimonial .testimonial-box .rating .rating-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  background: url(../images/rating-star.svg) no-repeat;
  background-size: 14px;
  margin: 0 1px;
}

.common-order-strip {
  color: #1d1d1d;
  background: #f5f5f5;
  padding: 40px 0 0;
}
.common-order-strip .container {
  position: relative;
}
.common-order-strip .container .position-relative {
  position: relative;
}
.common-order-strip .strip-title {
  font-size: 30px;
  line-height: 34px;
  font-family: opensanssemibold;
}
.common-order-strip .strip-subtitle {
  font-size: 16px;
  line-height: 20px;
  color: #1d1d1d;
}
.common-order-strip .btns {
  width: 60%;
  padding: 35px 0 50px;
}
.common-order-strip .btns .review-btn {
  font-size: 20px;
  line-height: 27px;
  color: #2a2a2a;
  padding: 8px 20px;
  border: 1px solid #d8d8d8;
  border-radius: 3px;
  margin: 0 0 0 20px;
  font-family: opensanssemibold;
  background: #fff;
}
.common-order-strip .btns::before, .common-order-strip .btns:after {
  content: "";
  position: absolute;
  background: url(../images/home-orderstrip1.svg) no-repeat;
  width: 96px;
  height: 112px;
  left: 0;
  bottom: 0;
}
.common-order-strip .btns::after {
  background: url(../images/home-orderstrip2.svg) no-repeat;
  width: 132px;
  height: 112px;
  left: inherit;
  right: 0;
}
.common-order-strip .btns::before {
  left: 0;
}

@media (max-width: 1024px) {
  .common-order-strip .btns {
    width: 85%;
  }
}
@media (max-width: 768px) {
  .common-btn {
    font-size: 18px;
    padding: 7px 18px;
  }
  .space60 {
    padding: 30px 0;
  }
  .title-head {
    font-size: 26px;
    line-height: 30px;
  }
  .testimonial .testimonial-box {
    padding: 15px;
  }
  .testimonial .testimonial-box .quote {
    margin: -39px auto 13px;
  }
  .common-order-strip .strip-title {
    font-size: 22px;
    line-height: 26px;
  }
  .common-order-strip .btns {
    width: 100%;
  }
  .common-order-strip .btns .review-btn {
    font-size: 18px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .common-btn {
    font-size: 17px;
    line-height: 21px;
  }
  .title-head {
    font-size: 20px;
    line-height: 22px;
  }
  .title-head::after {
    width: 55%;
  }
  .title-head::before {
    left: 45%;
  }
  .title-head .title-subhead {
    font-size: 14px;
    line-height: 16px;
  }
  .space60 {
    padding: 25px 0;
  }
  .testimonial .testimonial-slider {
    width: 100%;
    padding: 20px 0 25px;
  }
  .testimonial .testimonial-box {
    margin: 45px 5px 5px 5px;
  }
  .common-order-strip {
    padding: 25px 12px 0;
    border-top: 1px solid #d8d8d8;
  }
  .common-order-strip svg {
    width: 50px;
    height: 50px;
  }
  .common-order-strip .strip-title {
    font-size: 20px;
    line-height: 23px;
  }
  .common-order-strip .strip-subtitle {
    font-size: 15px;
    line-height: 17px;
    padding: 5px 0 0;
  }
  .common-order-strip .btns {
    padding: 30px 0 26px;
  }
  .common-order-strip .btns:before {
    background-size: 69px;
    background-position: bottom left;
    width: 82px;
  }
  .common-order-strip .btns::after {
    background-size: 88px;
    width: 86px;
    background-position: bottom right;
    right: -11px;
    bottom: 0;
  }
  .common-order-strip .btns .review-btn {
    font-size: 17px;
    line-height: 20px;
    margin: 20px 0 0;
    padding: 6px 15px;
  }
  .common-order-strip .btns .common-btn {
    padding: 6px 37px;
    margin: 0 auto;
    display: block;
  }
  .common-order-strip .container {
    padding: 0;
  }
}
body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.fancybox-bg,
.fancybox-inner,
.fancybox-outer,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  -webkit-transition-duration: inherit;
          transition-duration: inherit;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
          transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
          transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-caption,
.fancybox-infobar,
.fancybox-navigation .fancybox-button,
.fancybox-toolbar {
  direction: ltr;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-caption .fancybox-caption,
.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-nav .fancybox-navigation .fancybox-button,
.fancybox-show-toolbar .fancybox-toolbar {
  opacity: 1;
  -webkit-transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 10px;
  position: absolute;
  text-align: center;
  top: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide:before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--current,
.fancybox-slide--next,
.fancybox-slide--previous {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image:before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: visible;
  -webkit-overflow-scrolling: touch;
  padding: 5px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
          animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.fancybox-can-pan .fancybox-content,
.fancybox-can-swipe .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--iframe .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--video .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-iframe,
.fancybox-video {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:link,
.fancybox-button:visited {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--fsenter svg:nth-child(2),
.fancybox-button--fsexit svg:first-child,
.fancybox-button--pause svg:first-child,
.fancybox-button--play svg:nth-child(2) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0;
          transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  z-index: 99998;
}

.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: 0;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  width: 34px;
  height: 34px;
  right: -40px;
  padding: 0;
  color: #fff;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  /*left: env(safe-area-inset-left);*/
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  /*right: env(safe-area-inset-right)*/
}

.fancybox-caption {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, rgba(0, 0, 0, 0.85)), color-stop(50%, rgba(0, 0, 0, 0.3)), color-stop(65%, rgba(0, 0, 0, 0.15)), color-stop(75.5%, rgba(0, 0, 0, 0.075)), color-stop(82.85%, rgba(0, 0, 0, 0.037)), color-stop(88%, rgba(0, 0, 0, 0.019)), to(transparent));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, transparent);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px 44px 25px 44px;
  }
}
.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

.fancybox-loading {
  -webkit-animation: a 1s linear infinite;
          animation: a 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@-webkit-keyframes a {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes a {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}
.fancybox-animated {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
          transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.fancybox-fx-fade.fancybox-slide--next,
.fancybox-fx-fade.fancybox-slide--previous {
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
          transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
          transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: rotate(-1turn);
          transform: rotate(-1turn);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: rotate(1turn);
          transform: rotate(1turn);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
          transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
          transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scaleX(1) translateZ(0);
          transform: scaleX(1) translateZ(0);
}

.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
          transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
          transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translateZ(0) scale(1);
          transform: translateZ(0) scale(1);
}

@media (max-width: 1024px) {
  .fancybox-content video {
    width: 900px;
  }
}
@media (max-width: 768px) {
  .fancybox-content video {
    width: 670px;
  }
}
@media (max-height: 576px) {
  .fancybox-content {
    max-width: 100%;
    padding: 16px;
  }
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }
  .fancybox-slide--image {
    padding: 6px 0;
  }
  .fancybox-close-small {
    right: -6px;
  }
  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }
  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }
  @supports (padding: max(0px)) {
    .fancybox-caption {
      padding-left: 12px;
      padding-right: 12px;
    }
  }
  .fancybox-content video {
    width: 100%;
  }
}
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:link,
.fancybox-share__button:visited {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a:before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus:before {
  opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active:before {
  opacity: 1;
}

@media (max-width: 767px) {
  .fancybox-content video {
    width: 100%;
  }
  .fancybox-content .fancybox-close-small {
    right: 0;
    top: -34px;
  }
}
@media (max-width: 576px) {
  video {
    width: 100%;
  }
  .fancybox-thumbs {
    width: 110px;
  }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

::-moz-placeholder {
  color: #707070 !important;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #172C6D;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

html {
  line-height: normal; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

abbr, address, article, aside, audio, blockquote, body, body div, caption, cite, code, dd, del, dfn, dl, dt, em, fieldset, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p, pre, q, samp, section, small, span, strong, sub, sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

body {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
  line-height: 20px;
  font-family: opensansregular;
  -webkit-overflow-scrolling: touch;
  -webkit-animation: none 0s ease 0s 1 normal none running;
          animation: none 0s ease 0s 1 normal none running;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

blockquote {
  margin: 0;
}

article, aside, footer, header, nav, section {
  display: block;
}

h1, h2, h3, h4, h5, strong {
  padding: 0;
  margin: 0px 0px;
  font-weight: normal;
}

figcaption, figure, main { /* 1 */
  display: block;
}

figure {
  margin: 0px;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

b, strong {
  font-weight: inherit;
  font-family: opensanssemibold;
}

code, kbd, samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

audio, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img {
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

button, input, optgroup, select, textarea {
  font-family: opensansregular; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
  -webkit-appearance: none;
}

button, input { /* 1 */
  overflow: visible;
  border: none;
  background: none;
}

button, select { /* 1 */
  text-transform: none;
}

button, html [type=button], [type=reset], [type=submit] {
  -webkit-appearance: none; /* 2 */
}

button::-moz-focus-inner, [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring, [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
  -webkit-appearance: checkbox;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

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

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

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

details, menu {
  display: block;
}

summary {
  display: list-item;
}

canvas {
  display: inline-block;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

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

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

p {
  margin: 0;
  padding: 0;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.clearfix:after, .clearfix:before {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}

.clear, .clearfix:after {
  clear: both;
}

.slick-dots li button {
  background: none;
  border: 0;
  outline: 0;
}

.slick-prev, .slick-next {
  font-size: 0;
  position: absolute;
  top: 46%;
  display: block;
  padding: 0;
  cursor: pointer;
  border: none;
  outline: none;
  background: 0 0;
  left: -42px;
}
.slick-prev:before, .slick-next:before {
  content: "";
  background: url(../images/CaretLeft.svg) no-repeat;
  width: 30px;
  height: 32px;
  background-size: 40px;
  display: block;
  margin: auto;
}

.slick-next {
  right: -17px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  left: inherit;
  top: 48%;
}

input, select, textarea {
  width: 100%;
  height: 44px;
  background: #fff;
  padding: 0 10px;
  font-size: 14px;
  line-height: 20px;
  color: #616161;
  border: 1px solid #D8D8D8;
  border-radius: 0;
}

input {
  padding: 0 25px 0 10px;
}

select {
  padding: 0 24px 0 10px;
  border: 1px solid #ced4da;
  border-radius: 2px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #FFFFFF url(../images/down-arrow.svg) no-repeat center right 8px;
}

.srtip01 {
  background: url(../images/strip-bg.jpg) no-repeat center top/cover;
  position: relative;
  background-size: cover;
  height: 299px;
  margin: 0 0 15px;
}
.srtip01 .heading {
  width: 220px;
  height: 220px;
  font-family: opensanssemibold;
  text-align: center;
  padding: 65px 10px 0;
  background: #fff;
  border: solid 3px #c33571;
  color: #000;
  float: left;
  border-radius: 50%;
  font-size: 23px;
  margin: 40px 0 0 20px;
  line-height: 30px;
}
.srtip01 .heading strong {
  font-size: 35px;
  font-family: opensanssemibold;
  display: inline-block;
  line-height: 45px;
}
.srtip01 ul {
  float: right;
  margin-right: 1px;
  padding: 10% 0;
}
.srtip01 ul li {
  list-style: none !important;
  font-size: 18px !important;
  padding: 5px 20px !important;
  background: #1477a1;
  -webkit-border-top-left-radius: 50px;
  -webkit-border-bottom-left-radius: 50px;
  -moz-border-radius-topleft: 50px;
  -moz-border-radius-bottomleft: 50px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  margin: 7px 0 !important;
  padding-left: 12px !important;
}
.srtip01 ul li a {
  color: #fff !important;
  font-family: opensanssemibold;
  text-decoration: none;
  background: url(../images/strip01-bullets.png) left no-repeat;
  padding-left: 25px;
  text-align: left;
}
.srtip01 ul li + li {
  background: #b32c66;
}
.srtip01 ul li + li + li {
  background: #d86628;
}

.srtip02 {
  background: url(../images/strip02.jpg) center no-repeat;
  position: relative;
  background-size: cover;
  display: inline-block;
  width: 100%;
}
.srtip02 .srtip02-block {
  background: #000;
  color: #fff;
  padding: 10px;
  width: 42%;
  text-align: center;
  float: right;
}
.srtip02 .srtip02-block a {
  color: #fff !important;
}
.srtip02 .srtip02-block .heading {
  color: #e65453;
  font-size: 38px;
  line-height: 40px;
  font-family: medula one, cursive;
  padding: 0 0 8px;
}
.srtip02 .srtip02-block p {
  color: #fff !important;
  text-align: center !important;
}
.srtip02 .srtip02-block ul {
  display: inline-block;
}
.srtip02 .srtip02-block ul li {
  border-radius: 2px;
  background: #ebebeb;
  padding: 6px 15px !important;
  text-align: left;
  margin: 0 0 10px 0 !important;
  list-style: none !important;
}
.srtip02 .srtip02-block ul li a {
  color: #272727 !important;
  background: url(../images/strip-bullet.png) no-repeat;
  padding: 0 20px 0 0;
  background-position: right;
  display: block;
}
.srtip02 .srtip02-block ul .act1 {
  background: #e65453;
  text-align: center;
}
.srtip02 .srtip02-block ul .act1 a {
  color: #fff !important;
  background: none;
}

.srtip03 {
  width: 100%;
  height: 263px;
  border: 5px solid #f1f1f1;
  background: url(../images/strip03.jpg) center/cover no-repeat;
  background-size: cover;
  position: relative;
  margin: 0 0 15px;
}
.srtip03 p {
  text-align: center !important;
}
.srtip03 .srtip03-block {
  position: absolute;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 52px 10px 53px;
  width: 40%;
  text-align: center;
}
.srtip03 .srtip03-block .heading {
  color: #fff;
  font-size: 38px;
  padding: 0 0 10px;
  font-family: "Medula One", cursive;
}
.srtip03 .srtip03-block p {
  color: #fff !important;
  font-size: 13px !important;
  line-height: 20px;
  font-family: arial !important;
  padding: 0 !important;
  margin: 0;
  text-align: center;
}
.srtip03 .srtip03-block p a {
  color: #fff;
  text-decoration: none;
}
.srtip03 .srtip03-block p a:hover {
  color: #bf1b11;
}
.srtip03 .srtip03-block .getp {
  line-height: 35px;
  height: 35px;
  border-radius: 2px;
  background-color: #bf1b11;
  list-style: none;
  font-family: arial;
  width: 50%;
  margin: 10px auto 0;
  font-size: 14px;
}
.srtip03 .srtip03-block .getp a {
  color: #fff;
  text-decoration: none;
}

.srtip04, .srtip02_3 {
  background: url(../images/strip04.jpg) no-repeat;
  background-size: cover;
}
.srtip04 .srtip02-block .heading, .srtip02_3 .srtip02-block .heading {
  color: #fac5e3;
}
.srtip04 .srtip02-block ul li, .srtip02_3 .srtip02-block ul li {
  padding: 6px 15px;
}
.srtip04 .srtip02-block ul .act1, .srtip02_3 .srtip02-block ul .act1 {
  background: #ca2470;
}
.srtip04 .srtip02-block ul .act1 a, .srtip02_3 .srtip02-block ul .act1 a {
  padding: 0;
}

.srtip05, .srtip02_1 {
  background: url(../images/strip5.jpg) no-repeat;
  background-size: 68%;
}
.srtip05 .srtip02-block .heading, .srtip02_1 .srtip02-block .heading {
  color: #b8ebdf;
}
.srtip05 .srtip02-block ul li, .srtip02_1 .srtip02-block ul li {
  padding: 6px 15px;
}
.srtip05 .srtip02-block ul li a, .srtip02_1 .srtip02-block ul li a {
  background: url(../images/strip-bullets2.png) no-repeat;
  background-position: right;
}
.srtip05 .srtip02-block ul .act1, .srtip02_1 .srtip02-block ul .act1 {
  background: #2bbcad;
}
.srtip05 .srtip02-block ul .act1 a, .srtip02_1 .srtip02-block ul .act1 a {
  padding: 0;
}

.srtip6, .srtip02_2 {
  background: url(../images/strip6.jpg) no-repeat;
  background-size: 58%;
}
.srtip6 .srtip02-block .heading, .srtip02_2 .srtip02-block .heading {
  color: #fae9d9;
}
.srtip6 .srtip02-block ul li, .srtip02_2 .srtip02-block ul li {
  padding: 6px 15px;
}
.srtip6 .srtip02-block ul li a, .srtip02_2 .srtip02-block ul li a {
  background: url(../images/strip-bullets3.png) no-repeat;
  background-position: right;
}
.srtip6 .srtip02-block ul .act1, .srtip02_2 .srtip02-block ul .act1 {
  background: #cf8b68;
}
.srtip6 .srtip02-block ul .act1 a, .srtip02_2 .srtip02-block ul .act1 a {
  padding: 0;
}

.newconversationstrip img {
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.newconversationstrip .stripdesktop {
  display: block;
}
.newconversationstrip .stripmobile {
  display: none;
}

.app-strip {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #ffe9f3), color-stop(50%, #c23571));
  background-image: linear-gradient(to right, #ffe9f3 50%, #c23571 50%);
}
.app-strip img {
  width: 100%;
  height: 100%;
}

.app-strip-home {
  background: url(../images/app-strip.jpg) no-repeat;
  padding: 35px 0;
  background-size: cover;
}
.app-strip-home::after {
  content: "";
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.app-strip-home .container {
  z-index: 1;
}
.app-strip-home .strip-title {
  font-size: 38px;
  line-height: 40px;
  color: #fff;
  font-family: opensanssemibold;
}
.app-strip-home .strip-title span {
  color: #FFBE00;
}
.app-strip-home .strip-subtitle {
  color: #fff;
  font-size: 20px;
  line-height: 24px;
}
.app-strip-home .download-btn {
  color: #FFBE00;
  text-decoration: underline;
  font-size: 16px;
  line-height: 18px;
  margin: 25px 0 8px;
}
.app-strip-home .app-icon img {
  width: 100%;
  height: 100%;
}

/*guarantee_strip*/
.guarantee_strip {
  margin: 15px 0;
  color: #fff;
  border-radius: 5px;
  background: url(../images/guarantee_strip.jpg) no-repeat left bottom;
  padding: 30px 30px 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-size: cover;
}
.guarantee_strip p {
  font-size: 35px;
  font-family: opensanssemibold;
  line-height: 38px;
  text-align: left;
}
.guarantee_strip .odr_btn {
  font-size: 14px;
  background: #FED442;
  color: #000 !important;
  padding: 5px 30px;
  font-family: opensanssemibold;
  display: inline-block;
  margin-top: 20px;
}
.guarantee_strip .left_title {
  width: 55%;
}
.guarantee_strip .left_title p {
  font-size: 35px !important;
  font-family: opensanssemibold !important;
  line-height: 38px !important;
  color: #fff !important;
  text-align: left !important;
}
.guarantee_strip ul li {
  font-size: 18px !important;
  padding: 10px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6196078431);
  margin: 0;
  color: #fff !important;
}
.guarantee_strip ul li:last-child {
  border-bottom: 0;
}
.guarantee_strip ul li:before {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  background: url(../images/right-yellow.svg) no-repeat;
  margin-right: 10px;
}

/*discount_strip*/
.discount_strip {
  margin: 15px 0;
  color: #fff;
  border-radius: 5px;
  background: url(../images/discount_bg.jpg) no-repeat left bottom;
  text-align: center;
  padding: 20px 0;
}
.discount_strip span {
  font-size: 22px;
  font-family: opensanssemibold;
  padding: 0 0 15px;
  display: block;
}
.discount_strip p {
  font-size: 20px !important;
  padding: 0;
  text-align: center !important;
  color: #fff !important;
}
.discount_strip p strong {
  color: #FFDD00;
  font-family: opensanssemibold;
  font-weight: normal;
}
.discount_strip .odr_btn {
  font-size: 16px;
  background: #FFDD00;
  color: #000;
  padding: 9px 30px;
  font-family: opensanssemibold;
  display: inline-block;
  border-radius: 3px;
}

.commn-strip {
  background: #fff;
  text-align: center;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  padding: 10px;
  margin: 15px 0;
}
.commn-strip .box {
  border: 2px solid #d11c73;
  padding: 40px;
  border-radius: 8px;
  position: relative;
}
.commn-strip .box::before {
  content: "";
  background: url(../images/pen-tip.svg) no-repeat;
  width: 60px;
  height: 60px;
  position: absolute;
  top: -2px;
  left: -3px;
}
.commn-strip .strip9-text {
  color: #0c0c0c !important;
  text-align: center;
  font-size: 30px !important;
  line-height: 34px !important;
  font-family: opensanssemibold;
  padding: 0 0 24px 0 !important;
}
.commn-strip .strip9-text span {
  color: #d11c73;
}
.commn-strip .btn-strip9 {
  font-size: 13px;
  line-height: 15px;
  border-radius: 4px;
  outline: 1px solid #d11c73;
  border: 2px solid #fff;
  color: #d11c73;
  padding: 8px 40px;
  background-color: #fae8f1;
  margin: 0 40px 0 0;
  display: inline-block;
}
.commn-strip .btn-strip9:last-child {
  margin: 0;
}
.commn-strip .btn-strip9:hover {
  background: rgb(194, 53, 113);
  color: #fff !important;
}

.tool-strip {
  background: url("../images/tool-1.png") no-repeat;
  text-align: center;
  padding: 40px;
  background-size: 100%;
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin: 15px 0;
}
.tool-strip .strip9-text {
  color: #0c0c0c !important;
  text-align: center;
  font-size: 28px !important;
  line-height: 32px !important;
  font-family: opensanssemibold;
  padding: 0 0 24px 0 !important;
}
.tool-strip .strip9-text strong, .tool-strip .strip9-text span {
  font-size: 30px !important;
  line-height: 34px !important;
}
.tool-strip .strip9-text span {
  color: #d11c73;
}
.tool-strip .strip9-text::after {
  content: "";
  background-color: #d11c73;
  height: 3px;
  width: 126px;
  margin: 5px auto 0;
  display: block;
}
.tool-strip .btn-strip9 {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  font-size: 12px;
  line-height: 15px;
  border-radius: 8px;
  border: 2px solid #fff;
  color: #fff !important;
  padding: 10px 30px;
  background-color: rgb(200, 42, 109);
  margin: 0 13px 0 0;
  display: inline-block;
}
.tool-strip .btn-strip9:last-child {
  margin: 0;
}
.tool-strip .btn-strip9:hover {
  background: rgb(220, 19, 104);
  color: #c23571;
}

@media (max-width: 1024px) {
  .commn-strip .box {
    padding: 30px;
  }
  .commn-strip .strip9-text {
    font-size: 28px !important;
    line-height: 32px !important;
  }
  .commn-strip .btn-strip9 {
    padding: 8px 30px;
    margin: 0 25px 0 0;
  }
  .tool-strip {
    padding: 25px;
  }
  .tool-strip .strip9-text {
    font-size: 25px !important;
    line-height: 28px !important;
  }
  .tool-strip .strip9-text strong, .tool-strip .strip9-text span {
    font-size: 28px !important;
    line-height: 32px !important;
  }
  .tool-strip .btn-strip9 {
    padding: 10px 15px;
    margin: 0px 15px 0 0;
  }
}
@media (max-width: 768px) {
  .srtip01 {
    height: 245px;
  }
  .srtip01 .heading {
    margin: 25px 0 0 20px;
    width: 180px;
    height: 180px;
    padding: 48px 10px 0;
    font-size: 20px;
    line-height: 24px;
  }
  .srtip02 .srtip02-block {
    width: 55%;
  }
  .srtip02 .srtip02-block .heading {
    font-size: 35px;
    line-height: 34px;
  }
  .srtip03 {
    height: 250px;
  }
  .srtip03 .srtip03-block {
    padding: 62px 10px 62px;
    width: 54%;
  }
  .app-strip-home {
    padding: 15px 0;
  }
  .app-strip-home .strip-title {
    font-size: 30px;
    line-height: 34px;
  }
  .app-strip-home .strip-subtitle {
    font-size: 18px;
    line-height: 20px;
  }
  .guarantee_strip {
    background-position: left;
    background-size: cover;
    padding: 20px;
  }
  .guarantee_strip p {
    font-size: 20px;
  }
  .guarantee_strip .odr_btn {
    font-size: 13px;
  }
  .guarantee_strip ul li {
    font-size: 13px !important;
    line-height: normal;
    margin: 0;
  }
  .discount_strip {
    padding: 20px 10px;
  }
  .commn-strip .btn-strip9 {
    padding: 5px 14px;
    margin: 0 10px 0 0;
  }
  .commn-strip br {
    display: none;
  }
  .commn-strip .box {
    padding: 25px;
  }
  .commn-strip .strip9-text {
    font-size: 25px !important;
    line-height: 28px !important;
    padding: 0 0 18px 0 !important;
  }
  .tool-strip .btn-strip9 {
    padding: 10px 15px;
    margin: 0px 5px 0 0;
  }
  .tool-strip .btn-strip9:nth-child(4), .tool-strip .btn-strip9:last-child {
    margin: 10px 5px 0 0;
  }
  .tool-strip .strip9-text {
    font-size: 20px !important;
    line-height: 24px !important;
    padding: 0 0 18px 0 !important;
  }
  .tool-strip .strip9-text strong, .tool-strip .strip9-text span {
    font-size: 22px !important;
    line-height: 26px !important;
  }
}
@media (max-width: 767px) {
  .srtip01 {
    height: 285px;
  }
  .srtip01 .heading {
    width: 120px;
    height: 120px;
    padding: 33px 10px 0;
    font-size: 14px;
    line-height: 16px;
    margin: 10px 0 0 10px;
  }
  .srtip01 ul {
    float: none;
    margin: 0;
    padding: 0;
  }
  .srtip01 ul li {
    margin-left: 10px;
    float: right;
    width: 66%;
    display: block;
    font-size: 16px;
  }
  .srtip01 ul li + li + li {
    display: block;
  }
  .srtip02 {
    background: none;
  }
  .srtip02 .srtip02-block {
    width: 100%;
  }
  .srtip02 .srtip02-block ul li {
    padding: 6px 25px !important;
    display: inline-block;
  }
  .srtip02 .srtip02-block ul .act1 {
    display: block;
  }
  .srtip02 .srtip02-block ul .act1 a {
    padding: 0 !important;
  }
  .srtip03 {
    width: 100%;
    height: 170px;
  }
  .srtip03 .srtip03-block {
    width: 100%;
    height: 100%;
    padding: 20px;
  }
  .srtip03 .srtip03-block .heading {
    font-size: 32px;
    line-height: 34px;
  }
  .srtip03 .srtip03-block p {
    color: #fff !important;
  }
  .newconversationstrip img {
    width: 100%;
    height: 100%;
  }
  .newconversationstrip .stripdesktop {
    display: none;
  }
  .newconversationstrip .stripmobile {
    display: block;
  }
  .app-strip {
    background: none;
  }
  .app-strip .container {
    padding: 0;
  }
  .app-strip-home {
    padding: 25px 0;
  }
  .app-strip-home .strip-title {
    font-size: 25px;
    line-height: 28px;
  }
  .app-strip-home .strip-subtitle {
    font-size: 14px;
    line-height: 16px;
  }
  .app-strip-home .download-btn {
    margin: 20px 0 6px;
  }
  .guarantee_strip {
    padding: 15px 10px;
    background: #c92a62;
  }
  .guarantee_strip .odr_btn {
    padding: 5px 8px;
    margin-top: 10px;
    font-size: 14px;
    line-height: 16px;
  }
  .guarantee_strip .left_title {
    width: 40%;
  }
  .guarantee_strip .left_title p {
    font-size: 20px !important;
    line-height: 22px !important;
    text-align: left !important;
    margin: 0 !important;
  }
  .guarantee_strip ul li {
    color: #fff !important;
    padding: 5px 0 !important;
  }
  .guarantee_strip ul li:before {
    margin-right: 5px;
  }
  .discount_strip {
    background: #1f6692;
  }
  .discount_strip span {
    font-size: 18px;
    line-height: 20px;
    padding: 0 0 8px;
  }
  .discount_strip p {
    font-size: 15px !important;
    margin: 3px 0 10px 0;
  }
  .discount_strip .odr_btn {
    padding: 6px 20px;
  }
  .commn-strip {
    margin: 10px 0;
  }
  .commn-strip .box {
    padding: 10px;
  }
  .commn-strip .strip9-text {
    font-size: 18px !important;
    line-height: 22px !important;
    padding: 0 0 10px 0 !important;
  }
  .commn-strip .btn-strip9 {
    padding: 5px 10px;
    margin: 0 6px 0 0;
  }
  .commn-strip .btn-strip9:last-child {
    margin: 10px 0px 0px 0;
  }
  .tool-strip {
    padding: 10px;
    margin: 10px 0;
  }
  .tool-strip .strip9-text {
    font-size: 18px !important;
    line-height: 22px !important;
    padding: 0 0 10px 0 !important;
  }
  .tool-strip .strip9-text::after {
    width: 83px;
  }
  .tool-strip .strip9-text span, .tool-strip .strip9-text strong {
    font-size: 20px !important;
    line-height: 24px !important;
  }
  .tool-strip .btn-strip9 {
    padding: 10px 9px;
  }
  .tool-strip .btn-strip9:nth-child(4), .tool-strip .btn-strip9:last-child {
    margin: 5px 5px 0 0;
  }
}
.rightbar-common-box {
  border-radius: 5px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin: 20px 0 0;
}
.rightbar-common-box .box-head {
  background: #333333;
  border-radius: 5px 5px 0px 0px;
  font-size: 18px;
  line-height: 22px;
  font-family: opensanssemibold;
  color: #f6d20a;
  padding: 10px 15px;
}
.rightbar-common-box .box-head s {
  color: #fff;
}
.rightbar-common-box .others {
  max-height: 269px;
  overflow: auto;
}
.rightbar-common-box.sticky {
  position: fixed;
  width: 349.91px;
  top: 108px;
}
.rightbar-common-box.free-feature.sticky {
  width: 325px;
}
.rightbar-common-box .list {
  padding: 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 14px;
  line-height: 18px;
}
.rightbar-common-box .list .name {
  font-family: opensanssemibold;
  color: #2a2a2a;
}
.rightbar-common-box .list .value {
  font-family: opensansregular;
  color: #333333;
  text-decoration: line-through;
}
.rightbar-common-box .list:nth-child(even) {
  background: #f5f5f5;
}
.rightbar-common-box .price {
  padding: 30px 0 20px;
}
.rightbar-common-box .price .content {
  color: #333333;
  font-size: 16px;
  line-height: 18px;
}
.rightbar-common-box .price .prices {
  color: #2db261;
  font-size: 28px;
  line-height: 32px;
  font-family: opensanssemibold;
}
.rightbar-common-box .price .start-btn {
  background: #ffbe00;
  border-radius: 3px;
  padding: 5px;
  color: #1d1d1d;
  font-size: 18px;
  line-height: 22px;
  font-family: opensanssemibold;
  width: 50%;
  cursor: pointer;
}
.rightbar-common-box .price .start-btn:hover {
  background: #eebe2d;
}
.rightbar-common-box .tool-list {
  padding: 15px 15px 20px;
}
.rightbar-common-box .tool-list p {
  cursor: inherit !important;
}
.rightbar-common-box .tool-list p:hover {
  color: #333333 !important;
}
.rightbar-common-box .tool-list p:hover:before {
  background: #333333 !important;
  border: 1px solid #333333 !important;
  background-clip: content-box !important;
}
.rightbar-common-box .tool-list a, .rightbar-common-box .tool-list p {
  color: #333333;
  font-size: 15px;
  line-height: 18px;
  padding: 0 0 10px;
  display: block;
  cursor: pointer;
}
.rightbar-common-box .tool-list a:last-child, .rightbar-common-box .tool-list p:last-child {
  padding: 0;
}
.rightbar-common-box .tool-list a::before, .rightbar-common-box .tool-list p::before {
  width: 12px;
  height: 12px;
  margin: 0 8px 0px 0px;
  background: #333333;
  border-radius: 100%;
  padding: 2px;
  position: relative;
  background-clip: content-box;
  border: 1px solid #333333;
  content: "";
  display: inline-block;
}
.rightbar-common-box .tool-list a:hover, .rightbar-common-box .tool-list p:hover {
  color: #C23571;
}
.rightbar-common-box .tool-list a:hover:before, .rightbar-common-box .tool-list p:hover:before {
  background: #C23571;
  border: 1px solid #C23571;
  background-clip: content-box;
}
.rightbar-common-box .blog-list {
  padding: 15px;
  border-bottom: 1px solid #d8d8d8;
}
.rightbar-common-box .blog-list img {
  width: 100%;
  height: 142px;
}
.rightbar-common-box .blog-list .blog-list-img {
  height: 142px;
  display: block;
}
.rightbar-common-box .blog-list .blog-title {
  color: #333333;
  font-size: 16px;
  line-height: 18px;
  font-family: opensanssemibold;
}
.rightbar-common-box .blog-list .schedule {
  margin: 5px 0 0;
}
.rightbar-common-box .blog-list .schedule p {
  color: #777777;
  font-family: opensanssemibold;
  font-size: 14px;
  line-height: 16px;
  display: inline-block;
}
.rightbar-common-box .blog-list .schedule p::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #777777;
  border-radius: 50%;
  font-size: 24px;
  display: inline-block;
  margin: 0 8px;
  vertical-align: baseline;
}
.rightbar-common-box .blog-list .schedule p:last-of-type::after {
  display: none;
}
.rightbar-common-box .view-all {
  color: #C23571;
  font-size: 18px;
  line-height: 22px;
  font-family: opensanssemibold;
  text-decoration: underline;
  padding: 20px;
}
.rightbar-common-box .price-cal {
  padding: 20px 15px;
}
.rightbar-common-box .price-cal .price-start {
  color: #2a2a2a;
  font-size: 15px;
  line-height: 18px;
}
.rightbar-common-box .price-cal .value {
  color: #2db261;
  font-size: 28px;
  line-height: 32px;
  font-family: opensanssemibold;
  margin: 0 0 15px;
}
.rightbar-common-box .price-cal .value .amount {
  font-size: 38px;
  line-height: 42px;
}
.rightbar-common-box .price-cal .value .offerPrice {
  font-size: 38px;
  line-height: 42px;
}
.rightbar-common-box .price-cal .select-box {
  margin: 0 0 15px;
}
.rightbar-common-box .price-cal .footer-line {
  color: #333333;
  font-size: 13px;
  line-height: 16px;
}

.rating-section {
  background: url(../images/young-students-classroom.png);
  height: 100%;
  width: 100%;
  z-index: 0;
  background-size: cover;
  position: relative;
  margin: 0 0 20px;
}
.rating-section .text-rate {
  z-index: 1;
  text-align: center;
  padding: 20px 5px;
  color: #fff;
  height: 100%;
  width: 100%;
}
.rating-section:after {
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(34, 34, 34, 0.87);
  position: absolute;
  top: 0;
  left: 0;
}
.rating-section .rate-head {
  font-size: 26px;
  line-height: 37px;
  font-family: opensanssemibold;
  color: #ffbf0b;
}
.rating-section .rate-subhead {
  font-size: 18px;
  line-height: 22px;
  padding: 0 0 20px;
  display: inline-block;
}
.rating-section .common-text {
  display: block;
  font-size: 15px;
  line-height: 21px;
  font-style: italic;
}
.rating-section .theme-color {
  color: #ffbf0b;
}
.rating-section .order-btns {
  font-size: 15px;
  line-height: 18px;
  background: #ffbf0b;
  padding: 10px 24px;
  margin: 15px 0 0;
  display: inline-block;
  border-radius: 3px;
  color: #000;
  font-family: opensanssemibold;
}

@media (max-width: 1366px) {
  .rightbar-common-box.sticky {
    width: 301.31px;
  }
  .rightbar-common-box.free-feature.sticky {
    width: 280px;
  }
}
@media (max-width: 1024px) {
  .rightbar-common-box.sticky {
    width: 309.75px;
    top: 93px;
  }
  .rightbar-common-box.free-feature.sticky {
    width: 291.95px;
  }
}
@media (max-width: 768px) {
  .rating-section .rate-head {
    font-size: 20px;
    line-height: 25px;
  }
  .rating-section .rate-subhead {
    font-size: 16px;
    line-height: 18px;
    padding: 0 0 10px;
  }
  .rightbar-common-box.sticky {
    top: 85px;
    width: 246.83px;
  }
  .rightbar-common-box.free-feature.sticky {
    width: 254px;
  }
  .rightbar-common-box .box-head {
    font-size: 16px;
    line-height: 20px;
    padding: 8px 12px;
  }
  .rightbar-common-box .price-cal {
    padding: 15px 10px;
  }
  .rightbar-common-box .price-cal .value {
    font-size: 22px;
    line-height: 25px;
    margin: 0px 0 10px;
  }
  .rightbar-common-box .price-cal .value .amount {
    font-size: 34px;
    line-height: 38px;
  }
  .rightbar-common-box select {
    height: 38px;
  }
  .rightbar-common-box .tool-list {
    padding: 15px 10px 15px;
  }
  .rightbar-common-box .tool-list a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .rightbar-common-box .blog-list {
    padding: 10px;
  }
  .rightbar-common-box .view-all {
    font-size: 16px;
    line-height: 18px;
    padding: 15px;
  }
  .rightbar-common-box .list {
    padding: 10px 4px;
  }
  .rightbar-common-box .list .name {
    font-size: 13px;
  }
}
/* Dots */
.slick-dots {
  position: absolute !important;
  bottom: -10px !important;
  list-style: none !important;
  display: block !important;
  text-align: center;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 10px !important;
  width: 10px !important;
  margin: 0 3px !important;
  padding: 0 !important;
  border-radius: 100% !important;
  cursor: pointer !important;
  background: #D8D8D8 !important;
}
.slick-dots li button {
  font-size: 0px;
}
.slick-dots li.slick-active {
  background: #C23571 !important;
  border-color: #C23571 !important;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  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);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 0px;
  height: 100%;
  display: none;
}
[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;
}

@font-face {
  font-family: "opensansregular";
  src: url("../fonts/OpenSans-Regular.woff2") format("woff2"), url("../fonts/OpenSans-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "opensansmedium";
  src: url("../fonts/OpenSans-Medium.woff2") format("woff2"), url("../fonts/OpenSans-Medium.woff") format("woff");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "opensanssemibold";
  src: url("../fonts/OpenSans-SemiBold.woff2") format("woff2"), url("../fonts/OpenSans-SemiBold.woff") format("woff");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "opensansbold";
  src: url("../fonts/OpenSans-Bold.woff2") format("woff2"), url("../fonts/OpenSans-Bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
.faqs {
  padding: 60px 0;
}

.flex {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.allfaq {
  color: #333333;
  width: 48%;
}
.allfaq li {
  border: 1px solid #cdcdcd;
  border-radius: 3px;
  background: #fff;
  width: 100%;
  padding-left: inherit;
  margin: 0 40px 15px 0;
}
.allfaq li .faqtop {
  padding: 12px 32px 12px 14px;
  font-size: 15px;
  line-height: 18px;
  color: #1D1D1D;
  position: relative;
  font-family: opensanssemibold;
  cursor: pointer;
  display: block;
}
.allfaq li .faqtop::after {
  content: "";
  background: url(../images/down-arrow.svg) no-repeat center;
  width: 12px;
  height: 8px;
  display: block;
  position: absolute;
  right: 15px;
  top: 45%;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.allfaq li .faqtop.active {
  background: #FFF5F9;
}
.allfaq li .faqtop.active:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.allfaq li .faq-box {
  margin: 15px;
  font-size: 14px;
  line-height: 20px;
  display: none;
}
.allfaq li ul {
  list-style: disc;
  margin: 5px 0 0 30px;
}
.allfaq li ul li {
  border: none;
  margin: 0 0 5px;
}

@media (max-width: 768px) {
  .faqs {
    padding: 30px 0;
  }
  .faqs .allfaq {
    width: 49%;
  }
  .faqs .allfaq li {
    margin: 0 13px 10px 0;
  }
  .faqs .allfaq li .faqtop {
    padding: 8px 32px 8px 10px;
    font-size: 14px;
    line-height: 15px;
  }
  .faqs .allfaq li .faq-box {
    margin: 10px;
  }
}
@media (max-width: 767px) {
  .faqs {
    padding: 25px 0;
  }
  .faqs .allfaq {
    width: 100%;
  }
}
.error {
  font-size: 13px;
  line-height: 16px;
  color: red;
  text-align: left;
}

.service-banner {
  padding: 35px 0;
  color: #fff;
  background: url("../images/service-banner.jpg");
}
.service-banner:before {
  content: "";
  background: #232323;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 50%;
}
.service-banner .container {
  z-index: 1;
}
.service-banner .service-title {
  color: #FFBE00;
  font-family: opensanssemibold;
  font-size: 32px;
  line-height: 38px;
  margin: 0 0 5px;
}
.service-banner .service-subtitle {
  font-size: 16px;
  line-height: 19px;
}
.service-banner .service-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 23px auto 0;
  width: 45%;
}
.service-banner .service-feature .feature-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 20px 0 0;
}
.service-banner .service-feature .feature-list svg {
  margin: 0 15px 0 0;
}
.service-banner .service-feature .feature-list .feature-content {
  font-family: opensanssemibold;
  font-size: 16px;
  line-height: 18px;
}
.service-banner .service-feature .feature-list span {
  font-family: opensansregular;
  font-size: 14px;
  line-height: 16px;
  display: block;
}
.service-banner .service-feature .feature-list .free {
  font-size: 16px;
  line-height: 23px;
  font-family: opensanssemibold;
  background: #2db261;
}
.service-banner.service-banner-us {
  background: url("../images/service-banner-us.jpg");
}

@media screen and (max-width: 1366px) {
  .service-banner .service-feature {
    width: 50%;
  }
}
@media screen and (max-width: 1024px) {
  .service-banner .service-feature {
    width: 65%;
  }
}
@media screen and (max-width: 768px) {
  .service-banner .service-feature {
    width: 75%;
  }
}
@media screen and (max-width: 767px) {
  .service-banner .service-feature {
    width: 92%;
    margin: 12px auto 0;
  }
  .service-banner .service-feature .feature-list {
    margin: 0;
  }
  .service-banner .service-feature .feature-list:nth-child(2) {
    display: none;
  }
  .service-banner .service-feature .feature-list svg {
    width: 28px;
    height: 26px;
    margin: 0 10px 0 0;
  }
  .service-banner .service-feature .feature-list .feature-content {
    font-size: 15px;
    line-height: 16px;
  }
  .service-banner .service-feature .feature-list .feature-content span {
    font-size: 13px;
  }
  .service-banner .service-feature .feature-list .free {
    font-size: 15px;
    line-height: 16px;
    padding: 1px 3px;
  }
  .service-banner {
    padding: 20px 0;
    background: url(../images/service-banner-mobile.png);
  }
  .service-title {
    font-size: 22px !important;
    line-height: 26px;
  }
  .service-subtitle {
    font-size: 14px !important;
    line-height: 18px;
  }
}
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

::-moz-placeholder {
  color: #707070 !important;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #172C6D;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

html {
  line-height: normal; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

abbr, address, article, aside, audio, blockquote, body, body div, caption, cite, code, dd, del, dfn, dl, dt, em, fieldset, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p, pre, q, samp, section, small, span, strong, sub, sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

body {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
  line-height: 20px;
  font-family: opensansregular;
  -webkit-overflow-scrolling: touch;
  -webkit-animation: none 0s ease 0s 1 normal none running;
          animation: none 0s ease 0s 1 normal none running;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

blockquote {
  margin: 0;
}

article, aside, footer, header, nav, section {
  display: block;
}

h1, h2, h3, h4, h5, strong {
  padding: 0;
  margin: 0px 0px;
  font-weight: normal;
}

figcaption, figure, main { /* 1 */
  display: block;
}

figure {
  margin: 0px;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

b, strong {
  font-weight: inherit;
  font-family: opensanssemibold;
}

code, kbd, samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

audio, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img {
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

button, input, optgroup, select, textarea {
  font-family: opensansregular; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
  -webkit-appearance: none;
}

button, input { /* 1 */
  overflow: visible;
  border: none;
  background: none;
}

button, select { /* 1 */
  text-transform: none;
}

button, html [type=button], [type=reset], [type=submit] {
  -webkit-appearance: none; /* 2 */
}

button::-moz-focus-inner, [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring, [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
  -webkit-appearance: checkbox;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

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

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

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

details, menu {
  display: block;
}

summary {
  display: list-item;
}

canvas {
  display: inline-block;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

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

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

p {
  margin: 0;
  padding: 0;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.clearfix:after, .clearfix:before {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}

.clear, .clearfix:after {
  clear: both;
}

.slick-dots li button {
  background: none;
  border: 0;
  outline: 0;
}

.slick-prev, .slick-next {
  font-size: 0;
  position: absolute;
  top: 46%;
  display: block;
  padding: 0;
  cursor: pointer;
  border: none;
  outline: none;
  background: 0 0;
  left: -42px;
}
.slick-prev:before, .slick-next:before {
  content: "";
  background: url(../images/CaretLeft.svg) no-repeat;
  width: 30px;
  height: 32px;
  background-size: 40px;
  display: block;
  margin: auto;
}

.slick-next {
  right: -17px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  left: inherit;
  top: 48%;
}

input, select, textarea {
  width: 100%;
  height: 44px;
  background: #fff;
  padding: 0 10px;
  font-size: 14px;
  line-height: 20px;
  color: #616161;
  border: 1px solid #D8D8D8;
  border-radius: 0;
}

input {
  padding: 0 25px 0 10px;
}

select {
  padding: 0 24px 0 10px;
  border: 1px solid #ced4da;
  border-radius: 2px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #FFFFFF url(../images/down-arrow.svg) no-repeat center right 8px;
}

.common_btn {
  background: #ffbe00;
  padding: 9px 26px;
  border-radius: 3px;
  font-family: opensanssemibold;
  font-size: 20px;
  line-height: 25px;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #1d1d1d;
}
.common_btn:hover {
  background: #ffc827;
}

.best_assignment {
  background: url("../images/usa/best-assignment-help-bg.jpg") no-repeat center;
  background-size: cover;
  padding: 60px 0 212px;
}
.best_assignment .container .heading {
  font-size: 52px;
  line-height: 60px;
  color: #1d1d1d;
  font-family: opensanssemibold;
}
.best_assignment .container .title {
  font-size: 16px;
  line-height: 20px;
  color: #616161;
  margin: 0 0 35px;
}
.best_assignment .container .feature_heading {
  font-family: opensanssemibold;
  font-size: 16px;
  line-height: 21px;
  color: #1d1d1d;
}
.best_assignment .container .feature_title {
  font-size: 14px;
  line-height: 16px;
  color: #434343;
}
.best_assignment .container .form_wrapper {
  position: relative;
  margin: 80px 0 -250px;
  width: 70%;
  z-index: 1;
}
.best_assignment .container .form_wrapper .button_row .button {
  padding: 7px 27px 7px 20px;
  color: #1d1d1d;
  background: #f5f5f5;
  font-size: 18px;
  font-family: opensanssemibold;
  line-height: 20px;
}
.best_assignment .container .form_wrapper .button_row .button.active_btn {
  background: #c23571;
}
.best_assignment .container .form_wrapper .button_row .button:last-of-type {
  border-left: 1px solid #aeaeae;
}
.best_assignment .container .form_wrapper .form_box {
  padding: 20px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.best_assignment .container .form_wrapper .form_box .left {
  margin: 0 12px 0 0;
}
.best_assignment .container .form_wrapper .form_box .left .price_start {
  font-size: 15px;
  line-height: 20px;
  color: #1d1d1d;
}
.best_assignment .container .form_wrapper .form_box .left .currency {
  font-size: 23px;
  font-family: opensanssemibold;
  line-height: 28px;
  color: #2db261;
}
.best_assignment .container .form_wrapper .form_box .left .currency span {
  font-size: 33px;
  line-height: 38px;
}
.best_assignment .container .form_wrapper .form_box .right {
  width: 100%;
}
.best_assignment .container .form_wrapper .form_box .right .select-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 12px 0 0;
}
.best_assignment .container .form_wrapper .form_box .right .error {
  position: absolute;
}
.best_assignment .container .form_wrapper::before {
  content: "";
  height: 54px;
  width: 195px;
  position: absolute;
  left: -22px;
  top: -26px;
  background: linear-gradient(90deg, #f4f4f4 8px, transparent 1%) center, linear-gradient(#f4f4f4 8px, transparent 1%) center, #d8d8d8;
  background-size: 11px 11px;
  z-index: -1;
}
.best_assignment .container .message_tooltip {
  right: 375px;
  top: 95px;
  border-radius: 10px;
  color: #434343;
  font-family: opensanssemibold;
  font-size: 12px;
  line-height: 15px;
  padding: 9px 10px;
  width: 6%;
}
.best_assignment .container .message_tooltip span {
  color: #c23571;
}
.best_assignment .container .message_tooltip:after {
  content: "";
  width: 14px;
  height: 14px;
  background: #ffffff;
  position: absolute;
  bottom: -5px;
  right: 11px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.best_assignment::before {
  content: "";
  background: url(../images/home-banner-curve.svg) no-repeat;
  width: 216px;
  height: 186px;
  position: absolute;
  left: 0;
  top: 0;
}

.trusted_by {
  padding: 80px 0 30px;
}
.trusted_by .container .left .heading {
  color: #c23571;
  line-height: 26px;
  font-size: 24px;
  font-family: opensanssemibold;
}
.trusted_by .container .left .title {
  color: #1d1d1d;
  font-size: 15px;
  line-height: 20px;
}
.trusted_by .container .right {
  width: 65%;
}

.why_assignment_help {
  border-top: 1px solid #d8d8d8;
  padding: 58px 0;
}
.why_assignment_help .container .section_heading {
  color: #1d1d1d;
  font-size: 30px;
  line-height: 36px;
  font-family: opensanssemibold;
}
.why_assignment_help .container .heading_border {
  width: 300px;
  height: 1px;
  background-color: #c23571;
  margin: 0 auto;
}
.why_assignment_help .container .heading_border::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 5px;
  border-bottom: 5px solid #c23571;
  margin-top: -2px;
  left: 49%;
}
.why_assignment_help .container .left {
  width: 50%;
}
.why_assignment_help .container .left .left_content {
  font-size: 15px;
  line-height: 24px;
  color: #333333;
  text-align: justify;
}
.why_assignment_help .container .left .left_content #left_content_collapse {
  display: block;
}
.why_assignment_help .container .right {
  cursor: pointer;
  width: 33.18%;
  height: auto;
  max-height: 300px;
  text-align: right;
}
.why_assignment_help .container .right img {
  position: relative;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.why_assignment_help .container .right::before {
  content: "";
  height: 56px;
  width: 195px;
  position: absolute;
  left: -20px;
  bottom: -16px;
  background: linear-gradient(90deg, #fff 8px, transparent 1%) center, linear-gradient(#fff 8px, transparent 1%) center, #d8d8d8;
  background-size: 10px 10px;
  z-index: -1;
}
.why_assignment_help .container .right::after {
  content: "";
  position: absolute;
  right: -10px;
  top: -13px;
  width: 110px;
  height: 85px;
  z-index: -1;
  background: #c23571;
}

.numbers {
  padding: 27px 0 0;
}
.numbers .container .section_heading {
  color: #1d1d1d;
  font-size: 30px;
  line-height: 36px;
  font-family: opensanssemibold;
}
.numbers .container .heading_border {
  width: 285px;
  height: 1px;
  background-color: #c23571;
  margin: 0 auto;
}
.numbers .container .heading_border::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 5px;
  border-bottom: 5px solid #c23571;
  margin-top: -2px;
  left: 49%;
}
.numbers .container .numbers_boxes {
  width: 22%;
  padding: 20px;
  background: #ffffff;
  border-bottom: 2px solid #c23571;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.numbers .container .numbers_boxes .total_numbers {
  color: #c23571;
  font-size: 30px;
  font-family: opensanssemibold;
  line-height: 34px;
}
.numbers .container .numbers_boxes .number_title {
  color: #333333;
  font-size: 14px;
  line-height: 16px;
  font-family: opensanssemibold;
}
.numbers .container .numbers_boxes:last-child::after {
  content: "";
  height: 57px;
  width: 178px;
  position: absolute;
  right: 270px;
  top: 90px;
  background: linear-gradient(90deg, #fff5f9 8px, transparent 1%) center, linear-gradient(#fff5f9 8px, transparent 1%) center, #f9e1eb;
  background-size: 11px 11px;
  z-index: -1;
}
.numbers::before {
  content: "";
  background: #fff5f9;
  height: 216px;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}
.numbers::after {
  content: "";
  background: url("../images/usa/circle_bg.svg") no-repeat;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.best_asssignmnet_services {
  padding: 92px 0 60px 0;
}
.best_asssignmnet_services .container .section_heading {
  color: #1d1d1d;
  font-size: 30px;
  line-height: 36px;
  font-family: opensanssemibold;
}
.best_asssignmnet_services .container .heading_border {
  width: 300px;
  height: 1px;
  background-color: #c23571;
  margin: 0 auto;
}
.best_asssignmnet_services .container .heading_border::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 5px;
  border-bottom: 5px solid #c23571;
  margin-top: -2px;
  left: 49%;
}
.best_asssignmnet_services .container .tabination {
  width: 74%;
  background: #f1f1f1;
  border-radius: 10px;
  margin: 80px auto 0;
}
.best_asssignmnet_services .container .tabination .left_tabs_box {
  padding: 35px 15px;
  width: 30%;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  position: absolute;
  margin: -45px 0 0 -45px;
}
.best_asssignmnet_services .container .tabination .left_tabs_box .we_offer {
  margin-bottom: 34px;
}
.best_asssignmnet_services .container .tabination .left_tabs_box .we_offer .tabs_heading {
  font-family: opensanssemibold;
  font-size: 14px;
  line-height: 16px;
  color: #2a2a2a;
  margin: 0 0 0 5px;
}
.best_asssignmnet_services .container .tabination .left_tabs_box .nav .nav-link {
  border: 1px solid #d8d8d8;
  border-radius: 3px;
  font-size: 18px;
  font-family: opensanssemibold;
  line-height: 20px;
  color: #333333;
  padding: 12px 21px;
  margin: 0 0 15px;
}
.best_asssignmnet_services .container .tabination .left_tabs_box .nav .nav-link:hover, .best_asssignmnet_services .container .tabination .left_tabs_box .nav .nav-link.active {
  border: 1px solid #c23571;
  color: #c23571;
}
.best_asssignmnet_services .container .tabination .left_tabs_box .nav .nav-link:hover svg path, .best_asssignmnet_services .container .tabination .left_tabs_box .nav .nav-link.active svg path {
  fill: #c23571;
}
.best_asssignmnet_services .container .tabination .left_tabs_box:before {
  content: "";
  z-index: -1;
  height: 56px;
  width: 195px;
  position: absolute;
  left: -28px;
  top: -26px;
  background: linear-gradient(90deg, #fff 8px, transparent 1%) center, linear-gradient(#fff 8px, transparent 1%) center, #ebebeb;
  background-size: 11px 11px;
  z-index: -1;
}
.best_asssignmnet_services .container .tabination .tab-content {
  padding: 35px 44px 67px 300px;
}
.best_asssignmnet_services .container .tabination .tab-content .tab-pane .tab_heading {
  color: #c23571;
  font-size: 18px;
  line-height: 20px;
  font-family: opensanssemibold;
}
.best_asssignmnet_services .container .tabination .tab-content .tab-pane .tab_content {
  font-size: 15px;
  line-height: 20px;
  color: #333333;
}
.best_asssignmnet_services .container .tabination .tab-content .tab-pane .active_tab_list {
  margin: 15px 0 54px;
  margin-top: 15px;
}
.best_asssignmnet_services .container .tabination::before {
  content: "";
  background: url("../images/usa/pencil_bg.png") no-repeat bottom right;
  width: 399px;
  height: 176px;
  position: absolute;
  bottom: 14px;
  right: 35px;
}

.price_offer {
  background: url("../images/usa/price_offer_bg.svg") no-repeat;
  background-size: cover;
  padding: 29px 0 39px 0;
  color: #1d1d1d;
}
.price_offer .heading {
  font-family: opensanssemibold;
  font-size: 38px;
  line-height: 40px;
}
.price_offer .heading span {
  color: #ffbe00;
}
.price_offer .subheading {
  font-size: 20px;
  line-height: 24px;
}
.price_offer .download_now_instruction {
  font-size: 16px;
  line-height: 18px;
  text-decoration-line: underline;
  color: #ffbe00;
  margin: 22px 0 6px 0;
}

.assignment_work_process {
  padding: 57px 0 0 0;
  border-bottom: 1px solid #d8d8d8;
}
.assignment_work_process .container .section_heading {
  color: #1d1d1d;
  font-size: 30px;
  line-height: 36px;
  font-family: opensanssemibold;
}
.assignment_work_process .container .heading_border {
  width: 300px;
  height: 1px;
  background-color: #c23571;
  margin: 0 auto;
}
.assignment_work_process .container .heading_border::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 5px;
  border-bottom: 5px solid #c23571;
  margin-top: -2px;
  left: 49%;
}
.assignment_work_process .container .work_process {
  padding: 40px 0 75px;
}
.assignment_work_process .container .work_process:after {
  content: "";
  background: url("../images/country-curvepath.svg") no-repeat;
  display: block;
  width: 742px;
  height: 413px;
  position: absolute;
  z-index: -1;
  left: 20%;
}
.assignment_work_process .container .work_process .left_accordian_box {
  width: 41%;
}
.assignment_work_process .container .work_process .left_accordian_box .accordian .step_box {
  border-top: 2px solid transparent;
  border-radius: unset;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}
.assignment_work_process .container .work_process .left_accordian_box .accordian .step_box .step_head {
  padding: 20px 25px;
}
.assignment_work_process .container .work_process .left_accordian_box .accordian .step_box .step_head .step_title {
  font-family: opensanssemibold;
  font-size: 16px;
  line-height: 18px;
  color: #c23571;
}
.assignment_work_process .container .work_process .left_accordian_box .accordian .step_box .step_head .heading {
  font-family: opensanssemibold;
  font-size: 22px;
  line-height: 24px;
  text-transform: uppercase;
  color: #1d1d1d;
}
.assignment_work_process .container .work_process .left_accordian_box .accordian .step_box:hover {
  cursor: pointer;
  border-top: 2px solid #c23571;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 0px 0px 10px 10px;
}
.assignment_work_process .container .work_process .left_accordian_box .accordian .step_box.active:hover {
  border: none;
  border-radius: unset;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.assignment_work_process .container .work_process .left_accordian_box .accordian .step_box.active + .step_content {
  display: block;
}
.assignment_work_process .container .work_process .left_accordian_box .accordian .step_box.current {
  background: #ffffff;
  border-top: 2px solid #c23571;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 0px 0px 10px 10px;
}
.assignment_work_process .container .work_process .left_accordian_box .accordian .step_content {
  padding: 0px 25px 17px;
  font-size: 15px;
  line-height: 20px;
  color: #333333;
  display: none;
}
.assignment_work_process .container .work_process .left_accordian_box .accordian .step_content:first-child {
  display: block;
}
.assignment_work_process .container .work_process .right {
  width: 47%;
}

.free_tool_section {
  padding: 57px 0 0 0;
  color: #1d1d1d;
}
.free_tool_section .container .section_heading {
  font-size: 30px;
  line-height: 36px;
  font-family: opensanssemibold;
}
.free_tool_section .container .subheading {
  font-size: 16px;
  line-height: 18px;
}
.free_tool_section .container .heading_border {
  width: 300px;
  height: 1px;
  background-color: #c23571;
  margin: 0 auto;
}
.free_tool_section .container .heading_border::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 5px;
  border-bottom: 5px solid #c23571;
  margin-top: -2px;
  left: 49%;
}
.free_tool_section .container .free_tool_slider {
  padding: 40px 0 65px;
  margin: auto;
  width: 88%;
}
.free_tool_section .container .free_tool_slider .slider_item {
  margin: 5px 30px 5px 5px;
  padding: 15px;
  color: #1d1d1d;
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
}
.free_tool_section .container .free_tool_slider .slider_item img {
  width: 100%;
  height: auto;
}
.free_tool_section .container .free_tool_slider .slider_item .heading {
  font-size: 24px;
  font-family: opensanssemibold;
  line-height: 26px;
  margin: 22px 0 6px;
}
.free_tool_section .container .free_tool_slider .slider_item .content {
  font-size: 15px;
  line-height: 20px;
  margin: 0 0 10px;
  overflow: auto;
  height: 60px;
}
.free_tool_section .container .free_tool_slider .slider_item .check_now {
  font-family: opensanssemibold;
  font-size: 15px;
  line-height: 18px;
  color: #c23571;
}
.free_tool_section .container .free_tool_slider .slider_item .check_now:hover {
  color: #de5790;
}
.free_tool_section .container .free_tool_slider:before {
  content: "";
  position: absolute;
  left: -42px;
  top: -15px;
  background: url("../images/usa/tools_bg_circle.svg") no-repeat;
  width: 95px;
  height: 101px;
}
.free_tool_section .container .free_tool_slider::after {
  content: "";
  height: 100px;
  width: 147px;
  position: absolute;
  right: -18px;
  bottom: 38px;
  background: linear-gradient(90deg, #fff 8px, transparent 1%) center, linear-gradient(#fff 8px, transparent 1%) center, #d8d8d8;
  background-size: 11px 11px;
  z-index: -1;
}

.free_samples {
  background: #f5f5f5 url("../images/usa/sample-strip-banner.png") no-repeat;
  background-size: cover;
  padding: 37px 0 40px 0;
  color: #1d1d1d;
}
.free_samples .heading {
  font-size: 32px;
  line-height: 38px;
  font-family: opensanssemibold;
}
.free_samples .subheading {
  font-size: 16px;
  line-height: 20px;
  color: #333333;
}

.modules_covered {
  padding: 57px 0;
  color: #1d1d1d;
  border-bottom: 1px solid #d8d8d8;
}
.modules_covered::after {
  background: url(../images/writer-curvepath.svg) no-repeat;
  display: block;
  position: absolute;
  content: "";
  right: 0;
  top: 60px;
  width: 130px;
  height: 289px;
}
.modules_covered .heading {
  font-size: 30px;
  line-height: 36px;
  font-family: opensanssemibold;
}
.modules_covered .subheading {
  font-size: 16px;
  line-height: 18px;
}
.modules_covered .heading_border {
  width: 300px;
  height: 1px;
  background-color: #c23571;
  margin: 0 auto;
}
.modules_covered .heading_border::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 5px;
  border-bottom: 5px solid #c23571;
  margin-top: -2px;
  left: 49%;
}
.modules_covered .modules_row {
  padding: 40px 0 0;
}
.modules_covered .modules_row .left {
  width: 34%;
}
.modules_covered .modules_row .left::after {
  content: "";
  height: 55px;
  width: 144px;
  position: absolute;
  left: 280px;
  bottom: 52px;
  background: linear-gradient(90deg, #fff 8px, transparent 1%) center, linear-gradient(#fff 8px, transparent 1%) center, #d8d8d8;
  background-size: 11px 11px;
  z-index: -1;
}
.modules_covered .modules_row .right {
  width: 63%;
}
.modules_covered .modules_row .right .module_list li {
  width: 30%;
  margin: 0 0 15px;
}
.modules_covered .modules_row .right .module_list li a {
  font-size: 14px;
  line-height: 18px;
  color: #333333;
}
.modules_covered .modules_row .right .module_list li a:hover {
  color: #c23571;
}
.modules_covered .modules_row .right .module_list li::before {
  content: "•";
  color: #c23571;
  font-family: opensanssemibold;
  display: inline-block;
  width: 15px;
  font-size: 18px;
  vertical-align: middle;
}
.modules_covered .modules_row .right .whatsapp_help_box {
  padding: 17px 20px;
  background: #fff5f9;
  border-radius: 3px;
  margin: 10px 0 0;
}
.modules_covered .modules_row .right .whatsapp_help_box .help_title {
  font-size: 24px;
  font-family: opensanssemibold;
  line-height: 28px;
  color: #1d1d1d;
}
.modules_covered .modules_row .right .whatsapp_help_box .whatsapp_btn {
  padding: 8px 29px;
  font-family: opensanssemibold;
  font-size: 20px;
  line-height: 27px;
  background: #07b501;
  border-radius: 3px;
}
.modules_covered .modules_row .right .whatsapp_help_box .whatsapp_btn svg {
  margin: 0 5px 0 0;
}
.modules_covered .modules_row .right .whatsapp_help_box .whatsapp_btn:hover {
  background: #09cc02;
}

.gurantee_best_assignment {
  padding: 57px 0;
}
.gurantee_best_assignment .heading {
  font-size: 30px;
  line-height: 36px;
  font-family: opensanssemibold;
}
.gurantee_best_assignment .subheading {
  font-size: 16px;
  line-height: 18px;
}
.gurantee_best_assignment .heading_border {
  width: 300px;
  height: 1px;
  background-color: #c23571;
  margin: 0 auto;
}
.gurantee_best_assignment .heading_border::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 5px;
  border-bottom: 5px solid #c23571;
  margin-top: -2px;
  left: 49%;
}
.gurantee_best_assignment .description {
  font-size: 15px;
  line-height: 20px;
  color: #333333;
  margin: 24px 0 0;
}
.gurantee_best_assignment .benefits_slider {
  padding: 45px 0 0;
  margin: 0 auto;
}
.gurantee_best_assignment .benefits_slider .slider_item {
  padding: 20px 22px;
  margin: 5px 10px 5px 10px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 3px;
}
.gurantee_best_assignment .benefits_slider .slider_item .title {
  font-size: 17px;
  font-family: opensanssemibold;
  line-height: 24px;
  text-transform: uppercase;
  color: #c23571;
}
.gurantee_best_assignment .benefits_slider .slider_item .content {
  height: 85px;
  overflow: auto;
  margin: 5px 0 0;
  font-size: 15px;
  line-height: 20px;
  color: #333333;
}
.gurantee_best_assignment .benefits_slider .slick-next {
  right: -40px;
}
.gurantee_best_assignment::before {
  content: "";
  background: #fff5f9;
  height: 212px;
  width: 100%;
  position: absolute;
  top: 350px;
  z-index: -1;
}

.latest_blog {
  padding: 57px 0;
}
.latest_blog .heading {
  font-size: 30px;
  line-height: 36px;
  font-family: opensanssemibold;
}
.latest_blog .subheading {
  font-size: 16px;
  line-height: 18px;
}
.latest_blog .heading_border {
  width: 300px;
  height: 1px;
  background-color: #c23571;
  margin: 0 auto;
}
.latest_blog .heading_border::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 5px;
  border-bottom: 5px solid #c23571;
  margin-top: -2px;
  left: 49%;
}
.latest_blog .blog_cards_row {
  padding: 35px 0;
}
.latest_blog .blog_cards_row .left {
  width: 39.3%;
  cursor: pointer;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 3px;
}
.latest_blog .blog_cards_row .left img {
  width: 100%;
  height: auto;
}
.latest_blog .blog_cards_row .left .card_body {
  padding: 15px 15px 28px 20px;
}
.latest_blog .blog_cards_row .left .card_body .date_time_row {
  font-size: 13px;
  line-height: 15px;
  color: #777777;
}
.latest_blog .blog_cards_row .left .card_body .date_time_row .read_time::before,
.latest_blog .blog_cards_row .left .card_body .date_time_row .total_views::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  background: #777777;
  border-radius: 6px;
  margin: 0 10px;
}
.latest_blog .blog_cards_row .left .card_body .card_title {
  font-family: opensanssemibold;
  font-size: 20px;
  line-height: 24px;
  color: #1d1d1d;
  margin: 23px 0 7px;
}
.latest_blog .blog_cards_row .left .card_body .card_title:hover {
  color: #cf1465;
}
.latest_blog .blog_cards_row .left .card_body .card_content {
  font-size: 15px;
  line-height: 20px;
  color: #434343;
}
.latest_blog .blog_cards_row .left .card_body .read_more {
  margin: 44px 0 0;
  font-size: 13px;
  line-height: 15px;
  color: #c23571;
  text-decoration: underline;
}
.latest_blog .blog_cards_row .right {
  width: 58%;
  row-gap: 20px;
  -webkit-column-gap: 26px;
     -moz-column-gap: 26px;
          column-gap: 26px;
}
.latest_blog .blog_cards_row .right .right_side_card {
  width: 48%;
  cursor: pointer;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 3px;
}
.latest_blog .blog_cards_row .right .right_side_card img {
  width: 100%;
  height: auto;
}
.latest_blog .blog_cards_row .right .right_side_card .card_body {
  padding: 16px 15px 12px;
}
.latest_blog .blog_cards_row .right .right_side_card .card_body .question {
  font-family: opensanssemibold;
  font-size: 16px;
  line-height: 20px;
  color: #1d1d1d;
}
.latest_blog .blog_cards_row .right .right_side_card .card_body .question:hover {
  color: #cf1465;
}
.latest_blog .common_btn {
  display: block;
  margin: 0 auto;
}

.most_popular_questions {
  padding: 57px 0;
  border-top: 1px solid #dee2e6;
}
.most_popular_questions .heading {
  font-size: 30px;
  line-height: 36px;
  font-family: opensanssemibold;
}
.most_popular_questions .heading_border {
  width: 300px;
  height: 1px;
  background-color: #c23571;
  margin: 0 auto;
}
.most_popular_questions .heading_border::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 5px;
  border-bottom: 5px solid #c23571;
  margin-top: -2px;
  left: 49%;
}
.most_popular_questions .accordion {
  margin: 30px 0 0;
}
.most_popular_questions .accordion .left_faqs,
.most_popular_questions .accordion .right_faqs {
  width: 48%;
}
.most_popular_questions .accordion .accordion-item {
  border: 1px solid #cdcdcd;
  border-radius: 3px;
  margin: 0 0 15px;
}
.most_popular_questions .accordion .accordion-item button {
  padding: 12px 32px 12px 14px;
  font-size: 15px;
  font-family: opensanssemibold;
  line-height: 18px;
  color: #1d1d1d;
}
.most_popular_questions .accordion .accordion-item .accordion-body {
  padding: 15px;
  font-size: 14px;
  line-height: 20px;
}
.most_popular_questions .accordion .accordion-button::after {
  width: 12px;
  height: 8px;
  background-image: url("../images/down-arrow.svg");
  background-size: contain;
}
.most_popular_questions .accordion .accordion-button:not(.collapsed) {
  color: #1d1d1d;
  background-color: #fff5f9;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}
.most_popular_questions .accordion .accordion-button:not(.collapsed)::after {
  background-image: url("../images/usa/down-arrow.svg");
}

.still_in_two_minds {
  background: #f5f5f5;
  padding: 51px 0 0;
  color: #1d1d1d;
}
.still_in_two_minds .heading {
  font-size: 30px;
  line-height: 34px;
}
.still_in_two_minds .subheading {
  font-size: 16px;
  line-height: 20px;
}
.still_in_two_minds .common_btn {
  margin: 0 24px 0 104px;
}
.still_in_two_minds .transparent_btn {
  padding: 9px 20px;
  font-size: 20px;
  line-height: 25px;
  border: 1px solid #d8d8d8;
  border-radius: 3px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 104px 0 0;
}

.student_testimonials {
  padding: 57px 0;
  border-top: 1px solid #d8d8d8;
  color: #1d1d1d;
}
.student_testimonials .heading {
  font-size: 30px;
  line-height: 36px;
}
.student_testimonials .subheading {
  font-size: 16px;
  line-height: 18px;
  margin: 5px 0 6px;
}
.student_testimonials .heading_border {
  width: 300px;
  height: 1px;
  background-color: #c23571;
  margin: 0 auto;
}
.student_testimonials .heading_border::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 5px;
  border-bottom: 5px solid #c23571;
  margin-top: -2px;
  left: 49%;
}
.student_testimonials .student_testimonial_slider {
  width: 88%;
  margin: 0 auto;
}
.student_testimonials .student_testimonial_slider .slider_item {
  background: rgba(255, 255, 255, 0.002);
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  padding: 40px 27px 25px;
  margin: 45px 20px 5px 5px;
}
.student_testimonials .student_testimonial_slider .slider_item svg {
  margin: -113px 0 0;
}
.student_testimonials .student_testimonial_slider .slider_item .rating_row {
  padding: 48px 0 0;
}
.student_testimonials .student_testimonial_slider .slider_item .rating_row .star {
  width: 14px;
  height: 13px;
  margin: 0 2px;
  background: url("../images/usa/rating-star.svg") no-repeat;
}
.student_testimonials .student_testimonial_slider .slider_item .slider_content {
  font-size: 15px;
  line-height: 20px;
  color: #333333;
  overflow: auto;
  height: 85px;
}
.student_testimonials .student_testimonial_slider .slider_item .student_name {
  font-size: 16px;
  line-height: 19px;
}
.student_testimonials .student_testimonial_slider .slider_item .student_city {
  font-size: 14px;
  line-height: 18px;
  color: #2a2a2a;
}

@media (max-width: 1366px) {
  .best_assignment .container .message_tooltip {
    width: 7%;
    right: 150px;
  }
  .why_assignment_help .container .section_heading {
    font-size: 28px;
  }
  .why_assignment_help .container .right::before {
    bottom: 25px;
  }
  .numbers .container .section_heading {
    font-size: 28px;
  }
  .numbers .container .numbers_boxes:last-child::after {
    right: 95px;
  }
  .best_asssignmnet_services {
    padding: 92px 0 60px 0;
  }
  .best_asssignmnet_services .container .section_heading {
    font-size: 28px;
  }
  .best_asssignmnet_services .container .tabination {
    width: 87%;
  }
  .assignment_work_process .container .section_heading,
  .free_tool_section .container .section_heading {
    font-size: 28px;
  }
  .free_samples .container .heading {
    font-size: 31px;
    line-height: 35px;
  }
  .modules_covered .container .heading {
    font-size: 28px;
  }
  .modules_covered .modules_row .left::after {
    left: 97px;
    bottom: 97px;
  }
  .gurantee_best_assignment .container .heading {
    font-size: 28px;
  }
  .gurantee_best_assignment::before {
    top: 395px;
  }
  .latest_blog .container .heading {
    font-size: 28px;
  }
  .latest_blog .blog_cards_row .right {
    width: 58%;
  }
  .latest_blog .blog_cards_row .right .right_side_card {
    width: 47.7%;
  }
  .most_popular_questions .container .heading {
    font-size: 28px;
  }
}
@media (max-width: 1024px) {
  ::-webkit-scrollbar {
    width: 1px;
    height: 2px;
  }
  .best_assignment .container .heading {
    font-size: 38px;
    line-height: 44px;
  }
  .best_assignment .container .form_wrapper {
    width: 80%;
  }
  .best_assignment .container .message_tooltip {
    width: 12%;
  }
  .trusted_by .container .left .heading {
    font-size: 22px;
  }
  .trusted_by .container .left .title {
    font-size: 14px;
  }
  .trusted_by .container .right {
    width: 60%;
  }
  .why_assignment_help .container .section_heading {
    font-size: 25px;
  }
  .why_assignment_help .container .content_row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .why_assignment_help .container .left {
    width: 62%;
  }
  .why_assignment_help .container .right::before {
    bottom: -22px;
  }
  .numbers .container .section_heading {
    font-size: 25px;
  }
  .numbers .container .numbers_boxes:last-child::after {
    right: 10px;
  }
  .best_asssignmnet_services .container .section_heading {
    font-size: 25px;
  }
  .best_asssignmnet_services .container .tabination .left_tabs_box {
    width: 33%;
  }
  .best_asssignmnet_services .container .tabination .tab-content {
    padding: 35px 44px 67px 250px;
  }
  .price_offer .heading {
    font-size: 32px;
    line-height: 35px;
  }
  .assignment_work_process .container .section_heading {
    font-size: 25px;
  }
  .assignment_work_process .container .work_process .left_accordian_box {
    width: 43%;
  }
  .assignment_work_process .container .work_process .left_accordian_box .accordian .step_box .step_head .heading {
    font-size: 20px;
    line-height: 22px;
  }
  .free_tool_section .container .section_heading {
    font-size: 25px;
  }
  .free_tool_section .container .free_tool_slider .slider_item .heading {
    font-size: 20px;
    line-height: 20px;
    margin: 18px 0 3px;
  }
  .free_tool_section .container .free_tool_slider::after {
    bottom: 40px;
  }
  .modules_covered .container .heading {
    font-size: 25px;
  }
  .modules_covered .modules_row .left::after {
    left: 9px;
    bottom: 139px;
  }
  .modules_covered .modules_row .right .whatsapp_help_box .help_title {
    font-size: 20px;
    line-height: 22px;
  }
  .gurantee_best_assignment .container .heading {
    font-size: 25px;
  }
  .gurantee_best_assignment .benefits_slider .slider_item {
    padding: 20px 12px;
  }
  .gurantee_best_assignment .benefits_slider .slider_item .title {
    font-size: 16px;
    line-height: 20px;
  }
  .gurantee_best_assignment .benefits_slider .slider_item .content {
    font-size: 14px;
    line-height: 18px;
  }
  .gurantee_best_assignment .benefits_slider .slick-prev {
    left: -25px;
  }
  .gurantee_best_assignment .benefits_slider .slick-next {
    right: -28px;
  }
  .gurantee_best_assignment::before {
    height: 190px;
  }
  .latest_blog .container .heading {
    font-size: 25px;
  }
  .latest_blog .blog_cards_row .right {
    -webkit-column-gap: 23px;
       -moz-column-gap: 23px;
            column-gap: 23px;
  }
  .most_popular_questions .container .heading {
    font-size: 25px;
  }
  .most_popular_questions .accordion .left_faqs,
  .most_popular_questions .accordion .right_faqs {
    width: 460px;
  }
}
@media (max-width: 768px) {
  .best_assignment {
    padding: 30px 0 160px;
    background-position: left;
  }
  .best_assignment .container .heading {
    font-size: 32px;
    line-height: 40px;
    width: 100% !important;
  }
  .best_assignment .container .title {
    margin: 0 0 20px;
  }
  .best_assignment .container .form_wrapper {
    width: 100%;
    margin: 30px 0 -200px;
  }
  .best_assignment .container .form_wrapper::before {
    display: none;
  }
  .best_assignment .container .message_tooltip {
    top: 50px;
    right: 19px;
    width: 100px;
  }
  .trusted_by .container .left .heading {
    font-size: 20px;
  }
  .trusted_by .container .right {
    margin: 8px 0 0;
    width: 100%;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .why_assignment_help {
    padding: 30px 0;
  }
  .why_assignment_help .container .section_heading {
    font-size: 23px;
    line-height: 30px;
  }
  .why_assignment_help .container .content_row {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .why_assignment_help .container .left {
    width: 55%;
  }
  .why_assignment_help .container .left .left_content #left_content_collapse {
    display: none;
  }
  .why_assignment_help .container .left .left_content #left_content_collapse.show {
    display: block;
  }
  .why_assignment_help .container .left .left_content #left_content_collapse.collapsing {
    display: block;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
  }
  .why_assignment_help .container .left .left_content #left_content_collapse.collapse:not(.show) {
    display: none;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
  }
  .why_assignment_help .container .left .btn-more {
    color: #c23571;
  }
  .why_assignment_help .container .left .btn-more .see-less {
    display: none;
  }
  .why_assignment_help .container .left .btn-more .see-more {
    display: block;
  }
  .why_assignment_help .container .left .btn-more[aria-expanded=true] .see-more {
    display: none;
  }
  .why_assignment_help .container .left .btn-more[aria-expanded=true] .see-less {
    display: block;
  }
  .why_assignment_help .container .left .btn-more[aria-expanded=true] img {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .why_assignment_help .container .right {
    width: 40%;
  }
  .why_assignment_help .container .right::before {
    left: -10px;
  }
  .numbers .container .section_heading {
    font-size: 23px;
    line-height: 30px;
  }
  .numbers .container .numbers_boxes {
    margin: 0 15px 0 0;
    width: 22%;
    padding: 10px;
  }
  .numbers .container .numbers_boxes .total_numbers {
    font-size: 24px;
    line-height: 30px;
  }
  .numbers::before {
    height: 200px;
  }
  .best_asssignmnet_services {
    padding: 30px 0;
  }
  .best_asssignmnet_services .container .section_heading {
    font-size: 23px;
    line-height: 30px;
  }
  .best_asssignmnet_services .container .tabination {
    width: 100%;
  }
  .best_asssignmnet_services .container .tabination .left_tabs_box {
    padding: 22px 13px;
    margin: -45px 0 0 0px;
  }
  .best_asssignmnet_services .container .tabination .left_tabs_box .nav .nav-link {
    width: 100%;
  }
  .best_asssignmnet_services .container .tabination .tab-content {
    padding: 35px 44px 57px 260px;
  }
  .price_offer .container .heading {
    font-size: 30px;
    line-height: 35px;
  }
  .price_offer .container .subheading {
    font-size: 18px;
    line-height: 22px;
  }
  .assignment_work_process {
    padding: 30px 0;
  }
  .assignment_work_process .container .section_heading {
    font-size: 23px;
    line-height: 30px;
  }
  .assignment_work_process .container .work_process {
    padding: 20px 0 35px;
  }
  .assignment_work_process .container .work_process .left_accordian_box {
    width: 50%;
  }
  .assignment_work_process .container .work_process .left_accordian_box .accordian .step_head .step_box .heading {
    font-size: 18px;
    line-height: 20px;
  }
  .assignment_work_process .container .work_process::after {
    width: 400px;
    height: 220px;
    background-size: 400px;
  }
  .free_tool_section {
    padding: 30px 0;
  }
  .free_tool_section .container .section_heading {
    font-size: 23px;
    line-height: 30px;
  }
  .free_tool_section .container .free_tool_slider {
    width: 93%;
    padding: 35px 0;
  }
  .free_tool_section .container .free_tool_slider::after {
    bottom: 10px;
  }
  .free_samples .container .heading {
    font-size: 23px;
    line-height: 30px;
  }
  .free_samples .container .free_tool_slider::after {
    right: -11px;
    bottom: 30px;
  }
  .modules_covered {
    padding: 30px 0;
  }
  .modules_covered .container .heading {
    font-size: 23px;
    line-height: 30px;
  }
  .modules_covered .container .modules_row .left {
    display: none;
  }
  .modules_covered .container .modules_row .right {
    width: 100%;
    margin: 0 0 0 26px;
  }
  .modules_covered::after {
    top: 115px;
  }
  .gurantee_best_assignment {
    padding: 30px 0;
  }
  .gurantee_best_assignment .container .heading {
    font-size: 23px;
    line-height: 30px;
  }
  .latest_blog {
    padding: 30px 0;
  }
  .latest_blog .container .heading {
    font-size: 23px;
    line-height: 30px;
  }
  .latest_blog .container .blog_cards_row .left .card_body {
    padding: 15px 10px 28px 10px;
  }
  .latest_blog .container .blog_cards_row .right {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
  .most_popular_questions {
    padding: 30px 0;
  }
  .most_popular_questions .container .heading {
    font-size: 23px;
    line-height: 30px;
  }
  .most_popular_questions .container .accordion .left_faqs,
  .most_popular_questions .container .accordion .right_faqs {
    width: 345px;
  }
  .still_in_two_minds {
    padding: 40px 0 0;
  }
  .still_in_two_minds .container .heading {
    font-size: 26px;
    line-height: 30px;
  }
  .still_in_two_minds .container .common_btn {
    margin: 0 24px 0 60px;
  }
  .still_in_two_minds .container .transparent_btn {
    margin: 0 55px 0 0;
  }
  .student_testimonials .container .heading {
    font-size: 26px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .common_btn {
    font-size: 17px;
    line-height: 21px;
  }
  .best_assignment {
    background: url("../images/custom-banner-mobile.jpg") no-repeat;
    color: #fff;
    padding: 20px 0;
  }
  .best_assignment::before {
    content: "";
    background: #141414;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 80%;
  }
  .best_assignment .container {
    position: relative;
    z-index: 1;
  }
  .best_assignment .container .heading {
    color: #fff;
    width: 100% !important;
    text-align: center;
    font-size: 22px;
    line-height: 25px;
  }
  .best_assignment .container .title {
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    color: #fff;
    margin: 0 0 20px;
  }
  .best_assignment .container .benefits_list {
    display: none !important;
  }
  .best_assignment .container .form_wrapper {
    margin: 0;
  }
  .best_assignment .container .form_wrapper .button_row {
    display: none !important;
  }
  .best_assignment .container .form_wrapper .form_box {
    padding: 15px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .best_assignment .container .form_wrapper .form_box .left {
    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: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    margin: 0 0 10px 0;
  }
  .best_assignment .container .form_wrapper .form_box .right {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .best_assignment .container .form_wrapper .form_box .right .select-box {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
    margin: 0 0 18px;
  }
  .best_assignment .container .form_wrapper .form_box .common_btn {
    width: 100%;
    display: block;
  }
  .best_assignment .container .message_tooltip {
    color: #fff;
    width: 100%;
    position: unset !important;
    background-color: transparent !important;
    padding: 5px 0 0;
  }
  .best_assignment .container .message_tooltip span {
    color: #fff;
  }
  .best_assignment .container .message_tooltip::after {
    display: none;
  }
  .trusted_by {
    padding: 20px 15px;
  }
  .trusted_by .container .left svg {
    display: none;
  }
  .trusted_by .container .left .heading {
    text-align: center;
    font-size: 18px;
  }
  .trusted_by .container .left .title {
    font-size: 14px;
  }
  .trusted_by .container .right {
    width: 100%;
  }
  .why_assignment_help {
    padding: 25px 0;
  }
  .why_assignment_help .container .section_heading {
    font-size: 20px;
    line-height: 22px;
  }
  .why_assignment_help .container .heading_border {
    width: 200px;
  }
  .why_assignment_help .container .heading_border::after {
    left: 44%;
  }
  .why_assignment_help .container .content_row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .why_assignment_help .container .left {
    width: 100%;
    text-align: center;
  }
  .why_assignment_help .container .left .left_content {
    font-size: 14px;
    line-height: 18px;
  }
  .why_assignment_help .container .left .left_content #left_content_collapse.collapse:not(.show) {
    display: block;
  }
  .why_assignment_help .container .left .btn-more {
    display: none;
  }
  .why_assignment_help .container .left .common_btn {
    display: none;
  }
  .why_assignment_help .container .right {
    margin: 25px 0 0;
    width: 100%;
  }
  .why_assignment_help .container .right::before {
    display: none;
  }
  .why_assignment_help .container .mobile_btn {
    display: block !important;
    margin: 0 auto;
  }
  .numbers {
    padding: 25px 0;
  }
  .numbers .container .section_heading {
    font-size: 20px;
    line-height: 22px;
  }
  .numbers .container .heading_border {
    width: 200px;
  }
  .numbers .container .heading_border::after {
    left: 44%;
  }
  .numbers .container .number_box_row {
    gap: 15px;
  }
  .numbers .container .number_box_row:last-child::after {
    display: none;
  }
  .numbers .container .numbers_boxes {
    width: 47%;
    padding: 20px 11px;
    margin: 0;
    z-index: 1;
  }
  .numbers .container .numbers_boxes:last-child::after {
    display: none;
  }
  .numbers .container .numbers_boxes .total_numbers {
    font-size: 22px;
    line-height: 25px;
  }
  .numbers .container .numbers_boxes .number_title {
    font-size: 13px;
  }
  .numbers::before {
    height: 100%;
  }
  .best_asssignmnet_services {
    display: none;
  }
  .best_asssignmnet_services_mobile {
    display: block !important;
    padding: 25px 0;
  }
  .best_asssignmnet_services_mobile .container .section_heading {
    color: #1d1d1d;
    font-size: 20px;
    line-height: 22px;
    font-family: opensanssemibold;
  }
  .best_asssignmnet_services_mobile .container .heading_border {
    width: 200px;
    height: 1px;
    background-color: #c23571;
    margin: 0 auto;
  }
  .best_asssignmnet_services_mobile .container .heading_border::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 5px;
    border-bottom: 5px solid #c23571;
    margin-top: -2px;
    left: 44%;
  }
  .best_asssignmnet_services_mobile .container .services_mobile {
    margin: 20px 5px;
  }
  .best_asssignmnet_services_mobile .container .services_mobile .slider_item {
    border: 1px solid #d8d8d8;
  }
  .best_asssignmnet_services_mobile .container .services_mobile .slider_item .title {
    color: #c23571;
    font-size: 18px;
    line-height: 22px;
    font-family: opensanssemibold;
    margin: 15px 5px;
  }
  .best_asssignmnet_services_mobile .container .services_mobile .slider_item .content {
    font-size: 14px;
    line-height: 18px;
    color: #333333;
    height: 74px;
    overflow: auto;
    padding: 0 6px;
  }
  .best_asssignmnet_services_mobile .container .services_mobile .slider_item .active_tab_list {
    padding: 10px 0 10px 6px;
  }
  .best_asssignmnet_services_mobile .container .services_mobile .slider_item .active_tab_list .list-name {
    font-size: 13px;
    line-height: 15px;
    width: 50%;
    margin: 0 0 14px;
  }
  .best_asssignmnet_services_mobile .container .services_mobile .slider_item .active_tab_list .list-name::before {
    content: "";
    background: url(../images/check-green.svg) no-repeat;
    display: inline-block;
    width: 13px;
    background-size: 12px;
    height: 14px;
    vertical-align: sub;
    margin: 0 3px 0 0px;
  }
  .best_asssignmnet_services_mobile .container .services_mobile .slick-dots {
    bottom: -26px !important;
  }
  .price_offer .container .heading {
    font-size: 25px;
    line-height: 28px;
  }
  .price_offer .container .subheading {
    font-size: 14px;
    line-height: 16px;
  }
  .assignment_work_process {
    padding: 25px 0;
  }
  .assignment_work_process .container .section_heading {
    font-size: 20px;
    line-height: 22px;
  }
  .assignment_work_process .container .heading_border::after {
    left: 44%;
  }
  .assignment_work_process .container .heading_border {
    width: 200px;
  }
  .assignment_work_process .container .heading_border::after {
    left: 44%;
  }
  .assignment_work_process .container .work_process {
    padding: 0;
  }
  .assignment_work_process .container .work_process .left_accordian_box {
    margin: 20px 0 0;
    width: 100%;
  }
  .assignment_work_process .container .work_process .left_accordian_box::before {
    border-left: 1px dashed #c23571;
    content: "";
    height: 65%;
    left: 30px;
    top: 45px;
    position: absolute;
    z-index: -1;
  }
  .assignment_work_process .container .work_process .left_accordian_box .accordian {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 0 25px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .assignment_work_process .container .work_process .left_accordian_box .accordian .step_box {
    width: 76%;
  }
  .assignment_work_process .container .work_process .left_accordian_box .accordian .step_box.current, .assignment_work_process .container .work_process .left_accordian_box .accordian .step_box:hover {
    border-top: 2px solid transparent;
    -webkit-box-shadow: unset;
            box-shadow: unset;
    border-radius: 0;
  }
  .assignment_work_process .container .work_process .left_accordian_box .accordian .step_box .step_head {
    padding: 0;
  }
  .assignment_work_process .container .work_process .left_accordian_box .accordian .step_box .step_head .step_title {
    display: none;
  }
  .assignment_work_process .container .work_process .left_accordian_box .accordian .step_box .step_head .heading {
    font-size: 15px;
    line-height: 18px;
  }
  .assignment_work_process .container .work_process .left_accordian_box .accordian .step_box .step_content {
    display: block;
    padding: 5px 0;
  }
  .assignment_work_process .container .work_process .right {
    display: none;
  }
  .assignment_work_process .container .work_process::after {
    display: none;
  }
  .free_tool_section {
    padding: 25px 0;
  }
  .free_tool_section .container .section_heading {
    font-size: 20px;
    line-height: 22px;
  }
  .free_tool_section .container .subheading {
    font-size: 14px;
    line-height: 16px;
  }
  .free_tool_section .container .heading_border {
    width: 200px;
  }
  .free_tool_section .container .heading_border::after {
    left: 44%;
  }
  .free_tool_section .container .free_tool_slider {
    width: 100%;
    padding: 25px 0 25px;
    margin: 0;
  }
  .free_tool_section .container .free_tool_slider::before, .free_tool_section .container .free_tool_slider::after {
    display: none;
  }
  .free_tool_section .container .free_tool_slider .slider_item {
    margin: 0 15px 5px 5px;
  }
  .sample-strip .container .section_heading {
    font-size: 20px;
    line-height: 22px;
  }
  .sample-strip .container .subheading {
    font-size: 14px;
    line-height: 16px;
  }
  .free_samples .container .heading {
    font-size: 24px;
    line-height: 28px;
  }
  .free_samples .container .subheading {
    font-size: 14px;
    line-height: 16px;
  }
  .modules_covered {
    padding: 25px 0;
  }
  .modules_covered .container .heading {
    font-size: 20px;
    line-height: 22px;
  }
  .modules_covered .container .subheading {
    font-size: 14px;
    line-height: 16px;
  }
  .modules_covered .container .heading_border {
    width: 200px;
  }
  .modules_covered .container .heading_border::after {
    left: 44%;
  }
  .modules_covered .container .modules_row {
    padding: 25px 0;
  }
  .modules_covered .container .modules_row .right {
    margin: 0;
  }
  .modules_covered .container .modules_row .right .module_list {
    height: 212px;
    overflow: auto;
  }
  .modules_covered .container .modules_row .right .module_list li {
    background: #f5f5f5;
    padding: 4px 3px;
    width: 48%;
    font-size: 13px;
    line-height: 18px;
    margin: 0 0 10px;
  }
  .modules_covered .container .modules_row .right .whatsapp_help_box {
    width: 100%;
    margin: 21px 0 0;
    padding: 15px 11px;
    text-align: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .modules_covered .container .modules_row .right .whatsapp_help_box .help_title {
    font-size: 15px;
    line-height: 18px;
    width: 100% !important;
  }
  .modules_covered .container .modules_row .right .whatsapp_help_box .whatsapp_btn {
    margin: 10px auto 0;
    display: block;
    font-size: 18px;
    line-height: 22px;
    padding: 6px 12px;
  }
  .modules_covered::after {
    display: none;
  }
  .gurantee_best_assignment {
    padding: 25px 0;
  }
  .gurantee_best_assignment .container .heading {
    font-size: 20px;
    line-height: 22px;
  }
  .gurantee_best_assignment .container .subheading {
    font-size: 14px;
    line-height: 16px;
  }
  .gurantee_best_assignment .container .heading_border {
    width: 200px;
  }
  .gurantee_best_assignment .container .heading_border::after {
    left: 44%;
  }
  .gurantee_best_assignment .container .benefits_slider {
    padding: 15px 0 0;
  }
  .gurantee_best_assignment .container .benefits_slider .slider_item {
    padding: 15px;
  }
  .gurantee_best_assignment .container .benefits_slider .slider_item .title {
    font-size: 14px;
    line-height: 18px;
  }
  .gurantee_best_assignment .container .benefits_slider .slick-list {
    padding: 0 55px 0 0 !important;
  }
  .gurantee_best_assignment .container .benefits_slider .slick-dots {
    display: none;
  }
  .gurantee_best_assignment::before {
    display: none;
  }
  .latest_blog {
    padding: 25px 0;
  }
  .latest_blog .container .heading {
    font-size: 20px;
    line-height: 22px;
  }
  .latest_blog .container .subheading {
    font-size: 14px;
    line-height: 16px;
  }
  .latest_blog .container .heading_border {
    width: 200px;
  }
  .latest_blog .container .heading_border::after {
    left: 44%;
  }
  .latest_blog .container .blog_cards_row {
    padding: 25px 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .latest_blog .container .blog_cards_row .left,
  .latest_blog .container .blog_cards_row .right {
    width: 100%;
  }
  .latest_blog .container .blog_cards_row .right {
    margin: 20px 0 0;
  }
  .latest_blog .container .blog_cards_row .right .right_side_card {
    width: 100%;
  }
  .most_popular_questions {
    padding: 25px 0;
  }
  .most_popular_questions .container .heading {
    font-size: 20px;
    line-height: 22px;
  }
  .most_popular_questions .container .heading_border {
    width: 200px;
  }
  .most_popular_questions .container .heading_border::after {
    left: 44%;
  }
  .most_popular_questions .container .accordion {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .most_popular_questions .container .accordion .left_faqs,
  .most_popular_questions .container .accordion .right_faqs {
    width: 100%;
  }
  .still_in_two_minds .container .section_heading {
    font-size: 20px;
    line-height: 22px;
  }
  .still_in_two_minds .container .subheading {
    font-size: 14px;
    line-height: 16px;
  }
  .still_in_two_minds .container .heading_border::after {
    left: 44%;
  }
  .still_in_two_minds .container .button_rows .common_btn {
    padding: 0 5px;
    line-height: 18px;
    margin: 0 10px 0 10px;
    font-size: 14px;
  }
  .still_in_two_minds .container .button_rows .transparent_btn {
    padding: 0 5px;
    line-height: 18px;
    margin: 0 15px 0 0;
    font-size: 14px;
  }
  .still_in_two_minds .container .button_rows img {
    width: 25%;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .student_testimonials .container .section_heading {
    font-size: 20px;
    line-height: 22px;
  }
  .student_testimonials .container .subheading {
    font-size: 14px;
    line-height: 16px;
  }
  .student_testimonials .container .heading_border::after {
    left: 44%;
  }
  .student_testimonials .container .student_testimonial_slider {
    padding: 0 0 25px;
  }
}