@charset "UTF-8";

@FONT-FACE {
	font-family: "open";
	src: url("open.woff2");
}


body {
  font-family: "open";
  font-weight: normal;
  font-style: normal;
  color: #333;
  overflow-x: hidden;font-size: 13px;
}

.img, img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.fix {
  overflow: hidden;
}

a,
.button {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: medium none;
}

button:focus, input:focus, input:focus, textarea, textarea:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "open";
  color: #cd2122;
  margin-top: 0px;
  font-style: normal;
  text-transform: normal;
  line-height: 1.1;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 40px;
  font-weight: 700;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

p {

  font-weight: normal;
}

hr {
  border-bottom: 1px solid #eceff8;
  border-top: 0 none;
  margin: 30px 0;
  padding: 0;
}

label {
  color: #12263E;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}

*::-moz-selection {
  background: #12263E;
  color: #ffffff;
  text-shadow: none;
}

::-moz-selection {
  background: #12263E;
  color: #ffffff;
  text-shadow: none;
}

::selection {
  background: #12263E;
  color: #ffffff;
  text-shadow: none;
}

/*--
    - Input Placeholder
-----------------------------------------*/
*::-moz-placeholder {
  color: #12263E;
  font-size: 14px;
  opacity: 1;
}

*::placeholder {
  color: #12263E;
  font-size: 14px;
  opacity: 1;
}

/*--
    - Common Classes
-----------------------------------------*/
.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

/*--
    - Background color
-----------------------------------------*/
.grey-bg {
  background: #ecf1df;
}

.grey-2-bg {
  background: #f7f9f0;
}

.white-bg {
  background: #ffffff;
}

.primary-bg {
  background: #cd2122;
}

.black-bg {
  background: #12263E;
}

.blue-bg {
  background: #234969;
}

.theme-bg {
  background: #a7132c;
}

/*--
    - color
-----------------------------------------*/
.white-color {
  color: #ffffff;
}

.black-color {
  color: #12263E;
}

.theme-color {
  color: #a7132c;
}

/* bounce-animate */
.bounce-animate {
  animation-name: float-bob;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -moz-animation-name: float-bob;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob;
  -ms-animation-duration: 2s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob;
  -o-animation-duration: 2s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

@-webkit-keyframes float-bob {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
.rotateme {
  -webkit-animation-name: rotateme;
  animation-name: rotateme;
  -webkit-animation-duration: 10s;
  animation-duration: 60s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@keyframes rotateme {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotateme {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
.button {
  cursor: pointer;
}

/* scrollUp */
#scrollUp {
  background: #a7132c;
  height: 50px;
  width: 50px;
  right: 50px;
  bottom: 25px;
  color: #ffffff;
  font-size: 20px;
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  line-height: 50px;
}

#scrollUp:hover {
  background: #333;
}

@-moz-keyframes myfirst {
  0% {
    top: -25%;
  }
  to {
    top: 100%;
  }
}
@-webkit-keyframes myfirst {
  0% {
    top: -25%;
  }
  to {
    top: 100%;
  }
}
@keyframes myfirst {
  0% {
    top: -25%;
  }
  to {
    top: 100%;
  }
}
.top-bottom {
  -webkit-animation: myfirst 30s linear infinite;
  animation: myfirst 30s linear infinite;
}

.ctn-preloader {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: default;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9000;
}

.ctn-preloader .animation-preloader {
  z-index: 1000;
}

.ctn-preloader .animation-preloader .spinner {
  -webkit-animation: spinner 1s infinite linear;
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: #a7132c;
  height: 150px;
  margin: 0 auto 3.5em auto;
  width: 150px;
}

.ctn-preloader .animation-preloader .txt-loading {
  font: bold 5em "open", sans-serif;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading {
  color: rgba(0, 0, 0, 0.2);
  position: relative;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
  -webkit-animation: letters-loading 4s infinite;
  animation: letters-loading 4s infinite;
  color: #000000;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "open", sans-serif;
  position: absolute;
  top: -3px;
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

.ctn-preloader.dark .animation-preloader .spinner {
  border-color: rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
}

.ctn-preloader.dark .animation-preloader .txt-loading .letters-loading {
  color: rgba(255, 255, 255, 0.2);
}

.ctn-preloader.dark .animation-preloader .txt-loading .letters-loading:before {
  color: #fff;
}

.ctn-preloader p {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: #3b3b3b;
}

.ctn-preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}

.ctn-preloader .loader .row {
  height: 100%;
}

.ctn-preloader .loader .loader-section {
  padding: 0px;
}

.ctn-preloader .loader .loader-section .bg {
  background-color: #ffffff;
  height: 100%;
  left: 0;
  width: 100%;
  -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.ctn-preloader .loader.dark_bg .loader-section .bg {
  background: #111339;
}

.ctn-preloader.loaded .animation-preloader {
  opacity: 0;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.ctn-preloader.loaded .loader-section .bg {
  width: 0;
  -webkit-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
  -o-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
@media screen and (max-width: 767px) {
  .ctn-preloader .animation-preloader .spinner {
    height: 8em;
    width: 8em;
  }

  .ctn-preloader .animation-preloader .txt-loading {
    font: bold 3.5em "open", sans-serif;
  }
}
@media screen and (max-width: 500px) {
  .ctn-preloader .animation-preloader .spinner {
    height: 7em;
    width: 7em;
  }

  .ctn-preloader .animation-preloader .txt-loading {
    font: bold 2em "open", sans-serif;
  }
}
/*--
    - Overlay
------------------------------------------*/
[data-overlay] {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
[data-overlay]::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
}

/*-- Overlay Color --*/
[data-overlay=light]::before {
  background-color: #ffffff;
}

[data-overlay=dark]::before {
  background-color: #12263E;
}

/*-- Overlay Opacity --*/
[data-opacity="1"]::before {
  opacity: 0.1;
}

[data-opacity="2"]::before {
  opacity: 0.2;
}

[data-opacity="3"]::before {
  opacity: 0.3;
}

[data-opacity="4"]::before {
  opacity: 0.4;
}

[data-opacity="5"]::before {
  opacity: 0.5;
}

[data-opacity="6"]::before {
  opacity: 0.6;
}

[data-opacity="7"]::before {
  opacity: 0.7;
}

[data-opacity="8"]::before {
  opacity: 0.8;
}

[data-opacity="9"]::before {
  opacity: 0.9;
}

/* 2. header */


.header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  transition: 0.4s;
}

.sticky {
  left: 0;
  margin: auto;
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
  z-index: 9999;
  -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  background: #ffffff;
}

.menu-01.sticky {
  padding-top: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .menu-01.sticky {
    padding-top: 12px;
  }
}
@media (max-width: 767px) {
  .menu-01.sticky {
    padding-top: 12px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .menu-1.sticky {
    padding-top: 12px;
  }
}
@media (max-width: 767px) {
  .menu-1.sticky {
    padding-top: 12px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .menu-1 {
    padding-top: 12px;
  }
}
@media (max-width: 767px) {
  .menu-1 {
    padding-top: 12px;
  }
}

.menu-2.sticky {
  padding-top: 0;
  padding-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .menu-2.sticky {
    padding-top: 12px;
  }
}
@media (max-width: 767px) {
  .menu-2.sticky {
    padding-top: 12px;
  }
}

.menu-3.sticky {
  padding-top: 0;
  background: #223c50;
  padding-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .menu-3.sticky {
    padding-top: 12px;
  }
}
@media (max-width: 767px) {
  .menu-3.sticky {
    padding-top: 12px;
  }
}

.pos-rel {
  position: relative;
}

.header-top-wrapper {
  padding-top: 5px;
}

.header-top-wrapper ul li {
float:right;color: #fff;
font-size: 14px;
margin-left:15px;
}





.header-top-area {
padding: 8px 0;
border-bottom: 1px solid #d1d1d133;
}



.header-top-info a {
  color: #fff;
  font-size: 15px;
}
@media (max-width: 767px) {
  .header-top-info span {
    margin-right: 0;
  }
}
.header-top-info span i {
  color: #a7132c;
  margin-right: 6px;
}
.header-top-info span:last-child {
  margin-right: 0;
}

.header-icon {
float:left;
margin-right: 15px;
}

.header-top-info {
float:right;
}


@media (max-width: 767px) {
  .header-icon {
    float: none;
    text-align: center;
    padding-top: 0;
  }
}
.header-icon a {
  color: #fff;
  font-size: 15px;
  display: inline-block;
  text-align: center;
  margin-right: 2px;
  transition: 0.3s;
border-radius: 4px;
width: 30px;
height: 30px;
text-align: center;
background: #212121;
line-height: 30px;
font-size: 13px;

}
.header-icon a:hover {
  color: #a7132c;
}
.header-icon a:last-child {
  margin-right: 0;
}

.header-search {
  overflow: hidden;

}

.header-search-form {
  position: relative;
}
.header-search-form input {
  background: #a7132c;
  border: none;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  height: 35px;
  padding-left: 20px;
  width: 145px;
  border-radius: 30px;
  position: relative;
}

.header-search-form input::-moz-placeholder {
  color: #ffffff;
  font-size: 15px;
}

.header-search-form input::placeholder {
  color: #ffffff;
  font-size: 15px;
}

.header-search-form button {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 15px;
  position: absolute;
  right: 10px;
  top: 9px;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

.header-lang {
  padding: 0;
  display: inline-block;
}

.height-60 {
  height: 65px;
}

.lang-icon > a {
  font-size: 15px;
  color: #fff;
  margin-left: 5px;
  font-weight: 500;text-transform: capitalize;
}

.header-lang-list {
  position: absolute;
  width: 120px;
  opacity: 0;
  visibility: hidden;
  padding: 20px 15px;
  border-top: 3px solid #a7132c;
  transition: 0.4s;
  z-index: 999;
  background: #fff;
  padding-bottom: 5px;
  padding-top: 4px;
  top: 100%;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.header-lang:hover .header-lang-list {
  opacity: 1;
  visibility: visible;
}

.header-lang-list li {
  display: block;
  margin-bottom: 0;
  padding: 5px 0;
}
.header-lang-list li a {
  display: block;
  color: #647589;
  font-size: 15px;
}
.header-lang-list li a:hover {
  color: #a7132c;
}

.menu-bar {
  float: right;
  cursor: pointer;
  margin-left: 45px;
  margin-top: 28px;
  background: #a7132c;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0px 8px 16px 0px rgba(128, 198, 39, 0.3);
}
.menu-bar span {
  display: block;
  margin: 3px 0;
  transition: 0.3s;
  float: right;
}

.menu-bar:hover span {
  width: 100%;
}

.bar1 {
  width: 20px;
  background: #ffffff;
  height: 2px;
}

.bar2 {
  width: 100%;
  background: #ffffff;
  height: 2px;
}

.menu-bar .bar3 {
  width: 20px;
  background: #ffffff;
  height: 2px;
  margin-left: auto;
}

/* extra info */
.extra-info {
  background: #152136;
  height: 100%;
  padding: 30px;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.7s ease 0s;
  width: 340px;
  z-index: 9999;
  transform: translateX(100%);
  padding-bottom: 40px;
}

.extra-info.info-open {
  transform: translateX(0);
}

.extra-info-left {
  right: inherit;
  left: 0;
  transform: translateX(-100%);
}

.extra-info.extra-info-left.info-open {
  transform: translateX(0);
}

.close-icon {
  margin-top: -16px;
  text-align: right;
}

.close-icon > button {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 0 none;
  color: #a7132c;
  cursor: pointer;
  font-size: 20px;
  padding: 0;
}

.extra-info > p {
  color: #ddd;
  font-size: 15px;
  line-height: 28px;
}

.extra-info.extra-info-left.info-open {
  transform: translateX(0);
}

.instagram img {
  width: 100%;
}

.social-icon-right > a {
  color: #fff;
  display: inline-block;
  margin-right: 20px;
  text-align: center;
}

.social-icon-right > a:hover {
  color: #a7132c;
}

.instagram {
  overflow: hidden;
  margin: 0 -4px;
}

.instagram > a {
  float: left;
  width: 33.33%;
  padding: 0 4px;
  margin-bottom: 7px;
}

.side-info {
  border-top: 1px solid #344159;
  padding-top: 25px;
}

.contact-list h4 {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
}

.contact-list p {
  color: #fff;
  opacity: 0.5;
  margin: 0;
  margin-bottom: 5px;
  line-height: 28px;
}

.side-menu ul li:hover a {
  color: #a7132c;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .mail-header-icon {
    display: none;
  }
}
@media (max-width: 767px) {
  .mail-header-icon {
    display: none;
  }
}

.header-right .header-icon {
  margin-top: 7px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .header-right .header-icon {
    display: none;
  }
}
.header-right .header-icon a {
  color: #ffffff;
  font-size: 18px;
  transition: 0.3s;
}
.header-right .header-icon a:hover {
  color: #a7132c;
}

.header-right .header-lang {
  padding: 10px 23px;
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 30px;
  margin-left: 28px;
}

.header-right .lang-icon > a {
  color: #ffffff;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .header-top-button a.c-btn {
    padding: 23px 3px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .header-top-button a.c-btn {
    padding: 23px 2px;
  }
}

/* menu */
.menu-01 {

}


.main-menu {
text-align: center;
}


.main-menu ul li {
  display: inline-block;
  position: relative;
  margin-right: 25px;
}
.main-menu ul li:last-child {
  margin-right: 0;
}
.main-menu ul li a {
  display: block;
  font-size: 15px;
  padding: 15px 0;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background: transparent;
  line-height: 1;
  position: relative;
  text-transform: capitalize;
  color: #fff;
ont-weight: normal;
}
.main-menu ul li a i {
  font-size: 17px;
  position: relative;
  left: 3px;
  top: 3px;
}

.main-menu ul li:hover > a {
  color: #fff;
}

.main-menu > nav > ul > li > a::before {
  background: #cd2122;
  content: "";
  height: 2px;
  position: absolute;
  bottom: 34px;
  width: 0;
  transition: 0.5s;
}

.main-menu > nav > ul > li:hover > a::before, .main-menu > nav > ul > li.active > a::before {
  width: 15px;
}

.menu-2 {
  padding-right: 55px;
  padding-left: 55px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .menu-2 {
    padding-right: 0;
    padding-left: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .menu-2 {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .menu-2 {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (max-width: 767px) {
  .menu-2 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.menu-2 .main-menu ul li {
  margin-right: 53px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .menu-2 .main-menu ul li {
    margin-right: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .menu-2 .main-menu ul li {
    margin-right: 30px;
  }
}
.menu-2 .main-menu ul li:last-child {
  margin-right: 0;
}

.menu-2 .main-menu ul li a {
  display: block;
  font-size: 17px;
  color: #12263E;
  transition: 0.3s;
}

.menu-2 .main-menu nav > ul > li:hover > a, .menu-2 .main-menu nav > ul > li.active > a {
  color: #a7132c;
}

.menu-2 .main-menu > nav > ul > li > a::before {
  display: none;
}

.menu-3 {
  padding-right: 110px;
  padding-left: 110px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .menu-3 {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .menu-3 {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .menu-3 {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (max-width: 767px) {
  .menu-3 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.menu-3 .main-menu ul li {
  margin-right: 38px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .menu-3 .main-menu ul li {
    margin-right: 26px;
  }
}
.menu-3 .main-menu ul li:last-child {
  margin-right: 0;
}

.menu-3 .main-menu ul li a {
  display: block;
  font-size: 17px;
  color: #ffffff;
  transition: 0.3s;
}

.menu-3 .main-menu nav > ul > li:hover > a, .menu-3 .main-menu nav > ul > li.active > a {
  color: #a7132c;
}

.menu-3 .main-menu > nav > ul > li > a::before {
  display: none;
}

/* sub-menu */
.main-menu ul li .sub-menu {
  background: #ffffff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
  left: 0;
  opacity: 0;
  position: absolute;
  top: 120%;
  transition: all 0.3s ease 0s;
  visibility: hidden;
  width: 220px;
  z-index: 9;
  border-bottom: 3px solid #a7132c;
  text-align: left;
  padding: 0;
}
.main-menu ul li .sub-menu li {
  display: block;
  margin: 0;
  padding: 0 8px;
}
.main-menu ul li .sub-menu li a {
  color: #666666;
  font-size: 14px;
  margin: 0;
padding: 12px 5px;
  text-transform: capitalize;
  display: block;
  font-size: 400;border-bottom: 1px solid #eee;
}
.main-menu ul li .sub-menu li a:hover {
  color: #a7132c;
}
.main-menu ul li:hover > .sub-menu {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

/* 3. heading */
.section-title {
  position: relative;margin-bottom: 35px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .section-title {
    margin-left: 0;
    margin-right: 0;
  }
}
.section-title h2 {
  margin-bottom: 0;

  font-weight: 500;text-transform: capitalize;
}
.section-title h2 > span {
  color: #a7132c;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .section-title h2 {
    font-size: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .section-title h2 {
    font-size: 34px;
    line-height: 1.1;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title h2 {
    font-size: 42px;
  }
}
.section-title p {
  margin-top: 17px;
  margin-bottom: 0;color: #12263E;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .section-title p {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .section-title p {
    margin-right: 0;
  }
}

.white-title h2 {
  color: #ffffff;
}
.white-title h2 span {
  color: #ffffff;
}
.white-title p {
  color: #ffffff;
}

.white-2-title h5 {
  color: #ffffff;
}
.white-2-title h5 span {
  background: #ffffff;
}
.white-2-title h2 {
  color: #ffffff;
}




















/*
.footer-wrapper {
position: relative;display: inline-block;
}
@media (max-width: 767px) {
  .footer-wrapper {
    margin-left: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .footer-wrapper {
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-wrapper {
    margin-left: 0;
  }
}




footer {

background: url(../images/bg-counter2.jpg);
background-size: cover;


}

.footer-area {
background: #EDEDED;
padding:50px 0 0;
background: linear-gradient(to right, #FFF9, #C2C2C299);
background: linear-gradient(to right, #FFF9, #1515151a);
}




.footer-title {
font-size: 21px;
color: #12263E;
margin-bottom: 16px;
font-weight: 500;
position: relative;
text-transform: capitalize;
}

.footer-text p {
  color: #333;
  margin-bottom: 22px;
  margin-top: 22px;
  font-size: 15px;
}

.footer-content {
  font-size: 20px;
  color: #b4d7f1;
  margin-bottom: 18px;
  font-weight: 500;
}

.footer-icon a {
  font-size: 14px;
  display: inline-block;
  text-align: center;
  margin-right: 6px;
  transition: 0.3s;
  height: 36px;
  width: 36px;
  text-align: center;
  line-height: 36px;
  border-radius: 50%;
  color: #fff;
  background: #a7132c;
}
.footer-icon a:last-child {
  margin-right: 0;
}
.footer-icon a:hover {
  color: #ffffff;
  background: #333;
}

.footer-link ul li {
  padding-bottom: 9px;
width: 50%;
float: left;
}
.footer-link ul li:last-child {
  padding-bottom: 0;
}
.footer-link ul li a {
  color: #333;
  font-size: 17px;
  font-weight: 400;
  transition: 0.3s;
text-transform: capitalize;
}
.footer-link ul li a:hover {
  color: #a7132c;
}
*/
.subscribes-form form {
  position: relative;
}
.subscribes-form form input {
  background: #fff;
  border-radius: 0;
  height: 55px;
  padding: 0 15px;
  width: 100%;
  color: #333;
  font-size: 15px;
  font-weight: 400;
  border: 0;
  position: relative;
  border-radius: 5px;
}
.subscribes-form form button {
  position: absolute;
  right: 10px;
  border: none;
  top: 10px;
  padding: 9px 11px;
  cursor: pointer;
  background: #a7132c;
  line-height: 1;
  border-radius: 5px;
  transition: 0.3s;
}
.subscribes-form form button:hover {
  background: #a7132c;
}
.subscribes-form form button i {
  color: #ffffff;
  font-size: 14px;
}

.subscribes-form form input::placeholder {
  color: #333;
  font-size: 15px;
  font-weight: 400;
}

.subscribes-form form input::-moz-placeholder {
  color: #333;
  font-size: 15px;
  font-weight: 400;
}/*

.footer-info {
  font-size: 15px;
  color: #333;
}

.footer-address li {
  overflow: hidden;
  padding-bottom: 19px;
}
.footer-address li:last-child {
  padding-bottom: 0;
}

.footer-address-icon {
  margin-right: 15px;
  position: relative;
  top: 3px;
}
.footer-address-icon i {
  background: #a7132c;
  height: 41px;
  width: 41px;
  line-height: 41px;
  text-align: center;
  color: #ffffff;
  border-radius: 50%;
  font-size: 16px;
}

.footer-address-text {
  overflow: hidden;
}
.footer-address-text span {
font-size: 16px;
font-weight: bold;

color: #333;
}
.footer-address-text h5 {
  font-size: 16px;
  margin-top: 2px;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.4;
}
.footer-address-text h5 > a {
  color: #333;
  transition: 0.3s;
}
.footer-address-text h5 > a:hover {
  color: #a7132c;
}

.footer-info p {
  color: #333;
  margin-bottom: 24px;
}

.footer-news li {
  padding-bottom: 34px;
}

.footer-news-img {
  margin-right: 22px;
}
.footer-news-img a {
  position: relative;
  display: inline-block;
}

.footer-news-icon {
  position: absolute;
  top: -17px;
  right: -10px;
}
.footer-news-icon i {
  height: 40px;
  width: 40px;
  line-height: 34px;
  background: #a7132c;
  border: 3px solid #ffffff;
  color: #ffffff;
  font-size: 15px;
  border-radius: 50%;
  text-align: center;
}

.footer-news-text {
  overflow: hidden;
}
.footer-news-text h5 {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
}
.footer-news-text h5 > a {
  color: #333;
  transition: 0.3s;
}
.footer-news-text h5 > a:hover {
  color: #a7132c;
}

.footer-bottom-area {
  border-top: 2px solid #0000001a;
}

.copyright p {
margin-bottom: 0;
color: #333;
font-size: 15px;
text-align: center;
padding: 8px 0;
}
.copyright p a {
  color: #a7132c;
}
@media (max-width: 767px) {
  .copyright p {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .footer-bottom-link {
    float: none;
    text-align: center;
  }
}
.footer-bottom-link ul li {
  display: inline-block;
  padding-right: 24px;
}
.footer-bottom-link ul li:last-child {
  padding-right: 0;
}
.footer-bottom-link ul li a {
  font-size: 15px;
  color: #333;
  transition: 0.3s;
  font-weight: 400;
  position: relative;
  text-transform: capitalize;
}
.footer-bottom-link ul li a:hover {
  color: #a7132c;
}

.footer-top-area {
  border-bottom: 2px solid #d9decd;
}

.footer-top-link {
  padding-top: 16px;
}
@media (max-width: 767px) {
  .footer-top-link {
    float: none;
    padding-top: 0;
  }
}
.footer-top-link ul li {
  display: inline-block;
  padding-right: 67px;
}
@media (max-width: 767px) {
  .footer-top-link ul li {
    padding-right: 30px;
  }
}
.footer-top-link ul li:last-child {
  padding-right: 0;
}
.footer-top-link ul li a {
  font-size: 17px;
  color: #12263E;
  transition: 0.3s;
  font-weight: 500;
  position: relative;
  text-transform: capitalize;
}
.footer-top-link ul li a:hover {
  color: #a7132c;
}
*/







.fl-right {
float: right;
}


.fl-left {
float: left;
}




/************************************************/





.footer-news {
background: #EDEDED;
margin-bottom: 0;
border-bottom: 1px solid #0000001a;padding: 30px 0px;
background: linear-gradient(to right, #FFF9, #C2C2C299);
background: linear-gradient(to right, #FFF9, #1515151a);
}

.footer-news .footer-content {
font-size: 20px;
color: #12263E;
font-weight: 500;
float: none;
display: inline-block;
margin-right: 20px;
line-height: 45px;
margin: 0;margin-right: 40px;
}


.footer-news .subscribes-form {
display: inline-block;
width: 60%;
max-width:100%;
}


.footer-news .footer-wrapper {

}

.footer-news .footer-icon {
text-align: right;
}


.qr-code {

}

.qr-code img {
width: 200px;
border:8px solid #12263E;
}



#pointer { 
width: 140px;

height: 50px;

background: #12263E;

position: absolute;

top: 50%;

right: -132px;

text-align: center;

line-height: 50px;

text-transform: capitalize;

color: #fff;

padding-left: 25px;

border-radius: 0 8px 8px 0;}



#pointer:after { content: "";
position: absolute;
left: 0;
bottom: 0;
width: 0;
height: 0;
border-left: 25px solid white;
border-top: 25px solid transparent;
border-bottom: 25px solid transparent; } 

/*
#pointer:before { content: "";
position: absolute;
right: -25px;
bottom: 0;
width: 0;
height: 0;
border-left: 25px solid #a7132c;
border-top: 25px solid transparent;
border-bottom: 25px solid transparent; }
*/



.logo img {
max-width:200px;
}


@media (max-width: 767px) {

.main-slider .slide {
height: 270px;
}

.main-slider .slide .content.alternate{ 
width:100%;padding: 25px;
}

.main-slider h1 {
font-size: 22px;
margin-bottom: 15px;
}

.main-slider .owl-dots {
right: auto;
left: 15px;
}

.logo img {
width:80%;
}

.about-us-img {
display: none;
}


.section-title h2 {

    font-size: 24px;}




.blog-area,
.work-area,
.shop-area,
.about-area {
padding:20px 0 0;
}


.brand-area {
padding:20px 0;
}


.footer-area {
padding:0;
}



.single-about-us .section-title {
margin-bottom: 15px;
}


.work-text h2 {
font-size: 15px;

margin: 0;

padding: 0;
}


.work-area .col-md-6 {

width:50%;
float:left;
}


.work-text {

    padding: 0 8px;

}




.shop-text {

    margin-top: 0;

}

.section-title {
margin-bottom: 15px;
}


.footer-news .subscribes-form {
width: 100%;
max-width: 100%;
margin-bottom: 10px;
}

.footer-news .footer-content {
display: block;
text-align: left;
}

.footer-news .footer-icon {

    text-align: left;

}



}









.kl-cta-ribbon {
    margin-bottom: -7px;
    background: #cd2122;
        background-color: rgb(205, 33, 34);
}
.ctabutton {
    clear: right;
    float: right;
    position: relative;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    padding: 10px 10px 5px;
    border-radius: 2px;
    margin-top: 8px;
    margin-left: 20px;
}

.kl-cta-ribbon .trisvg {position:absolute; top: 100%; left:0; width: 100%; height: 5px;}
.kl-cta-ribbon .trisvg path {fill:#cd2122;}
.kl-cta-ribbon:hover .trisvg path,
.kl-cta-ribbon:focus .trisvg path {fill:#fff;}
.kl-cta-ribbon { margin-bottom: -7px; background: #cd2122;}
.kl-cta-ribbon:hover,
.kl-cta-ribbon:focus {background: #fff; color:#000; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);}
.kl-cta-ribbon strong {font-size: 17px; font-weight: 900; display:block;}
.kl-cta-lined {margin-top:5px; background-color: transparent ; box-shadow: none; padding: 8px 20px 9px;}



.qodef-esection {
position: relative;
}

.qodef-esection:after {


content: "";
position: absolute;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
background: #0006;

z-index: 10;

}







#footer {background:#2f2f2f; padding:60px 0 20px; color:#d5d5d5; position:relative;}
#footer a {color:#fff;}
#footer a:hover {color:#d5d5d5;}
#footer .m_title {font-size:14px; color:#fff; text-shadow:none}
#footer .menu {margin:0; padding:0; list-style:none; overflow: hidden;}
#footer .menu a {padding-right:10px;}
#footer .zn_sbs .menu > li {float:left; width:50%;}
#footer .menu .sub-menu {list-style:none; margin:0; padding:0; padding-left:15px;}

.scfooter-icon-nocolor {background-color:#121212;}

/* Newsletter */
.newsletter-signup form {margin-bottom:0;}
.newsletter-signup input {vertical-align:top; margin-bottom:10px;}
.newsletter-signup input[type=text] {color:#4d4d4d; background: #EFEFEF; border: 1px solid #a3a3a3; box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1) inset; display: inline-block; height: 40px; width:calc(90% - 130px); float:left; }
.newsletter-signup .nl-submit {color:#fff; background:#CD2122; border:0; font-weight:700; font-size:13px; height:40px; padding:0; margin-left:10px; border-radius:3px; width:120px; float: left;}
.newsletter-signup .nl-submit:hover {background:#000;}
.newsletter-signup #result {display:inline-block; margin-bottom:10px;}
.newsletter-signup #result:empty {display:inline;}

@media screen and (min-width: 992px) and (max-width: 1199px){
	#footer .newsletter-signup input[type="text"] { width: calc(90% - 130px); }
	#footer .newsletter-signup .nl-submit { width:120px; }
}
@media screen and (min-width: 768px) and (max-width: 991px){
	#footer .newsletter-signup input[type="text"] { width: calc(100% - 80px); }
	#footer .newsletter-signup .nl-submit { width:70px; font-size:11px }
}
@media screen and (max-width: 767px){
	#footer .newsletter-signup input[type="text"],
	#footer .newsletter-signup .nl-submit { width:100%; float:none; display:block; margin-left:0; margin-bottom:15px; }
}


/* NEWSLETTER SIDEBAR */
#sidebar .newsletter-signup input[type="text"],
.zn_sidebar .newsletter-signup input[type="text"],
[id*='sidebar-widget-'] .newsletter-signup input[type="text"],
.zn_sidebar .newsletter-signup input {width: 100%; margin-left: 0;}

.map-link > span {margin-top:2px;}

#footer .bottom {padding-top:30px; border-top:5px solid #484848; color:#8b8c8d;}
#footer .social-icons {float:right;}
#footer .copyright img {float:left; margin-right:20px;}

#footer .social-icons li.title {line-height:30px;}
#footer .social-icons li {margin:0 0 0 10px; }
#footer .social-icons li:first-child {margin-left:10;}

#footer .contact-details { min-height: 64px; background: url(../images/say_hi_smaller.png) no-repeat right top;}



.mc4wp-form-fields label {
width:100%;margin: 0;
}

.mc4wp-form-fields label input {
border: none;
border-radius: 0;
width: 100%;
height: 45px;
margin: 15px 0;
padding: 0 12px;

}

.mc4wp-form-theme-red input[type="submit"] {
    color: #fff !important;
    background-color: #d9534f !important;
    border-color: #b52b27;padding: 5px 12px;
}

.bottom .social-icons li {
float: left;
margin-right: 5px;
}

.bottom .social-icons li a {
width: 30px;

height: 30px;

line-height: 30px;

text-align: center;

background: #111;

display: inline-block;

border-radius: 4px;
}

.copyright p {
    color: #8b8c8d;
}

footer p {
color:#fff;
}

.widget {
margin-top:22px;
}


.WhatsApp {

position: fixed;
margin: 0;
right: 15px;
z-index: 99;
bottom: 60px;
font-size: 0;}

.WhatsApp h3 { 
font-size: 0 !important;
}

.WhatsApp img {
width: 60px;}

.widget {
    margin-bottom: 30px;
}

@media (max-width: 767px) {
  .header-top-info {
    text-align: center;
    margin-top: 10px;
float: none;
  }
.header-top-info a {
    color: #000;
}


.header-transparent {
position: relative;
text-align: center;
}


}
