/* CSS Document */
/* Scss Document */
@font-face {
  font-family: "baskerville";
  src: url("fonts/baskvill-webfont.woff2") format("woff2"),
    url("fonts/baskvill-webfont.woff") format("woff"),
    url("fonts/baskvill-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/*
@font-face {
font-family: 'Circe-Light';
src: url('fonts/Circe-Light.eot?#iefix') format('embedded-opentype'),
url('fonts/Circe-Light.otf')  format('opentype'),
url('fonts/Circe-Light.woff') format('woff'),
url('fonts/Circe-Light.ttf')  format('truetype'),
url('fonts/Circe-Light.svg#Circe-Light') format('svg');
font-weight: normal;
font-style: normal;
}

@font-face {
font-family: 'Circe-Regular';
src: url('fonts/Circe-Regular.eot?#iefix') format('embedded-opentype'),
url('fonts/Circe-Regular.otf')  format('opentype'),
url('fonts/Circe-Regular.woff') format('woff'),
url('fonts/Circe-Regular.ttf')  format('truetype'),
url('fonts/Circe-Regular.svg#Circe-Regular') format('svg');
font-weight: normal;
font-style: normal;
}
*/
html,
body {
  width: 100%;
  height: 100%;
}

body {
  background: #fff;
  margin: 0px;
  padding: 0px;
  font: normal 16px/24px "baskerville", "Times New Roman", "serif";
  color: #6a696f;
}

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

h1 {
  font-size: 2.2em;
  display: block;
  color: #d50308;
  margin: 0;
  font-weight: normal;
  text-align: center;
}

h2 {
  font-size: 2.2em;
  display: block;
  color: #d50308;
  margin: 0;
  font-weight: normal;
}
@media screen and (max-width: 1199px) {
  h2 {
    font-size: 2em;
  }
}
@media screen and (max-width: 991px) {
  h2 {
    font-size: 1.5em;
  }
}
@media screen and (max-width: 991px) {
  h2 {
    font-size: 1.55em;
  }
}

h3 {
  font-size: 1.75em;
  display: block;
  color: #d50308;
}

h4 {
  font-size: 1em;
  display: block;
  color: #d50308;
}

a {
  text-decoration: none;
  color: #6a696f;
}

a:hover,
a:focus {
  color: #6a696f;
  text-decoration: underline;
}

.contentformat {
  margin: 30px 140px 40px 140px;
}

.trans_eff {
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
}

.color_white,
.color_white:hover,
.color_white a,
.color_white a:hover {
  color: #fff;
}

.color_primary2,
.color_primary2:hover,
.color_primary2 a,
.color_primary2 a:hover {
  color: #d50308;
}

.color_link,
.color_link:hover,
.color_link a,
.color_link a:hover {
  color: #569fda;
}

.db {
  display: block;
}

.di {
  display: inline;
}

.dib {
  display: inline-block;
}

.dn {
  display: none;
}

.vam {
  vertical-align: middle;
}

.vab {
  vertical-align: bottom;
}

.vat {
  vertical-align: top;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

/* HOME PAGE CLASSES */
/*common classes */
.white {
  color: #fff;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt50 {
  margin-top: 50px;
}

#back-top {
  position: fixed;
  bottom: 10px;
  right: 15px;
  z-index: 3;
  display: block;
}

#back-top .btn-default {
  display: inline-block;
  background: #333;
  overflow: hidden;
  padding: 7px 0;
  border-radius: 100%;
  line-height: inherit !important;
  color: #eee;
  width: 50px;
  height: 50px;
  box-shadow: 0 0 20px 0 rgba(112, 130, 148, 0.2);
  border: 0;
  font-size: 30px;
  transition: all linear 0.3s;
  cursor: pointer;
}

#back-top .btn-default:hover {
  background: #d50308;
}

/* container */
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
    padding: 0 15px;
    margin: auto;
  }
}
.pos_relative {
  position: relative;
}

.pos_absolute {
  position: relative;
}

.pos_static {
  position: relative;
}

.btn {
  outline-color: #d50308 !important;
}

/* checkbox/radio */
.radioBtn {
  position: relative;
  padding-left: 35px;
  margin-bottom: 6px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.radioBtn input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  border: 1px solid #666;
  border-radius: 100%;
}

/* On mouse-over, add a grey background color */
.radioBtn:hover input ~ .checkmark {
  border-color: #666;
}

/* When the radio button is checked, add a blue background */
.radioBtn input:checked ~ .checkmark {
  border-color: #666;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: block;
  background: #ddd;
}

/* Show the indicator (dot/circle) when checked */
.radioBtn input:checked ~ .checkmark:after {
  background: #7ec61e;
}

/* Style the indicator (dot/circle) */
.radioBtn .checkmark:after {
  top: 6px;
  left: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* checkbox/radio ends */
/* common classes ends */
/* HEADER */
.headerSpace {
  height: 98px;
}
@media screen and (max-width: 767px) {
  .headerSpace {
    height: 74px;
  }
}
@media screen and (max-width: 767px) {
  .headerSpace {
    height: 67px;
  }
}

.topHeader {
  padding: 15px 0 10px;
  background: black;
  /* Old browsers */
  background: -moz-linear-gradient(
    -15deg,
    black 0%,
    #212121 40%,
    #424242 50%,
    #212121 60%,
    black 100%
  );
  /* FF3.6-15 */
  background: -webkit-linear-gradient(
    -15deg,
    black 0%,
    #212121 40%,
    #424242 50%,
    #212121 60%,
    black 100%
  );
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    165deg,
    black 0%,
    #212121 40%,
    #424242 50%,
    #212121 60%,
    black 100%
  );
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
}
@media screen and (max-width: 1199px) {
  .topHeader {
    padding: 15px 0 5px;
  }
}
@media screen and (max-width: 991px) {
  .topHeader {
    padding: 15px 0;
  }
  .topHeader .container {
    padding-left: 60px;
  }
}
@media screen and (max-width: 767px) {
  .topHeader {
    padding: 10px 0;
  }
}

.brandArea {
  width: 29%;
  height: auto;
  float: left;
}
@media screen and (max-width: 1199px) {
  .brandArea {
    width: 20%;
  }
}
@media screen and (max-width: 767px) {
  .brandArea {
    width: 33%;
  }
}
@media screen and (max-width: 500px) {
  .brandArea {
    width: 40%;
  }
}
.brandArea img {
  width: 100%;
  max-width: 230px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .brandArea img {
    max-width: 115px;
  }
}
@media screen and (max-width: 400px) {
  .brandArea img {
    max-width: 100px;
  }
}

.hRightBox {
  float: right;
  width: 20%;
  text-align: right;
  min-height: 20px;
}
@media screen and (max-width: 767px) {
  .hRightBox {
    width: 50%;
    margin-top: 3px;
  }
}
.hRightBox .social {
  margin: 15px -7px 0;
  height: 24px;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .hRightBox .social {
    margin-top: 5px;
  }
}
@media screen and (max-width: 991px) {
  .hRightBox .social {
    margin-top: 0px;
  }
}
.hRightBox .social a {
  width: 24px;
  height: 24px;
  display: inline-block;
  margin: 0 7px;
  border-radius: 100%;
  background: url(../images/facebook.png) no-repeat left top;
  background-size: 100% 100%;
  opacity: 0.6;
}
.hRightBox .social a:hover {
  opacity: 1;
}
.hRightBox .social a.twitter {
  background-image: url(../images/twitter.png);
}
.hRightBox .social a.instagram {
  background-image: url(../images/instagram.png);
}
.hRightBox .callInfo {
  margin-top: 20px;
  font-size: 1.125em;
  color: #d0cfcf;
}
.hRightBox .callInfo span {
  display: block;
  font-size: 1.35em;
  color: #d50308;
  line-height: 1.2em;
}
.bannerHome {
  background: #dee5f7;
}
.form_section {
  background: #dee5f7;
  width: 52%;
  padding: 15px 25px;
  border-left: 2px solid #ff0000;
}
.form_section h2 {
  font-weight: 600;
  font-size: 2em;
  line-height: 1.5em;
}
.form_text {
  font-size: 1.2em;
  line-height: 1.2em;
  color: #000;
}
.form_section label {
  font-weight: 600;
  font-size: 0.85em;
  margin-bottom: 0;
  color: #a93f3f;
  width: 35%;
  float: left;
}
.form_section .form-control {
  width: 65%;
}
.form_section .btn {
  outline: none !important;
}
.form_section .btn:focus {
  outline: none !important;
}
.banner_left {
  width: 48%;
  position: relative;
}
.banner_left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.d-flex {
  display: flex;
  flex-wrap: wrap;
}
.menu_tb {
  float: left;
  padding: 8px 0;
  width: 35px;
  height: 35px;
}
.menu_tb a {
  display: block;
}
.menu_tb a img {
  width: 100%;
  height: 100%;
}

.sidebar_logo img {
  max-height: 145px;
}
.navbar-right li > a {
  border: 2px solid #9d9d9d;
  padding: 5px 10px !important;
  border-radius: 10px;
  margin-top: 8px;
}
.sidebar_widget .closebtn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  color: #fff;
}
.closebtn {
  display: block;
}
.closebtn:hover {
  text-decoration: none;
}
.sidebar_widget {
  width: 350px;
  height: 100%;
  position: fixed;
  top: 0;
  background: #000;
  z-index: 9999;
  left: -400px;
  right: auto;
  padding: 15px;
}
.side_menu_bar {
  width: 100%;
}
.side_menu_bar li {
  display: block;
  float: none;
}
.side_menu_bar li > a {
  border-bottom: 1px solid #382d2d;
}
.affair_p_img {
  background: #fff;
  text-align: center;
  border-radius: 5px;
  left: 0;
  right: 0;
  padding: 5px 0;
  bottom: 10px;
  position: absolute;
  margin: auto;
  width: 246px;
}
.affair_p_img img {
  max-width: 60%;
  height: auto;
  width: auto;
}

@media screen and (max-width: 767px) {
  .hRightBox .callInfo span {
    font-weight: bold;
  }
  .form_section h2 {
    font-size: 1.5em;
  }
}

@media screen and (max-width: 1199px) {
  .hRightBox .callInfo {
    margin-top: 5px;
    font-size: 1em;
  }
  .form_section label {
    font-size: 0.8em;
  }
  .form_section {
    width: 61%;
  }
  .banner_left {
    width: 39%;
  }
}
@media screen and (max-width: 991px) {
  .hRightBox .callInfo {
    font-size: 0.875em;
    line-height: 1em;
    margin-top: 8px;
  }

  .banner_left {
    width: 100%;
  }
  .form_section label {
    font-size: 0.91em;
  }
  .form_section {
    width: auto;
    border: 1px solid #ff0000;
    border-width: 6px 0 0 0;
    margin: 0 -16px;
  }
  .sidebar_widget {
    position: static;
    width: auto;
    padding: 0;
    height: auto;
  }
  .sidebar_widget .closebtn {
    opacity: 0;
  }
  .sidebar_logo {
    display: none;
  }
  .navbar-nav > li > a {
    padding: 10px;
    border: 0;
  }
  .menu_tb {
    display: none;
  }
  .navbar-right {
    padding: 0 10px !important;
  }
  .navbar-right li > a {
    display: inline-block;
    border: 2px solid #9d9d9d;
  }
}

.serviceInfo {
  /*margin-top:20px;*/
  width: 45%;
  text-align: center;
  float: left;
  color: #d0cfcf;
  font-size: 1.125em;
  line-height: 1.2;
}
@media screen and (max-width: 1199px) {
  .serviceInfo {
    width: 60%;
    padding: 0 5%;
    margin-top: 10px;
    font-size: 1em;
  }
}
@media screen and (max-width: 991px) {
  .serviceInfo {
    font-size: 0.875em;
    margin-top: 5px;
  }
}
.serviceInfo h3 {
  display: block;
  color: #d50308;
  font-weight: normal;
  margin: 0 0 5px 0;
  letter-spacing: 5px;
  font-size: 1.75em;
}

/* NAVBAR */
.ddCaret {
  float: right;
  margin: 5px 0 0 6px;
  display: block;
  border: 1px solid #fff;
  border-width: 2px 2px 0 0;
  padding: 3px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.dropdown-toggle:hover .ddCaret {
  border-color: #d50308;
}

.open .ddCaret {
  border-color: #fff !important;
  margin: 9px 0 0 6px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.navbar-nav > li > .dropdown-menu {
  padding: 0;
  border-radius: 0;
  border: 0;
}
.navbar-nav > li > .dropdown-menu li > a {
  padding: 7px 15px;
  color: #fff;
  background: #222;
  border: 0;
}
@media screen and (max-width: 991px) {
  .navbar-nav > li > .dropdown-menu li > a {
    padding: 7px 15px !important;
  }
}
.navbar-nav > li > .dropdown-menu li > a:hover {
  color: #d50308;
  background: #111;
}

.navbar-inverse {
  background-color: #000;
  border-color: #000;
}
@media screen and (max-width: 991px) {
  .navbar-inverse {
    border: 0 !important;
    background: transparent !important;
  }
}

.navbar {
  font-size: 1.125em;
  margin-bottom: 0;
}

.navbar-nav {
  margin: 0 0px;
}

.navbar-nav > li > a {
  padding: 15px 15px;
}
@media screen and (max-width: 1199px) {
  .navbar-nav > li > a {
    padding: 15px;
  }
}

.navbar-inverse .navbar-nav > li > a {
  color: #d0cfcf;
}

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:focus,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > li > a:focus,
.navbar-inverse .navbar-nav > li > a:hover {
  color: #d50308;
}

.navbar-toggle {
  background: none !important;
  border: 0 !important;
  padding: 5px;
  margin: 0;
  width: 40px;
  height: 40px;
  position: fixed;
  left: 10px;
  top: 26px;
}
.navbar-toggle .icon-bar {
  height: 3px !important;
  width: 100%;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .navbar-toggle {
    top: 17px;
  }
}
@media screen and (max-width: 400px) {
  .navbar-toggle {
    top: 14px;
  }
  .bannerArea {
    border-bottom: 3px solid #a6a5a9;
    height: calc(100vh - 194px);
    max-height: 560px;
    min-height: 250px;
    background: #fff url(../images/bnrBg.jpg) no-repeat left top;
    background-size: cover;
    overflow: hidden;
    /* margin-left: -50px; */
    background-position: -104px;
  }

  .form_section .col-xs-6 {
    width: 100%;
  }
  .form_section .form-group {
    margin-bottom: 10px;
  }
  .form_section .form-control {
    width: 64%;
    float: left;
  }
  .form_text {
    font-size: 1em;
    line-height: 1.3em;
  }
  .form_section label {
    font-size: 0.9em;
    width: 35%;
    float: left;
    padding-top: 3px;
  }
  .affair_p_img {
    width: 170px;
    padding: 5px 5px;
  }
}

@media screen and (max-width: 991px) {
  .topHeader {
    position: fixed;
    z-index: 99;
    width: 100%;
    left: 0;
    top: 0;
  }

  .navBase {
    position: fixed;
    width: 100%;
    top: 0;
    bottom: 0;
    left: -100%;
    z-index: 999;
    background: rgba(0, 0, 0, 0.15);
    transition: all linear 0.4s;
  }
  .navBase.active {
    left: 0;
    background: rgba(33, 33, 33, 0.75);
  }

  .navbar {
    min-height: 0;
    height: 0;
  }

  .navbar-collapse,
  .navbar-collapse.collapse {
    position: fixed;
    z-index: 99999 !important;
    left: -300px;
    top: 0;
    bottom: 0;
    background: #000;
    width: 270px;
    overflow-y: auto !important;
    display: block !important;
    transition: all linear 0.3s !important;
    padding: 30px 0;
    margin: 0 !important;
  }

  .navbar-collapse.collapse.in {
    left: 0 !important;
  }

  .navbar-header {
    float: none;
  }

  .navbar-left,
  .navbar-right {
    float: none !important;
  }

  .navbar-toggle {
    display: block;
  }

  .navbar-collapse {
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  .navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
  }

  .navbar-nav {
    float: none !important;
    margin: 0;
    padding: 0;
  }

  .navbar-nav > li {
    float: none;
  }

  .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
/* NAVBAR ENDS */
/* HEADER ENDS */
/* BANNER */
.bannerArea {
  border-bottom: 3px solid #a6a5a9;
  height: calc(100vh - 194px);
  max-height: 560px;
  min-height: 500px;
  background: #fff url(../images/bnrBg.jpg) no-repeat center top;
  background-size: cover;
  overflow: hidden;
}
.bannerArea .container {
  height: 100%;
  position: relative;
}
.bannerArea .img {
  display: block;
  width: auto;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 1199px) {
  .bannerArea .img {
    height: 100%;
  }
}
.bannerArea .caa {
  position: absolute;
  right: 0;
  bottom: 5%;
  width: auto;
  /*  height: 32%;  */
}
@media screen and (max-width: 991px) {
  .bannerArea .caa {
    bottom: 5%;
    right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .bannerArea .caa {
    height: 70px;
    bottom: 15px;
  }
}
.bannerArea .texts {
  position: absolute;
  top: 15%;
  right: 0;
  text-align: left;
  z-index: 2;
  width: 68%;
}
@media screen and (max-width: 1199px) {
  .bannerArea .texts {
    width: 50%;
  }
}
@media screen and (max-width: 991px) {
  .bannerArea .texts {
    bottom: 15%;
    top: auto;
    left: 15px;
    right: auto;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .bannerArea .texts {
    bottom: 100px;
  }
}
.bannerArea .texts p {
  font-size: 3.6em;
  line-height: 1em;
  color: #d50308;
  margin: 28px 0 39px 0;
  /*font-weight: bold;*/
  text-shadow: 1px 0px 0px rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 1199px) {
  .bannerArea .texts p {
    font-size: 2.8em;
    margin: 0 0 30px 0;
  }

  .bannerArea .texts .btn {
    margin-left: 0px;
  }
}
@media screen and (max-width: 991px) {
  .bannerArea .texts p {
    margin: 0 10px 15px 0;
  }
}
.bannerArea .texts .btn {
  margin-left: 150px;

  color: #fff;

  background: #000;
  border-radius: 30px;
  padding: 23px 39px;
  font-size: 1.5em;
  text-transform: uppercase;
  box-shadow: 1px 0px 0px rgba(255, 255, 255, 0.8);
}
.bannerArea .texts .btn:hover {
  background: #d50308;
}

/* BANNER ENDS */
/* SECTION 1 */
.bannerArea2 {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#e8e8e8+24,bcbcbc+100 */
  background: #e8e8e8;
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, #e8e8e8 24%, #bcbcbc 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, #e8e8e8 24%, #bcbcbc 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #e8e8e8 24%, #bcbcbc 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e8e8e8', endColorstr='#bcbcbc',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  padding: 40px 0 10px 0;
}
.bannerArea2 .color_white {
  font-style: italic;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
  font-size: 2em;
}
@media screen and (max-width: 1199px) {
  .bannerArea2 .color_white {
    font-size: 1.75em;
  }
}
@media screen and (max-width: 991px) {
  .bannerArea2 .color_white {
    font-size: 1.5em;
  }
}
.bannerArea2 .fText {
  font-size: 1.125em;
  opacity: 0.5;
  margin-top: 5px;
  font-style: italic;
}
@media screen and (max-width: 1199px) {
  .bannerArea2 .fText {
    font-size: 1em;
  }
}
@media screen and (max-width: 767px) {
  .bannerArea2 .fText {
    text-align: center;
  }
}

/* SECTION 2 */
.listStyle1 {
  margin: 20px 0;
  text-align: center;
}
.listStyle1 p {
  display: inline-block;
  font-size: 1.4em;
  line-height: 1.25em;
  color: #000;
  margin: 5px 8px;
  font-style: italic;
}
.banner2 .listStyle1 p {
  font-size: 1.1em;
  line-height: 1em;
  margin: 5px 8px;
  opacity: 0.9;
  color: #000;
}
.banner2 .listStyle1 p b {
  opacity: 0.6;
}
.banner2 .sec4 {
  float: left;
  width: 100%;
}
.bold_text {
  color: #3e3e3e;
  font-weight: 700;
  opacity: 1;
  font-size: 1.3em;
  line-height: 1.7em;
  margin: 25px 0 29px 0;
}
@media screen and (max-width: 1199px) {
  .listStyle1 p {
    font-size: 1.25em;
  }
}
@media screen and (max-width: 991px) {
  .listStyle1 p {
    font-size: 1em;
  }
}
@media screen and (max-width: 767px) {
  .listStyle1 p {
    margin: 5px;
  }
}
.listStyle1 p b {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  background: url(../images/check1.png) no-repeat left top;
  background-size: 100% 100%;
  opacity: 0.35;
  border-radius: 100%;
  overflow: hidden;
  margin: 0 5px 7px 0;
}
@media screen and (max-width: 991px) {
  .listStyle1 p b {
    width: 18px;
    height: 18px;
  }
}

/* SECTION 3 */
.featuredArea {
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .featuredArea {
    margin: 40px 0;
  }
}
.featuredArea h2 {
  color: #000;
}
.featuredArea .lists {
  margin: 25px -10px 0;
}
.featuredArea .lists img {
  display: inline-block;
  width: 80px;
  height: auto;
  margin: 0 10px;
  vertical-align: middle;
}
@media screen and (max-width: 1199px) {
  .featuredArea .lists img {
    width: 65px;
    margin: 10px;
  }
}

/* SECTION 4 */
.sec4 {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#700606+0,b70005+100 */
  background: #700606;
  /* Old browsers */
  background: -moz-linear-gradient(45deg, #700606 0%, #b70005 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(45deg, #700606 0%, #b70005 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, #700606 0%, #b70005 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#700606', endColorstr='#b70005',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
}
.sec4 .sec4t {
  background: url(../images/sec_4t.png) no-repeat center top;
  background-size: 100% auto;
}
.sec4 .sec4b {
  background: url(../images/sec_4b.png) no-repeat center bottom;
  background-size: 100% auto;
  padding: 215px 0 215px;
}
@media screen and (max-width: 991px) {
  .sec4 .sec4b {
    padding: 130px 0 90px;
  }
}
@media screen and (max-width: 767px) {
  .sec4 .sec4b {
    text-align: center;
    padding: 80px 0 60px;
  }
}
.sec4 .sec4x,
.sec4 .sec4y,
.sec4 .sec4z {
  min-height: 100px;
}
@media screen and (max-width: 767px) {
  .sec4 .sec4x,
  .sec4 .sec4y,
  .sec4 .sec4z {
    min-height: 10px;
  }
}
.sec4 .sec4x,
.sec4 .sec4z {
  width: 30%;
  max-width: 274px;
  position: absolute;
  top: 20%;
}
@media screen and (max-width: 767px) {
  .sec4 .sec4x,
  .sec4 .sec4z {
    position: static;
    max-width: 100%;
    width: 100%;
  }
}
.sec4 .sec4x {
  left: 50px;
}
@media screen and (max-width: 991px) {
  .sec4 .sec4x {
    left: 10px;
  }
}
.sec4 .sec4y {
  width: 33%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .sec4 .sec4y {
    width: 100%;
  }
}
.sec4 .sec4z {
  right: 50px;
}
@media screen and (max-width: 991px) {
  .sec4 .sec4z {
    right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .sec4 .sec4z {
    margin: 30px 0;
  }
}
.sec4 h2 {
  color: #fff;
  font-size: 2em;
}
@media screen and (max-width: 1199px) {
  .sec4 h2 {
    font-size: 1.5em;
  }
}
.sec4 p {
  color: #fff;
  opacity: 0.6;
  margin: 15px 0;
  font-size: 1.125em;
}
@media screen and (max-width: 991px) {
  .sec4 p {
    font-size: 1em;
  }
}
@media screen and (max-width: 991px) {
  .sec4 p {
    margin: 10px 0;
    opacity: 0.75;
  }
}
@media screen and (max-width: 767px) {
  .sec4 p {
    font-size: 1.125em;
  }
}
.sec4 a {
  color: #000;
  font-size: 1.125em;
}
@media screen and (max-width: 991px) {
  .sec4 a {
    font-size: 1em;
  }
}
.sec4 .lnd {
  max-width: 80%;
  height: auto;
  display: block;
  margin: auto;
}
.sec4 .lndInfo {
  position: relative;
  z-index: 1;
  margin-top: -33%;
  text-align: center;
}
.sec4 .lndInfo h2 {
  margin-bottom: 15px;
}
.sec4 .lndInfo .btnStyle {
  font-size: 1.125em;
  line-height: 32px;
  padding: 13px 25px 13px 15px;
  color: #6a696f;
  display: inline-block;
  text-transform: uppercase;
  background: #fff;
  border-radius: 0 30px 30px 0;
  font-weight: normal;
  height: 55px;
}
.sec4 .lndInfo .btnStyle.first {
  border-radius: 30px 0 0 30px;
  padding: 13px 15px 13px 25px;
}
@media screen and (max-width: 991px) {
  .sec4 .lndInfo .btnStyle {
    font-size: 1em;
    line-height: 32px;
    padding: 8px 20px 8px 10px;
    height: 45px;
  }
  .sec4 .lndInfo .btnStyle.first {
    padding: 8px 10px 8px 20px;
  }
}
.sec4 .lndInfo .lgbtLink {
  font-size: 1.125em;
  margin-top: 40px;
  color: #fff;
  opacity: 0.7;
  font-family: "baskerville", "Times New Roman", "serif" !important;
  font-weight: normal;
  display: block;
}
@media screen and (max-width: 991px) {
  .sec4 .lndInfo .lgbtLink {
    font-size: 1em;
    margin-top: 30px;
  }
}

/* SECTION 5 */
.title1 {
  text-align: center;
  margin-bottom: 20px;
}
.title1 h2 {
  display: inline-block;
  padding: 5px 15px;
  color: #6a696f;
  margin: 0;
  background: #fff;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .title1 {
    margin-bottom: 0px;
    border: 0;
  }
  .title1 h2 {
    transform: none;
    -webkit-transform: none;

    margin-bottom: 30px;
  }
}

.articlerows {
  height: 45px;
}

.vipLove {
  margin-top: -1px;
  padding: 80px 0px;
}

@media screen and (max-width: 767px) {
  .vipLove {
    padding: 50px 0px 40px;
  }
}
.vipLove .vipLoveInr {
  margin: auto;
}
.vipLove .textArea {
  float: left;
  width: 43%;
  margin-top: 0%;
  font-size: 1.25em;
  line-height: 1.75em;
}

@media screen and (max-width: 1199px) {
  .vipLove .textArea {
    font-size: 1.125em;
    line-height: 1.5em;
  }
}
@media screen and (max-width: 991px) {
  .vipLove .textArea {
    font-size: 1em;
    width: 40%;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .vipLove .textArea {
    width: 100%;
    float: none;
    text-align: center;
  }
}
.vipLove .textArea a {
  display: block;
  margin-top: 20px;
}
/* .vipLove .imageArea {
float: right;
width: 55%; 
MARGIN-TOP: 22PX;
}
@media screen and (max-width: 767px) {
.vipLove .imageArea {
width: 100%;
float: none;
margin-bottom: 30px;
text-align: center; } }
.vipLove .imageArea img {
display: block;
width: 100%;
height: auto; }
*/

.vipLove .imageArea {
  float: right;
  width: 55%;
}
@media screen and (max-width: 767px) {
  .vipLove .imageArea {
    width: 100%;
    float: none;
    margin-bottom: 30px;
    text-align: center;
  }
}
.vipLove .imageArea img {
  display: block;
  width: 100%;
  height: auto;
}

.sec6 {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#8b8b8b+0,b7b7b7+100 */
  background: #8b8b8b;
  /* Old browsers */
  background: -moz-linear-gradient(top, #8b8b8b 0%, #b7b7b7 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #8b8b8b 0%, #b7b7b7 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #8b8b8b 0%, #b7b7b7 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8b8b8b', endColorstr='#b7b7b7',GradientType=0 );
  /* IE6-9 */
}
.sec6 .sec6t {
  background: url(../images/sec_6t.png) no-repeat center top;
  background-size: 100% auto;
}
.sec6 .sec6b {
  background: url(../images/sec_6b.png) no-repeat center bottom;
  background-size: 100% auto;
  min-height: 670px;
  padding: 150px 0 100px 0;
}
@media screen and (max-width: 991px) {
  .sec6 .sec6b {
    min-height: 270px;
    padding: 100px 0px;
  }
}
@media screen and (max-width: 767px) {
  .sec6 .sec6b {
    padding: 70px 0px;
    text-align: center;
  }
}
.sec6 h2 {
  margin-bottom: 50px;
  color: #fff;
}
@media screen and (max-width: 991px) {
  .sec6 h2 {
    margin-bottom: 20px;
  }
}
.sec6 .services {
  padding: 0px;
}
.sec6 .services .srv {
  padding: 0 25px;
}
@media screen and (max-width: 991px) {
  .sec6 .services .srv {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .sec6 .services .srv {
    margin-bottom: 20px;
  }
}
.sec6 .services h6 {
  font-size: 1.25em;
  color: #fff;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .sec6 .services h6 {
    margin-bottom: 5px;
  }
}
.sec6 .services p {
  color: #fff;
  font-size: 1em;
  line-height: 1.5em;
  margin: 0;
}

.sec7 {
  margin-top: -1px;
  padding: 80px 0;
}
@media screen and (max-width: 991px) {
  .sec7 {
    padding: 50px 0;
  }
}
.sec7 .box {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .sec7 .box {
    margin-top: 0;
  }
}
.sec7 .box .imageArea {
  float: left;
  width: 33%;
}
.sec7 .box .imageArea img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .sec7 .box .imageArea {
    float: none;
    width: 100%;
  }
}
.sec7 .box .textArea {
  float: left;
  width: 60%;
  padding: 5px 50px;
}
.sec7 .box .textArea h6 {
  margin-bottom: 15px;
  color: #d50308;
  font-size: 1.85em;
}
.sec7 .box .textArea p {
  margin: 0;
  font-size: 1.125em;
  line-height: 2em;
}
@media screen and (max-width: 1199px) {
  .sec7 .box .textArea {
    width: 67%;
  }
  .sec7 .box .textArea p {
    line-height: 1.75em;
  }
}
@media screen and (max-width: 991px) {
  .sec7 .box .textArea {
    padding: 0px 25px;
  }
  .sec7 .box .textArea h6 {
    margin: 0 0 10px 0;
    font-size: 1.125em;
  }
}
@media screen and (max-width: 991px) and (max-width: 767px) {
  .sec7 .box .textArea {
    padding: 0px;
    float: none;
    width: 100%;
    margin-top: 30px;
    text-align: center;
  }
}
@media screen and (max-width: 991px) {
  .sec7 .box .textArea p {
    line-height: 1.5em;
    font-size: 1em;
  }
}
.sec7 .box2 .textArea,
.sec7 .box2 .imageArea {
  float: right;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .sec7 .box2 .textArea,
  .sec7 .box2 .imageArea {
    float: none;
    text-align: center;
  }
}
.sec7 .box2 .imageArea {
  width: 14.51%;
}
@media screen and (max-width: 767px) {
  .sec7 .box2 .imageArea {
    width: 45%;
    margin: 50px auto 0;
  }
}
@media screen and (max-width: 991px) {
  .sec7 .box2 .textArea {
    width: 85%;
  }
}
@media screen and (max-width: 767px) {
  .sec7 .box2 .textArea {
    width: 100%;
  }
}

.sec8 .sec6b {
  min-height: 400px;
  /*padding: 200px 0;*/
}
@media screen and (max-width: 1199px) {
  .sec8 .sec6b {
    min-height: 250px;
    padding: 120px 0;
  }
}
@media screen and (max-width: 991px) {
  .sec8 .sec6b {
    padding: 120px 0;
  }
}
@media screen and (max-width: 767px) {
  .sec8 .sec6b {
    padding: 100px 0px;
  }
}
.sec8 .arrow {
  border: solid #fff;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 15px;
}
@media screen and (max-width: 767px) {
  .sec8 .arrow {
    padding: 10px;
  }
}
.sec8 .arrow.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.sec8 .arrow.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
.sec8 .testimonials {
  /*max-width: 950px;*/
  margin: auto;
  min-height: 220px;
}
.sec8 .testimonials .carousel-control {
  background: none;
  opacity: 1 !important;
  top: 70px;
  left: 0;
  bottom: auto;
  width: 30px;
  height: 30px;
}
.sec8 .testimonials .carousel-control.right {
  left: auto;
  right: 0;
}
@media screen and (max-width: 767px) {
  .sec8 .testimonials .carousel-control {
    top: 30%;
  }
}
.sec8 .testimonials .carousel {
  margin: 0;
  padding: 0 100px;
  list-style: none;
  font-size: 1.55em;
}
@media screen and (max-width: 767px) {
  .sec8 .testimonials .carousel {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1199px) {
  .sec8 .testimonials .carousel {
    font-size: 1.125em;
  }
}
@media screen and (max-width: 991px) {
  .sec8 .testimonials .carousel {
    font-size: 1.55em;
  }
}
.sec8 .testimonials .carousel .item {
  margin: 0;
}
.sec8 .testimonials .carousel .item p {
  padding: 0 30px;
  position: relative;
  color: #fff;
  line-height: 1.2em;
  margin: 0 0 40px 0;
  font-weight: bold;
  letter-spacing: 5px;
  text-align: center;
  font-style: italic;
}
@media screen and (max-width: 991px) {
  .sec8 .testimonials .carousel .item p {
    margin: 0 0 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .sec8 .testimonials .carousel .item p {
    letter-spacing: 2px;
  }
}
.sec8 .testimonials .carousel .item p img {
  position: absolute;
  z-index: 1;
  width: 20px;
  height: auto;
}
.sec8 .testimonials .carousel .item p .left {
  left: 0;
  top: 0;
}
.sec8 .testimonials .carousel .item p .right {
  right: 0;
  bottom: 0;
}
.sec8 .testimonials .carousel .item footer {
  text-align: right;
  color: #fff;
  opacity: 0.7;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .sec8 .testimonials .carousel .item footer {
    text-align: center;
  }
}

.sec9 {
  margin-top: -1px;
  padding: 80px 0 70px;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .sec9 {
    padding: 60px 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .sec9 {
    padding: 40px 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .sec9 .listStyle2 {
    margin-top: -10px;
  }
}
.sec9 .listStyle2 li {
  display: inline-block;
  width: 45%;
  padding: 0 25px;
  text-align: left;
  margin: 15px 0;
  vertical-align: top;
}

.sec9 .listStyle2 .smtext {
  font-size: 0.8em;
  line-height: 1.4em;
  color: #666;
  padding-left: 48px;
}

@media screen and (max-width: 1199px) {
  .sec9 .listStyle2 li {
    width: 45%;
  }

  .sec9 .listStyle2 .smtext {
    font-size: 0.8em;
    line-height: 1.4em;
    color: #666;
    padding-left: 48px;
  }
}
@media screen and (max-width: 991px) {
  .sec9 .listStyle2 li {
    padding: 0;
    margin: 5px 0;
  }

  .sec9 .listStyle2 .smtext {
    font-size: 0.8em;
    line-height: 1.4em;
    color: #666;
    padding-left: 48px;
  }
}
@media screen and (max-width: 767px) {
  .sec9 .listStyle2 li {
    width: 100%;
    display: block;
    text-align: center;
  }

  .sec9 .listStyle2 .smtext {
    font-size: 0.8em;
    line-height: 1.4em;
    color: #666;
    padding-left: 48px;
  }
}

.listStyle2 {
  margin: 0;
  padding: 0;
  list-style: none;
}
.listStyle2 li {
  padding: 5px 0;
  margin: 10px 0;
  font-size: 1.25em;
  color: #b70005;
  font-weight: bold;
  /*  letter-spacing: 5px;  */
}

.sec9 .listStyle2 .smtext {
  font-size: 0.8em;
  line-height: 1.4em;
  color: #666;
  padding-left: 48px;
}

@media screen and (max-width: 1199px) {
  .listStyle2 li {
    font-size: 1.125em;
  }

  .sec9 .listStyle2 .smtext {
    font-size: 0.8em;
    line-height: 1.4em;
    color: #666;
    padding-left: 0px;
  }
}
@media screen and (max-width: 991px) {
  .listStyle2 li {
    font-size: 1em;
    letter-spacing: 2px;
  }
}
.listStyle2 li b {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  background: url(../images/check1.png) no-repeat left top;
  background-size: 100% 100%;
  opacity: 0.35;
  border-radius: 100%;
  overflow: hidden;
  margin: 0 10px 7px 0;
}
@media screen and (max-width: 991px) {
  .listStyle2 li b {
    width: 18px;
    height: 18px;
    margin: 0 5px 8px 0;
  }
}

.sec10 {
  padding: 0 0 30px 0;
}
@media screen and (max-width: 767px) {
  .sec10 {
    padding: 0 0 20px 0;
  }
}
.sec10 .title {
  background: #810506;
  padding: 10px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 1.125em;
  line-height: 2em;
  letter-spacing: 5px;
}
@media screen and (max-width: 1199px) {
  .sec10 .title {
    font-size: 1em;
    line-height: 1.75em;
  }
}
@media screen and (max-width: 991px) {
  .sec10 .title {
    font-size: 0.875em;
  }
}
@media screen and (max-width: 767px) {
  .sec10 .title {
    font-size: 0.75em;
  }
}
.sec10 .form {
  padding: 30px 15px;
  max-width: 850px;
  margin: auto;
  font-size: 1em;
  letter-spacing: 5px;
}
@media screen and (max-width: 991px) {
  .sec10 .form {
    padding: 30px;
  }
}
.sec10 .form .formElement {
  margin: 20px 0 0 0;
}
.sec10 .form .formElement .form-control {
  border-radius: 0;
}
.sec10 .form .formElement label {
  font-weight: bold;
}
.sec10 .form .nText {
  line-height: 1.125em;
  line-height: 1.125em;
  margin-top: 30px;
  letter-spacing: 3px;
  font-weight: bold;
  color: #999;
}
@media screen and (max-width: 991px) {
  .sec10 .form .nText {
    text-align: center;
  }
  .sec10 .form .nText span.dib {
    display: block;
    line-height: 1.5em;
    margin-top: 10px;
  }
}
.sec10 .form .btnContainer {
  margin-top: 30px;
}
@media screen and (max-width: 991px) {
  .sec10 .form .btnContainer.text-right {
    text-align: center;
    margin-top: 20px;
  }
}
.sec10 .form .btnContainer .gCaptcha {
  height: 60px;
  margin: 0 10px;
}
.sec10 .form .btnContainer .gCaptcha img {
  height: 100%;
  width: auto;
}
.sec10 .form .btnContainer .btn {
  height: 60px;
  border: 1px solid #999;
  color: #b70005;
  text-transform: uppercase;
  text-align: center;
  padding: 15px 50px;
  line-height: 30px;
  border-radius: 2px;
  font-size: 1em;
}
@media screen and (max-width: 767px) {
  .sec10 .form .btnContainer .btn {
    margin-top: 20px;
  }
}

.form-control:focus {
  border-color: rgba(255, 99, 84, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(255, 99, 84, 0.6);
}

.sec11 {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#8b8b8b+0,b1b1b1+66 */
  background: #8b8b8b;
  /* Old browsers */
  background: -moz-linear-gradient(top, #8b8b8b 0%, #b0b0b0 66%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #8b8b8b 0%, #b0b0b0 66%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #8b8b8b 0%, #b0b0b0 66%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8b8b8b', endColorstr='#b0b0b0',GradientType=0 );
  /* IE6-9 */
}
.sec11 .sec11t {
  background: url(../images/sec_6t.png) no-repeat center top;
  background-size: 100% auto;
}
.sec11 .sec11b {
  background: url(../images/sec11b.png) no-repeat center bottom;
  background-size: 100% auto;
  min-height: 550px;
  padding: 150px 0px 220px;
  text-align: center;
}

.sec11 .sec11b a {
  text-decoration: none;
  color: #000000;
}

@media screen and (max-width: 1199px) {
  .sec11 .sec11b {
    min-height: 250px;
    padding: 100px 0px 150px;
  }
}
@media screen and (max-width: 991px) {
  .sec11 .sec11b {
    min-height: 150px;
    padding: 70px 0px 100px;
  }
}
@media screen and (max-width: 991px) {
  .sec11 .sec11b {
    padding: 70px 0px 80px;
  }
}
.sec11 h2 {
  color: #fff;
  margin-bottom: 30px;
}
.sec11 p {
  font-size: 1.125em;
  line-height: 1.5em;
  color: #fff;
  letter-spacing: 3px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: justify;
}
@media screen and (max-width: 1199px) {
  .sec11 p {
    font-size: 1em;
  }
}
@media screen and (max-width: 991px) {
  .sec11 p {
    letter-spacing: 2px;
    margin-top: -10px;
  }
}
@media screen and (max-width: 767px) {
  .sec11 p {
    text-align: center;
  }
}

.sec13 {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#8b8b8b+0,b1b1b1+66 */
  background: #8b8b8b;
  /* Old browsers */
  background: -moz-linear-gradient(top, #8b8b8b 0%, #b0b0b0 66%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #8b8b8b 0%, #b0b0b0 66%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #8b8b8b 0%, #b0b0b0 66%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8b8b8b', endColorstr='#b0b0b0',GradientType=0 );
  /* IE6-9 */
}
.sec13 .sec13t {
  background: url(../images/sec_6t.png) no-repeat center top;
  background-size: 100% auto;
}
.sec13 .sec13b {
  background: url(../images/sec_6b.png) no-repeat center bottom;
  background-size: 100% auto;
  min-height: 550px;
  padding: 150px 0px 220px;
  text-align: center;
}

.sec13 .sec13b a {
  text-decoration: none;
  color: #000000;
}

@media screen and (max-width: 1199px) {
  .sec13 .sec13b {
    min-height: 250px;
    padding: 100px 0px 150px;
  }
}
@media screen and (max-width: 991px) {
  .sec13 .sec13b {
    min-height: 150px;
    padding: 70px 0px 100px;
  }
}
@media screen and (max-width: 991px) {
  .sec13 .sec13b {
    padding: 70px 0px 80px;
  }
}
.sec13 h2 {
  color: #fff;
  margin-bottom: 30px;
}
.sec13 p {
  font-size: 1.125em;
  line-height: 1.5em;
  color: #fff;
  letter-spacing: 3px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: justify;
}
@media screen and (max-width: 1199px) {
  .sec13 p {
    font-size: 1em;
  }
}
@media screen and (max-width: 991px) {
  .sec13 p {
    letter-spacing: 2px;
    margin-top: -10px;
  }
}
@media screen and (max-width: 767px) {
  .sec13 p {
    text-align: center;
  }
}

.footer {
  margin-top: -1px;
  background: #000;
  padding: 30px 0 0 0;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 0px 0 0 0;
  }
}
.footer .fSec1 ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: table;
}
@media screen and (max-width: 767px) {
  .footer .fSec1 ul {
    display: block;
  }
}
.footer .fSec1 ul li {
  display: table-cell;
  width: 25%;
  padding: 0 15px;
  margin: 0;
  border-left: 1px solid #5c5c61;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .footer .fSec1 ul li {
    display: block;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #232325;
    padding: 15px 0;
  }
}
.footer .fSec1 ul li:first-child {
  padding-left: 0;
  border-left: 0;
}
.footer .fSec1 .brandArea2 {
  max-width: 250px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .footer .fSec1 .brandArea2 {
    width: 36%;
    float: left;
  }
}
.footer .fSec1 .brandArea2 img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1199px) {
  .footer .fSec1 .brandArea2 img {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .footer .fSec1 .brandArea2 img {
    width: 100%;
  }
}
.footer .fSec1 .brandText {
  font-size: 1.125em;
  text-align: center;
  color: #d50308;
  margin: 30px auto;
  padding-right: 10%;
}
@media screen and (max-width: 1199px) {
  .footer .fSec1 .brandText {
    padding-right: 5%;
  }
}
@media screen and (max-width: 991px) {
  .footer .fSec1 .brandText {
    font-size: 1em;
    margin: 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .footer .fSec1 .brandText {
    width: 50%;
    float: left;
    padding: 15px 10px 0;
    line-height: 1em;
    margin: 0;
  }
}
.footer .fSec1 .caa {
  padding-right: 10%;
  margin: auto;
}
@media screen and (max-width: 1199px) {
  .footer .fSec1 .caa {
    padding-right: 5%;
  }
}
@media screen and (max-width: 767px) {
  .footer .fSec1 .caa {
    width: 14%;
    float: right;
    padding: 0;
  }
}
.footer .fSec1 .caa img {
  width: 100%;
  /*   max-width: 80px; */
  margin: auto;
  height: auto;
  display: block;
}
.footer .fSec1 .fTitle {
  font-size: 1.25em;
  margin: 0 0 30px 0;
  color: #fff;
  padding: 0;
  font-weight: normal;
}
@media screen and (max-width: 1199px) {
  .footer .fSec1 .fTitle {
    margin: 0 0 15px 0;
  }
}
.footer .fSec1 .fLinks {
  font-size: 0.875em;
  line-height: 1.25em;
  color: #fff;
  letter-spacing: 1px;
}
@media screen and (max-width: 1199px) {
  .footer .fSec1 .fLinks {
    font-size: 0.75em;
    line-height: 1.25em;
  }
}
.footer .fSec1 .fLinks a,
.footer .fSec1 .fLinks .link {
  display: block;
  margin: 0 0 12px 0;
  color: #fff;
  opacity: 0.7;
  font-family: Arial, Helvetica, "Circe-Regular", "sans-serif";
}
@media screen and (max-width: 1199px) {
  .footer .fSec1 .fLinks a,
  .footer .fSec1 .fLinks .link {
    margin: 0 0 10px 0;
  }
}
.footer .fSec1 .fLinks a:hover,
.footer .fSec1 .fLinks .link:hover {
  opacity: 1;
}
.footer .fSec1 .fLinks .link:hover {
  opacity: 0.7;
}
.footer .fText2 {
  margin-top: 50px;
  font-size: 1em;
  letter-spacing: 2px;
  opacity: 0.7;
  text-align: center;
  line-height: 1.125em;
}
@media screen and (max-width: 1199px) {
  .footer .fText2 {
    font-size: 0.875em;
  }
}
@media screen and (max-width: 1199px) {
  .footer .fText2 {
    font-size: 0.75em;
    margin-top: 30px;
  }
}
.footer .fText2 p {
  margin: 0;
}
.footer .fText3 {
  margin-top: 30px;
  padding: 10px 0;
  opacity: 0.6;
  font-size: 1em;
  letter-spacing: 2px;
}
@media screen and (max-width: 1199px) {
  .footer .fText3 {
    font-size: 0.875em;
  }
}
@media screen and (max-width: 1199px) {
  .footer .fText3 {
    font-size: 0.75em;
    margin-top: 20px;
  }
  .bannerContent .btn {
    padding: 10px;
    font-size: 1em;
  }
}
@media screen and (max-width: 767px) {
  .footer .fText3 {
    text-align: center;
  }
}
.footer .fText3 a {
  color: #fff;
}
.footer .fText3 .left {
  float: left;
}
@media screen and (max-width: 767px) {
  .footer .fText3 .left {
    float: none;
  }
}
.footer .fText3 .right {
  float: right;
}
@media screen and (max-width: 767px) {
  .footer .fText3 .right {
    float: none;
  }
}

@media (max-width: 610px) {
  .bannerArea {
    background: #fff url(../images/bnrBg1.jpg) no-repeat center top !important;
  }

  .conpicright {
    margin: 0 0 10px 0 !important;
  }
  .conpicleft {
    margin: 0 0 10px 0 !important;
  }
}

@media (max-width: 1024px) {
  .bannerArea {
    background: #fff url(../images/bnrBg2.jpg) no-repeat center top;
  }

  .contentformat {
    margin: 5px 10px 5px 10px;
    font-size: 18px !important;
    color: #000000 !important;
  }

  .bannerArea .texts .btn {
    margin-left: 0px;
  }
}

.conpicright {
  margin: 0 0 10px 16px !important;
}

.conpicleft {
  margin: 0 16px 10px 0 !important;
}

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:focus,
.navbar-inverse .navbar-nav > .active > a:hover {
  background-color: #000000 !important;
}

.contentformat {
  font-size: 18px !important;
  color: #000000 !important;
  margin: 30px 140px 40px 140px;
}

.contentformat img {
  display: block !important;
  max-width: 100% !important;
  height: auto !important;
  border: 1px solid #000;
}

@media screen and (min-width: 1024px) and (max-width: 1198px) {
  .navbar-nav > li > a {
    padding: 11px !important;
    font-size: 16px;
  }
  .navbar-right li > a {
    padding: 5px 11px !important;
  }
  .menu_tb {
    padding: 6px 0;
  }
}

.sec8 .testimonials .carousel .carousel-inner {
  margin-top: 0px;
  min-height: 50px;
}

@media screen and (max-width: 900px) {
  .sec8 .testimonials .carousel .item {
    min-height: 180px;
  }
  .sec8 .testimonials .carousel .item p {
    font-size: 16px;
  }
  .sec8 .testimonials .carousel-control {
    top: 22%;
  }

  .contentformat {
    margin: 30px 140px 40px 140px;
  }
}

@media screen and (max-width: 767px) {
  .sec8 .testimonials .carousel-control {
    top: 45%;
  }
  .sec8 .testimonials .carousel .item {
    min-height: 240px;
  }

  .matchbuttons {
    margin-bottom: 12px;
  }

  .bannerArea {
    background: #fff url(../images/bnrBg2.jpg) no-repeat center top;
    left: 50px;
  }

  .bannerArea .texts .btn {
    padding: 3px 14px;
  }
}

.radio-inline {
  margin-left: 30px !important;
}

@media screen and (max-width: 500px) {
  .conpicleft {
    float: none !important;
  }
  .contentformat {
    margin: 4px 4px 4px 4px;
  }
}

@media (max-width: 610px) {
  .radio-inline {
    display: block !important;
  }
  .contentformat {
    margin: 4px 4px 4px 4px;
  }
}

.selectbox {
  display: inline-block;
  padding-right: 10px;
}

.ibox-content .pushdown img {
  margin-top: 20px;
}

#signupEmail {
  border: 1px solid #999999;
  color: #9e9e9e;
  padding: 5px;
  margin-left: 10px;
  margin-right: 4px;
}

#signupEmail:focus {
  border-color: #9fcbff;
  background-color: #dfeeff;
  background-image: none;
  color: #000;
}

#signup-button {
  background-color: #ff2424;
  color: #fff;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  padding: 5px 13px 5px 13px;
  font-size: x-large;
}

#signup-button:hover {
  cursor: pointer;
  background-color: #d43636;
}

#signup-response {
  display: inline;
  margin-left: 4px;
  padding-left: 32px;
  min-height: 150px;
  margin-top: 15px;
  font-size: x-large;
}
#signup-response2 {
  display: inline;
  margin-left: 4px;
  padding-left: 32px;
  min-height: 150px;
  margin-top: 15px;
  font-size: x-large;
}

.response-waiting {
  background-image: url(../images/loader2.gif);
  padding: 20px;
  background-repeat: no-repeat;
  background-position-y: center;
}

.response-success {
  background: url("../images/Crystal_Clear_action_apply.gif") no-repeat;
}

.response-error {
  background: url("../images/Crystal_Clear_action_button_cancel.gif") no-repeat;
}

.container_max {
  max-width: 1280px;
  margin: 0 auto;
}

.date_Coaching .container_max {
  max-width: 1200px;
}
.banner {
  background-image: url("../images/datecoaching-main.jpg");
  padding: 40px 0 !important;
  min-height: 750px;
  background-size: cover;
  position: relative;
}

.banner .banner_heading {
  padding: 0 40px;
}

.banner .banner_heading h1 {
  margin: 0;
  color: #481601;
  font-size: 43px;
  text-align: left;
}

.banner .banner_heading h1 + h1 {
  margin-top: 50px;
  color: #d40505;
  line-height: 1.3;
}

.banner_bottom_content {
  padding: 20px 20px 20px 0;
  background-color: rgba(255, 255, 255, 0.86);
  border-radius: 0 25px 25px;
  position: absolute;
  bottom: 40px;
  width: 100%;
  max-width: 1200px;
  left: calc(50% - 600px);
}

.banner_bottom_content .banner_bottom_content_section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.banner_bottom_content h2 {
  font-size: 32px;
  color: #603a09;
  margin: 0;
  padding-bottom: 27px;
  width: 100%;
  letter-spacing: 8px;
  line-height: 1.2;
}

.banner_bottom_content .banner_bottom_content_section .dating_helps {
  width: 60%;
}

.banner_bottom_content .banner_bottom_content_section .dating_helps ul {
  padding-left: 25px;
  margin-bottom: 0;
}

.banner_bottom_content .banner_bottom_content_section .dating_helps ul li {
  line-height: 35px;
  color: #603a09;
  font-size: 22px;
  letter-spacing: 3px;
  list-style: disc;
}

.banner_bottom_content .banner_bottom_content_section .consumer_star {
  /*width: 40%;*/
  display: flex;
  justify-content: space-around;
  margin-top: -58px;
}

.banner_bottom_content
  .banner_bottom_content_section
  .consumer_star
  .image_section {
  position: relative;
}

.banner_bottom_content
  .banner_bottom_content_section
  .consumer_star
  .image_section
  img {
  height: 200px;
}

.banner_bottom_content
  .banner_bottom_content_section
  .consumer_star
  .image_section:first-child {
  margin-left: 0;
}

.banner_bottom_content
  .banner_bottom_content_section
  .consumer_star
  .image_section
  span {
  position: absolute;
}

.banner_bottom_content
  .banner_bottom_content_section
  .consumer_star
  .image_section
  span
  img {
  height: auto;
  width: 90px;
  position: absolute;
  top: 32px;
  left: calc(50% + 37px);
}

.date_Coaching {
  background-color: #de4017;
}

.date_Coaching .about_coaching {
  padding-bottom: 70px;
}

.date_Coaching .about_coaching h2 {
  margin: 0px 0 22px;
  font-size: 35px;
  color: #fff;
}

.date_Coaching .coaching_me h2 {
  margin: 0px 0 22px;
  font-size: 35px;
  color: #fff;
}

.date_Coaching {
  padding: 50px 40px;
}

.date_Coaching .about_coaching p {
  margin: 0;
  font-size: 21px;
  color: #fff;
}

.date_Coaching .coaching_me p {
  font-size: 20px;
  color: #fff;
  margin: 0;
}

.date_couple_image img {
  width: 100%;
}

.coaching_guide_main {
  background-color: #1e84b7;
}

.coaching_guide {
  padding: 50px 40px;
}

.coaching_guide h2 {
  font-size: 35px;
  color: #fff;
  margin: 0 0 30px;
  line-height: 1.2;
}

.coaching_guide ul li {
  font-size: 20px;
  list-style: disc;
  color: #fff;
  margin-bottom: 10px;
}

.coaching_guide ul {
  padding-left: 25px;
  margin-bottom: 0;
}

.date_meet {
  padding: 50px 40px;
}

.date_meet p {
  color: #dd0606;
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.date_meet p:last-child {
  margin-bottom: 0;
}

h3.get_better {
  font-size: 35px;
  margin: 0 0 20px;
  text-align: center;
}

@media (max-width: 1480px) {
  .banner {
    padding: 25px 0;
    min-height: 650px;
  }

  .banner_bottom_content {
    padding-left: 25px;
  }

  .banner .banner_heading {
    padding: 40px 25px 0 25px;
  }

  .banner .banner_heading h1 {
    font-size: 30px;
  }

  .banner .banner_heading h1 + h1 {
    margin-top: 58px;
  }

  .banner_bottom_content h2 {
    font-size: 28px;
    padding-bottom: 20px;
    letter-spacing: 6px;
  }

  .date_Coaching {
    padding: 30px 20px;
  }

  .date_Coaching .about_coaching {
    padding-bottom: 50px;
  }

  .date_Coaching .about_coaching h2 {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .date_Coaching .coaching_me h2 {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .coaching_guide {
    padding: 30px 20px;
  }

  .coaching_guide h2 {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .date_meet {
    padding: 50px 20px 52px 50px;
  }

  .date_meet p {
    font-size: 28px;
  }

  h3.get_better {
    font-size: 30px;
  }
}

@media (max-width: 1200px) {
  .banner_bottom_content .banner_bottom_content_section .dating_helps ul li {
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 25px;
  }

  .banner_bottom_content
    .banner_bottom_content_section
    .consumer_star
    .image_section
    img {
    height: 180px;
  }

  .banner_bottom_content
    .banner_bottom_content_section
    .consumer_star
    .image_section
    span
    img {
    width: 80px;
    top: 28px;
    left: calc(50% + 34px);
  }

  .banner_bottom_content {
    max-width: 100%;
    left: auto;
  }
  .date_Coaching .about_coaching p {
    font-size: 18px;
  }

  .date_Coaching .coaching_me p {
    font-size: 18px;
  }

  .coaching_guide ul li {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  .banner {
    padding: 100px 0 25px;
    background-position: 75%;
  }
  .banner_bottom_content {
    padding: 20px;
  }

  .banner .banner_heading {
    padding: 0 20px;
  }

  .banner .banner_heading h1 {
    font-size: 25px;
  }

  .banner .banner_heading h1 + h1 {
    margin-top: 20px;
  }

  .banner_bottom_content h2 {
    font-size: 25px;
    padding-bottom: 20px;
  }

  .banner_bottom_content .banner_bottom_content_section .consumer_star {
    justify-content: space-between;
  }

  .banner_bottom_content
    .banner_bottom_content_section
    .consumer_star
    .image_section {
    width: calc(50% - 10px);
    margin-left: 0;
    text-align: center;
  }

  .banner_bottom_content
    .banner_bottom_content_section
    .consumer_star
    .image_section
    img {
    height: 160px;
  }

  .banner_bottom_content
    .banner_bottom_content_section
    .consumer_star
    .image_section
    span
    img {
    width: 70px;
    top: 24px;
    left: calc(50% + 30px);
  }

  .banner_bottom_content h2 {
    letter-spacing: 4px;
  }

  .date_Coaching .about_coaching p {
    font-size: 18px;
  }

  .date_Coaching .coaching_me p {
    font-size: 18px;
  }

  .date_meet p {
    font-size: 25px;
  }

  h3.get_better {
    font-size: 25px;
  }
}

@media (max-width: 880px) {
  .banner_bottom_content {
    margin-right: 0;
    border-radius: 0;
    width: 100%;
  }
  .banner_bottom_content_section {
    display: block;
  }

  .date_Coaching .about_coaching {
    padding-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .banner_bottom_content .banner_bottom_content_section .dating_helps ul li {
    margin-bottom: 7px;
  }
  .banner_bottom_content {
    padding: 30px 15px;
    position: relative;
    bottom: 0;
    margin-top: 0;
    background-color: #fff;
  }

  .banner {
    background-image: none;
    padding: 0 !important;
  }

  .banner_bottom_content .banner_bottom_content_section .dating_helps {
    width: 100%;
  }

  .banner_bottom_content .banner_bottom_content_section .consumer_star {
    width: 100%;
    margin-top: 20px;
  }

  .banner {
    min-height: auto;
    background-position: 50%;
  }

  .banner_bottom_content h2 {
    letter-spacing: 3px;
  }

  .date_Coaching .about_coaching {
    padding-bottom: 30px;
  }

  .date_couple_image img {
    height: 300px;
    object-fit: cover;
  }

  .date_meet p {
    font-size: 20px;
  }

  .wave_border {
    padding: 10px 0 8px;
  }

  h3.get_better {
    font-size: 20px;
  }

  .coaching_guide h2 {
    font-size: 22px;
  }

  .coaching_guide {
    padding: 20px 15px;
  }

  .date_Coaching {
    padding: 20px 15px;
  }

  .date_Coaching .about_coaching h2 {
    font-size: 22px;
  }

  .date_Coaching .coaching_me h2 {
    font-size: 22px;
  }

  .banner .banner_heading {
    padding: 0;
    background-color: rgba(255, 255, 255, 0.7);
    background-image: url(../images/datecoaching-main.jpg);
    min-height: 350px;
    background-size: cover;
    position: relative;
    background-position: 60% 0;
    display: flex;
    align-items: flex-end;
  }
  .banner .banner_heading .date_banner_content {
    width: 100%;
    padding: 20px 15px;
    background-color: rgba(255, 255, 255, 0.7);
  }

  .coaching_guide ul li {
    margin-bottom: 7px;
  }
}
@media (max-width: 575px) {
  .banner .banner_heading {
    min-height: 250px;
  }
  .banner .banner_heading h1 {
    font-size: 18px;
  }
  .banner .banner_heading h1 + h1 {
    font-size: 18px;
  }
  .banner {
    background-position: 50%;
  }
  .banner_bottom_content h2 {
    font-size: 22px;
    padding-bottom: 15px;
  }

  .banner_bottom_content .banner_bottom_content_section .dating_helps ul li {
    font-size: 16px;
    line-height: 25px;
  }

  .date_Coaching .about_coaching p {
    font-size: 16px;
  }
  .date_Coaching .coaching_me p {
    font-size: 16px;
  }

  .date_couple_image img {
    height: 200px;
    object-fit: cover;
  }

  .coaching_guide ul li {
    font-size: 16px;
  }

  .date_meet p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .banner {
    background-position: 60%;
  }

  .date_couple_image img {
    height: 180px;
    object-fit: cover;
  }
}

@media screen and (max-width: 1950px) {
  .container_max {
    max-width: none;
    margin: 0;
  }
}
.bannerHome {
  clear: both;
  overflow: hidden;
  border-top: 10px solid #ff0000;
  border-bottom: 10px solid #ff0000;
}
.bannerHome .container-fluid {
}
.bannerHome .col-sm-6 {
  padding: 0;
}

.bannerImage_slider {
  display: none;
}
.bannerHome .rc-rcbrand-container {
  position: relative;
  max-width: 100%;
  clear: both;
  overflow: hidden;
}
.bannerHome .rc-rcbrand-ul {
  position: relative;
  width: 99999px;
  margin: 0 0 0 -1px;
  padding: 0px;
  list-style-type: none;
  text-align: center;
  overflow: auto;
  list-style: none;
  display: flex;
  z-index: 1;
}
.bannerHome .rc-rcbrand-ul li {
  flex: 0 0 auto;
}
.bannerHome .rc-rcbrand-ul li figure {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-right: 0;
}
.bannerHome .rc-rcbrand-inner {
  position: relative;
  overflow: hidden;
  float: left;
  width: 100%;
  background: #ffffff;
}
.bannerHome .rc-rcbrand-item {
  float: left;
  margin: 0px;
  padding: 0px;
  position: relative;
  line-height: 0px;
  overflow: hidden;
}
.bannerHome .rc-rcbrand-item img {
  position: relative;
  display: block;
}
.rc-rcbrand-nav-left,
.rc-rcbrand-nav-right {
  display: none;
}
.bannerHome .clientLogos-outer {
  clear: both;
  overflow: hidden;
}
.bannerContent {
  padding: 0;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  height: 320px;
  background: rgb(255 255 255 / 65%);
}
.bannerContent .btn {
  margin: 0;
  color: #fff;
  background: #d50308;
  border-radius: 30px;
  padding: 23px 20px;
  font-size: 1.5em;
  text-transform: uppercase;
  box-shadow: 1px 0px 0px rgba(255, 255, 255, 0.8);
}
.bannerContent .btn:hover {
  background: #000;
}
.bannerArea {
  display: none;
}
.bannerArea2-bg {
  background: #d2d2cf;
  background-size: cover;
  overflow: hidden;
  min-height: 0;
  text-align: right;
  padding: 0;
}
.bannerArea2-content {
  padding: 0 0;
  float: left;
  width: 100%;
}
.bannerArea2-bg .listStyle1 {
  text-align: right;
}
.bannerArea2-bg .text-center {
  text-align: right;
}
.bannerArea2-bg h2 {
  font-size: 1.8em;
  line-height: 2em;
  text-align: right;
}
.bannerArea2 .fText,
.bannerArea2-bg .listStyle1 p {
}

.bannerArea2-bg .bannerImage {
  float: left;
  width: 15%;
  text-align: left;
  left: -235px;
  top: 15px;
  position: relative;
}
.bannerArea2-bg .bannerContent2 {
  width: 85%;
  float: right;
  text-align: right;
  padding: 55px 0 0 0;
}
.bannerArea2-bg .bannerArea2-content {
  margin: 0 -15px;
  padding: 0 0 15px 0;
  position: relative;
}
.bannerArea2-bg .listStyle1 {
  padding: 25px 0;
  margin: 0;
}
.photoName {
  display: block;
  position: absolute;
  left: 60%;
  bottom: 30px;
}
.photoName a {
  display: inline-block;
  background: #d2d2cf;
  padding: 10px;
  width: 340px;
  text-align: center;
  border-radius: 5px;
  color: #000;
  border: 1px solid #d2d2cf;
}
.photoName a:hover {
  text-decoration: none;
  color: #d50308;
}
.photoName strong {
  font-weight: bold;
  letter-spacing: 0.1em;
}
.photoName span {
  display: block;
}
#bannerMobileSlider {
  display: none !important;
}
#bannerDesktopSlider {
  display: block;
}
@media screen and (max-width: 768px) {
  .bannerHome .col-sm-6 {
    float: left;
    width: 50%;
  }
  .bannerHome {
    margin: 6px 0 0 0;
    border-width: 5px;
  }
  .bannerContent {
    padding: 10px;
  }
  .bannerContent img {
    max-width: 100%;
  }
  .bannerContent .btn {
    padding: 10px;
    font-size: 14px;
  }
  .bannerArea2-bg {
  }
  .bannerArea2-bg .bannerImage figure {
    height: 350px;
    overflow: hidden;
    text-align: center;
  }
  .photoName a {
    width: 100%;
  }
  .bannerArea2-bg .listStyle1 {
    padding: 20px 0;
    margin: 0;
  }
  .bannerArea2-bg .bannerImage img {
    left: -95px;
    position: relative;
  }
  .bannerArea2-bg .bannerImage {
    left: 0;
    top: 0;
    position: relative;
    margin: 0;
    width: 100%;
  }
  .photoName {
    position: relative;
    margin: 0 auto;
    left: 0;
    top: 0;
    width: 100%;
    border-radius: 0;
  }
  .bannerArea2-bg .bannerArea2-content {
    padding: 15px 0;
    margin: 0;
  }
  .bannerArea2-bg .bannerContent2 {
    width: 100%;
    padding: 15px;
  }
  .bannerArea2 .container {
    padding: 0;
  }
  .bannerArea2-bg h2 {
    font-size: 24px !important;
    line-height: 38px !important;
    text-align: center;
  }
  .bannerArea2-bg .text-center {
    text-align: center;
  }
  .bannerArea2-bg .listStyle1 {
    text-align: center;
  }
  #bannerMobileSlider {
    display: block !important;
    margin: 0;
  }
  #bannerDesktopSlider {
    display: none !important;
  }
  .banner2 .listStyle1 p {
    color: #fff;
  }
  .banner2 .listStyle1 p b {
    background: url(../images/check-white.png) no-repeat left top;
    background-size: 100% 100%;
  }
  .banner2 .bannerText-bottom {
    color: #fff;
  }
  .banner2 .pos_relative h2 {
    text-align: center !important;
  }
  .banner2 h2 {
    font-size: 34px !important;
    line-height: 38px !important;
  }
}

.bannerHome .col-sm-12 {
  padding: 0;
}
.bannerContent {
}
.bannerContent figure {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.bannerContent figure:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.9;
  z-index: 9;
}
.bannerContent p,
.bannerContent .rating {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  .bannerContent {
    height: auto;
    padding: 15px 0;
    display: block;
  }
  .bannerContent p {
    display: block;
    padding: 15px 0;
    width: 100%;
  }
  .bannerHome .col-lg-9 {
    padding: 0;
    border-bottom: 10px solid #ff0000;
    clear: both;
    overflow: hidden;
  }
  .bannerContent figure img {
    width: 100%;
  }
}

.bannerArea2-content .bannerText-bottom {
  position: absolute;
  right: 0;
  bottom: 10px;
  font-size: 1.125em;
  opacity: 0.9;
  margin-top: 5px;
  font-style: italic;
}
.bannerContentmobile {
  display: none;
  float: left;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .bannerArea2-content .bannerText-bottom {
    display: block;
    width: 100%;
    position: relative;
    text-align: center;
    bottom: 0;
    top: 10px;
  }
  .bannerHome .rc-rcbrand-ul li.bannerContentwrap {
    display: none;
  }
  .bannerContentmobile {
    display: block;
  }
  .bannerHome .rc-rcbrand-item img {
    max-width: 100%;
  }
  .bannerHome .rc-rcbrand-ul li figure {
    height: 105px;
    overflow: hidden;
  }
}
.rc-rcbrand-nav-right,
.rc-rcbrand-nav-left {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 999;
  width: 50px;
  height: 50px;
  background: #ff0;
  display: block;
  content: "left";
  display: none;
}
.rc-rcbrand-nav-right {
  left: inherit;
  right: 0;
  content: "right";
}

.banner2 {
}
.banner2 .bannerPic {
  position: relative;
  top: -81px;
  text-align: center;
}
.banner2 .bannerPic figure img {
  border-radius: 50px;
  display: block;
  width: 100%;
}
.banner2 .bannerPic figure {
  position: relative;
  display: block;
  margin: 0 0 5px 0;
}
.banner2 .bannerPic figure figcaption {
  position: absolute;
  left: 0;
  border: 0;
  background: rgb(255 255 255 / 79%);
  padding: 10px 15px 15px 30px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  bottom: 0;
  color: #f00;
  width: 100%;
  font-size: 17pt;
  line-height: 24pt;
}
.banner2 .bannerPic figure figcaption strong {
  display: block;
}
.banner2 .bannerPic span {
  color: #fff;
  font-size: 17pt;
  background: rgb(219 0 6 / 95%);
  display: inline;
  padding: 8px 15px;
  margin: 25px 0 20px 0;
  display: inline-block;
  border-radius: 10px;
}

.matchBtn {
  color: #fff !important;
  margin-left: 0px;
  padding-left: 0px;
  font-size: x-large;
  background: #d50308;
  border-radius: 10px;
  padding: 12px;
  float: right;
}

.banner2 .pos_relative h2 {
  text-align: center;
}
.sec4.banner2 .sec4b {
  padding: 70px 0;
}
.bannerTitle {
  width: 100%;
  text-align: center;
  padding: 17px 0 0 0;
  margin-top: -96px;
}
.bannerTitle h2 {
  color: #d50308;
  line-height: 40px;
}
.banner2 .sec4 .sec4b {
  padding: 10px 0 99px 0;
}
.banner2 .listStyle1 {
  padding: 0;
  margin: 0 0 30px 0;
  position: relative;
  top: 15px;
}
.banner2 .bannerText-bottom {
  position: absolute;
  right: 0;
  bottom: -50px;
  font-size: 1.125em;
  opacity: 0.9;
  margin-top: 5px;
  font-style: italic;
  float: right;
  padding: 10px 0 0 0;
}
.banner2 {
  clear: both;
  overflow: hidden;
  background: #ffffff;
  padding-top: 104px;
}
.bannerheadings {
  margin: 0 0 0 0;
}
.bannerContent#bannerContent-desktop {
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  width: 25.1%;
}

.text_m {
  font-size: 1.9em !important;
  line-height: 1.3em;
  color: #fff;
}
.right_bx_hed {
  float: right;
  color: #fff;
  border: 2px solid #fff;
  margin-top: 44px;
  padding: 5px 15px 10px 24px;
  border-radius: 10px; 
}
.right_bx_hed span {
  display: block;
  font-size: 1.5em;
  line-height: 1.5em;
  margin-bottom: 0.5em;
}
.right_bx_hed .matchBtn {
  float: none;
  font-size: 1.5em;
  width: 99%;
  padding: 5px 20px;
  text-transform: uppercase;
}

@media screen and (max-width: 1700px) {
  .banner2 .listStyle1 {
    top: 10px;
  }
}
@media screen and (max-width: 1600px) {
  .banner2 .bannerText-bottom {
    bottom: -95px;
  }
  .banner2 .listStyle1 {
    top: -49px;
    margin: 0px 8px 10px;
    padding: 0;
  }
}

@media screen and (max-width: 1400px) {
  .banner2 .bannerText-bottom {
    bottom: -40px;
    font-size: 14px;
    text-align: center;
    padding-right: 20px;
    display: block;
  }
  .banner2 .listStyle1 {
    top: 29px;
  }
  .bannerTitle {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 1360px) {
  /*.banner2 .listStyle1{top: -45px}*/
}
@media screen and (max-width: 1199px) {
  .banner2 .bannerText-bottom {
    bottom: -70px;
  }
  .banner2 .listStyle1 {
    top: -55px;
  }
  .banner2 .listStyle1 p {
    line-height: 18px;
    font-size: 18px;
    padding: 0;
    margin: 3px 5px;
  }
  .bannerheadings {
    position: relative;
    top: -10px;
  }
}
@media screen and (max-width: 1100px) {
  .banner2 .bannerText-bottom {
    bottom: -35px;
  }
  .banner2 .listStyle1 {
    top: 10px;
    margin: 0px 8px 2px;
  }
  .bannerTitle {
    padding: 0;
    font-size: 14px;
  }
  .bannerTitle h2 {
    line-height: 26px !important;
  }
  .banner2 .listStyle1 p {
    font-size: 14px;
  }
  .bold_text {
    font-size: 1.1em;
    margin: 1px 0 20px 0;
  }
  .text_m {
    font-size: 1.6em !important;
  }
  .banner2 .bannerPic span {
    font-size: 14pt;
    padding: 8px 10px;
  }
  .banner2 .sec4 .sec4b {
    padding: 10px 0 80px 0;
  }
}
@media screen and (max-width: 991px) {
  .banner2 .listStyle1 {
    top: 0;
    padding: 20px 0 0;
  }
  .bannerheadings {
    top: 0;
  }
  .banner2 .bannerText-bottom {
    bottom: -75px;
  }
  .banner2 .listStyle1 p {
    color: #fff;
  }
  .banner2 .listStyle1 p b {
    background: url(../images/check-white.png) no-repeat left top;
    background-size: 100% 100%;
  }
  .banner2 .bannerText-bottom {
    position: relative;
    bottom: 0;
    text-align: center;
    right: 0;
    width: 100%;
    color: #fff;
  }
  .banner2 .bannerPic {
    max-width: 330px;
    margin: 0 auto;
  }
  .banner2 .listStyle1 {
    margin: 0;
  }
  .banner2 .listStyle1 p {
    font-size: 1.1em;
    line-height: 1em;
  }
  .bold_text {
    font-size: 1.3em;
    color: #fff;
    padding: 0;
  }
  .bannerTitle {
    padding: 20px 0 0 0;
  }
  .banner2 .pos_relative h2 {
    text-align: center !important;
  }
  .bannerTitle h2 {
    color: #fff;
  }
  .banner2 .bannerPic span {
    margin: 10px 0 20px;
  }
  .banner2 .bannerPic figure figcaption {
    padding: 10px 15px 15px 15px;
    font-size: 15pt;
  }
  .right_bx_hed {
    width: 50%;
    margin: 1em auto;
    float: none;
  }
  .text_m {
    font-size: 1.3em !important;
  }
}

@media screen and (max-width: 768px) {
  .bannerContent#bannerContent-desktop {
    display: none;
  }
}
@media screen and (min-width: 480px) and (max-width: 540px) {
	.right_bx_hed {
    width: 75%;
  }
}
@media screen and (max-width: 479px) {
  .banner2 .bannerPic figure figcaption {
    font-size: 14pt;
  }
  .banner2 .bannerPic span {
    font-size: 14pt;
    padding: 8px 10px;
    margin: 12px 0 20px 0;
  }
  .bannerTitle h2 {
    font-size: 1em !important;
    line-height: 26px !important;
  }
  .bannerTitle {
    font-size: 12px;
  }
  .right_bx_hed {
    width: 100%;
  }
  .banner2 .listStyle1 p {
    font-size: 1em;
  }
  .bold_text {
    font-size: 1.1em;
    font-weight: 600;
    line-height: 1.3em;
    margin: 14px 0;
  }
  .text_m {
    font-size: 1em !important;
  }
  .right_bx_hed .matchBtn {
    font-size: 1.1em;
  }
  .right_bx_hed span {
    font-size: 1.1em;
  }
}

@media screen and (min-width: 350px) {
  .imgSizeContent {
    width: 40%;
  }
}

@media (min-width: 320px) {
  .matchBtn {
    color: #fff !important;
    margin-left: -9px;
    padding-left: 0px;
    font-size: x-large;
    background: #d50308;
    border-radius: 10px;
    padding: 12px;
    float: none;
  }

  .banner2 h2 {
    font-size: revert !important;
    line-height: 23px !important;
  }
}

@media (min-width: 600px) {
  .matchBtn {
    float: right;
  }
}
