/*=== Media Query ===*/
/*=====================================*/
/*-- :::: Sectio padding :::: --*/
/*=====================================*/
/*=====================================*/
/*-- :::: Space Decrease :::: --*/
/*=====================================*/
/* line 26, ../scss/helpers/_spacings.scss */

/*-- Padding Vertical --*/
/* line 170, ../scss/helpers/_spacings.scss */
.px--0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

/* line 194, ../scss/helpers/_spacings.scss */
.mt--20 {
  margin-top: 20px !important;
}

/* line 194, ../scss/helpers/_spacings.scss */
.mt--30 {
  margin-top: 30px !important;
}

/* line 202, ../scss/helpers/_spacings.scss */
.mb--30 {
  margin-bottom: 30px !important;
}

/* line 202, ../scss/helpers/_spacings.scss */
.mb--50 {
  margin-bottom: 50px !important;
}

/* line 2, ../scss/components/_buttons.scss */
.btn {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  transition: .4s;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}
/* line 13, ../scss/components/_buttons.scss */
.btn--primary {
  background-color: #E51433;
  color: #FFF;
}
/* line 16, ../scss/components/_buttons.scss */
.btn--primary:hover {
  background-color: rgba(229, 20, 51, 0.8);
  color: #fff;
}
/* line 22, ../scss/components/_buttons.scss */
.btn--medium {
  width: 163px;
}

@media (max-width: 500px){
  .btn--medium {
    width: 120px;
    height: 38px;
  }
}

@media (max-width: 350px){
  .btn--medium {
    font-size: 14px;
  }
}
/* line 26, ../scss/components/_buttons.scss */
.btn--large {
  width: 238px;
}

/* line 1, ../scss/components/_typography.scss */
h1, .h1 {
  font-size: 33px;
}
@media (min-width: 480px) {
  /* line 1, ../scss/components/_typography.scss */
  h1, .h1 {
    font-size: 46px;
  }
}
@media (min-width: 576px) {
  /* line 1, ../scss/components/_typography.scss */
  h1, .h1 {
    font-size: 50px;
  }
}
@media (min-width: 992px) {
  /* line 1, ../scss/components/_typography.scss */
  h1, .h1 {
    font-size: 56px;
  }
}

/* line 14, ../scss/components/_typography.scss */
h2, .h2 {
  font-size: 30px;
}
@media (min-width: 480px) {
  /* line 14, ../scss/components/_typography.scss */
  h2, .h2 {
    font-size: 35px;
  }
}
@media (min-width: 576px) {
  /* line 14, ../scss/components/_typography.scss */
  h2, .h2 {
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  /* line 14, ../scss/components/_typography.scss */
  h2, .h2 {
    font-size: 46px;
  }
}

/* line 28, ../scss/components/_typography.scss */
h3, .h3 {
  font-size: 38px;
}

/* line 32, ../scss/components/_typography.scss */
h4, .h4 {
  font-size: 28px;
}

/* line 36, ../scss/components/_typography.scss */
h5, .h5 {
  font-size: 24px;
}

/* line 40, ../scss/components/_typography.scss */
h6, .h6 {
  font-size: 21px;
}

/* line 45, ../scss/components/_typography.scss */
p {
  font-size: 18px;
}

/* line 49, ../scss/components/_typography.scss */
.p1 {
  font-size: 18px;
}

/* line 53, ../scss/components/_typography.scss */
.p2 {
  font-size: 16px;
}

/* line 57, ../scss/components/_typography.scss */
.p3 {
  font-size: 14px;
}

/* line 61, ../scss/components/_typography.scss */
.span {
  font-size: 12px;
}

/* /////////////////////////// 
    Header Area
//////////////////////////// */
/* line 4, ../scss/_sections.scss */
.site-header {
  background-color: #333333;
}

/* line 163, ../scss/_sections.scss */
.main-navigation {
  display: flex;
  justify-content: flex-end;
}
/* line 166, ../scss/_sections.scss */
.main-navigation .header-btns {
  margin-left: 50px;
}

/* line 121, ../scss/_sections.scss */
.header-btns {
  position: relative;
  display: flex;
  align-items: center;
}

/* line 170, ../scss/_sections.scss */
.mobile-header {
  padding: 18px 0;
}

/* Mobile Off canvas */
/* line 176, ../scss/_sections.scss */
.off-canvas-wrapper {
  top: 0;
  right: 0;
  height: 100vh;
  position: fixed;
  background-color: #333333;
  z-index: 9999;
  transition: 0.4s;
  transform: translateX(100%);
  box-shadow: 0 0 87px 0 rgba(0, 0, 0, 0.09);
  opacity: 0;
  visibility: hidden;
  width: 250px;
}
@media (min-width: 480px) {
  /* line 176, ../scss/_sections.scss */
  .off-canvas-wrapper {
    width: 300px;
  }
}
/* line 192, ../scss/_sections.scss */
.off-canvas-wrapper.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
/* line 197, ../scss/_sections.scss */
.off-canvas-wrapper .off-canvas-inner {
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 20px;
  height: 100%;
  position: relative;
  overflow-y: scroll;
}
/* line 205, ../scss/_sections.scss */
.off-canvas-wrapper .header-btns {
  flex-direction: column;
  align-items: unset;
}
/* line 209, ../scss/_sections.scss */
.off-canvas-wrapper .header-btns .btn:first-child {
  margin-bottom: 16px;
}
/* line 214, ../scss/_sections.scss */
.off-canvas-wrapper .btn-close-off-canvas {
  top: 0;
  left: -50px;
  width: 50px;
  height: 50px;
  font-size: 20px;
  background-color: #E51433;
  color: #fff;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  position: absolute;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
/* line 231, ../scss/_sections.scss */
.off-canvas-wrapper .menu-expand {
  display: none;
}

/* line 236, ../scss/_sections.scss */
.mobile-navigation {
  padding: 20px 0;
}
/* line 239, ../scss/_sections.scss */
.mobile-navigation .mobile-menu > li {
  padding-bottom: 13px;
  margin-bottom: 13px;
  border-bottom: 1px solid #ececec;
}
/* line 244, ../scss/_sections.scss */
.mobile-navigation .mobile-menu > li .sub-menu > li {
  padding-top: 13px;
  margin-top: 13px;
  border-top: 1px solid #ececec;
  padding-left: 20px;
}
/* line 250, ../scss/_sections.scss */
.mobile-navigation .mobile-menu > li .sub-menu > li.single-item h3 {
  font-size: 15px;
  margin-bottom: 5px;
  font-weight: 600;
}
/* line 255, ../scss/_sections.scss */
.mobile-navigation .mobile-menu > li .sub-menu > li.single-item p {
  font-size: 13px;
}
/* line 259, ../scss/_sections.scss */
.mobile-navigation .mobile-menu > li .sub-menu > li.single-item a:hover {
  color: inherit;
}
/* line 266, ../scss/_sections.scss */
.mobile-navigation .mobile-menu > li:last-child {
  border-bottom-color: transparent;
}
/* line 271, ../scss/_sections.scss */
.mobile-navigation .mobile-menu li i {
  margin-left: 8px;
  position: relative;
  top: 3px;
}
/* line 277, ../scss/_sections.scss */
.mobile-navigation .mobile-menu li:hover > a {
  color: #E51433;
}
/* line 282, ../scss/_sections.scss */
.mobile-navigation .mobile-menu a {
  display: block;
}

* line 12, ../scss/_sections.scss */
.site-header .main-menu {
  margin: 0 -18px;
}
/* line 15, ../scss/_sections.scss */
.site-header .brand-logo {
  position: relative;
  top: -2px;
}

@media (min-width: 992px) {
  /* line 20, ../scss/_sections.scss */
  .main-menu {
    display: flex;
    justify-content: flex-end;
  }
}
@media (min-width: 992px) {
  /* line 26, ../scss/_sections.scss */
  .main-menu > li > a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding: 18px;
  }
}
/* line 36, ../scss/_sections.scss */
.main-menu > li > a:hover {
  color: #E51433;
}
@media (min-width: 992px) {
  /* line 41, ../scss/_sections.scss */
  .main-menu .has-dropdown {
    position: relative;
    z-index: 99;
  }
}
@media (min-width: 992px) {
  /* line 47, ../scss/_sections.scss */
  .main-menu .has-dropdown:hover .menu-dropdown {
    top: 100%;
    opacity: 1;
    pointer-events: visible;
  }
}
/* line 53, ../scss/_sections.scss */
.main-menu .has-dropdown:hover .menu-dropdown p {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  /* line 59, ../scss/_sections.scss */
  .main-menu .menu-dropdown {
    display: flex;
    top: 110%;
    position: absolute;
    flex-wrap: wrap;
    min-width: 530px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    background-color: #ffffff;
    padding: 30px 30px 0px;
    z-index: 99;
    opacity: 0;
    transition: opacity .4s,top .4s;
    pointer-events: none;
    left: -90%;
  }
}
@media (min-width: 992px) {
  /* line 77, ../scss/_sections.scss */
  .main-menu .menu-dropdown .single-item {
    flex: calc(50% - 20px);
    max-width: calc(50% - 20px);
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) {
  /* line 85, ../scss/_sections.scss */
  .main-menu .menu-dropdown .single-item:hover a h3 {
    color: #E51433;
  }
}
/* line 93, ../scss/_sections.scss */
.main-menu .menu-dropdown .single-item a h3 {
  color: #1f1f1f;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.4px;
  transition: .4s;
  padding: 0;
  padding-bottom: 5px;
}
/* line 102, ../scss/_sections.scss */
.main-menu .menu-dropdown .single-item a p {
  margin-bottom: 0;
}
/* line 106, ../scss/_sections.scss */
.main-menu .menu-dropdown .single-item p {
  color: #878b90;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.35px;
}
@media (min-width: 992px) {
  /* line 112, ../scss/_sections.scss */
  .main-menu .menu-dropdown .single-item:nth-child(odd) {
    margin-right: 40px;
  }
}

/* /////////////////////////// 
    Hero Area
//////////////////////////// */
/* line 294, ../scss/_sections.scss */
.hero-area {
  background-color: #333333;
  z-index: 1;
  border-bottom: 1px solid #e5e5e5;
}

/* line 301, ../scss/_sections.scss */
.hero-content .title {
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.3px;
}
@media (min-width: 480px) {
  /* line 301, ../scss/_sections.scss */
  .hero-content .title {
    font-size: 46px;
  }
}
@media (min-width: 576px) {
  /* line 301, ../scss/_sections.scss */
  .hero-content .title {
    font-size: 50px;
  }
}
@media (min-width: 992px) {
  /* line 301, ../scss/_sections.scss */
  .hero-content .title {
    font-size: 56px;
  }
}
/* line 315, ../scss/_sections.scss */
.hero-content p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  padding-right: 7px;
}
@media (min-width: 480px) {
  /* line 315, ../scss/_sections.scss */
  .hero-content p {
    font-size: 20px;
    line-height: 34px;
  }
}
@media (min-width: 992px) {
  /* line 315, ../scss/_sections.scss */
  .hero-content p {
    padding-right: 30px;
  }
}
@media (min-width: 1200px) {
  /* line 315, ../scss/_sections.scss */
  .hero-content p {
    padding-right: 40px;
  }
}

/* line 334, ../scss/_sections.scss */
.hero-btns {
  margin-bottom: -15px;
}
/* line 336, ../scss/_sections.scss */
.hero-btns .android {
  margin-bottom: 15px;
}
/* line 338, ../scss/_sections.scss */
.hero-btns .android i {
  color: #fff;
}
/* line 341, ../scss/_sections.scss */
.hero-btns .android span {
  padding-left: 10px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0;
}
/* line 346, ../scss/_sections.scss */
.hero-btns .android span:hover {
  color: #fff;
}
/* line 352, ../scss/_sections.scss */
.hero-btns .apple {
  margin-bottom: 15px;
}
/* line 354, ../scss/_sections.scss */
.hero-btns .apple i {
  color: #fff;
}
/* line 357, ../scss/_sections.scss */
.hero-btns .apple span {
  padding-left: 10px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0;
}
/* line 362, ../scss/_sections.scss */
.hero-btns .apple span:hover {
  color: #fff;
}

/* line 369, ../scss/_sections.scss */
.hero-ratings {
  display: flex;
}
/* line 371, ../scss/_sections.scss */
.hero-ratings .trust-info {
  color: #535659;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.32px;
  margin-left: 15px;
}
@media (min-width: 480px) {
  /* line 371, ../scss/_sections.scss */
  .hero-ratings .trust-info {
    font-size: 17px;
  }
}
/* line 383, ../scss/_sections.scss */
.hero-ratings .rating-stars {
  display: flex;
}
/* line 385, ../scss/_sections.scss */
.hero-ratings .rating-stars li {
  color: #fa8231;
}
/* line 387, ../scss/_sections.scss */
.hero-ratings .rating-stars li:last-child {
  color: #e5e5e5;
}

/* line 394, ../scss/_sections.scss */
.hero-image {
  z-index: 1;
  width: 100%;
}
@media (min-width: 480px) {
  /* line 394, ../scss/_sections.scss */
  .hero-image {
    width: 70%;
  }
}
@media (min-width: 768px) {
  /* line 394, ../scss/_sections.scss */
  .hero-image {
    margin-top: 80px;
    width: 100%;
  }
}
@media (min-width: 992px) {
  /* line 394, ../scss/_sections.scss */
  .hero-image {
    height: 641px;
    margin-top: 0;
    display: block;
  }
}
/* line 410, ../scss/_sections.scss */
.hero-image .phn-shape {
  position: absolute;
  top: -15px;
  left: -15px;
  z-index: -1;
  max-width: 180px;
}
@media (min-width: 480px) {
  /* line 410, ../scss/_sections.scss */
  .hero-image .phn-shape {
    max-width: 270px;
  }
}
@media (min-width: 768px) {
  /* line 410, ../scss/_sections.scss */
  .hero-image .phn-shape {
    top: -35px;
    right: 50px;
  }
}
@media (min-width: 992px) {
  /* line 410, ../scss/_sections.scss */
  .hero-image .phn-shape {
    top: -15px;
    left: -30px;
  }
}
@media (min-width: 1200px) {
  /* line 410, ../scss/_sections.scss */
  .hero-image .phn-shape {
    top: -50px;
    left: -65px;
    max-width: 100%;
  }
}
/* line 435, ../scss/_sections.scss */
.hero-image .image-mobile img {
  position: relative;
}
@media (min-width: 992px) {
  /* line 435, ../scss/_sections.scss */
  .hero-image .image-mobile img {
    top: 50px;
  }
}
@media (min-width: 1200px) {
  /* line 435, ../scss/_sections.scss */
  .hero-image .image-mobile img {
    top: 0px;
  }
}
/* line 446, ../scss/_sections.scss */
.hero-image .absolute-image {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (min-width: 1600px) {
  /* line 450, ../scss/_sections.scss */
  .hero-image .absolute-image.image-2 {
    left: 18%;
  }
}

/* line 458, ../scss/_sections.scss */
.hero-shape {
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: -1;
}

/* /////////////////////////// 
    Feature Section
//////////////////////////// */
/* line 473, ../scss/_sections.scss */
.feature-widget .widget-icon {
  opacity: 0.15;
  color: #fff;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  /* line 473, ../scss/_sections.scss */
  .feature-widget .widget-icon {
    margin-bottom: 60px;
  }
}
/* line 482, ../scss/_sections.scss */
.feature-widget .widget-icon span {
  font-size: inherit;
}
/* line 487, ../scss/_sections.scss */
.feature-widget .content .title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (min-width: 992px) {
  /* line 487, ../scss/_sections.scss */
  .feature-widget .content .title {
    margin-bottom: 28px;
  }
}
/* line 495, ../scss/_sections.scss */
.feature-widget .content p {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 34px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  /* line 495, ../scss/_sections.scss */
  .feature-widget .content p {
    font-size: 15px;
    font-weight: 500;
    padding-right: 0;
  }
}
@media (min-width: 992px) {
  /* line 495, ../scss/_sections.scss */
  .feature-widget .content p {
    font-size: 18px;
    font-weight: 400;
  }
}
@media (min-width: 1200px) {
  /* line 495, ../scss/_sections.scss */
  .feature-widget .content p {
    padding-right: 60px;
  }
}

/* /////////////////////////// 
    Content Section
//////////////////////////// */
/* line 522, ../scss/_sections.scss */
.content-wrapper {
  position: relative;
  overflow: hidden;
}
/* line 525, ../scss/_sections.scss */
.content-wrapper .content-right-content {
  padding-bottom: 25px;
}
@media (min-width: 768px) {
  /* line 525, ../scss/_sections.scss */
  .content-wrapper .content-right-content {
    padding-bottom: 60px;
  }
}
@media (min-width: 992px) {
  /* line 525, ../scss/_sections.scss */
  .content-wrapper .content-right-content {
    padding-bottom: 125px;
  }
}
/* line 533, ../scss/_sections.scss */
.content-wrapper .content-right-content .title {
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.34px;
  margin-bottom: 15px;
}
@media (min-width: 480px) {
  /* line 533, ../scss/_sections.scss */
  .content-wrapper .content-right-content .title {
    padding-right: 50px;
  }
}
@media (min-width: 576px) {
  /* line 533, ../scss/_sections.scss */
  .content-wrapper .content-right-content .title {
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  /* line 533, ../scss/_sections.scss */
  .content-wrapper .content-right-content .title {
    margin-bottom: 20px;
  }
}
/* line 551, ../scss/_sections.scss */
.content-wrapper .content-right-content p {
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  line-height: 34px;
}
@media (min-width: 768px) {
  /* line 551, ../scss/_sections.scss */
  .content-wrapper .content-right-content p {
    font-size: 16px;
    line-height: 25px;
    padding-right: 5px;
  }
}
@media (min-width: 992px) {
  /* line 551, ../scss/_sections.scss */
  .content-wrapper .content-right-content p {
    font-size: 18px;
    line-height: 32px;
    padding-right: 15px;
  }
}
/* line 569, ../scss/_sections.scss */
.content-wrapper .content-image-01 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  /* line 569, ../scss/_sections.scss */
  .content-wrapper .content-image-01 {
    position: absolute;
    top: 20px;
    right: 10px;
  }
}
/* line 579, ../scss/_sections.scss */
.content-wrapper .content-image-01 img {
  max-width: 100%;
}
/* line 584, ../scss/_sections.scss */
.content-wrapper .content-image-02 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  /* line 584, ../scss/_sections.scss */
  .content-wrapper .content-image-02 {
    position: absolute;
    top: 40px;
    left: 0;
  }
}
/* line 594, ../scss/_sections.scss */
.content-wrapper .content-image-02 img {
  max-width: 100%;
}

/* line 604, ../scss/_sections.scss */
.content-02 .title {
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.34px;
}
@media (min-width: 768px) {
  /* line 604, ../scss/_sections.scss */
  .content-02 .title {
    margin-bottom: 20px;
    margin-left: 30px;
    margin-top: 30px;
  }
}
@media (min-width: 992px) {
  /* line 604, ../scss/_sections.scss */
  .content-02 .title {
    margin-left: 0;
    margin-bottom: 70px;
    padding-right: 15px;
    margin-top: 70px;
  }
}

@media (min-width: 992px) {
  /* line 622, ../scss/_sections.scss */
  .content-widgets {
    padding-bottom: 110px;
  }
}

/* line 627, ../scss/_sections.scss */
.content-widget-wrapper {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  /* line 627, ../scss/_sections.scss */
  .content-widget-wrapper {
    margin: 0 0px;
    display: block;
  }
}
/* line 634, ../scss/_sections.scss */
.content-widget-wrapper .content-widget {
  margin-top: 30px;
  flex: 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  /* line 634, ../scss/_sections.scss */
  .content-widget-wrapper .content-widget {
    flex: 50%;
    max-width: 50%;
    padding: 0 15px;
  }
}
@media (min-width: 992px) {
  /* line 634, ../scss/_sections.scss */
  .content-widget-wrapper .content-widget {
    flex: 100%;
    max-width: 100%;
    padding: 0px;
  }
}

/* line 652, ../scss/_sections.scss */
.content-widget {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
@media (min-width: 480px) {
  /* line 652, ../scss/_sections.scss */
  .content-widget {
    flex-direction: row;
    text-align: left;
  }
}
@media (min-width: 768px) {
  /* line 652, ../scss/_sections.scss */
  .content-widget {
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  /* line 652, ../scss/_sections.scss */
  .content-widget {
    flex-direction: row;
  }
}
/* line 666, ../scss/_sections.scss */
.content-widget .content {
  flex-basis: calc(100% - 100px);
}
/* line 668, ../scss/_sections.scss */
.content-widget .content .widget-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  /* line 668, ../scss/_sections.scss */
  .content-widget .content .widget-title {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  /* line 668, ../scss/_sections.scss */
  .content-widget .content .widget-title {
    font-size: 22px;
  }
}
/* line 679, ../scss/_sections.scss */
.content-widget .content p {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 34px;
}
@media (min-width: 768px) {
  /* line 679, ../scss/_sections.scss */
  .content-widget .content p {
    font-size: 14px;
    line-height: 25px;
  }
}
@media (min-width: 992px) {
  /* line 679, ../scss/_sections.scss */
  .content-widget .content p {
    font-size: 18px;
    line-height: 34px;
  }
}
/* line 695, ../scss/_sections.scss */
.content-widget .widget-icon {
  background-color: #E51433;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 28px;
  color: #fff;
  transition: 0.4s;
  margin-top: 7px;
  margin-right: 25px;
}


@media (min-width: 576px) {
  /* line 695, ../scss/_sections.scss */
  .content-widget .widget-icon {
    margin-bottom: 0px;
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  /* line 695, ../scss/_sections.scss */
  .content-widget .widget-icon {
    margin-bottom: 15px;
  }
}
@media (min-width: 992px) {
  /* line 695, ../scss/_sections.scss */
  .content-widget .widget-icon {
    margin-right: 25px;
    margin-bottom: 0px;
    margin-left: 0;
  }
}
/* line 721, ../scss/_sections.scss */
.content-widget .widget-icon i {
  transition: .4s;
}
/* line 728, ../scss/_sections.scss */
.content-widget:hover .widget-icon i {
  transform: rotateY(180deg);
}

/* /////////////////////////// 
    Example Section
//////////////////////////// */
/* line 813, ../scss/_sections.scss */
.example-section {
  background-color: #333333;
  z-index: 1;
}
/* line 816, ../scss/_sections.scss */
.example-section .section-title {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  /* line 816, ../scss/_sections.scss */
  .example-section .section-title {
    margin-bottom: 60px;
  }
}
/* line 821, ../scss/_sections.scss */
.example-section .section-title p {
  color: #fff;
}
/* line 825, ../scss/_sections.scss */
.example-section .section-title .example-title {
  color: #ffffff;
  margin-bottom: 22px;
}

/* line 831, ../scss/_sections.scss */
.example-slider-wrapper {
  position: relative;
  margin-top: 20px;
}
/* line 834, ../scss/_sections.scss */
.example-slider-wrapper .slick-arrow {
  position: absolute;
  top: 50%;
  left: 5%;
  font-size: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .4s;
  background-color: #E51433;
  color: #fff;
  transform: translateY(-50%);
  z-index: 99;
}
@media (min-width: 1366px) {
  /* line 834, ../scss/_sections.scss */
  .example-slider-wrapper .slick-arrow {
    left: 20%;
  }
}
@media (min-width: 1800px) {
  /* line 834, ../scss/_sections.scss */
  .example-slider-wrapper .slick-arrow {
    left: 27%;
  }
}
/* line 856, ../scss/_sections.scss */
.example-slider-wrapper .slick-arrow:hover {
  background: white;
  color: #000000;
}
/* line 860, ../scss/_sections.scss */
.example-slider-wrapper .slick-arrow.slick-next {
  left: auto;
  right: 5%;
}
@media (min-width: 1600px) {
  /* line 860, ../scss/_sections.scss */
  .example-slider-wrapper .slick-arrow.slick-next {
    right: 20%;
  }
}
@media (min-width: 1800px) {
  /* line 860, ../scss/_sections.scss */
  .example-slider-wrapper .slick-arrow.slick-next {
    right: 29%;
  }
}
/* line 871, ../scss/_sections.scss */
.example-slider-wrapper .slick-dots {
  display: flex;
  justify-content: center;
  margin-top: 70px;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}
@media (min-width: 768px) {
  /* line 871, ../scss/_sections.scss */
  .example-slider-wrapper .slick-dots {
    margin-top: 110px;
  }
}
/* line 881, ../scss/_sections.scss */
.example-slider-wrapper .slick-dots li {
  font-size: 0;
  background-color: #ffffff;
  opacity: 0.3;
  height: 10px;
  width: 10px;
  border-radius: 500px;
  margin: 0 5px;
}
/* line 889, ../scss/_sections.scss */
.example-slider-wrapper .slick-dots li.slick-active {
  opacity: 1;
}

/* line 897, ../scss/_sections.scss */
.example-image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  overflow: hidden;
}
@media (min-width: 690px) {
  /* line 897, ../scss/_sections.scss */
  .example-image {
    width: 330px;
    max-height: 662px;
    border-radius: 50px;
  }
}
@media (min-width: 690px) {
  /* line 909, ../scss/_sections.scss */
  .example-image img {
    width: 100%;
  }
}

/* line 916, ../scss/_sections.scss */
.phone-bg-img {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 11;
  display: none;
}
@media (min-width: 690px) {
  /* line 916, ../scss/_sections.scss */
  .phone-bg-img {
    display: block;
    transform: translate(-50%, -50%);
  }
}

/* line 928, ../scss/_sections.scss */
.example-slider .slick-list {
  margin: 0 -23.5px;
}
/* line 932, ../scss/_sections.scss */
.example-slider .slick-slide {
  opacity: .2;
}
/* line 935, ../scss/_sections.scss */
.example-slider .slick-center {
  opacity: 1;
}

/* /////////////////////////// 
    CTA Section
//////////////////////////// */
/* line 945, ../scss/_sections.scss */
.cta-section {
  /*background-image: url(../image/Rectangle.png);*/
  background-color: #333333;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* line 952, ../scss/_sections.scss */
.cta-wrapper {
  text-align: center;
}
/* line 954, ../scss/_sections.scss */
.cta-wrapper .cta-title {
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.34px;
  margin-bottom: 38px;
}
/* line 961, ../scss/_sections.scss */
.cta-wrapper p {
  color: #878b90;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

/* line 969, ../scss/_sections.scss */
.cta-btns {
  margin-bottom: -15px;
}
/* line 971, ../scss/_sections.scss */
.cta-btns .android {
  margin-bottom: 15px;
  letter-spacing: 0;
}
@media (min-width: 576px) {
  /* line 971, ../scss/_sections.scss */
  .cta-btns .android {
    margin-right: 15px;
  }
}
/* line 977, ../scss/_sections.scss */
.cta-btns .android i {
  color: #fff;
}
/* line 980, ../scss/_sections.scss */
.cta-btns .android span {
  padding-left: 10px;
  color: #fff;
  font-weight: 600;
}
/* line 984, ../scss/_sections.scss */
.cta-btns .android span:hover {
  color: #fff;
}
/* line 990, ../scss/_sections.scss */
.cta-btns .apple {
  margin-bottom: 15px;
  letter-spacing: 0;
}
/* line 993, ../scss/_sections.scss */
.cta-btns .apple i {
  color: #fff;
}
/* line 996, ../scss/_sections.scss */
.cta-btns .apple span {
  padding-left: 10px;
  color: #fff;
  font-weight: 600;
}
/* line 1000, ../scss/_sections.scss */
.cta-btns .apple span:hover {
  color: #fff;
}

/* line 1007, ../scss/_sections.scss */
.cta-icon {
  width: 84px;
  height: 84px;
  font-size: 28px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 500px;
  margin: 0 auto;
  margin-bottom: 25px;
  transition: 0.4s;
}
/* line 1019, ../scss/_sections.scss */
.cta-icon i {
  color: #E51433;
  font-size: inherit;
}
/* line 1024, ../scss/_sections.scss */
.cta-icon:hover {
  background-color: #E51433;
}
/* line 1026, ../scss/_sections.scss */
.cta-icon:hover i {
  color: #fff;
}

/* line 1032, ../scss/_sections.scss */
.cta-shape {
  position: absolute;
  bottom: 0;
  left: 0;
}

/* /////////////////////////// 
    Footer Section 
//////////////////////////// */
/* line 1044, ../scss/_sections.scss */
.footer-section {
  border-bottom: 1px solid #e5e5e5;
}
/* line 1046, ../scss/_sections.scss */
.footer-section .footer-icon {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  /* line 1046, ../scss/_sections.scss */
  .footer-section .footer-icon {
    margin-bottom: 65px;
  }
}

/* line 1053, ../scss/_sections.scss */
.footer-content {
  margin-bottom: 30px;
}
@media (min-width: 480px) {
  /* line 1053, ../scss/_sections.scss */
  .footer-content {
    padding-right: 145px;
  }
}
@media (min-width: 576px) {
  /* line 1053, ../scss/_sections.scss */
  .footer-content {
    padding-right: 25px;
  }
}
@media (min-width: 768px) {
  /* line 1053, ../scss/_sections.scss */
  .footer-content {
    padding-right: 15px;
  }
}
@media (min-width: 992px) {
  /* line 1053, ../scss/_sections.scss */
  .footer-content {
    padding: 0 55px 0 10px;
  }
}
@media (min-width: 1200px) {
  /* line 1053, ../scss/_sections.scss */
  .footer-content {
    padding-right: 35px;
  }
}
/* line 1070, ../scss/_sections.scss */
.footer-content p {
  color: #fff;
  font-weight: 400;
  line-height: 32px;
}

/* line 1076, ../scss/_sections.scss */
.footer-copyright-text {
  font-weight: 400;
  letter-spacing: -0.6px;
  line-height: 45px;
  color: #666666;
  margin-bottom: 0;
}

/* line 1083, ../scss/_sections.scss */
.footer-social-list {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  /* line 1083, ../scss/_sections.scss */
  .footer-social-list {
    margin-top: 0;
  }
}
/* line 1089, ../scss/_sections.scss */
.footer-social-list li {
  margin-right: 18px;
}

/* line 1094, ../scss/_sections.scss */
.contact-title {
  color: #fff;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 15px;
}

@media (max-width: 500px) {
  .contact-title {
    margin-top: 50px;
  }
}

/* line 1102, ../scss/_sections.scss */
.footer-address p {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
}

/* line 1110, ../scss/_sections.scss */
.footer-icon {
  width: 60px;
  height: 60px;
  font-size: 28px;
  background-color: #E51433;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 500px;
  margin-bottom: 25px;
  transition: 0.4s;
}
/* line 1121, ../scss/_sections.scss */
.footer-icon i {
  color: #fff;
  font-size: inherit;
}

/* line 1133, ../scss/_sections.scss */
.badge {
  width: 132px;
  height: 30px;
  border-radius: 15px;
  background-color: #E51433;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  margin-top: 25px;
}
/* line 1144, ../scss/_sections.scss */
.badge span {
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  padding-left: 10px;
}
@media (min-width: 768px) {
  /* line 1133, ../scss/_sections.scss */
  .badge {
    margin-top: 100px;
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) {
  /* line 1133, ../scss/_sections.scss */
  .badge {
    margin-top: 120px;
  }
}
