html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.d-inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
}

.align-items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.align-items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.align-items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.align-items-baseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.align-items-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.align-content-start {
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

.align-content-end {
  -ms-flex-line-pack: end;
      align-content: flex-end;
}

.align-content-center {
  -ms-flex-line-pack: center;
      align-content: center;
}

.align-content-between {
  -ms-flex-line-pack: justify;
      align-content: space-between;
}

.align-content-around {
  -ms-flex-line-pack: distribute;
      align-content: space-around;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}

.justify-content-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.justify-content-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.justify-content-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-content-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-content-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.flex-auto {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}

.flex-grow-0 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.flex-shrink-0 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.flex-self-auto {
  -ms-flex-item-align: auto;
      -ms-grid-row-align: auto;
      align-self: auto;
}

.flex-self-start {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.flex-self-end {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.flex-self-center {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.flex-self-baseline {
  -ms-flex-item-align: baseline;
      align-self: baseline;
}

.flex-self-stretch {
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}

.flex-order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.flex-order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.flex-order-none {
  -webkit-box-ordinal-group: inherit;
      -ms-flex-order: inherit;
          order: inherit;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1738px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

@font-face {
  font-family: GE_Dinar;
  src: url(../fonts/GE-Dinar-One-Light.otf);
  font-weight: 300;
}

@font-face {
  font-family: GE_Dinar;
  src: url(../fonts/GE-Dinar-One-Medium.otf);
  font-weight: 500;
}

@font-face {
  font-family: GE_SS;
  src: url(../fonts/GE-SS-Text-Bold_26.otf);
  font-weight: 700;
}

@font-face {
  font-family: GE_SS;
  src: url(../fonts/GE-SS-Text-Medium.otf);
  font-weight: 500;
}

@font-face {
  font-family: GE_SS_two;
  src: url(../fonts/GE-SS-Two-Bold.otf);
  font-weight: 700;
}

@font-face {
  font-family: GE_SS_two;
  src: url(../fonts/GE_SS_TEXT_LIGHT.otf);
  font-weight: 300;
}

@font-face {
  font-family: GE_SS_two;
  src: url(../fonts/ArbFONTS-GE_SS_TWO_MEDIUM.otf);
  font-weight: 500;
}

@font-face {
  font-family: Rebel-Hero;
  src: url(../fonts/Rebel-Hero.otf);
  font-weight: 400;
}

/**********************************************************************************/
body {
  padding: 50px 0px 20px 0px;
  background: url(../img/bg.jpg);
}

@media (max-width: 1191px) {
  body {
    background-position: -102px 0 !important;
  }
}

@media (max-width: 991px) {
  body {
    background-position: -167px 0 !important;
  }
}

@media (max-width: 767px) {
  body {
    background: url(../img/bg-mobile.jpg);
    padding: 0px;
  }
}

.logo-responisve {
  display: none;
}

@media (max-width: 767px) {
  .logo-responisve {
    display: block;
    margin-bottom: 20px;
  }
}

.logo-bg {
  width: 398px;
}

@media (max-width: 991px) {
  .logo-bg {
    width: 208px;
  }
}

@media (max-width: 767px) {
  .logo-bg {
    display: none;
  }
}

@media (max-width: 991px) {
  .logo-bg img {
    max-width: 130px;
  }
}

.btn-yellow {
  background: #e5a800;
  color: #fff;
  font-size: 45px;
  font-weight: 700;
  outline: none;
  border: none;
  height: 83px;
  line-height: 83px;
  border-radius: 10px;
  text-align: center;
  font-family: GE_SS_two;
  max-width: 805px;
  margin: 0 auto;
}

@media (max-width: 1191px) {
  .btn-yellow {
    font-size: 30px;
    height: 63px;
    line-height: 63px;
    max-width: 465px;
  }
}

@media (max-width: 767px) {
  .btn-yellow {
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    max-width: 246px;
  }
}

.main-contanet {
  width: 100%;
  max-width: 1280px;
  position: relative;
}

.main-contanet .img-text-box {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 55%;
}

.heading-1 {
  color: #fff;
  font-size: 70px;
  font-family: GE_SS_two;
  font-weight: 700;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  line-height: 70px;
  margin-bottom: 20px;
}

.heading-1 span {
  color: #f6b71a;
}

@media (max-width: 1191px) {
  .heading-1 {
    font-size: 26px;
    line-height: normal;
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .heading-1 {
    font-size: 16px;
  }
}

.heading-2 {
  color: #fff;
  font-size: 47px;
  font-family: GE_SS_two;
  font-weight: 300;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  line-height: 57px;
  margin-bottom: 20px;
}

@media (max-width: 1191px) {
  .heading-2 {
    font-size: 26px;
    line-height: normal;
  }
}

@media (max-width: 767px) {
  .heading-2 {
    font-size: 12px;
    margin-bottom: 10px;
  }
}

.heading-2 span {
  font-weight: 500;
}

.text-1 {
  color: #6f031b;
  font-size: 34px;
  font-family: GE_SS_two;
  font-weight: 700;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  line-height: 44px;
  margin-top: 40px;
  margin-bottom: 20px;
}

@media (max-width: 1191px) {
  .text-1 {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .text-1 {
    font-size: 18px;
    line-height: normal;
    margin-top: 25px;
    margin-bottom: 15px;
  }
}

.two-btn-footer {
  margin-top: 30px;
  max-width: 1506px;
  margin-left: auto;
}

@media (max-width: 767px) {
  .two-btn-footer {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
}

.footer-bg-mt {
  position: relative;
}

@media (max-width: 767px) {
  .footer-bg-mt .text-2 {
    position: absolute;
    top: 50%;
    right: 20px;
    line-height: normal;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    padding-top: 16px;
  }
}

.text-2 {
  color: #70061d;
  font-size: 40px;
  font-weight: 700;
  font-family: GE_SS_two;
}

@media (max-width: 1191px) {
  .text-2 {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .text-2 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .text-2 {
    height: 50px;
    font-size: 14px;
    color: #fff;
    text-align: right;
  }
}

.whats-bt {
  color: #fff;
  font-size: 40px;
  font-family: GE_Dinar;
  font-weight: 500;
  text-decoration: none;
  height: 70px;
}

@media (max-width: 1191px) {
  .whats-bt {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .whats-bt {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .whats-bt {
    height: 50px;
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.whats-bt img {
  height: 70px;
}

@media (max-width: 767px) {
  .whats-bt img {
    height: 50px;
  }
}

.whats-bt span {
  border: 2px solid #fe0000;
  border-radius: 10px;
  padding: 0 15px;
  background: #fe0000;
}

.whats-bt:hover span {
  background: #fe0000;
  color: #fff;
}

@media (max-width: 767px) {
  .container.d-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.video-box-mt {
  border: 6px solid #dcb125;
  padding: 30px 50px;
}

@media (max-width: 767px) {
  .video-box-mt {
    padding: 10px 20px;
  }
}

.video-box-mt iframe {
  height: 600px;
}

@media (max-width: 767px) {
  .video-box-mt iframe {
    height: 300px;
  }
}

@media (max-width: 767px) {
  .padding-0-m {
    padding: 0;
  }
}

.breakline {
  display: none;
}

@media (max-width: 767px) {
  .breakline {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */