@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,900&display=swap");

.btn-default,
a,
h1,
h2,
h3,
h4,
h5,
h6,
li,
p,
span,
textarea,
ul {
  margin: 0;
  padding: 0;
}
* {
  margin: 0;
  padding: 0;
}
a:hover {
  text-decoration: none !important;
}
a:active,
a:focus {
  text-decoration: none;
}
body {
  overflow-x: hidden;
  font-family: Poppins, sans-serif;
}
html {
  scroll-behavior: smooth;
}
/*----------------------------------------Push Navigation---------------------------------*/
.push-logo img {
  max-width: 20%;
}
.img-fluid {
  width: 100%;
}
div#menuoverlay {
  display: none;
}
a#hamburg {
  position: fixed;
  top: 10px;
  width: 40px;
  height: 40px;
  z-index: 9999999;
  text-align: center;
  color: #fff;
  display: none;
  transition: all ease-out 0.3s;
  right: 0;
}
a#hamburg i {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.nav1 {
  transition: all ease-out 0.3s;
  display: none;
}
.nav1 a {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.nav1 ul {
  margin: 0;
  padding: 0;
  background-color: #303030;
}
.nav1 ul li {
  display: inline-block;
  position: relative;
}
.nav1 ul li > a {
  display: inline-block;
  padding: 10px;
}
.nav1 ul li > a > i {
  margin-left: 15px;
  transition: all ease-out 0.3s;
  -webkit-transition: all ease-out 0.1s;
}
.nav1 ul li ul {
  display: none;
  position: absolute;
  top: 38px;
  background: #222;
  width: 200px;
  text-align: left;
}
.nav1 .search-nav,
.nav1 .title {
  display: none;
}
.nav1 ul li ul li {
  display: block;
}
.nav1 ul li ul li a {
  display: block;
}
.nav1 ul li:hover > a {
  color: #000;
  text-decoration: none;
}
.nav1 ul li:hover > a > i {
  transform: rotateZ(90deg);
}
.nav1 ul li:hover ul {
  display: block;
}
.nav1 span.marrow {
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff;
  float: right;
  height: 0;
  margin: 8px 0 0 8px;
  width: 0;
}
.nav1 ul li.open span.marrow {
  border-left: 5px solid transparent;
  border-top: 0;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #fff;
}
@media screen and (max-width: 991px) {
  a#hamburg {
    display: block;
  }
  main {
    transition: all ease-out 0.3s;
  }
  .nav1 .row {
    margin: 0;
  }
  .nav1 {
    background: #000;
    box-shadow: 2px 0 0 #bb0908 inset;
    display: block;
    height: 100%;
    right: 0;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    top: 0;
    transform: translateX(250px);
    width: 250px;
  }
  .nav1 .search-nav,
  .nav1 .title {
    display: block;
  }
  .nav1 .search-nav input {
    border: 1px solid #2c313f;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px;
    width: 100%;
    color: #000;
    margin: 10px 0;
  }
  .nav1 .search-nav input[type="submit"] {
    background: url(images/search-icon.png) no-repeat scroll center center;
    border: 0;
    width: auto;
    font-size: 0;
    height: 16px;
    position: absolute;
    right: 7px;
    top: 8px;
    width: 16px;
    filter: invert(100%);
  }
  .nav1 .title {
    background: #000;
    color: #fff;
    font-size: 14px;
    margin: 0 -15px;
    padding: 6px 15px 6px;
  }
  .search-nav > form {
    position: relative;
  }
  .nav1 a:hover {
    color: #0c73b4;
    text-decoration: none;
  }
  .nav1 ul {
    text-align: left;
    background-color: transparent;
    margin-top: 50px;
  }
  .nav1 ul li {
    display: block;
    border-bottom: 1px solid #bb0908;
  }
  .nav1 ul li a {
    display: block;
    padding: 10px 0;
  }
  .nav1 ul li:hover > a {
    color: #0c73b4;
  }
  .nav1 ul li a > i {
    float: right;
  }
  .nav1 ul li ul {
    display: none;
    position: static;
    width: 100%;
    background-color: transparent;
    padding: 0 10px;
  }
  .nav1 ul li:hover > ul {
    display: none;
  }
  .nav1 ul li:hover > a > i {
    transform: rotateZ(0);
  }
  .nav1 ul li.open > a {
    background-color: transparent;
  }
  .nav1 ul li.open > a > i {
    transform: rotateZ(90deg);
  }
  .nav1 ul li.open > ul {
    display: block;
  }
  div#menuoverlay {
    display: block;
    visibility: hidden;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all ease-out 0.3s;
    z-index: 1;
    opacity: 0;
  }
  html.open-menu {
    overflow: hidden;
  }
  html.open-menu div#menuoverlay {
    visibility: visible;
    background: rgba(0, 0, 0, 0.5);
    min-height: 100vh;
    width: 100% !important;
    opacity: 1;
    width: calc(-150%);
    right: 250px;
  }
  html.open-menu a#hamburg {
    transform: translateX(0);
    z-index: 999;
    top: 35px;
    right: 10px;
  }
  html.open-menu main {
    transform: translateX(250px);
  }
  html.open-menu nav.nav1 {
    z-index: 989;
    transform: translateX(0);
  }
  .menu-main-menu-container ul ul ul li a {
    padding: 5px;
  }
  ul li.has-subnav .accordion-btn {
    color: #000;
    font-size: 24px;
    width: 20px !important;
    float: right;
    line-height: inherit !important;
  }
  .nav1 ul li:last-child {
    border: 0;
  }
  .nav-cross.open > span {
    background: #bb0908;
  }
}

/*---------------------Hamberg Icon --------------------------------------------- */
.nav-cross {
  width: 30px;
  height: 40px;
  position: relative;
  margin: 0 auto;
  transform: rotate(0);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.nav-cross span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #bb0908;
  opacity: 1;
  left: 0;
  transform: rotate(0);
  transition: 0.25s ease-in-out;
  outline: 1px solid #ffffff9e;
}
#nav-icon1 span:nth-child(1) {
  top: 0;
}
#nav-icon1 span:nth-child(2) {
  top: 18px;
}
#nav-icon1 span:nth-child(3) {
  top: 36px;
}
#nav-icon1.open span:nth-child(1) {
  top: 18px;
  transform: rotate(135deg);
}
#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
#nav-icon1.open span:nth-child(3) {
  top: 18px;
  transform: rotate(-135deg);
}
.nav-cross span:nth-child(1) {
  top: 9px;
  transform-origin: left center;
}
.nav-cross span:nth-child(2) {
  top: 19px;
  transform-origin: left center;
}
.nav-cross span:nth-child(3) {
  top: 29px;
  transform-origin: left center;
}
.nav-cross.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
  left: 4px;
}
.nav-cross.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.nav-cross.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 28px;
  left: 4px;
}
.logo img {
  width: 70%;
}

/* ================================== Header Sticky ==================================================== */
header.sticky {
  position: fixed;
  background: #000;
  left: 0;
  right: 0;
  padding: 20px 0;
  z-index: 99;
  box-shadow: 0 0 50px #ffffff1f;
}
header.sticky .logo img {
  width: 60%;
}
header.sticky .group-links nav ul li a {
  font-size: 15px;
}
header.sticky .header-btn a {
  padding: 15px 30px 15px 70px;
}
header.sticky .header-btn a:hover {
  padding: 15px 70px 15px 30px;
}
header.sticky .header-btn a i {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.logo a.desktopui {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.logo a.desktopui span {
  color: #fff;
  font-size: 30px;
  padding-top: 30px;
}

/* ================================== Header Style ==================================================== */
header .group-links {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-right: 60px;
}
header {
  padding: 30px 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
}
header .row {
  display: flex;
  align-items: center;
}
header .group-links nav ul li a {
  display: inline-block;
  font-size: 17px;
  line-height: 20px;
  color: #fff;
  text-transform: uppercase;
}
.header-btn a:hover {
  padding: 20px 70px 20px 30px;
  text-decoration: none;
  color: #fff;
}
.header-btn a:hover i {
  left: 70%;
}
.header-btn a {
  display: inline-block;
  background: #bb0908;
  color: #fff;
  font-size: 16px;
  line-height: 16px;
  padding: 20px 30px 20px 70px;
  position: relative;
  border-radius: 100px;
  text-transform: uppercase; /* border:1px solid #fff; */
}
.header-btn i {
  display: inline-block;
  position: absolute;
  left: 8px;
  background: #eb0e0d;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  font-size: 12px;
  font-weight: lighter;
  transition: all 1s ease;
}
header .group-links nav ul {
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
header .group-links nav ul li {
  margin-right: 20px;
  padding-right: 20px;
  position: relative;
}
header .group-links nav ul li:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 8px;
  background: #fff;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
header .group-links nav ul li:last-child:before {
  content: unset;
}
header .group-links nav ul li:hover a {
  text-decoration: none;
  color: #a9a5a5;
}
/* ================================== Banner Style ==================================================== */
@keyframes gradient {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
section.banner {
  background: linear-gradient(-45deg, #28130d, #000, #161b1d, #132420);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  animation: gradient 15s ease infinite;
  background-size: 400% 400%;
}
section.banner .banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 900px;
}
section.banner .banner-content .title h1 {
  font-size: 44px;
  line-height: 44px;
  font-weight: 900;
  color: #fff;
  text-align: center;
}
section.banner .banner-content .title h2 {
  font-size: 34px;
  line-height: 36px;
  font-weight: 900;
  color: #fff;
  text-align: center;
}
section.banner .banner-content .title h2 span {
  color: #bb0908;
}
.banner-content p {
  text-align: center;
}
section.banner .banner-content .btn-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 50px;
  justify-content: center;
}
section.banner.banner-1 .work-img img {
  box-shadow: 0 0 10px #fff;
}
/* ===================== text section  ======================== */
section.banner.banner-1 .work {
  /* border-radius: 50px; */
  position: relative;
  display: inline-block;
  width: 100%;
}
section.banner.banner-1 .banner-content {
  height: unset;
}
section.banner.banner-1 {
  background: #000;
}
.blink {
  animation: blink 0.5s infinite;
}
@keyframes blink {
  to {
    opacity: 0;
  }
}
.flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
section.banner.banner-1 .features {
  padding: 50px 0;
}
section.banner.banner-1 .features ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
section.banner.banner-1 .features ul li {
  font-size: 24px;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 50pc;
  padding: 10px 20px;
  width: 300px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}
/* ===================== left right sect ======================== */
section.left-right.left-img .bullets li:hover {
  background: 0 0 !important;
}
section.left-right {
  padding: 80px 0;
  background: #000;
}
section.left-right .top-heading {
  margin: 0;
  font-size: 25px;
}
section.left-right .HEADING {
  font-size: 45px;
  padding: 10px 0 25px;
  margin: 0;
  color: #fff;
}
section.left-right .top-heading {
  margin: 0;
  font-size: 25px;
  text-transform: UPPERCASE;
  color: #fff;
}
section.left-right .right-cont {
  position: relative;
}
section.left-right .right-cont .bullets {
  display: inline-block;
  background: #fff;
  position: absolute;
  bottom: 30px;
  border-radius: 50px;
  left: -70px;
}
section.left-right .right-cont .bullets ul {
  list-style: none;
  padding: 30px;
  border-radius: 50px;
}
section.left-right .right-cont .bullets ul li {
  width: 250px;
  text-align: center;
  padding: 10px 0;
  border-radius: 50px;
  border: 1px solid #ccc;
  margin-bottom: 5px;
  color: #000;
  transition: 0.3s ease-in-out;
}
section.left-right .right-cont .bullets ul li:hover {
  background: #000;
  color: #fff;
}
p {
  color: #fff;
  font-size: 23px !important;
  line-height: 29px;
}
section.left-right .right-cont img {
  border-radius: 50px;
  box-shadow: 0 0 10px#fff;
}
section.left-right p.gl-para {
  max-width: 560px;
}
section.left-right.left-img img {
  max-width: 650px;
}
section.left-right.left-img .bullets {
  right: 0;
  left: unset;
  bottom: 0;
}
section.left-right.left-img .bullets img {
  max-width: 100px;
}
section.left-right ul li::marker {
  color: red;
}
section.left-right ul li {
  color: #98999b;
}
.small-text {
  color: #fff;
}
.heading {
  color: #fff;
  font-size: 39px;
  font-weight: 700;
}
.work-process-section {
  width: 100%;
  display: block;
  padding: 90px 0px 100px;
  background: #000;
  background-size: cover;
  background-position: center;
}
.work-process-section .heading-block {
  width: 100%;
  display: block;
  max-width: 800px;
  margin: 0px auto 60px;
  text-align: center;
}
.work-process-section .heading-block .description {
  font-size: 16px !important;
  color: #ccc;
  margin-bottom: 0px;
}
.work-process-block {
  max-width: 1600px;
  width: 100%;
  margin: 0px auto; /* height: 450px; */
}

.work-process-layout1 .work-process-top .number {
  display: inline-block;
  width: 80px;
  height: 80px;
  text-align: center;
  border: 5px solid;
  font-size: 26px;
  font-weight: 700;
  line-height: 73px;
  margin-left: 40px;
  margin-bottom: 25px;
  background-color: #bb0908 !important;
  border-radius: 50%;
  position: relative;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  color: #fff;
}
.work-process-layout1 .work-process-top {
  text-align: center;
  position: relative;
}
.work-process-layout1 .work-process-top .shape {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  display: inline-block;
  position: absolute;
  left: 25px;
  top: 63px;
  width: 100%;
  height: 370px;
  max-width: 370px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 29% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 29% 100%);
  border-radius: 10px;
  z-index: 0;
  -webkit-transform: rotate(-5deg);
  -ms-transform: rotate(-5deg);
  transform: rotate(-5deg);
  background-color: #bb0908;
}

.work-process-layout1 .vs-work-process-2 .shape {
  background: #bb0908 !important;
}
.work-process-layout1 .vs-work-process-2 .number {
  background: #bb0908 !important;
}
.work-process-layout1 .vs-work-process-2 .work-process-content {
  border-color: #99962a !important;
}

.work-process-layout1 .vs-work-process-4 .shape {
  background: #bb0908 !important;
}
.work-process-layout1 .vs-work-process-4 .number {
  background: #bb0908 !important;
}
.work-process-layout1 .vs-work-process-4 .work-process-content {
  border-color: #99962a !important;
}

.work-process-layout1 .work-process-content {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  border-radius: 10px;
  box-shadow: 0px 3px 0px 0px rgba(17, 180, 245, 0.004),
    0px 3px 50px 0px rgba(17, 180, 245, 0.1);
  background-color: rgba(255, 255, 255, 0.969);
  padding: 35px 20px;
  padding-bottom: 30px;
  max-width: 370px;
  border-bottom: 3px solid #bb0908;
  position: relative;
}
.work-process-layout1 .work-process-content.odd-block {
  border-color: #d9d675;
}
.work-process-layout1 .work-process-content .icon {
  width: 45px;
  height: 45px;
  margin: 0px auto 20px;
}
.work-process-layout1 .work-process-content .icon img {
  width: 100%;
  height: 100%;
}
.work-process-layout1 .work-process-content .process-title {
  color: #1d165c;
  font-size: 20px;
  line-height: 30px;
  transition: all 500ms ease;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: capitalize;
}
.work-process-layout1 .work-process-content .text {
  position: relative;
  font-size: 14px !important;
  line-height: 24px;
  color: #666666;
  transition: all 500ms ease;
  margin-bottom: 0px;
}
.work-process-layout1 .vs-work-process:hover .work-process-top .shape {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.work-process-layout1 .vs-work-process:hover .work-process-top .number {
  margin-bottom: 0px;
  margin-left: 0%;
}
/* ===================== packages style ======================== */
section.banner.banner-1.packages h2.title {
  font-size: 50px;
  text-align: center;
  padding: 20px 0 30px;
  color: #fff;
}
.packages .bottom ul {
  color: #fff;
  padding: 20px;
  width: 280px;
}
.packages.right-package {
  box-shadow: 0 0 10px #fff;
  border-radius: 10px;
}
.packages {
  padding: 30px;
}
.packages .top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding-bottom: 20px;
}
.packages .top .detail strong {
  font-size: 25px;
  display: block;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  font-family: Montserrat;
}
.packages .top h2 {
  font-size: 80px;
  color: #fff;
  line-height: 85px;
}
.packages .top .detail span {
  color: #fff;
  text-transform: capitalize;
}
.packages strong {
  font-size: 40px;
  font-family: Montserrat;
  color: #fff;
}
.packages p.gl-para {
  padding-bottom: 5px;
}
.packages.left-package {
  box-shadow: 0 0 10px #fff;
  border-radius: 10px;
}
section#pricing .packages {
  /* height: 650px; */
}

section#pricing .packages.center {
  animation: beat 1.5s infinite alternate;
  scale: 0.9;
}
@keyframes beat {
  to {
    transform: scale(1.1);
    background: #9f1010;
  }
}
/* ===================== global style ======================== */
.row.align-items-center {
  display: flex;
  align-items: center;
}
.gl-btn a {
  display: inline-block;
  background: #bb0908;
  color: #fff;
  font-size: 16px;
  line-height: 16px;
  padding: 20px 30px 20px 70px;
  position: relative;
  border-radius: 100px;
  text-transform: uppercase;
}
.gl-btn a:before {
  content: "\f27b ";
  font-family: FontAwesome;
  position: absolute;
  left: 8px;
  background: #fff;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  font-size: 12px;
  font-weight: lighter;
  transition: all 1s ease;
  color: #bb0908;
}
.gl-btn a:hover {
  padding: 20px 70px 20px 30px;
  text-decoration: none;
  color: #fff;
}
.gl-btn a:hover:before {
  left: 80%;
}
.gl-btn.trans a {
  border: 1px solid #fff;
  margin-left: 12px;
  background: unset;
}
.gl-btn.trans a:before {
  background: #bb0908;
  color: #fff;
}
.gl-btn a:focus {
  text-decoration: none;
  color: #fff;
}
.gl-para p {
  font-size: 16px;
  line-height: 25px;
  color: #ffffffdb;
  margin: 0 0 15px;
}
.gl-heading h2 {
  font-size: 40px;
  line-height: 40px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 15px;
}
.gl-heading h2 span {
  color: #c81010;
  display: block;
}
/* =======================  subscribtion style ============================ */
section.subscribtion {
  position: relative;
  overflow: hidden;
}
section.subscribtion img.rd {
  position: absolute;
  right: 280px;
  bottom: -200px;
}
section.subscribtion img.rd-mock {
  position: absolute;
  top: -209px;
  right: 591px;
}
section.subscribtion .gl-heading h2 span {
  display: inline-block;
}
section.subscribtion .gl-para {
  margin: 0 0 60px;
  max-width: 440px;
}
section.subscribtion .gl-heading {
  padding-bottom: 10px;
}
section.subscribtion .content {
  height: 770px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ==================== Contact style =========================== */
.form-section .form-group label {
  display: block;
  color: #fff;
}
.form-section .form-group input,
.form-section .form-group textarea {
  width: 100%;
  resize: none;
  border-radius: 10px;
  outline: 0;
  border: 1px solid #000;
  padding: 10px;
  color: #000;
}
section.contact_us {
  background: #000;
}
.form-section .form-group input.submit-btn {
  background: #000;
}
input.submit-btn {
  width: 100%;
  padding: 10px;
  background: #bb0908;
  color: #fff;
  outline: 0;
  border-radius: 10px;
  border: 1px solid #bb0908;
  transition: all 0.3s ease-in-out;
}
input.submit-btn:hover {
  background: 0 0;
}
.form-section .form-group {
  padding-top: 20px;
}

/* ==================== Blog style =========================== */

.blogSection {
  background: #000;
  padding: 50px 0;
}
.sectionTitle {
  font-size: 50px;
  text-align: center;
  padding: 20px 0 30px;
  color: #fff;
}
.blogSection .sectionPara {
  text-align: center;
  margin: 0 auto;
  width: 50%;
  margin-bottom: 70px;
  color: #fff;
}
.featureImg img {
  width: 100%;
}
.singleBlog {
  border: 2px solid #3b3e43;
  padding: 10px;
  margin: 0 7px;
  height: unset !important;
}
.metaArea p {
  color: #ffffff !important;
  margin-bottom: 5px;
}
p {
  color: #98999b;
}
.blogContent h3 {
  font-size: 19px;
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0;
}
.metaArea {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.metaArea p span {
  margin-right: 10px;
}
.blogContent {
  padding: 10px;
}
.blogContent p {
  color: #98999b;
  font-size: 14px;
  margin-top: 10px;
}
.blogContent a {
  text-decoration: none;
  font-weight: 600;
  color: #d41a34;
  text-transform: uppercase;
  transition: all 0.25s;
}
.blogContent a:hover {
  color: #006f51;
  transition: all 0.25s;
}
.arrowWrapper {
  position: absolute;
  left: -90px;
  top: 43%;
  transition: all 0.25s;
}
.arrowWrapper.nextArrow.slick-arrow {
  left: unset;
  right: -90px;
}
.arrowWrapper:hover {
  cursor: pointer;
  transition: all 0.25s;
  filter: brightness(0) saturate(100%) invert(12%) sepia(100%) saturate(4786%)
    hue-rotate(5deg) brightness(78%) contrast(108%);
}
.arrowWrapper img {
  width: 70px;
}
/* ==================== footer style =========================== */
footer .copyright img {
  max-width: 15%;
}
footer {
  background: #000;
}
.cop-cont .bottom {
    width: 800px;
}
.copyright {
  padding-bottom: 20px;
}
.copyright .cop-cont {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.copyright .cop-cont .footer-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: #fff;
  margin: 0;
}
.copyright .cop-cont .footer-nav ul li {
  position: relative;
  padding-right: 16px;
}
.copyright .cop-cont .footer-nav ul li:before {
  content: "";
  background: #fff;
  width: 2px;
  height: 50%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.copyright .cop-cont .footer-nav ul li a {
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
}
.copyright .cop-cont .footer-nav ul li a:hover {
  color: #bb0908;
  text-decoration: none;
}
.copyright .cop-cont .footer-nav ul li:hover:before {
  right: 105%;
  transition: all 1s ease-in-out;
  background: #bb0908;
}

/* inner pages    */
section.banner.inner.banner .banner-content {
  height: 400px;
}
section.left-right.inner img.img-fluid {
  padding: 50px;
}
section.left-right.inner p.gl-para {
  max-width: unset;
}
.terms-section h2 {
    color: white;
}

.terms-section p {
    font-size: 22px !important;
}
section.banner.inner.banner {
  background: linear-gradient(-45deg, #1fd9f0, #a40000, #010a0d, #472323);
}
section.banner.inner.banner {
  background: linear-gradient(-45deg, #1fd9f0, #a40000, #010a0d, #472323);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  animation: gradient 15s ease infinite;
  background-size: 400% 400%;
}

.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded="true"] {
  border-bottom: 1px solid #bb0908;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #7288a2;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #03b5d2;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #03b5d2;
  border: 1px solid #03b5d2;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
  bottom: 0;
  margin: auto;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded="true"] {
  color: #bb0908;
}
.accordion button[aria-expanded="true"] .icon::after {
  width: 0;
}
.accordion button[aria-expanded="true"] + .accordion-content {
  opacity: 1;
  max-height: 20em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 15px 0 15px;
  color: #fff;
}

/* width */
::-webkit-scrollbar {
  width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  /*border-radius: 10px;*/
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: red;
  /*border-radius: 10px;*/
}
section.faq {
  background: #000;
  padding: 80px 0;
}

section.faq .accordion-title {
  color: #bb0908;
  font-size: 23px;
  display: block;
  padding: 5px 50px 5px 0px;
}

section.faq h2 {
  font-size: 55px;
  color: #fff;
}
.banner-content p {
  text-align: center;
  color: #fff;
}
ol li {
  color: #fff;
}
ol {
  padding-left: 50px;
}

.mail {
  color: red;
}
section.left-right .top-heading {
  padding-bottom: 10px;
}

.bottom-copyright {
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
}