@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,300;0,400;0,600;0,700;0,900;1,300;1,400;1,600&display=swap");
@-webkit-keyframes slide {
  0% {
    background-size: 100%;
  }
  50% {
    background-size: 110%;
  }
  100% {
    background-size: 100%;
  }
}
* {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: 700;
}

p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover {
  text-decoration: none;
  outline: none;
}
a:focus {
  text-decoration: none;
  outline: none;
}

.btn {
  border: 0;
  box-shadow: none;
  text-decoration: none;
  outline: none;
}
.btn:hover {
  box-shadow: none;
  text-decoration: none;
  outline: none;
}
.btn:focus {
  box-shadow: none;
  text-decoration: none;
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

#contact_form input[type=number]::-webkit-inner-spin-button,
#contact_form input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.list-inline {
  margin: 0;
  padding: 0;
}
.list-inline::after {
  display: block;
  content: "";
  clear: both;
}
.list-inline li {
  float: left;
}
.list-inline li a {
  display: inline-block;
}

.form-control {
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  outline: none;
}
.form-control:hover {
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  outline: none;
}
.form-control:focus {
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  outline: none;
}

textarea {
  resize: none;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  line-height: initial;
}

.callout {
  border-radius: .25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  background-color: #fff;
  border-left: 5px solid #e9ecef;
  margin-bottom: 1rem;
  padding: 13px;
}
.callout.callout-success {
  border-left-color: #1e7e34;
  background-color: #28a745;
  color: #fff;
}
.callout.callout-danger {
  border-left-color: #bd2130;
  background-color: #d72d3e;
  color: #fff;
}

.alert.alert-success {
  border-left-color: #1e7e34;
  background-color: #28a745;
  color: #fff;
}
.alert.alert-danger {
  border-left-color: #bd2130;
  background-color: #d72d3e;
  color: #fff;
}

.form-control {
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
  outline: none;
}
.form-control:hover {
  box-shadow: none;
  text-decoration: none;
  outline: none;
}
.form-control:focus {
  box-shadow: none;
  text-decoration: none;
  outline: none;
}

.no_margin {
  margin: 0;
}

.no_padding {
  padding: 0;
}

label.error {
  display: block;
  color: #f00 !important;
  font-weight: 500 !important;
  font-size: 14px !important;
}

.btn-primary {
  border-radius: 7px;
  background: -webkit-linear-gradient(bottom, #e97657, #ee862c);
  background: -o-linear-gradient(bottom, #e97657, #ee862c);
  background: linear-gradient(to top, #e97657, #ee862c);
  font-size: 14px;
  padding: 20px 25px;
  text-transform: uppercase;
  font-weight: 700;
}
.btn-primary i {
  margin-left: 5px;
}
.btn-primary:hover {
  background: -webkit-linear-gradient(bottom, #ee862c, #e97657);
  background: -o-linear-gradient(bottom, #ee862c, #e97657);
  background: linear-gradient(to top, #ee862c, #e97657);
}

.main_title {
  text-align: center;
}
.main_title h3 {
  font-size: 48px;
  font-weight: 600;
  padding-bottom: 20px;
  position: relative;
}
.main_title h3:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  height: 2px;
  width: 150px;
  background-color: #ed8334;
}

.breadcame_section {
  background-image: url("../images/breadcame_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 250px;
}

/* ===== Scroll to Top ==== */
#return_to_top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  width: 50px;
  height: 50px;
  /*display: block;*/
  text-decoration: none;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  display: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 999;
}

#return_to_top i {
  color: #fff;
  margin: 0;
  position: relative;
  left: 16px;
  top: 15px;
  font-size: 20px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#return_to_top:hover {
  background-color: #000;
}

#return_to_top:hover i {
  color: #fff;
  /*top: 10px;*/
}

/* ==== End Scroll to Top ==== */
#load {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999999;
  background-color: #ffffff;
  background: url("../images/loader.gif") no-repeat center center white;
}

#loading-image {
  display: none;
  position: fixed;
  left: 0px;
  top: -4px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url("../images/30.gif") 50% 50% no-repeat #f9f9f9;
  opacity: .8;
}
#loading-image img {
  display: block;
  margin: 0 auto;
  margin-top: 468px;
}

/* Extra Huge large desktops */
/* Extra Huge large desktops */
/* Extra Huge large desktops */
/* Extra large desktops and mac laptops*/
/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
  .container {
    max-width: 100%;
  }

  .main_title h3 {
    font-size: 36px;
  }
}
/* Landscape tablets and ipad */
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 100%;
  }

  .main_title h3 {
    font-size: 30px;
  }

  .btn-primary {
    font-size: 12px;
  }
}
/* Landscape phones and portrait tablets */
@media (min-width: 576px) and (max-width: 767px) {
  .container {
    max-width: 100%;
  }

  .main_title h3 {
    font-size: 26px;
  }
}
/* Landscape phones and portrait tablets */
@media (min-width: 361px) and (max-width: 575px) {
  .container {
    max-width: 100%;
  }

  .main_title h3 {
    font-size: 26px;
  }
}
/* Smaller phones */
@media (max-width: 360px) {
  .container {
    max-width: 100%;
  }

  .main_title h3 {
    font-size: 26px;
  }
}
/* Smaller phones */
@font-face {
  font-family: 'AlexBrush-Regular';
  src: url("../fonts/AlexBrush-Regular/AlexBrush-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/AlexBrush-Regular/AlexBrush-Regular.woff") format("woff"), url("../fonts/AlexBrush-Regular/AlexBrush-Regular.ttf") format("truetype"), url("../fonts/AlexBrush-Regular/AlexBrush-Regular.svg#AlexBrush-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.header_section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: 999999;
  padding: 10px 0px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header_section.sticky_header {
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}
.header_section.sticky_header .header_area .left_area a img {
  width: 100px;
}
.header_section.sticky_header .header_area .right_area .list-inline {
  padding: 18px 0px;
}
.header_section.sticky_header .header_area .right_area .list-inline li a {
  color: #000000;
}
.header_section .header_area::after {
  display: block;
  content: "";
  clear: both;
}
.header_section .header_area .left_area {
  float: left;
}
.header_section .header_area .left_area a {
  display: inline-block;
}
.header_section .header_area .left_area a img {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 180px;
}
.header_section .header_area .right_area {
  float: right;
}
.header_section .header_area .right_area .list-inline {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 40px 0px;
}
.header_section .header_area .right_area .list-inline li {
  padding: 0px 15px;
}
.header_section .header_area .right_area .list-inline li a {
  display: inline-block;
  color: #ffffff;
  font-weight: 600;
}
.header_section .header_area .right_area .list-inline li a:hover {
  color: #ed8334;
}

/* Extra Huge large desktops */
/* Extra Huge large desktops */
/* Extra Huge large desktops */
/* Extra large desktops and mac laptops*/
/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
  .header_section .header_area .left_area a img {
    width: 140px;
  }
  .header_section .header_area .right_area .list-inline {
    padding: 28px 0px;
  }
}
/* Landscape tablets and ipad */
@media (min-width: 768px) and (max-width: 991px) {
  .header_section .header_area .left_area a img {
    width: 110px;
  }
  .header_section .header_area .right_area .list-inline {
    padding: 20px 0px;
  }
  .header_section .header_area .right_area .list-inline li {
    padding: 0px 6px;
  }
  .header_section .header_area .right_area .list-inline li a {
    font-weight: 400;
  }
}
/* Landscape phones and portrait tablets */
@media (min-width: 576px) and (max-width: 767px) {
  .header_section .header_area .left_area a img {
    width: 90px;
  }
  .header_section .header_area .right_area .list-inline {
    display: none;
    padding: 20px 0px;
  }
  .header_section .header_area .right_area .list-inline li {
    padding: 0px 6px;
  }
  .header_section .header_area .right_area .list-inline li a {
    font-weight: 400;
  }
}
/* Landscape phones and portrait tablets */
@media (min-width: 361px) and (max-width: 575px) {
  .header_section .header_area .left_area a img {
    width: 90px;
  }
  .header_section .header_area .right_area .list-inline {
    display: none;
    padding: 20px 0px;
  }
  .header_section .header_area .right_area .list-inline li {
    padding: 0px 6px;
  }
  .header_section .header_area .right_area .list-inline li a {
    font-weight: 400;
  }
}
/* Smaller phones */
@media (max-width: 360px) {
  .header_section .header_area .left_area a img {
    width: 90px;
  }
  .header_section .header_area .right_area .list-inline {
    display: none;
    padding: 20px 0px;
  }
  .header_section .header_area .right_area .list-inline li {
    padding: 0px 6px;
  }
  .header_section .header_area .right_area .list-inline li a {
    font-weight: 400;
  }
}
/* Smaller phones */
.dl-menuwrapper {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
  float: right;
  text-align: right;
  margin-top: 0px;
  margin-right: 10px;
}
.dl-menuwrapper:first-child {
  margin-right: 0;
}
.dl-menuwrapper .dl-trigger {
  background: #db6813;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.dl-menuwrapper .dl-trigger:hover {
  background-color: #db6813;
}
.dl-menuwrapper .dl-trigger.dl-active {
  background-color: #db6813;
}
.dl-menuwrapper .dl-menu {
  z-index: 9;
  background-color: #db6813;
}
.dl-menuwrapper .dl-menu li {
  text-align: left;
}
.dl-menuwrapper .dl-menu li.dl-back:after {
  color: #ffffff;
}
.dl-menuwrapper .dl-menu li a {
  display: block;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.dl-menuwrapper .dl-menu li a:after {
  color: #ffffff;
}

/* Extra Huge large desktops */
/* Extra Huge large desktops */
/* Extra Huge large desktops */
/* Extra large desktops and mac laptops*/
/* Landscape tablets and medium desktops */
/* Landscape tablets and ipad */
/* Landscape phones and portrait tablets */
@media (min-width: 544px) and (max-width: 767px) {
  .dl-menuwrapper {
    display: block;
  }
}
/* Landscape phones and portrait tablets */
@media (min-width: 361px) and (max-width: 543px) {
  .dl-menuwrapper {
    display: block;
  }
}
/* Smaller phones */
@media (max-width: 360px) {
  .dl-menuwrapper {
    display: block;
  }
}
/* Smaller phones */
.hero_banner_section {
  background-image: url("../images/banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 270px 0px 300px 0px;
}
.hero_banner_section .banner_area h3 {
  font-size: 75px;
  font-weight: 600;
  color: #ffffff;
  padding-bottom: 40px;
}
.hero_banner_section .banner_area p {
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  line-height: 34px;
}
.hero_banner_section .banner_area .button_area {
  padding-top: 60px;
}

/* Extra Huge large desktops */
/* Extra Huge large desktops */
/* Extra Huge large desktops */
/* Extra large desktops and mac laptops*/
/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero_banner_section {
    padding: 200px 0px 200px 0px;
  }
  .hero_banner_section .banner_area h3 {
    font-size: 50px;
  }
}
/* Landscape tablets and ipad */
@media (min-width: 768px) and (max-width: 991px) {
  .hero_banner_section {
    padding: 130px 0px 130px 0px;
  }
  .hero_banner_section .banner_area h3 {
    font-size: 40px;
    padding-bottom: 30px;
  }
  .hero_banner_section .banner_area .button_area {
    padding-top: 40px;
  }
}
/* Landscape phones and portrait tablets */
@media (min-width: 576px) and (max-width: 767px) {
  .hero_banner_section {
    padding: 130px 0px 80px 0px;
    background-position: left bottom;
  }
  .hero_banner_section .banner_area h3 {
    font-size: 40px;
    padding-bottom: 30px;
  }
  .hero_banner_section .banner_area .button_area {
    padding-top: 40px;
  }
}
/* Landscape phones and portrait tablets */
@media (min-width: 361px) and (max-width: 575px) {
  .hero_banner_section {
    padding: 130px 0px 80px 0px;
    background-position: -80px center;
  }
  .hero_banner_section .banner_area h3 {
    font-size: 40px;
    padding-bottom: 30px;
  }
  .hero_banner_section .banner_area .button_area {
    padding-top: 40px;
  }
}
/* Smaller phones */
@media (max-width: 360px) {
  .hero_banner_section {
    padding: 130px 0px 80px 0px;
    background-position: -80px center;
  }
  .hero_banner_section .banner_area h3 {
    font-size: 40px;
    padding-bottom: 30px;
  }
  .hero_banner_section .banner_area .button_area {
    padding-top: 40px;
  }
}
/* Smaller phones */
.services_section {
  padding: 50px 0px;
  overflow: hidden;
}
.services_section .services_area .services_columns {
  padding-top: 60px;
}
.services_section .services_area .services_columns .one_third {
  background-color: #f7f7f7;
  border: 1px solid #ed8334;
  padding: 20px 10px;
  position: relative;
}
.services_section .services_area .services_columns .one_third:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  height: 150px;
  width: 10px;
  background-color: #ed8334;
}
.services_section .services_area .services_columns .one_third:before {
  position: absolute;
  content: '';
  bottom: 0;
  right: 0;
  height: 150px;
  width: 10px;
  background-color: #ed8334;
}
.services_section .services_area .services_columns .one_third .inner_col {
  background-color: #ffffff;
}
.services_section .services_area .services_columns .one_third .inner_col .img_area img {
  width: 100%;
}
.services_section .services_area .services_columns .one_third .inner_col .caption {
  padding: 20px;
}
.services_section .services_area .services_columns .one_third .inner_col .caption h4 {
  color: #ed8334;
  font-weight: 600;
  padding-bottom: 10px;
}
.services_section .services_area .services_columns .one_third .inner_col .caption p {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}
.services_section .services_area .services_columns .owl-carousel .owl-nav {
  display: block;
}
.services_section .services_area .services_columns .owl-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  box-shadow: none;
  text-decoration: none;
  outline: none;
  height: 30px;
  width: 30px;
  background-color: #f7bf90;
  text-align: center;
  float: left;
  font-size: 20px;
  line-height: 30px;
  border-radius: 0%;
  margin-top: -20px;
  color: #ffffff;
  background-color: #ed8334;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.services_section .services_area .services_columns .owl-carousel .owl-nav button:hover {
  background-color: #db6813;
}
.services_section .services_area .services_columns .owl-carousel .owl-nav button.owl-prev {
  left: 0;
  float: left;
}
.services_section .services_area .services_columns .owl-carousel .owl-nav button.owl-next {
  right: 0;
  float: right;
}
.services_section .services_area .services_columns .owl-carousel .owl-dots {
  padding-top: 10px;
  display: table;
  margin: 0 auto;
}
.services_section .services_area .services_columns .owl-carousel .owl-dots button {
  text-decoration: none;
  outline: none;
}
.services_section .services_area .services_columns .owl-carousel .owl-dots button.owl-dot {
  /*background-color: $primary_color;*/
  border: 2px solid #C4C4C4;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  margin: 0px 3px;
  position: relative;
}
.services_section .services_area .services_columns .owl-carousel .owl-dots button.owl-dot:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background-color: transparent;
  margin-top: 2px;
  margin-left: 2px;
}
.services_section .services_area .services_columns .owl-carousel .owl-dots button.owl-dot.active:after {
  background-color: #f7bf90;
}

.services_option {
  position: relative;
  padding-top: 50px;
  padding-bottom: 120px;
  overflow: hidden;
}
.services_option .services_option_area .main_title {
  width: 500px;
  text-align: left;
}
.services_option .services_option_area .main_title h3:after {
  right: inherit;
  margin-right: inherit;
  margin-left: inherit;
}
.services_option .services_option_area .option_listing {
  padding-top: 50px;
}
.services_option .services_option_area .option_listing ul li {
  position: relative;
  padding: 15px 0px 15px 35px;
}
.services_option .services_option_area .option_listing ul li:before {
  position: absolute;
  content: '\f00c';
  font-family: 'font Awesome 5 pro';
  font-weight: 900;
  top: 0;
  left: 0;
  margin-top: 15px;
  font-size: 20px;
  color: #ed8334;
}
.services_option .option_right_image {
  position: absolute;
  bottom: 0;
  right: 0;
}
.services_option .option_right_image img {
  width: 500px;
}

.app_section {
  padding: 50px 0px;
  overflow: hidden;
  background-image: url("../images/applebg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}
.app_section:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.app_section .app_area {
  position: relative;
  z-index: 5;
}
.app_section .app_area .main_title h3 {
  color: #ffffff;
}
.app_section .app_area .app_row {
  padding-top: 50px;
}
.app_section .app_area .app_row img {
  width: 100%;
}

.invite_section {
  background-color: #f5f7ff;
  background-size: 100%;
  padding: 70px 0px 70px 0px;
  overflow: hidden;
  position: relative;
}
.invite_section .invite_area .main_title {
  text-align: left;
}
.invite_section .invite_area .main_title h3:after {
  right: inherit;
  margin-right: inherit;
  margin-left: inherit;
}
.invite_section .invite_area .content_area {
  padding-top: 50px;
}
.invite_section .invite_area .content_area p {
  line-height: 30px;
}
.invite_section .invite_image {
  position: absolute;
  top: 0;
  right: 0;
}
.invite_section .invite_image img {
  width: 768px;
}

/* Extra Huge large desktops */
/* Extra Huge large desktops */
@media (min-width: 1680px) and (max-width: 1919px) {
  .services_option .option_right_image img {
    width: 630px;
  }
}
/* Extra Huge large desktops */
@media (min-width: 1600px) and (max-width: 1679px) {
  .services_option .option_right_image img {
    width: 630px;
  }
}
/* Extra large desktops and mac laptops*/
@media (min-width: 1400px) and (max-width: 1599px) {
  .services_option .option_right_image img {
    width: 540px;
  }

  .invite_section .invite_image {
    top: initial;
    bottom: 0;
  }
  .invite_section .invite_image img {
    width: 760px;
  }

  .contact_section {
    margin-bottom: 70px;
  }
  .contact_section .shape_contact img {
    width: 230px;
  }
}
@media (min-width: 1300px) and (max-width: 1399px) {
  .services_option .option_right_image img {
    width: 540px;
  }

  .invite_section .invite_image {
    top: initial;
    bottom: 0;
  }
  .invite_section .invite_image img {
    width: 730px;
  }

  .contact_section {
    margin-bottom: 70px;
  }
  .contact_section .shape_contact img {
    width: 230px;
  }
}
@media (min-width: 1200px) and (max-width: 1299px) {
  .services_option .option_right_image img {
    width: 500px;
  }

  .invite_section .invite_image img {
    width: 670px;
  }

  .contact_section {
    margin-bottom: 70px;
  }
  .contact_section .shape_contact img {
    width: 230px;
  }
}
/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
  .services_section {
    padding: 30px 0px;
  }

  .services_option {
    padding-top: 50px;
    padding-bottom: 80px;
  }
  .services_option .option_right_image img {
    width: 510px;
  }

  .invite_section .invite_image {
    top: 50%;
    margin-top: -200px;
  }
  .invite_section .invite_image img {
    width: 490px;
  }
}
/* Landscape tablets and ipad */
@media (min-width: 768px) and (max-width: 991px) {
  .services_section {
    padding: 30px 0px;
  }
  .services_section .services_area .services_columns {
    padding-top: 40px;
  }
  .services_section .services_area .services_columns .one_third {
    padding: 10px 10px;
  }
  .services_section .services_area .services_columns .one_third .inner_col .caption {
    padding: 10px;
  }
  .services_section .services_area .services_columns .one_third .inner_col .caption h4 {
    font-size: 20px;
  }

  .services_option {
    padding-top: 50px;
    padding-bottom: 80px;
  }
  .services_option .option_right_image img {
    width: 300px;
  }

  .invite_section .invite_image {
    top: 50%;
    margin-top: -130px;
  }
  .invite_section .invite_image img {
    width: 300px;
  }
}
/* Landscape phones and portrait tablets */
@media (min-width: 576px) and (max-width: 767px) {
  .services_section {
    padding: 30px 0px 0px 0px;
  }
  .services_section .services_area .main_title {
    width: 100%;
  }
  .services_section .services_area .services_columns {
    padding-top: 40px;
  }
  .services_section .services_area .services_columns .one_third {
    margin-bottom: 30px;
    padding: 10px 10px;
  }
  .services_section .services_area .services_columns .one_third .inner_col .caption {
    padding: 10px;
  }
  .services_section .services_area .services_columns .one_third .inner_col .caption h4 {
    font-size: 20px;
  }

  .services_option {
    padding-top: 20px;
    padding-bottom: 0px;
  }
  .services_option .services_option_area .main_title {
    width: 100%;
  }
  .services_option .services_option_area .option_listing {
    padding-top: 25px;
  }
  .services_option .services_option_area .option_listing ul li {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .services_option .option_right_image {
    display: none;
    position: static;
    text-align: right;
  }
  .services_option .option_right_image img {
    width: 300px;
  }

  .invite_section {
    padding: 30px 0px 0px 0px;
  }
  .invite_section .invite_area .content_area {
    padding-top: 30px;
  }
  .invite_section .invite_image {
    display: none;
    padding-top: 15px;
    position: static;
    top: 0;
    margin-top: 0;
    text-align: right;
  }
  .invite_section .invite_image img {
    width: 300px;
  }

  .app_section {
    padding: 30px 0px;
  }
}
/* Landscape phones and portrait tablets */
@media (min-width: 361px) and (max-width: 575px) {
  .services_section {
    padding: 30px 0px 0px 0px;
  }
  .services_section .services_area .main_title {
    width: 100%;
  }
  .services_section .services_area .services_columns {
    padding-top: 40px;
  }
  .services_section .services_area .services_columns .one_third {
    margin-bottom: 30px;
    padding: 10px 10px;
  }
  .services_section .services_area .services_columns .one_third .inner_col .caption {
    padding: 10px;
  }
  .services_section .services_area .services_columns .one_third .inner_col .caption h4 {
    font-size: 20px;
  }

  .services_option {
    padding-top: 20px;
    padding-bottom: 0px;
  }
  .services_option .services_option_area .main_title {
    width: 100%;
  }
  .services_option .services_option_area .option_listing {
    padding-top: 25px;
  }
  .services_option .services_option_area .option_listing ul li {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .services_option .option_right_image {
    position: static;
    text-align: right;
  }
  .services_option .option_right_image img {
    width: 300px;
  }

  .invite_section {
    padding: 30px 0px 0px 0px;
  }
  .invite_section .invite_area .content_area {
    padding-top: 30px;
  }
  .invite_section .invite_image {
    padding-top: 15px;
    position: static;
    top: 0;
    margin-top: 0;
    text-align: right;
  }
  .invite_section .invite_image img {
    width: 300px;
  }

  .app_section {
    padding: 30px 0px;
  }
}
/* Smaller phones */
@media (max-width: 360px) {
  .services_section {
    padding: 30px 0px 0px 0px;
  }
  .services_section .services_area .main_title {
    width: 100%;
  }
  .services_section .services_area .services_columns {
    padding-top: 40px;
  }
  .services_section .services_area .services_columns .one_third {
    margin-bottom: 30px;
    padding: 10px 10px;
  }
  .services_section .services_area .services_columns .one_third .inner_col .caption {
    padding: 10px;
  }
  .services_section .services_area .services_columns .one_third .inner_col .caption h4 {
    font-size: 20px;
  }

  .services_option {
    padding-top: 20px;
    padding-bottom: 0px;
  }
  .services_option .services_option_area .main_title {
    width: 100%;
  }
  .services_option .services_option_area .option_listing {
    padding-top: 25px;
  }
  .services_option .services_option_area .option_listing ul li {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .services_option .option_right_image {
    position: static;
    text-align: right;
  }
  .services_option .option_right_image img {
    width: 300px;
  }

  .invite_section {
    padding: 30px 0px 0px 0px;
  }
  .invite_section .invite_area .content_area {
    padding-top: 30px;
  }
  .invite_section .invite_image {
    padding-top: 15px;
    position: static;
    top: 0;
    margin-top: 0;
    text-align: right;
  }
  .invite_section .invite_image img {
    width: 300px;
  }

  .app_section {
    padding: 30px 0px;
  }
}
/* Smaller phones */
.screenshots_slider .gallery .gallery-container .gallery-item {
  opacity: 1 !important;
  box-shadow: none !important;
}
.screenshots_slider .gallery .gallery-controls {
  padding-top: 220px;
}
.screenshots_slider .gallery .gallery-controls button {
  margin: 0 5px;
  border-radius: 5px;
  width: 40px;
  height: 40px;
  overflow: hidden;
  background-color: #ed8334;
  color: transparent;
}
.screenshots_slider .gallery .gallery-controls button:before {
  left: 14px !important;
  right: 0 !important;
  bottom: 0 !important;
  color: #ffffff;
  height: 12px;
  width: 12px;
  border-color: white;
}
.screenshots_slider .gallery .gallery-controls button.gallery-controls-previous:before {
  top: 10px;
}
.screenshots_slider .gallery .gallery-controls button.gallery-controls-next:before {
  top: 18px;
}
.screenshots_slider .gallery .gallery-controls button.gallery-controls-add {
  display: none;
}

.fancybox-container {
  z-index: 9999999;
}

@media (max-width: 575px) {
  .screenshots_slider {
    zoom: 70%;
  }
}
.testimonial_section {
  padding: 50px 0px;
  position: relative;
}
.testimonial_section .testimonial_area {
  position: relative;
  z-index: 2;
}
.testimonial_section .testimonial_area .owl-carousel .item {
  text-align: center;
}
.testimonial_section .testimonial_area .owl-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  box-shadow: none;
  text-decoration: none;
  outline: none;
  height: 35px;
  width: 35px;
  background-color: #f7bf90;
  text-align: center;
  float: left;
  font-size: 22px;
  line-height: 36px;
  border-radius: 0%;
  margin-top: -20px;
  color: #ffffff;
  background-image: linear-gradient(#86b099, #508d6b);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.testimonial_section .testimonial_area .owl-carousel .owl-nav button:hover {
  background-color: sandybrown;
}
.testimonial_section .testimonial_area .owl-carousel .owl-nav button.owl-prev {
  left: 0;
  float: left;
}
.testimonial_section .testimonial_area .owl-carousel .owl-nav button.owl-next {
  right: 0;
  float: right;
}
.testimonial_section .testimonial_area .owl-carousel .owl-dots {
  padding-top: 30px;
  display: table;
  margin: 0 auto;
}
.testimonial_section .testimonial_area .owl-carousel .owl-dots button {
  text-decoration: none;
  outline: none;
}
.testimonial_section .testimonial_area .owl-carousel .owl-dots button.owl-dot {
  background-color: #c5c4c4;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  margin: 0px 3px;
  position: relative;
}
.testimonial_section .testimonial_area .owl-carousel .owl-dots button.owl-dot.active {
  background-color: #ed8334;
}
.testimonial_section .testimonial_area .slide_area .left_area {
  padding: 10px;
}
.testimonial_section .testimonial_area .slide_area .left_area .img_area {
  border-radius: 35px;
  filter: drop-shadow(0 0mm 1.5mm rgba(0, 0, 0, 0.5));
  overflow: hidden;
}
.testimonial_section .testimonial_area .slide_area .left_area .img_area img {
  width: 100%;
}
.testimonial_section .testimonial_area .slide_area .right_area {
  padding-left: 30px;
  text-align: left;
}
.testimonial_section .testimonial_area .slide_area .right_area h4 {
  padding-bottom: 15px;
  margin-bottom: 25px;
  font-size: 40px;
  position: relative;
  text-align: left;
}
.testimonial_section .testimonial_area .slide_area .right_area h4:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  height: 2px;
  width: 200px;
  background-color: #ed8334;
}
.testimonial_section .testimonial_area .slide_area .right_area p {
  text-align: left;
  line-height: 28px;
  position: relative;
  padding-left: 30px;
}
.testimonial_section .testimonial_area .slide_area .right_area p:before {
  position: absolute;
  content: '\f10d';
  font-family: 'Font Awesome 5 pro';
  font-weight: 900;
  top: 0;
  left: 0;
  margin-top: -5px;
  font-size: 24px;
  color: #ed8334;
}
.testimonial_section .testimonial_area .slide_area .right_area p:after {
  position: absolute;
  content: '\f10e';
  font-family: 'Font Awesome 5 pro';
  font-weight: 900;
  bottom: 0;
  font-size: 24px;
  margin-bottom: -7px;
  /* right: 0; */
  color: #ed8334;
}
.testimonial_section .testimonial_area .slide_area .right_area .name {
  padding-left: 30px;
  padding-top: 20px;
  color: #ed8334;
  font-weight: 400;
  font-size: 18px;
}
.testimonial_section .testimonial_area .slide_area .right_area .designation {
  padding-left: 30px;
  padding-top: 10px;
  font-size: 14px;
}
.testimonial_section .shade_image {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}

/* Extra Huge large desktops */
/* Extra Huge large desktops */
/* Extra Huge large desktops */
/* Extra large desktops and mac laptops*/
/* Extra large desktops and mac laptops*/
/* Extra large desktops and mac laptops*/
/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
  .testimonial_section .testimonial_area .slide_area .right_area h4 {
    font-size: 30px;
  }
  .testimonial_section .shade_image img {
    width: 160px;
  }
}
/* Landscape tablets and ipad */
@media (min-width: 768px) and (max-width: 991px) {
  .testimonial_section .testimonial_area .slide_area .right_area h4 {
    font-size: 26px;
  }
  .testimonial_section .shade_image img {
    width: 100px;
  }
}
/* Landscape phones and portrait tablets */
@media (min-width: 576px) and (max-width: 767px) {
  .testimonial_section {
    padding: 30px 0px;
  }
  .testimonial_section .testimonial_area .slide_area .right_area {
    padding-left: 0;
    margin-top: 20px;
  }
  .testimonial_section .testimonial_area .slide_area .right_area h4 {
    font-size: 26px;
  }
  .testimonial_section .testimonial_area .slide_area .right_area h4:after {
    width: 120px;
  }
  .testimonial_section .shade_image img {
    width: 60px;
  }
}
/* Landscape phones and portrait tablets */
@media (min-width: 361px) and (max-width: 575px) {
  .testimonial_section {
    padding: 30px 0px;
  }
  .testimonial_section .testimonial_area .slide_area .right_area {
    padding-left: 0;
    margin-top: 20px;
  }
  .testimonial_section .testimonial_area .slide_area .right_area h4 {
    font-size: 26px;
  }
  .testimonial_section .testimonial_area .slide_area .right_area h4:after {
    width: 120px;
  }
  .testimonial_section .shade_image img {
    width: 60px;
  }
}
/* Smaller phones */
@media (max-width: 360px) {
  .testimonial_section {
    padding: 30px 0px;
  }
  .testimonial_section .testimonial_area .slide_area .right_area {
    padding-left: 0;
    margin-top: 20px;
  }
  .testimonial_section .testimonial_area .slide_area .right_area h4 {
    font-size: 26px;
  }
  .testimonial_section .testimonial_area .slide_area .right_area h4:after {
    width: 120px;
  }
  .testimonial_section .shade_image img {
    width: 60px;
  }
}
/* Smaller phones */
.contact_section {
  padding: 70px 0px;
  position: relative;
  overflow: hidden;
}
.contact_section .contact_area {
  position: relative;
  z-index: 3;
}
.contact_section .contact_area .left_area {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
.contact_section .contact_area .left_area .top_area {
  background: -webkit-linear-gradient(bottom, #e97657, #ee862c);
  background: -o-linear-gradient(bottom, #e97657, #ee862c);
  background: linear-gradient(to top, #e97657, #ee862c);
}
.contact_section .contact_area .left_area .top_area h4 {
  text-align: center;
  color: #ffffff;
  font-weight: 600;
  padding: 15px 0px;
  font-size: 26px;
}
.contact_section .contact_area .left_area .form_area {
  padding: 27px 30px;
}
.contact_section .contact_area .left_area .form_area .form-group .form-control {
  background-color: #f2f2f2;
  font-size: 16px;
}
.contact_section .contact_area .left_area .form_area .form-group .form-control.form-control-lg {
  height: 50px;
  font-size: 16px;
}
.contact_section .contact_area .left_area .form_area .btn {
  padding: 15px 0px;
  width: 100%;
  text-align: center;
  text-transform: initial;
  font-size: 16px;
}
.contact_section .contact_area .right_area {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
}
.contact_section .contact_area .right_area img {
  width: 100%;
}
.contact_section .shape_contact {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.contact_section .shape_contact img {
  width: 300px;
}

/* Extra Huge large desktops */
/* Extra Huge large desktops */
/* Extra Huge large desktops */
/* Extra large desktops and mac laptops*/
/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
  .contact_section {
    padding: 50px 0px;
  }
  .contact_section .contact_area .right_area {
    width: 92%;
  }
}
/* Landscape tablets and ipad */
@media (min-width: 768px) and (max-width: 991px) {
  .contact_section {
    padding: 50px 0px;
  }
  .contact_section .contact_area .left_area .top_area h4 {
    font-size: 20px;
  }
  .contact_section .contact_area .left_area .form_area {
    padding: 20px;
  }
  .contact_section .contact_area .left_area .form_area .form-group .form-control {
    font-size: 14px;
  }
  .contact_section .contact_area .left_area .form_area .form-group .form-control.form-control-lg {
    height: 42px;
    font-size: 14px;
  }
  .contact_section .shape_contact img {
    width: 170px;
  }
}
/* Landscape phones and portrait tablets */
@media (min-width: 576px) and (max-width: 767px) {
  .contact_section {
    padding: 30px 0px;
  }
  .contact_section .contact_area .left_area {
    margin-bottom: 40px;
  }
  .contact_section .contact_area .left_area .top_area h4 {
    font-size: 20px;
  }
  .contact_section .contact_area .left_area .form_area {
    padding: 20px;
  }
  .contact_section .contact_area .left_area .form_area .form-group .form-control {
    font-size: 14px;
  }
  .contact_section .contact_area .left_area .form_area .form-group .form-control.form-control-lg {
    height: 42px;
    font-size: 14px;
  }
  .contact_section .shape_contact img {
    width: 100px;
  }
}
/* Landscape phones and portrait tablets */
@media (min-width: 361px) and (max-width: 575px) {
  .contact_section {
    padding: 30px 0px;
  }
  .contact_section .contact_area .left_area {
    margin-bottom: 40px;
  }
  .contact_section .contact_area .left_area .top_area h4 {
    font-size: 20px;
  }
  .contact_section .contact_area .left_area .form_area {
    padding: 20px;
  }
  .contact_section .contact_area .left_area .form_area .form-group .form-control {
    font-size: 14px;
  }
  .contact_section .contact_area .left_area .form_area .form-group .form-control.form-control-lg {
    height: 42px;
    font-size: 14px;
  }
  .contact_section .shape_contact img {
    width: 100px;
  }
}
/* Smaller phones */
@media (max-width: 360px) {
  .contact_section {
    padding: 30px 0px;
  }
  .contact_section .contact_area .left_area {
    margin-bottom: 40px;
  }
  .contact_section .contact_area .left_area .top_area h4 {
    font-size: 20px;
  }
  .contact_section .contact_area .left_area .form_area {
    padding: 20px;
  }
  .contact_section .contact_area .left_area .form_area .form-group .form-control {
    font-size: 14px;
  }
  .contact_section .contact_area .left_area .form_area .form-group .form-control.form-control-lg {
    height: 42px;
    font-size: 14px;
  }
  .contact_section .shape_contact img {
    width: 100px;
  }
}
/* Smaller phones */
.thankyou_section {
  padding: 70px 0px 50px 0px;
}
.thankyou_section .thankyou_area {
  border: 2px solid #EB7C48;
  padding: 50px 0;
}
.thankyou_section .thankyou_area .thank-title {
  padding-bottom: 0px;
}
.thankyou_section .thankyou_area .thank-title h1 {
  margin: 0;
  padding: 0px 0px 15px 0px;
  font-size: 70px;
  font-family: 'AlexBrush-Regular';
  text-align: center;
  font-weight: initial;
  color: #f00;
  position: relative;
}
.thankyou_section .thankyou_area .thank-title h1:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  height: 5px;
  width: 280px;
  border-bottom: 2px solid #000000;
  border-bottom-style: dashed;
}
.thankyou_section .thankyou_area .thank-title p {
  margin: 0;
  padding: 50px 0;
  text-align: center;
  font-size: 18px;
}
.thankyou_section .thankyou_area .thank-title img {
  padding: 40px 0;
  width: 200px;
}
.thankyou_section .thankyou_area .thank-title .btn-default {
  margin: 0;
  padding: 15px 20px;
  border: none;
  border-radius: 0;
  background-color: #EB7C48;
  box-shadow: none;
  color: #ffffff;
  height: auto;
  width: 250px;
  font-size: 18px;
  text-transform: uppercase;
  display: table;
  margin: 0 auto;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.thankyou_section .thankyou_area .thank-title .btn-default:hover {
  background-color: #e65b1a;
}

/* Extra Huge large desktops */
/* Extra Huge large desktops */
/* Extra Huge large desktops */
/* Extra large desktops and mac laptops*/
/* Landscape tablets and medium desktops */
/* Landscape tablets and ipad */
/* Landscape phones and portrait tablets */
/* Landscape phones and portrait tablets */
/* Smaller phones */
/* Smaller phones */
.footer_section {
  background-image: url("../images/shap3.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-position: top center;
  margin-top: 120px;
}
.footer_section .footer_area .left_footer {
  padding-top: 170px;
}
.footer_section .footer_area .left_footer .main_title {
  text-align: left;
}
.footer_section .footer_area .left_footer .main_title h3 {
  color: #ffffff;
}
.footer_section .footer_area .left_footer .main_title h3:after {
  right: inherit;
  margin-right: inherit;
  background-color: #ffffff;
}
.footer_section .footer_area .left_footer .content_area {
  padding-top: 50px;
  padding-bottom: 70px;
}
.footer_section .footer_area .left_footer .content_area p {
  color: #ffffff;
  line-height: 28px;
}
.footer_section .footer_area .left_footer .app_downloads::after {
  display: block;
  content: "";
  clear: both;
}
.footer_section .footer_area .left_footer .app_downloads .one_half_app.left_app {
  width: 240px;
  float: left;
  margin-right: 40px;
}
.footer_section .footer_area .left_footer .app_downloads .one_half_app.right_app {
  width: 240px;
  float: left;
}
.footer_section .footer_area .left_footer .app_downloads .one_half_app .head {
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  padding-bottom: 10px;
}
.footer_section .footer_area .left_footer .app_downloads .one_half_app a {
  display: inline-block;
}
.footer_section .footer_area .left_footer .app_downloads .one_half_app a img {
  width: 100%;
}
.footer_section .footer_area .left_footer .subscribe_area {
  padding-top: 80px;
}
.footer_section .footer_area .left_footer .subscribe_area h5 {
  color: #ffffff;
  font-weight: 600;
  font-size: 36px;
}
.footer_section .footer_area .left_footer .subscribe_area h6 {
  color: #ffffff;
  font-weight: 400;
  font-size: 36px;
}
.footer_section .footer_area .left_footer .subscribe_area .form_box {
  padding-top: 50px;
}
.footer_section .footer_area .left_footer .subscribe_area .form_box .form-group {
  position: relative;
}
.footer_section .footer_area .left_footer .subscribe_area .form_box .form-group .form-control {
  height: 60px;
  width: 100%;
  background-color: #dbd742;
  color: #000000;
  border: 0;
  border-radius: 0;
}
.footer_section .footer_area .left_footer .subscribe_area .form_box .form-group ::-webkit-input-placeholder {
  color: #ffffff;
}
.footer_section .footer_area .left_footer .subscribe_area .form_box .form-group :-ms-input-placeholder {
  color: #ffffff;
}
.footer_section .footer_area .left_footer .subscribe_area .form_box .form-group ::placeholder {
  color: #ffffff;
}
.footer_section .footer_area .left_footer .subscribe_area .form_box .form-group .btn {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0;
  border: 0;
  height: 60px;
  background-color: #ffffff;
  color: #ed8334;
  font-weight: 600;
  padding: 0px 25px;
}
.footer_section .footer_area .left_footer .subscribe_area .form_box .form-group .btn:hover {
  background-color: #000000;
  color: #ffffff;
}
.footer_section .footer_area .right_footer {
  margin-top: -50px;
}
.footer_section .footer_area .right_footer img {
  width: 100%;
}
.footer_section .footer_area .copyright_area {
  padding-top: 80px;
}
.footer_section .footer_area .copyright_area::after {
  display: block;
  content: "";
  clear: both;
}
.footer_section .footer_area .copyright_area .left_area {
  padding-top: 10px;
  float: left;
}
.footer_section .footer_area .copyright_area .left_area .list-inline li {
  position: relative;
  padding: 0px 15px;
  color: #ffffff;
}
.footer_section .footer_area .copyright_area .left_area .list-inline li:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  height: 12px;
  width: 1px;
  margin-top: 5px;
  background-color: #ffffff;
}
.footer_section .footer_area .copyright_area .left_area .list-inline li a {
  display: inline-block;
  margin-left: 10px;
  color: #dbd742;
}
.footer_section .footer_area .copyright_area .left_area .list-inline li a:hover {
  color: #ffffff;
}
.footer_section .footer_area .copyright_area .left_area .list-inline li:first-child {
  padding-left: 0;
}
.footer_section .footer_area .copyright_area .left_area .list-inline li:first-child:before {
  display: none;
}
.footer_section .footer_area .footer_menu {
  margin-top: 15px;
  margin-bottom: 20px;
  background-color: #dbd742;
  border-radius: 40px;
  padding: 10px 20px 10px 10px;
}
.footer_section .footer_area .footer_menu::after {
  display: block;
  content: "";
  clear: both;
}
.footer_section .footer_area .footer_menu .left_area {
  padding-left: 5px;
  float: left;
}
.footer_section .footer_area .footer_menu .left_area .list-inline li {
  position: relative;
  padding: 0px 10px;
  color: #ffffff;
}
.footer_section .footer_area .footer_menu .left_area .list-inline li:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  height: 12px;
  width: 1px;
  margin-top: 5px;
  background-color: #ffffff;
}
.footer_section .footer_area .footer_menu .left_area .list-inline li a {
  display: inline-block;
  margin-left: 10px;
  color: #000000;
}
.footer_section .footer_area .footer_menu .left_area .list-inline li a:hover {
  color: #000000;
  opacity: 0.9;
}
.footer_section .footer_area .footer_menu .left_area .list-inline li:first-child {
  padding-left: 0;
}
.footer_section .footer_area .footer_menu .left_area .list-inline li:first-child:before {
  display: none;
}
.footer_section .footer_area .footer_menu .right_area {
  float: right;
}
.footer_section .footer_area .footer_menu .right_area .list-inline li {
  padding: 0px 6px;
}
.footer_section .footer_area .footer_menu .right_area .list-inline li a {
  color: #ffffff;
}
.footer_section .footer_area .footer_menu .right_area .list-inline li a:hover {
  color: #000000;
}
.footer_section .footer_area .footer_menu .right_area .list-inline li:last-child {
  padding-right: 0;
}
.footer_section .footer_area .social_area {
  display: table;
  margin: 0 auto;
}
.footer_section .footer_area .social_area .list-inline li {
  margin: 0px 5px;
}
.footer_section .footer_area .social_area .list-inline li a {
  display: inline-block;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  border: 1px solid #ed8334;
  color: #ed8334;
  font-size: 18px;
  background-color: #ffffff;
}
.footer_section .footer_area .social_area .list-inline li:first-child {
  margin-left: 0;
}
.footer_section .footer_area .social_area .list-inline li:last-child {
  margin-right: 0;
}
.footer_section .footer_area .social_area .list-inline li.facebook a:hover {
  background-color: #284386;
  color: #ffffff;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
}
.footer_section .footer_area .social_area .list-inline li.twitter a:hover {
  background-color: #1da1f2;
  color: #ffffff;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
}
.footer_section .footer_area .social_area .list-inline li.linkedin a:hover {
  background-color: #0077b5;
  color: #ffffff;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
}
.footer_section .footer_area .social_area .list-inline li.youtube a:hover {
  background-color: #fa362c;
  color: #ffffff;
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
}
.footer_section .footer_area .newsletter_social_rel {
  padding-top: 50px;
}
.footer_section .footer_area .newsletter_social_rel .form_box .form-group {
  position: relative;
}
.footer_section .footer_area .newsletter_social_rel .form_box .form-group .form-control {
  height: 60px;
  width: 100%;
  background-color: #dbd742;
  color: #000000;
  border: 0;
  border-radius: 0;
}
.footer_section .footer_area .newsletter_social_rel .form_box .form-group ::-webkit-input-placeholder {
  color: #ffffff;
}
.footer_section .footer_area .newsletter_social_rel .form_box .form-group :-ms-input-placeholder {
  color: #ffffff;
}
.footer_section .footer_area .newsletter_social_rel .form_box .form-group ::placeholder {
  color: #ffffff;
}
.footer_section .footer_area .newsletter_social_rel .form_box .form-group .btn {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0;
  border: 0;
  height: 60px;
  background-color: #ffffff;
  color: #ed8334;
  font-weight: 600;
  padding: 0px 25px;
}
.footer_section .footer_area .newsletter_social_rel .form_box .form-group .btn:hover {
  background-color: #000000;
  color: #ffffff;
}
.footer_section .footer_area .newsletter_social_rel .social_area {
  margin-top: 10px;
}

/* Extra Huge large desktops */
/* Extra Huge large desktops */
/* Extra Huge large desktops */
/* Extra large desktops and mac laptops*/
/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
  .footer_section {
    padding-top: 50px;
    margin-top: 0;
  }
  .footer_section .footer_area .left_footer {
    padding-top: 100px;
  }
  .footer_section .footer_area .left_footer .app_downloads .one_half_app.left_app {
    width: 220px;
    margin-right: 30px;
  }
  .footer_section .footer_area .left_footer .app_downloads .one_half_app.right_app {
    width: 220px;
  }
  .footer_section .footer_area .left_footer .subscribe_area {
    padding-top: 60px;
  }
  .footer_section .footer_area .left_footer .subscribe_area h5 {
    font-size: 30px;
  }
  .footer_section .footer_area .left_footer .subscribe_area h6 {
    font-size: 30px;
  }
  .footer_section .footer_area .left_footer .subscribe_area .form_box {
    padding-top: 30px;
  }
  .footer_section .footer_area .right_footer {
    margin-top: 0;
  }
  .footer_section .footer_area .copyright_area {
    padding-top: 50px;
  }
  .footer_section .footer_area .newsletter_social_rel {
    padding-top: 0px;
  }
}
/* Landscape tablets and ipad */
@media (min-width: 768px) and (max-width: 991px) {
  .footer_section {
    padding-top: 50px;
    margin-top: 0;
  }
  .footer_section .footer_area .left_footer {
    padding-top: 50px;
  }
  .footer_section .footer_area .left_footer .app_downloads .one_half_app.left_app {
    width: 180px;
    margin-right: 20px;
  }
  .footer_section .footer_area .left_footer .app_downloads .one_half_app.right_app {
    width: 180px;
  }
  .footer_section .footer_area .left_footer .content_area {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .footer_section .footer_area .left_footer .subscribe_area {
    padding-top: 40px;
  }
  .footer_section .footer_area .left_footer .subscribe_area h5 {
    font-size: 26px;
  }
  .footer_section .footer_area .left_footer .subscribe_area h6 {
    font-size: 26px;
  }
  .footer_section .footer_area .left_footer .subscribe_area .form_box {
    padding-top: 30px;
  }
  .footer_section .footer_area .right_footer {
    margin-top: 0;
  }
  .footer_section .footer_area .copyright_area {
    padding-top: 30px;
  }
  .footer_section .footer_area .newsletter_social_rel {
    padding-top: 30px;
  }
  .footer_section .footer_area .footer_menu .left_area {
    float: none;
    padding-left: 0;
  }
  .footer_section .footer_area .footer_menu .left_area .list-inline {
    display: table;
    margin: 0 auto;
  }
  .footer_section .footer_area .footer_menu .right_area {
    padding-top: 5px;
    float: none;
  }
  .footer_section .footer_area .footer_menu .right_area .list-inline {
    display: table;
    margin: 0 auto;
  }
}
/* Landscape phones and portrait tablets */
@media (min-width: 576px) and (max-width: 767px) {
  .footer_section {
    padding-top: 50px;
    margin-top: 0;
  }
  .footer_section .footer_area .left_footer {
    padding-top: 70px;
  }
  .footer_section .footer_area .left_footer .app_downloads .one_half_app.left_app {
    width: 120px;
  }
  .footer_section .footer_area .left_footer .app_downloads .one_half_app.right_app {
    width: 120px;
  }
  .footer_section .footer_area .left_footer .content_area {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .footer_section .footer_area .left_footer .subscribe_area {
    padding-top: 30px;
  }
  .footer_section .footer_area .left_footer .subscribe_area h5 {
    font-size: 22px;
  }
  .footer_section .footer_area .left_footer .subscribe_area h6 {
    font-size: 22px;
  }
  .footer_section .footer_area .left_footer .subscribe_area .form_box {
    padding-top: 30px;
  }
  .footer_section .footer_area .right_footer {
    margin-top: 0;
  }
  .footer_section .footer_area .copyright_area {
    padding-top: 10px;
  }
  .footer_section .footer_area .copyright_area .left_area {
    float: initial;
  }
  .footer_section .footer_area .footer_menu .list-inline {
    float: initial;
    display: table;
    margin: 0 auto;
  }
  .footer_section .footer_area .social_area {
    float: initial;
    display: table;
    margin: 0 auto;
    margin-top: 20px;
  }
  .footer_section .footer_area .newsletter_social_rel {
    padding-top: 30px;
  }
  .footer_section .footer_area .footer_menu .left_area {
    float: none;
    padding-left: 15px;
  }
  .footer_section .footer_area .footer_menu .left_area .list-inline {
    display: table;
    margin: 0 auto;
  }
  .footer_section .footer_area .footer_menu .right_area {
    padding-top: 5px;
    float: none;
  }
  .footer_section .footer_area .footer_menu .right_area .list-inline {
    display: table;
    margin: 0 auto;
  }
}
/* Landscape phones and portrait tablets */
@media (min-width: 361px) and (max-width: 575px) {
  .footer_section {
    padding-top: 50px;
    margin-top: 0;
  }
  .footer_section .footer_area .left_footer {
    padding-top: 70px;
  }
  .footer_section .footer_area .left_footer .app_downloads .one_half_app.left_app {
    width: 150px;
    margin-right: 20px;
  }
  .footer_section .footer_area .left_footer .app_downloads .one_half_app.right_app {
    width: 150px;
  }
  .footer_section .footer_area .left_footer .content_area {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .footer_section .footer_area .left_footer .subscribe_area {
    padding-top: 30px;
  }
  .footer_section .footer_area .left_footer .subscribe_area h5 {
    font-size: 22px;
  }
  .footer_section .footer_area .left_footer .subscribe_area h6 {
    font-size: 22px;
  }
  .footer_section .footer_area .left_footer .subscribe_area .form_box {
    padding-top: 30px;
  }
  .footer_section .footer_area .right_footer {
    display: none;
    margin-top: 0;
  }
  .footer_section .footer_area .copyright_area {
    padding-top: 10px;
  }
  .footer_section .footer_area .copyright_area .left_area {
    float: initial;
  }
  .footer_section .footer_area .footer_menu .list-inline {
    float: initial;
    display: table;
    margin: 0 auto;
  }
  .footer_section .footer_area .footer_menu .left_area {
    float: none;
    padding-left: 15px;
  }
  .footer_section .footer_area .footer_menu .left_area .list-inline {
    display: table;
    margin: 0 auto;
  }
  .footer_section .footer_area .footer_menu .right_area {
    padding-top: 5px;
    float: none;
  }
  .footer_section .footer_area .footer_menu .right_area .list-inline {
    display: table;
    margin: 0 auto;
  }
  .footer_section .footer_area .social_area {
    float: initial;
    display: table;
    margin: 0 auto;
    margin-top: 20px;
  }
  .footer_section .footer_area .newsletter_social_rel {
    padding-top: 30px;
  }
}
/* Smaller phones */
@media (max-width: 360px) {
  .footer_section {
    padding-top: 50px;
    margin-top: 0;
  }
  .footer_section .footer_area .left_footer {
    padding-top: 70px;
  }
  .footer_section .footer_area .left_footer .app_downloads .one_half_app.left_app {
    width: 150px;
    margin-right: 20px;
  }
  .footer_section .footer_area .left_footer .app_downloads .one_half_app.right_app {
    width: 150px;
  }
  .footer_section .footer_area .left_footer .app_downloads .one_half_app.left_app {
    width: 120px;
  }
  .footer_section .footer_area .left_footer .app_downloads .one_half_app.right_app {
    width: 120px;
  }
  .footer_section .footer_area .left_footer .content_area {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .footer_section .footer_area .left_footer .subscribe_area {
    padding-top: 30px;
  }
  .footer_section .footer_area .left_footer .subscribe_area h5 {
    font-size: 22px;
  }
  .footer_section .footer_area .left_footer .subscribe_area h6 {
    font-size: 22px;
  }
  .footer_section .footer_area .left_footer .subscribe_area .form_box {
    padding-top: 30px;
  }
  .footer_section .footer_area .right_footer {
    display: none;
    margin-top: 0;
  }
  .footer_section .footer_area .copyright_area {
    padding-top: 10px;
  }
  .footer_section .footer_area .copyright_area .left_area {
    float: initial;
  }
  .footer_section .footer_area .footer_menu .list-inline {
    float: initial;
    display: table;
    margin: 0 auto;
  }
  .footer_section .footer_area .social_area {
    float: initial;
    display: table;
    margin: 0 auto;
    margin-top: 20px;
  }
  .footer_section .footer_area .newsletter_social_rel {
    padding-top: 30px;
  }
  .footer_section .footer_area .footer_menu .left_area {
    float: none;
    padding-left: 15px;
  }
  .footer_section .footer_area .footer_menu .left_area .list-inline {
    display: table;
    margin: 0 auto;
  }
  .footer_section .footer_area .footer_menu .right_area {
    padding-top: 5px;
    float: none;
  }
  .footer_section .footer_area .footer_menu .right_area .list-inline {
    display: table;
    margin: 0 auto;
  }
}
/* Smaller phones */

/*# sourceMappingURL=custom.min.css.map */
