@font-face {
  font-family: "Recoleta-Black";
  src: url("../font/Recoleta/Recoleta-Black.ttf");
}

@font-face {
  font-family: "Recoleta-Bold";
  src: url("../font/Recoleta/Recoleta-Bold.ttf");
}

@font-face {
  font-family: "Recoleta-SemiBold";
  src: url("../font/Recoleta/Recoleta-SemiBold.ttf");
}

@font-face {
  font-family: "Recoleta-Medium";
  src: url("../font/Recoleta/Recoleta-Medium.ttf");
}

@font-face {
  font-family: "Recoleta-Regular";
  src: url("../font/Recoleta/Recoleta-Regular.ttf");
}

@font-face {
  font-family: "Epilogue-Black";
  src: url("../font/Epilogue/Epilogue-Black.ttf");
}

@font-face {
  font-family: "Epilogue-ExtraBold";
  src: url("../font/Epilogue/Epilogue-ExtraBold.ttf");
}

@font-face {
  font-family: "Epilogue-Bold";
  src: url("../font/Epilogue/Epilogue-Bold.ttf");
}

@font-face {
  font-family: "Epilogue-SemiBold";
  src: url("../font/Epilogue/Epilogue-SemiBold.ttf");
}

@font-face {
  font-family: "Epilogue-Medium";
  src: url("../font/Epilogue/Epilogue-Medium.ttf");
}

@font-face {
  font-family: "Epilogue-Regular";
  src: url("../font/Epilogue/Epilogue-Regular.ttf");
}

/*
0 - 350px;         Small Phone
350 - 600px;       Phone
600 - 900px;       Table potrait
900 - 1200px;      Table landscape
1200 - 1800px ( is where the normal style is applies )
1200 - 1800+ px;   Big desktop
$breakpoint arguement choices :
- sm-phone
- phone
- tab-port
- tab-land
- big-desktop
 ORDER: Base + Typography > genarel layout + grid > page layout > components
*/
/* ============================================ */
/* ================ universal selector adjustment ================ */
/* ============================================ */
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

/* ============================================ */
/* ================ html font size adjustment ================ */
/* ============================================ */
html {
  scroll-behavior: smooth;
  font-size: 10px;
}

/* ============================================ */
/* ================ body customization ================ */
/* ============================================ */
body {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff !important;
  font-family: "Epilogue-Medium", sans-serif;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.5px;
}

body a {
  text-decoration: none;
}

body button,
body button:focus {
  outline: none;
}

/* ============================================ */
/* ================ section padding ================ */
/* ============================================ */
section {
  padding: 9rem 0;
}

@media only screen and (max-width: 1200px) {
  section {
    padding: 6.5rem 0;
  }
}

@media only screen and (max-width: 900px) {
  section {
    padding: 5.5rem 0;
  }
}

@media only screen and (max-width: 600px) {
  section {
    padding: 6.5rem 12px;
  }
}

@media only screen and (max-width: 900px) {
  section .row {
    padding: 0;
  }
}

@media only screen and (max-width: 600px) {
  section .row {
    padding: 0 1.4rem;
  }
}

/* ============================================ */
/* ================ no gutters for row ================ */
/* ============================================ */
.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.row.no-gutters > [class^="col-"],
.row.no-gutters > [class*=" col-"] {
  padding-right: 0;
  padding-left: 0;
}

/* ============================================ */
/* ================ customize selection ================ */
/* ============================================ */
::-moz-selection {
  background-color: #292e36;
  color: #fff;
}
::selection {
  background-color: #292e36;
  color: #fff;
}

.heading-box {
  width: 100%;
  text-align: center;
  margin-bottom: 5rem;
}

.heading-sub,
.heading-primary {
  color: #3d434c;
}

.heading-sub {
  font-size: 3.6rem;
  font-family: "Epilogue-Bold";
}

@media only screen and (max-width: 600px) {
  .heading-sub {
    font-size: 3.2rem;
  }
}

.heading-sub__sub {
  font-size: 2.8rem;
  font-family: "Epilogue-Medium";
  color: #ec1c24;
  margin-top: 2.4rem;
}

@media only screen and (max-width: 600px) {
  .heading-sub__sub {
    font-size: 2.5rem;
  }
}

.heading-main {
  font-size: 5.2rem;
  font-family: "Recoleta-Bold";
}

.heading-main span {
  color: #ec1c24;
}

@media only screen and (max-width: 600px) {
  .heading {
    font-size: 4.6rem;
  }
}

.para {
  font-family: "Epilogue-Medium";
  font-size: 1.8rem;
  color: #868a8f;
}

@media only screen and (max-width: 600px) {
  .para {
    font-size: 1.6rem;
  }
}

.btn-primary {
  padding: 2rem 3.8rem;
  font-family: "Epilogue-SemiBold";
  font-size: 1.8rem;
  border-radius: 50px;
  background: #ec1c24 !important;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media only screen and (max-width: 600px) {
  .btn-primary {
    font-size: 1.6rem;
  }
}

.btn-primary:hover {
  background: #d31320 !important;
  text-decoration: none;
  -webkit-box-shadow: 0px 9px 30px -5px rgba(226, 18, 25, 0.2),
    inset 0px -3px 7px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 9px 30px -5px rgba(226, 18, 25, 0.2),
    inset 0px -3px 7px rgba(0, 0, 0, 0.1);
}

.header_area {
  width: 100%;
  background-color: #fff0f1;
  position: relative;
  padding: 10px 0;
  z-index: 999;
}

@media only screen and (max-width: 600px) {
  .header_area {
    padding: 2px 0;
  }
}

.header_area .navbar {
  background: transparent;
  padding: 0px;
  border: 0px;
  border-radius: 0px;
  margin-top: 3rem;
}

@media only screen and (max-width: 600px) {
  .header_area .navbar {
    margin-top: 2rem;
  }
}

.header_area .navbar .logo_h {
  width: auto;
  height: 60px;
}

@media only screen and (max-width: 600px) {
  .header_area .navbar .logo_h {
    height: 52px;
  }
}

@media only screen and (max-width: 375px) {
  .header_area .navbar .logo_h {
    height: 46px;
  }
}

.header_area .navbar .logo_h img {
  width: auto;
  height: 37px;
  margin-top: 10px;
}

.header_area .navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
}

.header_area .navbar .nav .active .nav-link {
  color: #ec1c24;
  border: 1.4px solid #ec1c24;
  border-radius: 50px;
}

.header_area .navbar .nav-item {
  margin-right: 1rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.header_area .navbar .nav-item .nav-link {
  text-transform: capitalize;
  color: #000;
  padding: 1.4rem 2.8rem;
  display: inline-block;
  border: 1px solid transparent;
  font-family: "Epilogue-Medium";
  font-size: 20px;
  line-height: 2.2rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.header_area .navbar .nav-item .nav-link::after {
  display: none;
}

.header_area .navbar .nav-item:hover .nav-link,
.header_area .navbar .nav-item .active .nav-link {
  color: #ec1c24;
}

.header_area .navbar .nav-item .submenu {
  position: relative;
}

.header_area .navbar .nav-item .submenu ul {
  border: none;
  padding: 0px;
  border-radius: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin: 0px;
  background: #fff;
  -webkit-box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.1);
}

.header_area .navbar .nav-item .submenu ul:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #eeeeee transparent transparent transparent;
  position: absolute;
  right: 24px;
  top: 45px;
  z-index: 3;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.header_area .navbar .nav-item .submenu ul .nav-item {
  display: block;
  float: none;
  margin-right: 0px;
  border-bottom: 1px solid #ededed;
  margin-left: 0px;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.header_area .navbar .nav-item .submenu ul .nav-item .nav-link {
  line-height: 45px;
  color: #1d1d1d;
  padding: 0px 30px;
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
  display: block;
  margin-right: 0px;
}

.header_area .navbar .nav-item .submenu ul .nav-item:last-child {
  border-bottom: none;
}

.header_area .navbar .nav-item .submenu ul .nav-item:hover .nav-link {
  background: #ec1c24;
  color: #fff;
}

.header_area .navbar .nav-item .submenu:hover ul .nav-item {
  margin-top: 0px;
}

.header_area .navbar .nav-item:last-child {
  margin-right: 0px;
}

.navbar_fixed .navbar {
  margin: 5px 0;
}

@media (min-width: 992px) {
  .header_area .navbar .nav .nav-item.submenu ul {
    position: absolute;
    top: 120%;
    left: 0px;
    min-width: 200px;
    text-align: left;
    opacity: 0;
    -webkit-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
    visibility: hidden;
    display: block;
    border: none;
    padding: 0px;
    border-radius: 0px;
  }
  .header_area .navbar .nav .nav-item.submenu:hover ul {
    visibility: visible;
    opacity: 1;
    top: 100%;
  }
}

.header_area.navbar_fixed .main_menu {
  position: fixed;
  width: 100%;
  top: -70px;
  left: 0;
  right: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  -webkit-transform: translateY(70px);
  transform: translateY(70px);
  -webkit-transition: background 500ms ease, -webkit-transform 500ms ease;
  transition: background 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, background 500ms ease;
  transition: transform 500ms ease, background 500ms ease,
    -webkit-transform 500ms ease;
  -webkit-transition: transform 500ms ease, background 500ms ease;
  -webkit-box-shadow: 0 8px 45px rgba(211, 19, 32, 0.1);
  box-shadow: 0 8px 45px rgba(211, 19, 32, 0.1);
  z-index: 9999;
}

@media only screen and (max-width: 600px) {
  .header_area.navbar_fixed .main_menu {
    -webkit-box-shadow: 0 8px 45px rgba(211, 19, 32, 0.15);
    box-shadow: 0 8px 45px rgba(211, 19, 32, 0.15);
  }
}

.header_area.navbar_fixed .main_menu .navbar .nav .nav-item .nav-link {
  line-height: auto;
}

.right-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 40px;
}

.right-button ul {
  margin-bottom: 0;
}

.nav--social li:first-child {
  margin-right: 15px;
}

.nav--action-btns li:first-child {
  margin-right: 20px;
}

.nav--social {
  margin-right: 40px;
}

.nav--social li {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #fff0f1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.nav--social li:hover {
  background-color: #ec1c24;
}

.nav--social li:hover a {
  width: 45px;
  height: 45px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav--social li:hover a:hover {
  text-decoration: none !important;
}

.nav--social li a {
  font-size: 1.7rem;
  color: #ec1c24;
}

.right-button ul {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-header-icons {
  display: none;
}

@media only screen and (max-width: 900px) {
  .mobile-header-icons {
    margin-left: 190px;
  }
}

@media only screen and (max-width: 1200px) {
  .mobile-header-icons {
    margin-left: 190px;
  }
}

@media only screen and (max-width: 600px) {
  .mobile-header-icons {
    margin-left: 16px;
  }
}

.mobile-header-icon--btns {
  width: auto;
  height: 26px;
}

.mobile-header-icon--btns:first-child {
  margin-right: 18px;
}

@media only screen and (max-width: 1200px) {
  .mobile-header-icon--btns:first-child {
    margin-right: 30px;
  }
}

@media only screen and (max-width: 600px) {
  .mobile-header-icon--btns:first-child {
    margin-right: 18px;
  }
}

.mobile-header-icon--btns img {
  width: auto;
  height: 100%;
}

@media (max-width: 1024px) {
  .right-button {
    display: none;
  }
  .mobile-header-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (max-width: 1619px) {
  .header_area .navbar .search {
    margin-left: 40px;
  }
}

@media (max-width: 1199px) {
  .header_area .navbar .nav .nav-item {
    margin-right: 28px;
  }
}

@media (max-width: 991px) {
  .navbar-toggler {
    border: none;
    border-radius: 0;
    padding: 0;
    cursor: pointer;
    margin-top: 27px;
    margin-bottom: 23px;
  }
  .navbar-toggler[aria-expanded="false"] span:nth-child(2) {
    opacity: 1;
  }
  .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .navbar-toggler[aria-expanded="true"] span:first-child {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: relative;
    top: 7.5px;
  }
  .navbar-toggler[aria-expanded="true"] span:last-child {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    bottom: 9px;
    position: relative;
  }
  .navbar-toggler span {
    display: block;
    width: 25px;
    height: 3px;
    background: #ec1c24;
    margin: auto;
    margin-bottom: 5px;
    -webkit-transition: all 400ms linear;
    transition: all 400ms linear;
    cursor: pointer;
  }
  .navbar .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .navbar-light .navbar-toggler {
    border: none !important;
  }
  .header_top .nav {
    padding: 0;
  }
  .header_area .navbar .nav .nav-item .nav-link {
    line-height: auto;
    margin-right: 0;
    display: block;
    border-radius: 50px;
  }
  .header_area.navbar_fixed .main_menu .navbar .nav .nav-item .nav-link {
    line-height: auto;
  }
  .header_area .navbar .search {
    margin-left: 0;
  }
  .header_area .navbar-collapse {
    max-height: 340px;
    overflow-y: scroll;
  }
  .header_area .navbar .nav .nav-item.submenu ul .nav-item .nav-link {
    padding: 0 15px;
  }
  .header_area .navbar .nav .nav-item {
    margin-right: 0;
  }
  .header_area .navbar .nav .nav-item:first-child {
    margin-top: 12px;
  }
}

@media (max-width: 600px) {
  .builder_inner .builder_item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .top_menu {
    display: none;
  }
}

.banner {
  background: #fff0f1;
  padding-bottom: 10rem;
  background-image: url(../img/banner-bg.png);
  background-repeat: no-repeat;
  position: relative;
}

@media only screen and (max-width: 600px) {
  .banner {
    padding-top: 5rem;
  }
}

@media only screen and (max-width: 600px) {
  .banner .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

@media only screen and (max-width: 600px) {
  .banner .row br {
    display: none;
  }
}

.banner-left {
  width: 100%;
  padding-top: 2rem;
}

@media only screen and (max-width: 600px) {
  .banner-left {
    padding-top: 0;
  }
}

.banner-right {
  width: 100%;
  position: relative;
  z-index: 20;
}

.banner-right img {
  width: 110%;
  height: auto;
  position: absolute;
  top: -4rem;
  left: -7rem;
}

@media only screen and (max-width: 600px) {
  .banner-right img {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
  }
}

.banner-heading__h4 {
  font-family: "Epilogue-Medium";
  font-size: 2.2rem;
  color: #3d434c;
}

@media only screen and (max-width: 600px) {
  .banner-heading__h4 {
    font-size: 2rem;
    margin-top: 5rem;
  }
}

.banner-heading__h1 {
  font-family: "Recoleta-Bold";
  font-size: 7rem;
  color: #3d434c;
  margin-top: 2.2rem;
}

@media only screen and (max-width: 600px) {
  .banner-heading__h1 {
    font-size: 5.2rem;
  }
}

.banner-heading__h1 span {
  color: #ec1c24;
}

.banner-des {
  font-family: "Epilogue-Medium";
  font-size: 1.6rem;
  line-height: 1.7;
  color: #868a8f;
  margin-top: 2.8rem;
}

.banner-action {
  margin-top: 7rem;
  position: relative;
  z-index: 11;
}

@media only screen and (max-width: 600px) {
  .banner-action {
    margin-top: 6rem;
  }
}

.banner-btm {
  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: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  margin-top: 10rem;
  z-index: 20;
}

@media only screen and (max-width: 600px) {
  .banner-btm {
    margin-top: 7rem;
  }
}

.banner-btm__g1 {
  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: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media only screen and (max-width: 600px) {
  .banner-btm__g1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.banner-btm__left .social-list {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.banner-btm__left .social-links a {
  font-size: 2.8rem;
  color: #3d434c;
  margin-right: 3rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.banner-btm__left .social-links a:hover {
  color: #ec1c24;
  text-shadow: 0px 8px 10px rgba(198, 9, 23, 0.15);
}

@media only screen and (max-width: 600px) {
  .banner-btm__left .social-links a {
    font-size: 2.4rem;
    margin-right: 2rem;
  }
}

.banner-btm__right .whatsapp-btn {
  background-color: #25d366;
  padding: 1.4rem 3rem;
  font-size: 1.8rem;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 5.5rem;
  border-radius: 50px;
  font-family: "Epilogue-Medium";
  line-height: 1.8rem;
  -webkit-box-shadow: 0px 9px 20px -5px rgba(37, 211, 102, 0.3);
  box-shadow: 0px 9px 20px -5px rgba(37, 211, 102, 0.3);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media only screen and (max-width: 600px) {
  .banner-btm__right .whatsapp-btn {
    margin-top: 2rem;
    font-size: 1.6rem;
  }
}

.banner-btm__right .whatsapp-btn span {
  font-size: 2.8rem;
  margin-right: 1.2rem;
  line-height: 2.8rem;
}

@media only screen and (max-width: 600px) {
  .banner-btm__right .whatsapp-btn span {
    font-size: 2.4rem;
  }
}

.banner-btm__right .whatsapp-btn:hover {
  text-decoration: none;
  -webkit-box-shadow: 0px 15px 20px -9px rgba(37, 211, 102, 0.5),
    inset 0px -3px 7px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 15px 20px -9px rgba(37, 211, 102, 0.5),
    inset 0px -3px 7px rgba(0, 0, 0, 0.1);
}

.banner-btm .scroll-text {
  position: absolute;
  bottom: 7rem;
  right: -6.8rem;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  font-family: "Epilogue-Regular";
  font-size: 1.8rem;
}

@media only screen and (max-width: 600px) {
  .banner-btm .scroll-text {
    bottom: 6rem;
    right: -42px;
    font-size: 1.4rem;
  }
}

.banner-btm .scroll-text span img {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  padding-top: 4rem;
}

.bg-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.bg-bubbles li {
  position: absolute;
  list-style: none;
  display: block;
  width: 40px;
  height: 40px;
  background-color: rgba(236, 28, 36, 0.15);
  bottom: -160px;
  -webkit-animation: square 25s infinite;
  animation: square 25s infinite;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.bg-bubbles li:nth-child(1) {
  left: 10%;
}

.bg-bubbles li:nth-child(2) {
  left: 20%;
  width: 80px;
  height: 80px;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-duration: 17s;
  animation-duration: 17s;
}

.bg-bubbles li:nth-child(3) {
  left: 25%;
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.bg-bubbles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  -webkit-animation-duration: 22s;
  animation-duration: 22s;
  background-color: rgba(236, 28, 36, 0.25);
}

.bg-bubbles li:nth-child(5) {
  left: 50%;
}

.bg-bubbles li:nth-child(6) {
  left: 60%;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  background-color: rgba(236, 28, 36, 0.2);
}

.bg-bubbles li:nth-child(7) {
  left: 32%;
  width: 100px;
  height: 100px;
  -webkit-animation-delay: 7s;
  animation-delay: 7s;
}

.bg-bubbles li:nth-child(8) {
  left: 55%;
  width: 20px;
  height: 20px;
  -webkit-animation-delay: 15s;
  animation-delay: 15s;
  -webkit-animation-duration: 40s;
  animation-duration: 40s;
}

.bg-bubbles li:nth-child(9) {
  left: 25%;
  width: 10px;
  height: 10px;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-duration: 40s;
  animation-duration: 40s;
  background-color: rgba(236, 28, 36, 0.3);
}

.bg-bubbles li:nth-child(10) {
  left: 60%;
  width: 100px;
  height: 100px;
  -webkit-animation-delay: 11s;
  animation-delay: 11s;
}

@-webkit-keyframes square {
  0% {
    z-index: -1;
    opacity: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    z-index: 10;
    opacity: 1;
    -webkit-transform: translateY(-2000px) rotate(600deg);
    transform: translateY(-2000px) rotate(600deg);
  }
}

@keyframes square {
  0% {
    z-index: -1;
    opacity: 0;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    z-index: 10;
    opacity: 1;
    -webkit-transform: translateY(-2000px) rotate(600deg);
    transform: translateY(-2000px) rotate(600deg);
  }
}

.about {
  padding-bottom: 0;
  position: relative;
  z-index: 20;
  background: #fff;
}

.about .heading-sub {
  margin-top: 6rem;
}

@media only screen and (max-width: 600px) {
  .about .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.about-left {
  width: 100%;
  height: auto;
}

.about-left img {
  width: 100%;
  height: auto;
}

.about-right {
  width: 100%;
  margin-top: -5rem;
  margin-left: 4rem;
}

@media only screen and (max-width: 600px) {
  .about-right {
    margin-left: 0;
  }
}

.about-right .heading-main {
  margin: 3.8rem 0;
}

.about-right .para {
  padding-right: 6rem;
  line-height: 1.8;
}

@media only screen and (max-width: 600px) {
  .about-right .para {
    padding-right: 0;
  }
}

.plan {
  padding: 6rem 0;
  background: #fff0f1;
  background-image: url(../img/plan-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (max-width: 600px) {
  .plan {
    background-repeat: repeat;
    background-size: initial;
    background-position: top left;
  }
}

.plan-box {
  width: 100%;
  height: auto;
  border-radius: 1.8rem;
  padding: 3rem 2.4rem 5.2rem 2.4rem;
  background: #fff;
  background-image: url(../img/plan-box__bg.png);
  background-repeat: no-repeat;
  background-position: fixed;
  text-align: center;
}

@media only screen and (max-width: 600px) {
  .plan-box {
    margin-bottom: 4.5rem;
  }
}

@media only screen and (max-width: 600px) {
  .plan-box::last-child {
    margin-bottom: 0 !important;
  }
}

.plan-name {
  font-size: 3.2rem;
  font-family: "Recoleta-Bold";
  color: #ec1c24;
  margin-top: 2rem;
}

.plan-subtitle {
  font-size: 1.8rem;
  font-family: "Epilogue-SemiBold";
  color: #3d434c;
  margin-top: 2rem;
  min-height: 51px;
  line-height: 1.7rem;
  margin-bottom: 0;
}

.plan-offers {
  list-style-type: none;
  width: 100%;
  text-align: left;
  margin-top: 4rem;
}

.plan-offers__item {
  font-size: 1.6rem;
  line-height: 1.6rem;
  font-family: "Epilogue-Medium";
  color: #868a8f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 2rem;
}

.plan-offers__item img {
  width: 2rem;
  height: auto;
  margin-right: 1.2rem;
  margin-top: -3px;
}

.plan-action {
  width: 100%;
  margin-top: 4rem;
}

.plan-action .btn-primary {
  width: calc(100% - 3rem);
  padding: 1.5rem 3.8rem;
  margin: 0 1.5rem;
  display: block;
}

.plan-action .btn-small{
  border-radius: 50px;
  border: none;
  padding: 1.1rem 4.5rem;
  font-size: 1.2rem;
  outline: none;
}

.hire {
  padding: 16rem 0;
}

@media only screen and (max-width: 600px) {
  .hire {
    padding: 10rem 0;
  }
}

.hire-box {
  width: 100%;
  padding: 3.5rem;
  background: #fafafa;
  border-radius: 1.8rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media only screen and (max-width: 600px) {
  .hire-box {
    margin-bottom: 3.5rem;
  }
}

@media only screen and (max-width: 600px) {
  .hire-box::last-child {
    margin-bottom: 0 !important;
  }
}

.hire-box:hover {
  background: #fff;
  -webkit-box-shadow: 0px 18px 38px -4px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 18px 38px -4px rgba(0, 0, 0, 0.08);
}

.hire-box:hover .hire-box__top-left {
  -webkit-box-shadow: 0px 10px 14px rgba(236, 28, 36, 0.2);
  box-shadow: 0px 10px 14px rgba(236, 28, 36, 0.2);
}

.hire-box:hover .hire-box__top-right svg path {
  fill: #ec1c24;
}

.hire-box__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.hire-box__top-left {
  width: 5.4rem;
  height: 5.4rem;
  background: #ec1c24;
  font-family: "Recoleta-Bold";
  font-size: 2.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0px 10px 14px rgba(236, 28, 36, 0.05);
  box-shadow: 0px 10px 14px rgba(236, 28, 36, 0.05);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.hire-box__top-right svg {
  width: 4.5rem;
  height: 4.5rem;
}

.hire-box__top-right svg path {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.hire-box__name {
  font-size: 2.6rem;
  font-family: "Recoleta-Bold";
  margin-top: 2.6rem;
}

.hire-box .para {
  font-size: 1.4rem;
  margin-top: 2rem;
  line-height: 2.2rem;
}

.download {
  background: #fff0f1;
  padding-bottom: 0;
  padding-top: 5rem;
  background-image: url(../img/download-bg.png);
}

@media only screen and (max-width: 600px) {
  .download {
    background-position: bottom left;
    background-repeat: no-repeat;
  }
}

@media only screen and (max-width: 600px) {
  .download .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.download-left {
  width: 100%;
}

@media only screen and (max-width: 600px) {
  .download-left {
    margin-top: 7rem;
  }
}

.download-left img {
  width: 100%;
  height: auto;
}

.download-right {
  padding-top: 12rem;
  padding-left: 4rem;
}

@media only screen and (max-width: 600px) {
  .download-right {
    padding-left: 0;
    padding-top: 2rem;
  }
}

.download-title {
  font-size: 4rem;
  font-family: "Recoleta-Bold";
  color: #3d434c;
  line-height: 4.2rem;
}

.download-title span {
  color: #ec1c24;
}

.download .para {
  margin-top: 2.4rem;
}

.download-action {
  margin-top: 5rem;
}

.download-from {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-top: 6rem;
}

.download-from__playStore,
.download-from__appStore {
  width: auto;
  height: 5.6rem;
}

@media only screen and (max-width: 600px) {
  .download-from__playStore,
  .download-from__appStore {
    height: 4.5rem;
  }
}

.download-from__playStore img,
.download-from__appStore img {
  width: auto;
  height: 100%;
}

.download-from__playStore {
  margin-right: 1.5rem;
}

.footer {
  padding: 8rem 12px;
  background: #292e36;
}

.footer-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 600px) {
  .footer-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.footer-right__left {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.footer-right__right {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.footer-right ul {
  list-style-type: none;
}

.footer-logo {
  width: auto;
  height: 7.2rem;
}

.footer-logo img {
  width: auto;
  height: 50px;
}

.footer .para {
  margin-top: 3.5rem;
  font-size: 1.6rem;
  padding-right: 8rem;
}

.footer-heading {
  font-size: 3.8rem;
  font-family: "Recoleta-Bold";
  color: #fff;
  margin-top: 4rem;
}

.footer-links {
  margin-top: 2.5rem;
}

.footer-links li {
  margin-bottom: 1.2rem;
}

.footer-links li a,
.footer-links li p {
  font-size: 1.6rem;
  color: #868a8f;
}

.footer-links li a span,
.footer-links li p span {
  margin-right: 1rem;
}

.footer-links li a span img,
.footer-links li p span img {
  width: 2rem;
  height: 2rem;
}

.footer-links li a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

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

.footer-links li p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer .social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.footer .social-links li {
  margin-right: 1.2rem;
  margin-top: 3rem;
}

.footer .social-links li a {
  width: 4.8rem;
  height: 4.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #f2fbff;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.65);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.footer .social-links li a:hover {
  border: 1px solid transparent;
  background: #ec1c24;
  -webkit-box-shadow: 0px 8px 18px rgba(236, 28, 36, 0.26);
  box-shadow: 0px 8px 18px rgba(236, 28, 36, 0.26);
  color: #fff;
  text-decoration: none;
}

.footer .social-links li:nth-child(3) a:hover {
  background: #25d366;
  -webkit-box-shadow: 0px 9px 20px -5px rgba(37, 211, 102, 0.4);
  box-shadow: 0px 9px 20px -5px rgba(37, 211, 102, 0.4);
}

.footer .map-box {
  margin-top: 2.8rem;
  background-image: url(../img/map-BG.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.footer-btm {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: #292e36;
}

@media only screen and (max-width: 600px) {
  .footer-btm {
    padding: 4rem 0;
  }
}

.footer-btm__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 600px) {
  .footer-btm__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.footer-btm__box .copy-text {
  font-size: 1.6rem;
  font-family: "Epilogue-Medium";
  color: rgba(255, 255, 255, 0.4);
}

.footer-btm__box .payment-list {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0;
}

@media only screen and (max-width: 600px) {
  .footer-btm__box .payment-list {
    margin-top: 1rem;
  }
}

.footer-btm__box .payment-list li {
  font-size: 3.6rem;
  color: rgba(255, 255, 255, 0.3);
  margin-left: 1rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.footer-btm__box .payment-list li:hover {
  color: #fff;
}

.footer-btm p {
  margin-bottom: 0;
}
.services .hire-box {
  min-height: 350px;
  border-radius: 1.8rem;
}


/* Modal service */
.modal-service{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.modal-service > .modal-content{
  width: 100%;
  max-width: 600px;
  background: #fff;
  border-radius: 1.8rem;
  padding: 1rem 2rem;
  position: relative;
}
.modal-service > .modal-content > .modal-body {
  font-size: 1.3rem;
  max-height: calc(100vh - 190px);
  overflow-y: auto;
}
.modal-service > .modal-content > .modal-body::-webkit-scrollbar-track,
.modal-service > .modal-content > .modal-body::-webkit-scrollbar-corner,
.modal-service > .modal-content > .modal-body::-webkit-scrollbar {
  background: #f5f5f5;
  width: 6px;
  height: 6px;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: #9e9e9e;
  border-radius: 6px;
}


.modal-service > .modal-content > .modal-footer > .btn-close{
  outline: none;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  font-size: 1.2rem;
  letter-spacing: 1px;
}
/* Modal service Ends */

#services_wrapper .btn-small{
  border-radius: 50px;
  border: none;
  padding: 1.1rem 4.5rem;
  font-size: 1.2rem;
  outline: none;
}
/*# sourceMappingURL=style.css.map */

