/* Color Variables */
/* Black Color Shades */
/* Grey Color Shades */
/* Background dull-color */
/* Special Yellow Shades */
/*

0 - 600px:       Mobile Phone
601 - 767px:     Tablet Small
768px - 1023px:  Tablet
1024px - 1200px: Notebook

[1200 - 1800] is where our normal styles apply

1800px + :      Big desktop

$breakpoint arguement choices:
- mobile
- tablet-small
- tablet
- notebook
- big-desktop

*/
/*Importing google font */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:wght@300;400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
@font-face {
  font-family: 'Myriad_Pro';
  src: url("../fonts/MyriadPro-Bold.otf") format("otf"), url("../fonts/MyriadPro-BlackSemiCn.otf") format("otf"), url("../fonts/Myriad Pro Bold SemiExtended.ttf") format("ttf"), url("../fonts/MyriadPro-Bold.ttf") format("truetype"), url("../fonts/MyriadPro-Bold.svg#MyriadPro-Regular") format("svg");
}

/*Myriad Pro font-weight */
/* Font details */
/* Font H1 */
/* Common/Basic styling */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
}

ul {
  list-style: none;
}

a {
  text-decoration: none !important;
}

/* Text-field text-color */
:focus-visible {
  outline: unset;
}

.active-menu {
  overflow-y: hidden;
}

.table-responsive {
  overflow-y: hidden;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow-x: auto;
}

html.prevent-scroll,
html.prevent-scroll body {
  height: 100%;
  overflow: hidden;
}

/* Styling of multiple mixin reusable */
@-webkit-keyframes arrowAnimation {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  50% {
    -webkit-transform: translateX(calc(50% + 10px));
            transform: translateX(calc(50% + 10px));
  }
  51% {
    -webkit-transform: translateX(calc(-50% - 10px));
            transform: translateX(calc(-50% - 10px));
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@keyframes arrowAnimation {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  50% {
    -webkit-transform: translateX(calc(50% + 10px));
            transform: translateX(calc(50% + 10px));
  }
  51% {
    -webkit-transform: translateX(calc(-50% - 10px));
            transform: translateX(calc(-50% - 10px));
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

.link {
  line-height: 11px;
  text-decoration: underline;
  color: #d9bea7;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* Styling of owl carousel */
.owl-carousel {
  display: block;
}

.owl-carousel .owl-stage-outer {
  overflow: hidden;
}

.owl-carousel .owl-stage-outer .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.owl-carousel .owl-stage-outer .owl-stage .owl-item li img {
  width: 100%;
}

.owl-carousel .owl-nav {
  display: none;
}

.owl-carousel .owl-nav [class*="owl-"] {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #93989e;
  overflow: hidden;
}

.owl-carousel .owl-nav [class*="owl-"].owl-prev {
  left: 0;
}

.owl-carousel .owl-nav [class*="owl-"].owl-prev::before {
  display: block;
  content: "";
  background-image: url("../webimages/icons/left-arrow-icon.svg");
  background-size: 11px 17px;
  background-repeat: no-repeat;
  width: 11px;
  height: 17px;
  margin: 0 auto;
}

.owl-carousel .owl-nav [class*="owl-"].owl-prev:hover::before {
  animation: arrowAnimation 0.3s ease-in-out reverse forwards;
}

.owl-carousel .owl-nav [class*="owl-"].owl-next {
  right: 0;
}

.owl-carousel .owl-nav [class*="owl-"].owl-next::before {
  display: block;
  content: "";
  background-image: url("../webimages/icons/right-arrow-icon.svg");
  background-size: 11px 17px;
  background-repeat: no-repeat;
  width: 11px;
  height: 17px;
  margin: 0 auto;
}

.owl-carousel .owl-nav [class*="owl-"].owl-next:hover::before {
  -webkit-animation: arrowAnimation 0.3s ease-in-out forwards;
          animation: arrowAnimation 0.3s ease-in-out forwards;
}

.owl-carousel .owl-dots {
  display: none;
  width: 100%;
  margin-top: 20px;
}

@media only screen and (max-width: 600px) {
  .owl-carousel .owl-dots {
    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;
  }
}

.owl-carousel .owl-dots .owl-dot {
  width: 7px;
  height: 7px;
  background: #e3e5ea;
  margin-right: 3px;
  border-radius: 50%;
}

.owl-carousel .owl-dots .owl-dot:last-child {
  margin-right: 0;
}

.owl-carousel .owl-dots .owl-dot.active {
  background: #014040;
}

/* Multiple buttons styling */
/* Styling of header */
.page-wrapper header {
  /* Top header styling */
}

.page-wrapper header .top-header {
  background: #000;
  color: #ffffff;
  padding: 10px 0;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-style: normal;
}

@media only screen and (max-width: 767px) {
  .page-wrapper header .top-header {
    padding: 7px 0;
  }
}

.page-wrapper header .top-header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* Social links */
}

@media only screen and (max-width: 600px) {
  .page-wrapper header .top-header .container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.page-wrapper header .top-header .container .top-header-content .email-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  text-decoration: none;
}

.page-wrapper header .top-header .container .top-header-content .email-heading img {
  padding-right: 10px;
}

.page-wrapper header .top-header .container .social-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0px !important;
  margin-bottom: 0px !important;
}

.page-wrapper header .top-header .container .social-links ul li {
  padding: 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-wrapper header .top-header .container .social-links ul li .facebook {
  padding-right: 10px;
}

.page-wrapper header .top-header .container .social-links ul li a {
  color: #fff;
  font-size: 22px;
}

.page-wrapper header .top-header .container .social-links ul li:first-child {
  padding-right: 20px;
}

.page-wrapper header .top-header .container .social-links ul .account {
  position: relative;
}

.page-wrapper header .top-header .container .social-links ul .account ion-icon {
  font-size: 20px;
  cursor: pointer;
}

.page-wrapper header .top-header .container .social-links ul .account .myaccount {
  display: none;
  position: absolute;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  background-color: #e9b212;
  top: 30px;
  width: 164px;
  right: -8px;
  z-index: 123321;
}

.page-wrapper header .top-header .container .social-links ul .account .myaccount:hover {
  background-color: #000;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.page-wrapper header .top-header .container .social-links ul .account .account-active {
  display: block;
}

.page-wrapper header .header.content {
  padding-top: 7px;
  padding-bottom: 7px;
}

@media only screen and (max-width: 991px) {
  .page-wrapper header .header.content {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.page-wrapper header .header.content .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* Site-header */
  /* Site-navigation */
}

.page-wrapper header .header.content .container .site-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 991px) {
  .page-wrapper header .header.content .container .site-logo {
    width: 100%;
  }
}

.page-wrapper header .header.content .container .site-logo .open-menu {
  display: none;
  cursor: pointer;
}

@media only screen and (max-width: 991px) {
  .page-wrapper header .header.content .container .site-logo .open-menu {
    display: block;
  }
}

@media only screen and (max-width: 991px) {
  .page-wrapper header .header.content .container .site-logo .logo img {
    width: 130px;
    height: 50px;
  }
}

.page-wrapper header .header.content .container .site-navigation .nav-menu {
  /* Site-header */
  /* Main menu*/
}

@media only screen and (max-width: 991px) {
  .page-wrapper header .header.content .container .site-navigation .nav-menu {
    display: block;
    -webkit-transform: translatex(-100%);
            transform: translatex(-100%);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    position: absolute;
    width: 100%;
    max-width: 290px;
    height: 100%;
    background: #ffffff;
    z-index: 2;
    top: 0;
    left: 0;
  }
}

.page-wrapper header .header.content .container .site-navigation .nav-menu .site-logo {
  display: none;
}

@media only screen and (max-width: 991px) {
  .page-wrapper header .header.content .container .site-navigation .nav-menu .site-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 10px;
  }
}

.page-wrapper header .header.content .container .site-navigation .nav-menu .site-logo .logo img {
  width: 130px;
  height: 50px;
}

.page-wrapper header .header.content .container .site-navigation .nav-menu #main-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0px !important;
}

@media only screen and (max-width: 991px) {
  .page-wrapper header .header.content .container .site-navigation .nav-menu #main-menu {
    display: block;
  }
}

@media only screen and (max-width: 991px) {
  .page-wrapper header .header.content .container .site-navigation .nav-menu #main-menu .nav-item {
    padding: 10px 0px;
  }
}

.page-wrapper header .header.content .container .site-navigation .nav-menu #main-menu .nav-item .nav-list {
  padding: 0 35px;
  color: #101010;
  font-size: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-style: normal;
}

@media only screen and (max-width: 1199px) {
  .page-wrapper header .header.content .container .site-navigation .nav-menu #main-menu .nav-item .nav-list {
    padding: 0 15px;
  }
}

@media only screen and (max-width: 991px) {
  .page-wrapper header .header.content .container .site-navigation .nav-menu #main-menu .nav-item .nav-list {
    padding: 15px 10px !important;
  }
}

.page-wrapper header .header.content .container .site-navigation .nav-menu #main-menu .nav-item .nav-list:hover, .page-wrapper header .header.content .container .site-navigation .nav-menu #main-menu .nav-item .nav-list:active, .page-wrapper header .header.content .container .site-navigation .nav-menu #main-menu .nav-item .nav-list:focus, .page-wrapper header .header.content .container .site-navigation .nav-menu #main-menu .nav-item .nav-list.active {
  text-shadow: 0px 0px 1px #3d3e40;
}

@media only screen and (max-width: 991px) {
  .page-wrapper header .header.content .container .site-navigation .nav-menu #main-menu .nav-item .nav-list:hover, .page-wrapper header .header.content .container .site-navigation .nav-menu #main-menu .nav-item .nav-list:active, .page-wrapper header .header.content .container .site-navigation .nav-menu #main-menu .nav-item .nav-list:focus, .page-wrapper header .header.content .container .site-navigation .nav-menu #main-menu .nav-item .nav-list.active {
    text-shadow: unset;
  }
}

.page-wrapper header .header.content .container .site-navigation .nav-menu #main-menu .nav-item:first-child .nav-list {
  padding-left: 0;
}

@media only screen and (max-width: 991px) {
  .page-wrapper header .header.content .container .site-navigation .nav-menu #main-menu .nav-item:first-child .nav-list {
    padding-left: 10px;
  }
}

.page-wrapper header .header.content .container .site-navigation .nav-menu #main-menu .nav-item:last-child .nav-list {
  padding-right: 0;
}

@media only screen and (max-width: 991px) {
  .page-wrapper header .header.content .container .site-navigation .nav-menu #main-menu .nav-item:last-child .nav-list {
    padding-right: 10px;
  }
}

@media only screen and (max-width: 991px) {
  .page-wrapper header .header.content .container .site-navigation .nav-menu #main-menu .nav-item:not(:first-child) {
    border-top: 1px solid #e3e5ea;
  }
}

.page-wrapper header .header.content .container .site-navigation .nav-menu #main-menu .nav-btn {
  position: relative;
  border: none  !important;
  margin-left: 55px;
}

@media only screen and (max-width: 991px) {
  .page-wrapper header .header.content .container .site-navigation .nav-menu #main-menu .nav-btn {
    display: none;
  }
}

.page-wrapper header .header.content .container .site-navigation .nav-menu #main-menu .nav-btn a {
  background-color: #ffc10d;
  padding: 7px 20px;
  color: #fff;
  font-weight: 700;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.page-wrapper header .header.content .container .site-navigation .nav-menu #main-menu .nav-btn a:hover {
  background-color: #4d4848;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.page-wrapper header .header.content .container .site-navigation .nav-menu #main-menu .nav-btn a:first-child {
  margin-right: -5px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  padding: 10px 15px 10px 30px;
}

.page-wrapper header .header.content .container .site-navigation .nav-menu #main-menu .nav-btn a:first-child::after {
  content: "";
  width: 3px;
  height: 18px;
  background-color: #fff;
  position: absolute;
  left: 46.7%;
  top: 4px;
}

@media only screen and (max-width: 991px) {
  .page-wrapper header .header.content .container .site-navigation .nav-menu #main-menu .nav-btn a:first-child::after {
    left: 48%;
    top: 15px;
  }
}

.page-wrapper header .header.content .container .site-navigation .nav-menu #main-menu .nav-btn a:last-child {
  border-bottom-right-radius: 30px;
  border-top-right-radius: 30px;
  padding: 10px 20px 10px 12px;
}

.page-wrapper header .header.content .container .site-navigation .nav-menu #main-menu .search-icon a {
  color: #212558;
  font-size: 22px;
  font-weight: bold;
}

.page-wrapper header .header.content .container .site-navigation .nav-menu #main-menu .search-icon a i {
  padding-left: 20px;
}

.page-wrapper header .header.content .container .site-navigation .nav-menu .social-links {
  display: none;
}

@media only screen and (max-width: 991px) {
  .page-wrapper header .header.content .container .site-navigation .nav-menu .social-links {
    display: block;
    background: #014040;
    position: absolute;
    bottom: 20px;
    width: 100%;
  }
}

.page-wrapper header .header.content .container .site-navigation .nav-menu .social-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0px !important;
  margin-bottom: 0px;
}

@media only screen and (max-width: 991px) {
  .page-wrapper header .header.content .container .site-navigation .nav-menu .social-links ul {
    padding: 10px 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.page-wrapper header .header.content .container .site-navigation .nav-menu .social-links ul li {
  padding: 0 5px;
}

.page-wrapper header .header.content .container .site-navigation .nav-menu .social-links ul li a {
  background-color: #ffc10d;
  padding: 7px 20px;
  color: #fff;
  font-weight: 700;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.page-wrapper header .header.content .container .site-navigation .nav-menu .social-links ul li a:hover {
  background-color: #4d4848;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.page-wrapper header .header.content .container .site-navigation .nav-menu .social-links ul li a:first-child {
  margin-right: -5px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  padding: 10px 15px 10px 30px;
}

.page-wrapper header .header.content .container .site-navigation .nav-menu .social-links ul li a:first-child::after {
  content: "";
  width: 3px;
  height: 18px;
  background-color: #fff;
  position: absolute;
  left: 46.7%;
  top: 4px;
}

@media only screen and (max-width: 991px) {
  .page-wrapper header .header.content .container .site-navigation .nav-menu .social-links ul li a:first-child::after {
    left: 48%;
    top: 15px;
  }
}

.page-wrapper header .header.content .container .site-navigation .nav-menu .social-links ul li a:last-child {
  border-bottom-right-radius: 30px;
  border-top-right-radius: 30px;
  padding: 10px 20px 10px 12px;
}

.page-wrapper header .header.content .container .site-navigation .nav-menu .social-links ul li:first-child {
  padding-left: 0;
}

.page-wrapper header .header.content .container .site-navigation .nav-menu .social-links ul li:last-child {
  padding-right: 0;
}

.page-wrapper header .header.content .container .site-navigation .nav-menu.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  overflow-y: scroll;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.page-wrapper header .header.content .container .site-navigation .nav-menu.active::-webkit-scrollbar {
  display: none;
}

.page-wrapper header .header.content .container .site-navigation .bg-close-menu {
  display: none;
}

@media only screen and (max-width: 991px) {
  .page-wrapper header .header.content .container .site-navigation .bg-close-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
  }
}

@media only screen and (max-width: 991px) {
  .page-wrapper header .header.content .container .site-navigation.active .bg-close-menu {
    display: block;
  }
}

.page-footer .container .footer-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

@media only screen and (max-width: 767px) {
  .page-footer .container .footer-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

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

.page-footer .container .footer-section .footer-left .footer-log {
  padding-left: 20px;
}

@media only screen and (max-width: 991px) {
  .page-footer .container .footer-section .footer-left .footer-log {
    padding-left: 0px;
  }
}

.page-footer .container .footer-section .footer-left .footer-left-description {
  padding-top: 30px;
  padding-bottom: 30px;
}

@media only screen and (max-width: 991px) {
  .page-footer .container .footer-section .footer-left .footer-left-description {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.page-footer .container .footer-section .footer-left .footer-left-description p {
  color: #9B94A9;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-style: normal;
}

@media only screen and (max-width: 600px) {
  .page-footer .container .footer-section .footer-left .bank-details .bank-img {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

.page-footer .container .footer-section .footer-left .bank-details .bank-img img {
  margin-right: 10px;
}

@media only screen and (max-width: 600px) {
  .page-footer .container .footer-section .footer-left .bank-details .bank-img img {
    margin-right: 0px;
  }
}

.page-footer .container .footer-section .footer-mid .footer-menu .footer-menu-title {
  padding-top: 10px;
  padding-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .page-footer .container .footer-section .footer-mid .footer-menu .footer-menu-title {
    padding-bottom: 0px;
  }
}

.page-footer .container .footer-section .footer-mid .footer-menu .footer-menu-title h4 {
  color: #28214c;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-style: normal;
}

.page-footer .container .footer-section .footer-mid .footer-menu .footer-menu-title img {
  margin-top: -20px;
}

.page-footer .container .footer-section .footer-mid .footer-menu .footer-menu-info .footer-list {
  padding-left: 0px !important;
}

.page-footer .container .footer-section .footer-mid .footer-menu .footer-menu-info .footer-list .footer-list-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 15px;
}

@media only screen and (max-width: 767px) {
  .page-footer .container .footer-section .footer-mid .footer-menu .footer-menu-info .footer-list .footer-list-items {
    padding-bottom: 7px;
  }
}

.page-footer .container .footer-section .footer-mid .footer-menu .footer-menu-info .footer-list .footer-list-items img {
  margin-right: 7px;
}

.page-footer .container .footer-section .footer-mid .footer-menu .footer-menu-info .footer-list .footer-list-items .footer-link {
  color: #9B94A9;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 19px;
}

.page-footer .container .footer-section .footer-mid .footer-menu .footer-menu-info .footer-list .footer-list-items .footer-link:hover {
  font-weight: 500;
  color: #000;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.page-footer .container .footer-section .footer-right .footer-right-title img {
  margin-top: -20px;
}

.page-footer .container .footer-section .footer-right .footer-right-title h4 {
  color: #28214c;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-style: normal;
}

.page-footer .container .footer-section .footer-right .foonter-contact {
  padding-top: 30px;
  padding-bottom: 30px;
}

@media only screen and (max-width: 991px) {
  .page-footer .container .footer-section .footer-right .foonter-contact {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .page-footer .container .footer-section .footer-right .foonter-contact {
    padding-top: 0px !important;
  }
}

.page-footer .container .footer-section .footer-right .foonter-contact p {
  color: #9B94A9;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-style: normal;
}

@media only screen and (max-width: 767px) {
  .page-footer .container .footer-section .footer-right .foonter-contact p {
    margin-bottom: 5px;
  }
}

.page-footer .container .footer-section .footer-right .foonter-contact p a {
  color: #9B94A9;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-style: normal;
}

.page-footer .container .footer-section .footer-right .footer-socail .socail-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 600px) {
  .page-footer .container .footer-section .footer-right .footer-socail .socail-img {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}

.page-footer .container .footer-section .footer-right .footer-socail .socail-img .icon {
  display: -ms-grid;
  display: grid;
  place-items: center;
  background-color: #9B94A9;
  width: 50px;
  height: 50px;
  border-radius: 50px;
}

.page-footer .container .footer-section .footer-right .footer-socail .socail-img .icon:not(:last-child) {
  margin-right: 10px;
}

.page-footer .container .footer-section .footer-right .footer-socail .socail-img .icon a {
  padding: 10px;
  color: #9B94A9;
}

.page-footer .container .footer-section .footer-right .footer-socail .socail-img .icon a i {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 4px;
  background-color: #fff;
}

.page-footer .footer-copyright {
  background-color: #3cb6d4;
  padding: 20px;
}

@media only screen and (max-width: 767px) {
  .page-footer .footer-copyright {
    padding: 12px;
  }
}

@media only screen and (max-width: 600px) {
  .page-footer .footer-copyright .container .footer-copy-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    text-align: center;
  }
}

.page-footer .footer-copyright .container .footer-copy-info p {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #000;
  margin-bottom: 0px !important;
}

@media only screen and (max-width: 767px) {
  .page-footer .footer-copyright .container .footer-copy-info p {
    font-size: 13px;
  }
}

.page-footer .footer-copyright .container .footer-copy-info p a {
  color: #000;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
}

main .home {
  background-image: url(../images/home-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

@media only screen and (max-width: 767px) {
  main .home {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

main .home .container .home-section {
  width: 100%;
}

@media only screen and (max-width: 991px) {
  main .home .container .home-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

main .home .container .home-section .home-left {
  width: 50%;
}

@media only screen and (max-width: 991px) {
  main .home .container .home-section .home-left {
    width: 100%;
    margin-bottom: 10px;
  }
}

main .home .container .home-section .home-left .home-left-heading h2 {
  font-size: 72px;
  font-weight: bold;
  color: #fff;
}

@media only screen and (max-width: 600px) {
  main .home .container .home-section .home-left .home-left-heading h2 {
    font-size: 35px;
  }
}

main .home .container .home-section .home-left .home-left-description {
  width: 80%;
}

@media only screen and (max-width: 600px) {
  main .home .container .home-section .home-left .home-left-description {
    width: 100%;
  }
}

main .home .container .home-section .home-left .home-left-description p {
  font-size: 19px;
  font-weight: 400;
  color: #fff;
}

main .home .container .home-section .home-left .btn a {
  width: 265px;
  height: 70px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  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;
  background-color: #ffc10d;
  color: #000
  font-size: 19px;
  font-weight: 700;
  border-radius: 4px;
  border: 1.5px solid #ffc10d;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

main .home .container .home-section .home-left .btn a:hover {
  background: transparent;
  color: #000 !important;
  border: 1.5px solid #ffc10d;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}



main .home .container .home-section .home-right {
  width: 50%;
}

@media only screen and (max-width: 991px) {
  main .home .container .home-section .home-right {
    width: 100%;
  }
}

main .home .container .home-section .home-right .home-right-img img {
  width: 100%;
}

main .about {
  background-color: transparent !important;
  background-image: none !important;
  padding-top: 50px;
  padding-bottom: 50px;
}

@media only screen and (max-width: 991px) {
  main .about {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

main .about .container .home-section .home-left {
  width: 48% !important;
}

@media only screen and (max-width: 991px) {
  main .about .container .home-section .home-left {
    width: 100% !important;
  }
}

main .about .container .home-section .home-left .home-left-heading h2 {
  font-size: 54px !important;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #28214c !important;
}

main .about .container .home-section .home-left .home-left-heading h2 span {
  color: #ffc10d;
}

@media only screen and (max-width: 600px) {
  main .about .container .home-section .home-left .home-left-heading h2 {
    font-size: 40px !important;
    padding-bottom: 10px !important;
  }
}

main .about .container .home-section .home-left .home-left-description p {
  color: #383838 !important;
}

main .about .container .home-section .home-right {
  width: 46%;
}

@media only screen and (max-width: 991px) {
  main .about .container .home-section .home-right {
    width: 100%;
  }
}

main .about-services {
  background-color: #f8f8f8;
  padding-top: 50px;
  padding-bottom: 50px;
}

@media only screen and (max-width: 991px) {
  main .about-services {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

main .about-services .container .about-services-title {
  font-size: 54px !important;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #28214c !important;
  text-transform: capitalize;
  text-align: center;
  padding-bottom: 50px;
}

@media only screen and (max-width: 600px) {
  main .about-services .container .about-services-title {
    font-size: 40px !important;
    padding-bottom: 20px !important;
  }
}

main .about-services .container .about-services-title span {
  color: #ffc10d;
}

@media only screen and (max-width: 991px) {
  main .about-services .container .card-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

main .about-services .container .card-group .card {
  border: none !important;
  background-color: transparent !important;
}

main .about-services .container .card-group .card:not(:last-child) {
  padding-right: 20px;
}

@media only screen and (max-width: 991px) {
  main .about-services .container .card-group .card:not(:last-child) {
    padding-right: 0px;
  }
}

main .about-services .container .card-group .card img {
  height: 380px !important;
  border-radius: 8px !important;
}

@media only screen and (max-width: 600px) {
  main .about-services .container .card-group .card .card-body {
    padding-left: 0px !important;
  }
}

main .about-services .container .card-group .card .card-body .card-title {
  color: #434343;
  font-size: 17px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-style: normal;
}

main .about-services .container .card-group .card .card-body .card-text {
  color: #808080;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-style: normal;
}

main .about-services .container .about-services-btn {
  padding-top: 20px;
}

main .about-services .container .about-services-btn a {
  width: 265px;
  height: 70px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  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;
  background-color: #ffc10d;
  color: #000;
  font-size: 19px;
  font-weight: 700;
  border-radius: 4px;
  border: 1.5px solid #ffc10d;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin: auto;
}

main .about-services .container .about-services-btn a:hover {
  background: transparent;
  color: #fff;
  border: 1.5px solid #ffc10d;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

main .about-services .container .about-services-btn a:hover {
  color: #000 !important;
}

@media (min-width: 991px) and (max-width: 1199px) {
  main .preinstall .container .editor-section .editor-left .editor-title h2 {
    font-size: 31px !important;
  }
}

main .preinstall .container .editor-section .editor-left .editor-title h2 span {
  color: #ffc10d;
}

main .preinstall .container .editor-section .editor-right .preinstall-img img {
  width: 100% !important;
}

main .Custom {
  background-color: #f8f8f8 !important;
}

main .Custom .editor-left {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

main .Custom .editor-right {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

main .services .container .services-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

@media only screen and (max-width: 767px) {
  main .services .container .services-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

main .services .container .services-section .services-title h2 {
  font-size: 72px;
  font-weight: 600;
  color: #28214c;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  main .services .container .services-section .services-title h2 {
    font-size: 45px;
  }
}

@media only screen and (max-width: 600px) {
  main .services .container .services-section .services-title h2 {
    font-size: 32px;
  }
}

main .services .container .services-section .services-info {
  padding-top: 50px;
}

@media only screen and (max-width: 991px) {
  main .services .container .services-section .services-info .services-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

main .services .container .services-section .services-info .services-card .card-info {
  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;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main .services .container .services-section .services-info .services-card .card-info:nth-child(2) {
  margin-bottom: -200px;
  position: relative;
}

@media only screen and (max-width: 1199px) {
  main .services .container .services-section .services-info .services-card .card-info:nth-child(2) {
    margin-bottom: -140px;
  }
}

@media only screen and (max-width: 991px) {
  main .services .container .services-section .services-info .services-card .card-info:nth-child(2) {
    margin-bottom: 0px;
  }
}

main .services .container .services-section .services-info .services-card .card-info:nth-child(2)::after {
  content: "";
  background-image: url(../images/top-arrow.png);
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  width: 252px;
  height: 100px;
  right: -175px;
  top: -23px;
  z-index: -23;
  -webkit-transform: rotate(12deg);
          transform: rotate(12deg);
}

@media only screen and (max-width: 1399px) {
  main .services .container .services-section .services-info .services-card .card-info:nth-child(2)::after {
    height: 80px;
  }
}

@media only screen and (max-width: 1199px) {
  main .services .container .services-section .services-info .services-card .card-info:nth-child(2)::after {
    top: 10px;
    -webkit-transform: rotate(12deg);
            transform: rotate(12deg);
  }
}

@media only screen and (max-width: 991px) {
  main .services .container .services-section .services-info .services-card .card-info:nth-child(2)::after {
    display: none;
  }
}

main .services .container .services-section .services-info .services-card .card-info:first-child {
  position: relative;
}

main .services .container .services-section .services-info .services-card .card-info:first-child::after {
  content: "";
  background-image: url(../images/bottom-arrow.png);
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  width: 252px;
  height: 110px;
  right: -150px;
  top: 26px;
  z-index: -23;
}

@media only screen and (max-width: 991px) {
  main .services .container .services-section .services-info .services-card .card-info:first-child::after {
    display: none;
  }
}

@media only screen and (max-width: 1199px) {
  main .services .container .services-section .services-info .services-card .card-info:first-child::after {
    top: 36px;
    right: -168px;
    height: 77px;
  }
}

@media only screen and (max-width: 1399px) {
  main .services .container .services-section .services-info .services-card .card-info:first-child::after {
    height: 90px;
  }
}

main .services .container .services-section .services-info .services-card .card-info .card-title h4 {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 48px;
  color: #28214c;
  padding-top: 10px;
  padding-bottom: 20px;
}

@media only screen and (max-width: 600px) {
  main .services .container .services-section .services-info .services-card .card-info .card-title h4 {
    font-size: 28px;
    padding-bottom: 0px;
  }
}

main .services .container .services-section .services-info .services-card .card-info .card-description p {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
}

main .user {
  background-image: url(../images/aboutrepay.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 80px;
  padding-bottom: 125px;
}

@media only screen and (max-width: 991px) {
  main .user {
    margin-top: 0px;
    padding-bottom: 70px;
  }
}

main .user .container .user-section {
  width: 100%;
}

@media only screen and (max-width: 991px) {
  main .user .container .user-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

main .user .container .user-section .user-left {
  width: 50%;
}

@media only screen and (max-width: 991px) {
  main .user .container .user-section .user-left {
    width: 100%;
  }
}

main .user .container .user-section .user-left .user-img {
  background-image: url(../images/user-img.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 90%;
  margin-top: -30px;
}

@media only screen and (max-width: 991px) {
  main .user .container .user-section .user-left .user-img {
    width: 100%;
    height: auto;
  }
}

main .user .container .user-section .user-left .user-img img {
  width: 90%;
}

@media only screen and (max-width: 991px) {
  main .user .container .user-section .user-left .user-img img {
    width: 100%;
  }
}

main .user .container .user-section .user-right {
  width: 50%;
}

@media only screen and (max-width: 991px) {
  main .user .container .user-section .user-right {
    width: 100%;
  }
}

@media only screen and (max-width: 991px) {
  main .user .container .user-section .user-right .user-details .user-title {
    margin-top: 15px;
  }
}

main .user .container .user-section .user-right .user-details .user-title h2 {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 55px;
  color: #000;
}

@media only screen and (max-width: 1399px) {
  main .user .container .user-section .user-right .user-details .user-title h2 {
    font-size: 45px;
  }
}

@media only screen and (max-width: 1199px) {
  main .user .container .user-section .user-right .user-details .user-title h2 {
    font-size: 40px;
  }
}

@media only screen and (max-width: 600px) {
  main .user .container .user-section .user-right .user-details .user-title h2 {
    font-size: 28px;
  }
}

main .user .container .user-section .user-right .user-details .user-description {
  padding-top: 30px;
  padding-bottom: 30px;
}

@media only screen and (max-width: 991px) {
  main .user .container .user-section .user-right .user-details .user-description {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

main .user .container .user-section .user-right .user-details .user-description p {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  color: #383838;
}

main .user .container .user-section .user-right .user-details .user-btn a {
  width: 265px;
  height: 70px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  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;
  background-color: #ffc10d;
  color: #000;
  font-size: 19px;
  font-weight: 700;
  border-radius: 4px;
  border: 1.5px solid #ffc10d;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

main .user .container .user-section .user-right .user-details .user-btn a:hover {
  background: transparent;
  color: #fff;
  border: 1.5px solid #ffc10d;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

main .user .container .user-section .user-right .user-details .user-btn a:hover {
  color: #000 !important;
}

main .editor {
  padding-top: 50px;
  padding-bottom: 50px;
}

@media only screen and (max-width: 991px) {
  main .editor {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

main .editor .container .editor-section {
  width: 100%;
}

@media only screen and (max-width: 991px) {
  main .editor .container .editor-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

main .editor .container .editor-section .editor-left {
  width: 50%;
  padding: 15px;
}

@media only screen and (max-width: 991px) {
  main .editor .container .editor-section .editor-left {
    width: 100%;
    padding: 0px;
    margin-bottom: 10px;
  }
}

main .editor .container .editor-section .editor-left .editor-title h2 {
  color: #28214c;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
}

@media only screen and (max-width: 767px) {
  main .editor .container .editor-section .editor-left .editor-title h2 {
    font-size: 35px;
  }
}

@media only screen and (max-width: 600px) {
  main .editor .container .editor-section .editor-left .editor-title h2 {
    font-size: 21px;
  }
}

main .editor .container .editor-section .editor-left .editor-description {
  padding-top: 30px;
  padding-bottom: 30px;
  width: 95%;
}

@media only screen and (max-width: 991px) {
  main .editor .container .editor-section .editor-left .editor-description {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

main .editor .container .editor-section .editor-left .editor-description p {
  color: #525252;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
}

main .editor .container .editor-section .editor-left .editor-btn {
  padding-top: 15px;
}

main .editor .container .editor-section .editor-left .editor-btn a {
  width: 265px;
  height: 70px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  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;
  background-color: #ffc10d;
  color: #000;
  font-size: 19px;
  font-weight: 700;
  border-radius: 4px;
  border: 1.5px solid #ffc10d;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

main .editor .container .editor-section .editor-left .editor-btn a:hover {
  background: transparent;
  color: #fff;
  border: 1.5px solid #ffc10d;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

main .editor .container .editor-section .editor-left .editor-btn a:hover {
  color: #000  !important;
}

main .editor .container .editor-section .editor-right {
  width: 50%;
}

@media only screen and (max-width: 991px) {
  main .editor .container .editor-section .editor-right {
    width: 100%;
  }
}

main .editor .container .editor-section .editor-right img {
  width: 80%;
}

@media only screen and (max-width: 991px) {
  main .editor .container .editor-section .editor-right img {
    width: 100%;
  }
}

main .shoping {
  background-image: url(../images/mobile-media-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 100px;
  padding-bottom: 100px;
  border-bottom: 1.5px solid #c7c7c7;
}

@media only screen and (max-width: 767px) {
  main .shoping {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media only screen and (max-width: 991px) {
  main .shoping .container .shoping-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

main .shoping .container .shoping-section .shoping-card {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

main .shoping .container .shoping-section .shoping-card .shoping-card-title h4 {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 48px;
  color: #28214c;
  padding-top: 10px;
  padding-bottom: 20px;
}

@media only screen and (max-width: 600px) {
  main .shoping .container .shoping-section .shoping-card .shoping-card-title h4 {
    font-size: 28px;
    padding-bottom: 0px;
  }
}

main .shoping .container .shoping-section .shoping-card .shoping-card-description p {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
}

main .shoping .container .shoping-section .shoping-mid img {
  padding-left: 10px;
  padding-right: 10px;
}

@media only screen and (max-width: 991px) {
  main .shoping .container .shoping-section .shoping-mid img {
    width: 100%;
  }
}

.search-button {
  float: right;
  padding-left: 20px;
  cursor: pointer;
}

.search-button i {
  font-size: 20px;
}

@media only screen and (max-width: 991px) {
  .search-button {
    float: left;
    padding-left: 0px;
    padding-top: 15px;
  }
}

.search-popup {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 10000000;
}

.search-bg {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

.search-popup label {
  color: white;
}

.search-form {
  display: block;
  margin: 11em 4em;
  position: relative;
  right: -100%;
}

@media only screen and (max-width: 600px) {
  .search-form {
    margin: 15em 1em;
  }
}

.form {
  position: relative;
}

.form input {
  outline: none;
  border-width: 0 0 1px 0;
  border-style: none none solid none;
  border-color: #dad6d5;
  background-color: #fff;
  width: 100%;
  padding: 1em 1em;
  color: #dad6d5;
}

.close {
  position: absolute;
  font-size: 25px;
  color: #fff;
  top: -100px;
  right: 0px;
}

.form input:focus::-webkit-input-placeholder {
  opacity: 0;
}

.form input:focus::-moz-placeholder {
  opacity: 0;
}

.form input:-ms-input-placeholder {
  opacity: 0;
}

.form input:focus:-moz-placeholder {
  opacity: 0;
}

.form label {
  position: absolute;
  top: 1%;
  right: 0;
  color: #000;
  width: 140px;
  background: aliceblue;
  padding: 13px 0px;
  text-align: center;
  font-size: 30px;
  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;
  cursor: pointer;
}

main .login {
  background-image: url(../images/login-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 50px;
}

main .login .log-section .login-form .form-logo {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  main .login .log-section .login-form .form-logo img {
    width: 180px;
  }
}

main .login .log-section .login-form .form-section {
  width: 1200px;
  height: 750px;
  background-image: url(../images/form-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: auto;
  padding-top: 120px;
  border-radius: 20px;
  padding: 120px 20px 90px 20px;
}

@media only screen and (max-width: 1399px) {
  main .login .log-section .login-form .form-section {
    width: 1120px;
  }
}

@media only screen and (max-width: 1199px) {
  main .login .log-section .login-form .form-section {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  main .login .log-section .login-form .form-section {
    height: auto;
    padding: 20px 10px 20px 10px;
  }
}

main .login .log-section .login-form .form-section .form-title {
  text-align: center;
  padding-bottom: 60px;
}

@media only screen and (max-width: 767px) {
  main .login .log-section .login-form .form-section .form-title {
    padding-bottom: 20px;
  }
}

main .login .log-section .login-form .form-section .form-title h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 54px;
  text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
  main .login .log-section .login-form .form-section .form-title h3 {
    font-size: 35px;
  }
}

@media only screen and (max-width: 600px) {
  main .login .log-section .login-form .form-section .form-title h3 {
    font-size: 32px;
  }
}

main .login .log-section .login-form .form-section .form-title p {
  font-size: 29px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #9b9b9b;
}

@media only screen and (max-width: 767px) {
  main .login .log-section .login-form .form-section .form-title p {
    font-size: 22px;
  }
}

main .login .log-section .login-form .form-section form {
  width: 510px;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  main .login .log-section .login-form .form-section form {
    width: 100%;
  }
}

main .login .log-section .login-form .form-section form .input-fuield {
  position: relative;
  padding-bottom: 10px;
}

main .login .log-section .login-form .form-section form .input-fuield input {
  width: 100%;
  height: 90px;
  background-color: #ededed;
  padding: 15px 15px 15px 70px;
  border: none;
  outline: none;
}

main .login .log-section .login-form .form-section form .input-fuield img {
  position: absolute;
  left: 15px;
  top: 30px;
}

main .login .log-section .login-form .form-section form .input-fuield .lock {
  left: 22px !important;
}

main .login .log-section .login-form .form-section form .input-fuield::before {
  content: "";
  position: absolute;
  height: 55px;
  width: 1px;
  background-color: #b4b4b4;
  top: 17px;
  left: 60px;
}

main .login .log-section .login-form .form-section form .form-login-btn {
  padding-top: 40px;
}

main .login .log-section .login-form .form-section form .form-login-btn a {
  width: 265px;
  height: 70px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  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;
  background-color: #ffc10d;
  color: #000;
  font-size: 19px;
  font-weight: 700;
  border-radius: 4px;
  border: 1.5px solid #ffc10d;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin: auto;
  text-transform: uppercase;
  width: 100% !important;
  height: 90px !important;
  font-size: 33px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-style: normal;
  border-radius: 0px !important;
}

main .login .log-section .login-form .form-section form .form-login-btn a:hover {
  background: transparent;
  color: #fff;
  border: 1.5px solid #ffc10d;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

main .login .log-section .login-form .form-section form .form-login-btn a:hover {
  color: #000 !important;
}

main .login .log-section .login-form .form-section form .registor-link {
  text-align: center;
  padding-top: 20px;
}

main .login .log-section .login-form .form-section form .registor-link a {
  color: #6b6b6b;
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-style: normal;
}

@media only screen and (max-width: 767px) {
  main .login .log-section .login-form .form-section form .registor-link a {
    font-size: 14px;
  }
}

main .login .log-section .login-form .form-section form .registor-link a b {
  color: #000;
  text-transform: uppercase;
}

main .login .log-section .login-form .registor-section {
  background-image: url(../images/registor-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: auto;
  padding-top: 20px;
  padding-bottom: 10px;
  height: 840px !important;
}

main .login .log-section .login-form .registor-section .form-title {
  padding-bottom: 30px !important;
}

main .login .log-section .login-form .registor-section .form-title h3 {
  margin-bottom: 0px;
}

main .login .log-section .login-form .registor-section .form-title p {
  margin-bottom: 0px;
}

main .login .log-section .login-form .registor-section form .input-fuield .lock {
  top: 40px !important;
}

main .login .log-section .login-form .registor-section form .form-login-btn {
  padding-top: 0px !important;
}

main .main-title {
  background-color: #426a73;
  padding-top: 70px;
  padding-bottom: 70px;
}

@media only screen and (max-width: 767px) {
  main .main-title {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

main .main-title h1 {
  text-align: center;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 72px;
  margin-bottom: 0px !important;
}

@media only screen and (max-width: 767px) {
  main .main-title h1 {
    font-size: 40px;
  }
}

main .address .container .address-section .address-list {
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 0px !important;
  margin-bottom: 0px !important;
}

@media only screen and (max-width: 991px) {
  main .address .container .address-section .address-list {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  main .address .container .address-section .address-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

main .address .container .address-section .address-list .address-list-items {
  text-align: center;
}

@media only screen and (max-width: 767px) {
  main .address .container .address-section .address-list .address-list-items {
    padding-bottom: 15px;
  }
}

main .address .container .address-section .address-list .address-list-items .address-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 25px;
  color: #28214c;
  padding-top: 10px;
  padding-bottom: 10px;
  text-transform: uppercase;
}

main .address .container .address-section .address-list .address-list-items .address-description {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  color: #808080;
  padding-bottom: 20px;
}

main .address .container .address-section .address-list .address-list-items .address-num {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  color: #ffc10d;
}

main .contact-section {
  background-image: url(../images/contact-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

main .contact-section .container .contact-block {
  padding-top: 70px;
  padding-bottom: 70px;
}

@media only screen and (max-width: 767px) {
  main .contact-section .container .contact-block {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  main .contact-section .container .contact-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

main .contact-section .container .contact-block .left-block {
  width: 44%;
  background-image: url(../images/contactform-bg.png);
  background-position: center;
  padding: 20px 30px;
  background-repeat: no-repeat;
  border-radius: 15px;
}

@media only screen and (max-width: 767px) {
  main .contact-section .container .contact-block .left-block {
    width: 100%;
    margin-bottom: 15px;
  }
}

main .contact-section .container .contact-block .left-block form {
  width: 100%;
}

main .contact-section .container .contact-block .left-block form .input-feild {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 10px;
}

main .contact-section .container .contact-block .left-block form .input-feild label {
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #ffc10d;
}

main .contact-section .container .contact-block .left-block form .input-feild input {
  border: none;
  outline: none;
  padding: 7px;
  border-radius: 8px;
}

main .contact-section .container .contact-block .left-block form .input-feild textarea {
  border: none;
  outline: none;
  padding: 7px;
  border-radius: 8px;
}

main .contact-section .container .contact-block .right-block {
  width: 46%;
  border-radius: 15px;
}

@media only screen and (max-width: 767px) {
  main .contact-section .container .contact-block .right-block {
    width: 100%;
  }
}

main .contact-section .container .contact-block .right-block .mapouter {
  height: auto !important;
  border-radius: 15px;
}

main .contact-section .container .contact-block .right-block .mapouter .gmap_canvas {
  height: 561px !important;
  border-radius: 15px;
}

main .contact-section .container .contact-block .right-block .mapouter .gmap_canvas iframe {
  height: 100% !important;
  border-radius: 15px;
}
.gift-section{
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #f9f9f9;
}
.gift-block{
  width: 500px;
  background-color: #fff;
  border-radius: 8px;
  margin: auto;
}
.gift-img {
  display: flex;
}
.gift-img img{
  width: 250px;
  margin: 20px auto;
  border-radius: 8px;
}


.total-price{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
  padding-top: 10px;
  padding-bottom: 10px;
}
.total-price h4{
  font-size: 20px;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  padding-left: 20px;
  margin-bottom: 0px;
}
.total-price p{
  font-size: 20px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  padding-right: 20px;
  margin-bottom: 0px;
}
.pay-buttn{
  padding-bottom: 1px;
}
.pay-buttn a{
background-color: #ffc10d;
width: 230px;
height: 60px;
border: 1px solid #ffc10d;
border-radius: 8px;
color: #000;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
font-weight: 600;
font-family: 'Roboto', sans-serif;
margin: 20px auto;
}

@media (max-width:600px) {
  .gift-block{
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */