@charset "UTF-8";
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Typography 
    [ ## Heading ] 
    [ ## Others Typography ]
# Elements
    [ ## Font Size ]
    [ ## Font Weight ]
    [ ## Margin Element ]
    [ ## Padding Element ]
    [ ## Color Element ]
    [ ## Background Element ]
    [ ## Extra Background ]
    [ ## Social Element ]
    [ ## Overlay Element ]
    [ ## Lists ]
    [ ## Post, Page, Comments Table ]
    [ ## Others Element ]
    [ ## Grid Element ]
# Forms
	[ ## Buttons ]
	[ ## Fields ]
# Header Content
	[ ## Preloader ]
	[ ## Header ]
    [ ## Sticky header ]
# layout
    [ ## Hero Block ]
    [ ## Features ]
    [ ## Team ]
    [ ## Testimonial ]
    [ ## Sections ]
        [ ### Features Block ]
        [ ### Network Location ]
        [ ### Discount Block ]
        [ ### Vission Mission Block ]
        [ ### Work Brand ]
        [ ### Announcement ]
        [ ### Pricing ]
        [ ### Faqs ]
        [ ### Support Ticket ]
        [ ### Call To Action ]
        [ ### Founder Message Block ]
        [ ### Fan Fact Block ]
    [ ## Blog ]
# site content
	[ ## About Page ]
	[ ## Contact Page ]
	[ ## 404 Page ]
	[ ## Registration Page ]
	[ ## Posts and pages ]
	    [ ### Page Title ]
	    [ ### Breadcrumb ]
	    [ ### Page info Content ]
	[ ## Comments ]
	[ ## Widgets ]
	[ ## Widgets Content ]
# Footer
/*--------------------------------------------------------------
# abstracts
--------------------------------------------------------------*/
/*-------------------------------------------------
    [ ### font-variable start ]
*/
/*-------------------------------------------------
    [ ### font-variable end ]
*/
/*-------------------------------------------------
    [ ### font_family-variable start ]
*/
/*-------------------------------------------------
    [ ### font_family-variable end ]
*/
/*-------------------------------------------------
    [ ### font_size-variable start ]
*/
/*-------------------------------------------------
    [ ### font_size-variable end ]
*/
/*-------------------------------------------------
    [ ### line_height-variable start ]
*/
/*-------------------------------------------------
    [ ### line_height-variable start ]
*/
/*-------------------------------------------------
    [ ### initial-color-variable start ]
*/
/*-------------------------------------------------
    [ ### initial-color-variable end ]
*/
/*--------------------------------------------------------------
# base
--------------------------------------------------------------*/
/*-------------------------------------------------
    [ ## reset ]
*/
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: #8a909a;
  overflow-x: hidden;
}
@media only screen and (max-width: 991px) {
  body {
    font-size: 14px;
  }
}

a {
  display: inline-block;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

blockquote {
  margin: 0 0 1.3em;
}

p {
  margin-bottom: 15px;
  line-height: 1.8em;
}
p:last-child {
  margin-bottom: 0px;
}
@media only screen and (max-width: 1199px) {
  p {
    line-height: 1.7em;
  }
}

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

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

button, input[type=submit], input[type=reset], input[type=button] {
  border: none;
  cursor: pointer;
}

input, textarea {
  padding: 12px 25px;
  width: 100%;
}

span {
  display: inline-block;
}

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

/*-------------------------------------------------
    [ ## padding ]
*/
.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-100 {
  padding-top: 100px;
}
@media only screen and (max-width: 991px) {
  .pt-100 {
    padding-top: 80px;
  }
}

.pt-120 {
  padding-top: 120px;
}
@media only screen and (max-width: 991px) {
  .pt-120 {
    padding-top: 80px;
  }
}

.pt-150 {
  padding-top: 150px;
}
@media only screen and (max-width: 991px) {
  .pt-150 {
    padding-top: 100px;
  }
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-100 {
  padding-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  .pb-100 {
    padding-bottom: 80px;
  }
}

.pb-120 {
  padding-bottom: 120px;
}
@media only screen and (max-width: 991px) {
  .pb-120 {
    padding-bottom: 80px;
  }
}

.pb-150 {
  padding-bottom: 150px;
}
@media only screen and (max-width: 991px) {
  .pb-150 {
    padding-bottom: 100px;
  }
}

.ptb-10 {
  padding: 10px 0;
}

.ptb-20 {
  padding: 20px 0;
}

.ptb-30 {
  padding: 30px 0;
}

.ptb-40 {
  padding: 40px 0;
}

.ptb-50 {
  padding: 50px 0;
}

.ptb-60 {
  padding: 60px 0;
}

.ptb-80 {
  padding: 80px 0;
}

.ptb-100 {
  padding: 100px 0;
}
@media only screen and (max-width: 991px) {
  .ptb-100 {
    padding: 80px 0;
  }
}

.ptb-120 {
  padding: 120px 0;
}
@media only screen and (max-width: 991px) {
  .ptb-120 {
    padding: 80px 0;
  }
}

.ptb-150 {
  padding: 150px 0;
}
@media only screen and (max-width: 991px) {
  .ptb-150 {
    padding: 100px 0;
  }
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-150 {
  margin-top: 150px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}
@media only screen and (max-width: 575px) {
  .mb-80 {
    margin-bottom: 40px;
  }
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mt-10-none {
  margin-top: -10px;
}

.mt-20-none {
  margin-top: -20px;
}

.mt-30-none {
  margin-top: -30px;
}

.mt-40-none {
  margin-top: -40px;
}

.mt-50-none {
  margin-top: -50px;
}

.mt-60-none {
  margin-top: -60px;
}

.mt-80-none {
  margin-top: -80px;
}

.mt-100-none {
  margin-top: -100px;
}

.mt-120-none {
  margin-top: -120px;
}

.mt-150-none {
  margin-top: -150px;
}

.mb-10-none {
  margin-bottom: -10px;
}

.mb-20-none {
  margin-bottom: -20px;
}

.mb-25-none {
  margin-bottom: -25px;
}

.mb-30-none {
  margin-bottom: -30px;
}

.mb-40-none {
  margin-bottom: -40px;
}

.mb-50-none {
  margin-bottom: -50px;
}

.mb-60-none {
  margin-bottom: -60px;
}

.mb-65-none {
  margin-bottom: -65px;
}

.mb-80-none {
  margin-bottom: -80px;
}
@media only screen and (max-width: 575px) {
  .mb-80-none {
    margin-bottom: -40px;
  }
}

.mb-100-none {
  margin-bottom: -100px;
}

.mb-120-none {
  margin-bottom: -120px;
}

.mb-150-none {
  margin-bottom: -150px;
}

/*-------------------------------------------------
    [ ## color ]
*/
.bg--primary {
  background-color: #7367f0 !important;
}

.bg--secondary {
  background-color: #9DBAFE;
}

.bg--success {
  background-color: #28c76f;
}

.bg--danger {
  background-color: #ea5455;
}

.bg--warning {
  background-color: #ff9f43;
}

.bg--info {
  background-color: #1e9ff2;
}

.bg--dark {
  background-color: #10163A;
}

.bg--base {
  background-color: #ba1111 !important;
}

.text--primary {
  color: #000DFF;
}

.text--secondary {
  color: #9DBAFE;
}

.text--success {
  color: #00b4bc;
}

.text--danger {
  color: #ea5246;
}

.text--warning {
  color: #ff9f43;
}

.text--info {
  color: #73a3cc;
}

.text--dark {
  color: #10163A;
}

.text--base {
  color: #ba1111 !important;
}

.border--primary {
  border: #7367f0;
}

.border--secondary {
  border: 1px solid #9DBAFE;
}

.border--success {
  border: 1px solid #28c76f;
}

.border--danger {
  border: 1px solid #ea5455;
}

.border--warning {
  border: 1px solid #ff9f43;
}

.border--info {
  border: 1px solid #1e9ff2;
}

.border--dark {
  border: 1px solid #10163A;
}

.border--base {
  border: 1px solid #e5e5e5 !important;
}

.section--bg {
  background-color: #04072e !important;
}

.bg--gray {
  background-color: #F1F7FF !important;
}

.border--rounded {
  border-radius: 3px !important;
}

.border--capsule {
  border-radius: 100px;
}

.box-shadow {
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
}

.dark {
  background-color: #19232D;
}

.bg-gradient {
  background: transparent linear-gradient(92deg, #741ADB 0%, #1958D8 100%) 0% 0% no-repeat padding-box;
}

/*-------------------------------------------------
    [ ## scrollbar ]
*/
*::-webkit-scrollbar-track {
  -webkit-box-shadow: inset -5px -5px 8px -1px rgba(255, 255, 255, 0.7), 5px 5px 8px -1px rgba(0, 0, 0, 0.065);
  box-shadow: inset -5px -5px 8px -1px rgba(255, 255, 255, 0.7), 5px 5px 8px -1px rgba(0, 0, 0, 0.065);
  background-color: #F1F7FF;
}

*::-webkit-scrollbar {
  width: 6px;
  background-color: #F1F7FF;
}

*::-webkit-scrollbar-button {
  background-color: #04072e;
}

*::-webkit-scrollbar-thumb {
  background-color: #04072e;
}

/*-------------------------------------------------
    [ ## scrollToTop ]
*/
.scrollToTop {
  position: fixed;
  bottom: 0;
  right: 30px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  font-weight: 600;
  background-color: #ba1111;
  color: #ffffff;
  font-size: 20px;
  text-align: center;
  border-radius: 5px;
  z-index: 99;
  cursor: pointer;
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transform: translateY(-5000%);
          transform: translateY(-5000%);
}

.scrollToTop.active {
  bottom: 30px;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
@media only screen and (max-width: 1270px) {
  .scrollToTop.active {
    bottom: 30px;
  }
}

.scrollToTop:hover, .scrollToTop:focus {
  color: #ffffff;
}

/*-------------------------------------------------
    [ ## slider ]
*/
.swiper-notification {
  display: none;
}

.swiper-pagination {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
}
.swiper-pagination .swiper-pagination-bullet {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: #000;
  opacity: 0.2;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #000;
  opacity: 1;
  position: relative;
}

.slider-next, .slider-prev {
  width: 44px;
  height: 44px;
  line-height: 44px;
  font-size: 22px;
  background-color: #9DBAFE;
  border-radius: 6px;
  color: #ffffff;
  display: inline-block;
  text-align: center;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.slider-next:hover, .slider-prev:hover {
  background-color: #ba1111;
}

.slider-next {
  margin-left: 10px;
}

/*-------------------------------------------------
    [ ## tab ]
*/
.nav-tabs {
  margin: 0;
  border: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 575px) {
  .nav-tabs {
    display: block;
  }
}
.nav-tabs .nav-link {
  position: relative;
  padding: 12px 25px;
  border: none;
  font-weight: 600;
  color: #04072e;
  border-radius: 0;
  font-family: "Poppins", sans-serif;
  border-radius: 6px;
  font-size: 14px;
  background-color: transparent;
  border: 1px solid #E2E2E2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 575px) {
  .nav-tabs .nav-link {
    width: auto;
    text-align: center;
  }
}
.nav-tabs .nav-link:hover {
  background-color: #ffffff;
}
.nav-tabs .nav-link.active {
  background-color: #fff2f2;
  border: 1px solid transparent;
  color: #ba1111;
}
.nav-tabs .nav-link:not(:last-child) {
  margin-right: 10px;
}
@media only screen and (max-width: 1199px) {
  .nav-tabs .nav-link:not(:last-child) {
    margin-right: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .nav-tabs .nav-link:not(:last-child) {
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 575px) {
  .nav-tabs .nav-link:not(:last-child) {
    margin-right: 0;
  }
}

.video-main {
  position: relative;
  display: inline-block;
}

.waves {
  position: absolute;
  width: 240px;
  height: 240px;
  background: rgba(186, 17, 17, 0.06);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 100%;
  right: -60px;
  bottom: -60px;
  z-index: -1;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}
@media only screen and (max-width: 991px) {
  .waves {
    width: 160px;
    height: 160px;
    right: -40px;
    bottom: -40px;
  }
}

.wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.wave-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

@-webkit-keyframes waves {
  0% {
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }
  100% {
    -webkit-transform: scale(0.7, 0.7);
    transform: scale(0.7, 0.7);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }
  100% {
    -webkit-transform: scale(0.7, 0.7);
    transform: scale(0.7, 0.7);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}
.video-icon {
  height: 120px;
  width: 120px;
  line-height: 120px;
  text-align: center;
  border-radius: 100%;
  color: #ba1111;
  font-size: 24px;
  display: inline-block;
  background: rgba(186, 17, 17, 0.13);
  z-index: 999;
}
.video-icon:hover {
  color: #ba1111;
}
@media only screen and (max-width: 991px) {
  .video-icon {
    height: 80px;
    width: 80px;
    line-height: 80px;
  }
}

/*-------------------------------------------------
    [ ## Heading ]
*/
h1, h2, h3, h4, h5, h6 {
  clear: both;
  line-height: 1.2em;
  color: #04072e;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  font-family: "Oswald", sans-serif;
}

h1 {
  font-size: 40px;
}
@media only screen and (max-width: 991px) {
  h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 575px) {
  h1 {
    font-size: 30px;
  }
}

h2 {
  font-size: 40px;
}
@media only screen and (max-width: 991px) {
  h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 575px) {
  h2 {
    font-size: 26px;
  }
}

h3 {
  font-size: 22px;
}
@media only screen and (max-width: 991px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a {
  color: inherit;
  text-decoration: none;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover {
  color: inherit;
  text-decoration: none;
}

.section-header-wrapper {
  margin-bottom: 63px;
}
@media only screen and (max-width: 991px) {
  .section-header-wrapper {
    margin-bottom: 43px;
  }
}
.section-header-wrapper .section-header {
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  .section-header-wrapper .section-header {
    margin-bottom: 43px;
  }
}
@media only screen and (max-width: 767px) {
  .section-header-wrapper .section-header {
    margin-bottom: 23px;
  }
}
.section-header-wrapper .section-feature-list {
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .section-header-wrapper .section-feature-list {
    margin-top: 0;
  }
}
.section-header-wrapper .section-feature-list li {
  position: relative;
  display: inline-block;
  padding-left: 25px;
  font-size: 14px;
  font-weight: 600;
  color: #04072e;
}
@media only screen and (max-width: 767px) {
  .section-header-wrapper .section-feature-list li {
    padding-left: 20px;
    font-size: 12px;
  }
}
@media only screen and (max-width: 400px) {
  .section-header-wrapper .section-feature-list li {
    display: block;
  }
}
.section-header-wrapper .section-feature-list li::before {
  position: absolute;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  top: 1px;
  left: 0;
  color: #ba1111;
}
@media only screen and (max-width: 767px) {
  .section-header-wrapper .section-feature-list li::before {
    font-size: 12px;
  }
}
.section-header-wrapper .section-feature-list li + li {
  margin-left: 25px;
}
@media only screen and (max-width: 767px) {
  .section-header-wrapper .section-feature-list li + li {
    margin-left: 5px;
  }
}
@media only screen and (max-width: 400px) {
  .section-header-wrapper .section-feature-list li + li {
    margin-left: 0;
  }
}

.section-header {
  margin-bottom: 63px;
  position: relative;
  z-index: 9;
}
@media only screen and (max-width: 991px) {
  .section-header {
    margin-bottom: 43px;
  }
}
.section-header.white .sub-title {
  background: transparent -webkit-gradient(linear, right top, left top, from(#FFFFFF20), to(#1958D825)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(270deg, #FFFFFF20 0%, #1958D825 100%) 0% 0% no-repeat padding-box;
  color: #ffffff;
  border-left: 2px solid #ffffff;
}
.section-header.white .section-title {
  color: #ffffff;
}
.section-header .sub-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 30px;
  color: #ba1111 !important;
}
@media only screen and (max-width: 991px) {
  .section-header .sub-title {
    margin-bottom: 15px;
  }
}
.section-header .section-title {
  margin-bottom: 25px;
  position: relative;
  line-height: 1.2em;
  margin-top: -8px;
}
@media only screen and (max-width: 991px) {
  .section-header .section-title {
    margin-top: -5px;
  }
}
.section-header p {
  margin-top: 20px;
}
.section-header p span {
  color: #0a2540;
  font-weight: 600;
}
.section-header .line-text {
  position: relative;
  z-index: 2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.section-header .line-text svg {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 50%;
  width: 106%;
  height: 100%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  overflow: visible;
  z-index: -1;
}
.section-header .line-text svg path {
  stroke: #ba111150;
  stroke-width: 40;
  stroke-dasharray: 1500;
  -webkit-animation: highlighted-line 2s cubic-bezier(0.29, 1.11, 0.74, 1.04) forwards;
          animation: highlighted-line 2s cubic-bezier(0.29, 1.11, 0.74, 1.04) forwards;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  fill: none;
}
.section-header .line-text.style--2 svg path {
  stroke: #ba111150;
}
.section-header .line-text.style--3 svg path {
  stroke: #ba111150;
}
.section-header .line-text.style--4 svg path {
  stroke: #ba111150;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/*-------------------------------------------------
    [ ## Buttons ]
*/
input[type=submit]:hover {
  color: #ffffff;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer;
  -webkit-appearance: button;
}
button:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus {
  outline: none;
}

button::-moz-focus-inner, input[type=button]::-moz-focus-inner, input[type=reset]::-moz-focus-inner, input[type=submit]::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.btn {
  -webkit-transition: all 0.3s ease 0.02s;
  transition: all 0.3s ease 0.02s;
}

.btn:active,
.btn:focus {
  -webkit-box-shadow: 0 0px 0px rgba(0, 0, 0, 0.125) inset;
          box-shadow: 0 0px 0px rgba(0, 0, 0, 0.125) inset;
}

.btn {
  border: 0px solid;
  border-radius: 0px;
  font-weight: 500;
  font-size: 16px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media only screen and (max-width: 767px) {
  .btn {
    font-size: 14px;
  }
}

.btn-rounded {
  border-radius: 3px;
}

.btn-capsule {
  border-radius: 100px;
}

/*-------------------------------------------------
    [ ## custom btn ]
*/
.btn--primary {
  background-color: #7367f0;
}

.btn--secondary {
  background-color: #868e96;
}

.btn--success {
  background-color: #28c76f;
}

.btn--danger {
  background-color: #ea5455;
}

.btn--warning {
  background-color: #ff9f43;
}

.btn--info {
  background-color: #1e9ff2;
}

.btn--dark {
  background-color: #10163A;
}

.badge--primary {
  background-color: #7367f0;
}

.badge--secondary {
  background-color: #868e96;
}

.badge--success {
  background-color: #28c76f;
}

.badge--danger {
  background-color: #ea5455;
}

.badge--warning {
  background-color: #ff9f43;
}

.badge--info {
  background-color: #1e9ff2;
}

.badge--dark {
  background-color: #10163A;
}

.badge--base {
  background-color: #CEE3FF;
  color: #ba1111;
}

.border--primary {
  border: 1px solid #7367f0;
}

.border--secondary {
  border: 1px solid #868e96;
}

.border--success {
  border: 1px solid #28c76f;
}

.border--danger {
  border: 1px solid #ea5455;
}

.border--warning {
  border: 1px solid #ff9f43;
}

.border--info {
  border: 1px solid #1e9ff2;
}

.border--dark {
  border: 1px solid #10163A;
}

.badge {
  font-weight: 600;
  border-radius: 999px;
  padding: 7px 15px 7px 15px;
  font-size: 15px;
}

.btn--base {
  position: relative;
  background: #04072e;
  font-family: "Oswald", sans-serif;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  z-index: 2;
  overflow: hidden;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.btn--base.gradient {
  background: linear-gradient(109.78deg, #AF40FF -2.89%, #5B42F3 54.1%, #00DDEB 114.77%);
}
.btn--base i {
  position: relative;
  top: 1px;
}
.btn--base:focus, .btn--base:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  color: #ffffff;
}
@media only screen and (max-width: 991px) {
  .btn--base {
    padding: 12px 20px;
    font-size: 14px;
  }
}

.custom-btn {
  color: #ba1111;
  font-weight: 600;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.custom-btn.two {
  color: #9DBAFE;
}
.custom-btn.two:hover {
  color: #9DBAFE;
}
.custom-btn i {
  font-size: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.custom-btn:hover {
  color: #ba1111;
}
.custom-btn:hover i {
  padding-left: 5px;
}

.loading-btn a {
  font-size: 60px;
  color: #ba1111;
}

/*-------------------------------------------------
    [ ## Fields ]
*/
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus {
  outline: none;
}

input, textarea {
  padding: 12px 20px;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #04072e;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #04072e;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #04072e;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #04072e;
}
input::placeholder, textarea::placeholder {
  color: #04072e;
}

textarea {
  display: block;
  width: 100%;
  display: block;
  min-height: 120px;
}

input,
select,
textarea {
  border: 1px solid #E2E2E2;
  vertical-align: baseline;
  font-size: 100%;
  color: #04072e;
}

label {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
  display: block;
}

/*-------------------------------------------------
    [ ## Forms ]
*/
select {
  outline: none;
  cursor: pointer;
}

option {
  color: #04072e;
}

.nice-select {
  line-height: 34px;
}
.nice-select::after {
  right: 20px;
}
.nice-select:focus::after {
  border-bottom: 2px solid #04072e;
  border-right: 2px solid #04072e;
}
.nice-select:focus .current {
  color: #04072e;
}

.nice-select:hover {
  border-color: #676767;
}

.nice-select .list {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
          box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  min-height: 50px;
  max-height: 200px;
}

.nice-select::after {
  height: 8px;
  width: 8px;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}

.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}

.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
  width: unset;
  min-height: 50px;
  max-height: 200px;
  overflow-y: scroll;
  width: 100%;
}

.nice-select .option.selected.focus {
  color: #04072e !important;
}

.nice-select.open .nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}

.nice-select .option {
  cursor: pointer;
  font-weight: 700;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  color: #04072e;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-size: 14px;
}

.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.nice-select .option.disabled:after {
  border-color: #cccccc;
}

.nice-select .option:hover {
  background-color: #ba1111;
  color: #ffffff;
}

.nice-select .current {
  display: block;
  color: #ffffff;
}

.input-group {
  margin-bottom: 15px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.input-group input {
  border-radius: 5px 0 0 5px;
  border: 1px solid rgba(107, 124, 147, 0.15);
  color: #6b7c93;
  height: 45px;
}

.form-control:disabled, .form-control[readonly] {
  background-color: rgba(186, 17, 17, 0.2);
}

.input-group-append, .input-group-prepend {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
}

.input-group-append input {
  border-radius: 5px 0 0 5px;
  border: 1px solid #E2E2E2;
  border-right: none;
  background-color: #ffffff;
}

.input-group-text {
  border: none;
  font-size: 14px;
  background: #EFF0F0;
  color: #04072e;
  height: 45px;
  border-radius: 0 5px 5px 0;
  font-weight: 500;
}

.custom-check-group {
  display: block;
  margin-bottom: 12px;
}
.custom-check-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.custom-check-group input:checked + label::before {
  background-color: #ba1111;
  border: 1px solid #ba1111;
}
.custom-check-group input:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 7px;
  width: 5px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.custom-check-group label {
  position: relative;
  cursor: pointer;
}
.custom-check-group label::before {
  content: "";
  -webkit-appearance: none;
  background: #ffffff;
  border: 1px solid #E2E2E2;
  border-radius: 3px;
  padding: 8px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 8px;
  top: -2px;
}

.form-group {
  margin-bottom: 25px;
}

.form-control {
  border: 1px solid #E2E2E2;
  font-size: 14px;
  height: 50px;
}
.form-control:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #E2E2E2;
}

.form--control {
  background-color: #ffffff;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 60px;
  color: #C9C9C9;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 400;
  padding: 15px 25px;
  width: 100%;
}
.form--control:focus {
  background-color: #ffffff;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #C9C9C9;
}
.form--control:focus::-webkit-input-placeholder {
  color: #C9C9C9;
}
.form--control:focus::-moz-placeholder {
  color: #C9C9C9;
}
.form--control:focus:-ms-input-placeholder {
  color: #C9C9C9;
}
.form--control:focus::-ms-input-placeholder {
  color: #C9C9C9;
}
.form--control:focus::placeholder {
  color: #C9C9C9;
}
.form--control::-webkit-input-placeholder {
  color: #C9C9C9;
}
.form--control::-moz-placeholder {
  color: #C9C9C9;
}
.form--control:-ms-input-placeholder {
  color: #C9C9C9;
}
.form--control::-ms-input-placeholder {
  color: #C9C9C9;
}
.form--control::placeholder {
  color: #C9C9C9;
}

.radio-item [type=radio]:checked {
  position: absolute;
  left: -9999px;
}

.radio-item [type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.radio-item [type=radio]:checked + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #04072e;
  margin: 0;
}

.radio-item [type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #04072e;
  margin: 0;
}

.radio-item [type=radio]:checked + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #E2E2E2;
  border-radius: 100%;
  background: #ffffff;
}

.radio-item [type=radio]:checked + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #ba1111;
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.radio-item [type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #E2E2E2;
  border-radius: 100%;
  background: #ffffff;
}

.radio-item [type=radio]:not(:checked) + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #ba1111;
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.radio-item [type=radio]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.select2-container {
  -ms-flex: 0 0 100%;
  -webkit-box-flex: 0;
          flex: 0 0 100%;
  width: 100%;
}

.selection {
  width: 100%;
}

.select2-selection--single {
  width: 100%;
  height: 45px !important;
  outline: none;
  background: transparent !important;
  font-size: 15px;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 10px 10px;
  border-radius: 5px;
  vertical-align: top;
  display: inline-block;
  border: 1px solid #E2E2E2 !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.select2-selection--single span {
  margin: 0;
  width: 100%;
  color: #8a909a;
  line-height: initial;
  font-weight: 600;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: auto;
  position: absolute;
  top: 22px;
  right: 7px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #8a909a transparent transparent transparent;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #8a909a transparent;
}

.submit-btn {
  padding: 12px 20px;
  color: #ffffff;
  background: #04072e;
  font-weight: 600;
  font-size: 14px;
  border-radius: 5px;
  font-family: "Oswald", sans-serif;
}
@media only screen and (max-width: 991px) {
  .submit-btn {
    padding: 10px 20px;
  }
}

/*-------------------------------------------------
    [ ## Overlay Element ]
*/
.bg_img {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.bg-fixed {
  background-attachment: fixed;
}

.bg-overlay-base {
  position: relative;
}

.bg-overlay-base:after {
  content: "";
  position: absolute;
  background-image: linear-gradient(335deg, #ba1111 15%, rgba(25, 25, 25, 0) 100%);
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.bg-overlay-base > div {
  position: relative;
  z-index: 2;
}

.bg-overlay-black {
  position: relative;
}

.bg-overlay-black:after {
  content: "";
  position: absolute;
  background-color: #000013;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.bg-overlay-black > div {
  position: relative;
  z-index: 2;
}

.bg-overlay-red {
  position: relative;
}

.bg-overlay-red:after {
  content: "";
  position: absolute;
  background-color: #ba1111;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  mix-blend-mode: multiply;
}

.bg-overlay-red > div {
  position: relative;
  z-index: 2;
}

.bg-overlay-white {
  position: relative;
}

.bg-overlay-white:after {
  content: "";
  position: absolute;
  background-color: #ffffff;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.bg-overlay-white > div {
  position: relative;
  z-index: 2;
}

@-webkit-keyframes scroll-down {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes scroll-down {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@-webkit-keyframes scroll-ver {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
@keyframes scroll-ver {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@-webkit-keyframes rotate1 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes rotate1 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes rotate2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes scale {
  0% {
    left: -800px;
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale {
  0% {
    left: -800px;
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes slideUp {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0% -1000%;
  }
}
@keyframes slideUp {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0% -1000%;
  }
}
@-webkit-keyframes ImgAnimate {
  0% {
    -webkit-transform: rotate(0) translate(-10px) rotate(0);
    transform: rotate(0) translate(-10px) rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg) translate(-10px) rotate(-360deg);
    transform: rotate(360deg) translate(-10px) rotate(-360deg);
  }
}
@keyframes ImgAnimate {
  0% {
    -webkit-transform: rotate(0) translate(-10px) rotate(0);
    transform: rotate(0) translate(-10px) rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg) translate(-10px) rotate(-360deg);
    transform: rotate(360deg) translate(-10px) rotate(-360deg);
  }
}
@-webkit-keyframes video {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(186, 17, 17, 0.7);
            box-shadow: 0 0 0 0 rgba(186, 17, 17, 0.7);
  }
  40% {
    -webkit-box-shadow: 0 0 0 50px rgba(186, 17, 17, 0);
            box-shadow: 0 0 0 50px rgba(186, 17, 17, 0);
  }
  80% {
    -webkit-box-shadow: 0 0 0 50px rgba(186, 17, 17, 0);
            box-shadow: 0 0 0 50px rgba(186, 17, 17, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 rgba(186, 17, 17, 0);
            box-shadow: 0 0 0 rgba(186, 17, 17, 0);
  }
}
@keyframes video {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(186, 17, 17, 0.7);
            box-shadow: 0 0 0 0 rgba(186, 17, 17, 0.7);
  }
  40% {
    -webkit-box-shadow: 0 0 0 50px rgba(186, 17, 17, 0);
            box-shadow: 0 0 0 50px rgba(186, 17, 17, 0);
  }
  80% {
    -webkit-box-shadow: 0 0 0 50px rgba(186, 17, 17, 0);
            box-shadow: 0 0 0 50px rgba(186, 17, 17, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 rgba(186, 17, 17, 0);
            box-shadow: 0 0 0 rgba(186, 17, 17, 0);
  }
}
@-webkit-keyframes horizontal-move {
  0% {
    -webkit-transform: rotateZ(5deg);
            transform: rotateZ(5deg);
  }
  50% {
    -webkit-transform: rotateZ(-5deg);
            transform: rotateZ(-5deg);
  }
  100% {
    -webkit-transform: rotateZ(5deg);
            transform: rotateZ(5deg);
  }
}
@keyframes horizontal-move {
  0% {
    -webkit-transform: rotateZ(5deg);
            transform: rotateZ(5deg);
  }
  50% {
    -webkit-transform: rotateZ(-5deg);
            transform: rotateZ(-5deg);
  }
  100% {
    -webkit-transform: rotateZ(5deg);
            transform: rotateZ(5deg);
  }
}
@-webkit-keyframes horizontal-move-two {
  0% {
    -webkit-transform: rotateZ(20deg);
            transform: rotateZ(20deg);
  }
  50% {
    -webkit-transform: rotateZ(-20deg);
            transform: rotateZ(-20deg);
  }
  100% {
    -webkit-transform: rotateZ(20deg);
            transform: rotateZ(20deg);
  }
}
@keyframes horizontal-move-two {
  0% {
    -webkit-transform: rotateZ(20deg);
            transform: rotateZ(20deg);
  }
  50% {
    -webkit-transform: rotateZ(-20deg);
            transform: rotateZ(-20deg);
  }
  100% {
    -webkit-transform: rotateZ(20deg);
            transform: rotateZ(20deg);
  }
}
@-webkit-keyframes slideUp {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0% -1000%;
  }
}
@keyframes slideUp {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0% -1000%;
  }
}
@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}
@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}
@-webkit-keyframes zoominoutsinglefeatured {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@keyframes zoominoutsinglefeatured {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@-webkit-keyframes bouncing-text {
  0% {
    -webkit-transform: translateX(10%);
  }
  100% {
    -webkit-transform: translateX(-10%);
  }
}
@keyframes bouncing-text {
  0% {
    -webkit-transform: translateX(10%);
    transform: translateX(10%);
  }
  100% {
    -webkit-transform: translateX(-10%);
    transform: translateX(-10%);
  }
}
@keyframes rotatebox {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes rotatebox {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes rev-rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@-webkit-keyframes rev-rotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-360deg);
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@-webkit-keyframes nama_utha {
  0% {
    bottom: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    bottom: 100%;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
@keyframes nama_utha {
  0% {
    bottom: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    bottom: 100%;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
@-webkit-keyframes utha_nama {
  0% {
    top: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    top: 100%;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@keyframes utha_nama {
  0% {
    top: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    top: 100%;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@-webkit-keyframes choose-hexagon-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes choose-hexagon-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes choose-hexagon-2 {
  0% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(540deg);
    transform: rotate(540deg);
  }
}
@keyframes choose-hexagon-2 {
  0% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(540deg);
    transform: rotate(540deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes building-move {
  0% {
    -webkit-transform: translateY(400px);
            transform: translateY(400px);
  }
  100% {
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes building-move {
  0% {
    -webkit-transform: translateY(400px);
            transform: translateY(400px);
  }
  100% {
    -webkit-transform: none;
            transform: none;
  }
}
@-webkit-keyframes highlighted-line {
  0% {
    stroke-dasharray: 0 1500;
  }
  100% {
    stroke-dasharray: 1500 1500;
  }
}
@keyframes highlighted-line {
  0% {
    stroke-dasharray: 0 1500;
  }
  100% {
    stroke-dasharray: 1500 1500;
  }
}
@-webkit-keyframes outer-ripple {
  0% {
    transform: scale(1);
    filter: alpha(opacity=50);
    opacity: 0.5;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-filter: alpha(opacity=50);
  }
  80% {
    transform: scale(2.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(2.5);
    -moz-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -o-transform: scale(2.5);
  }
  100% {
    transform: scale(3.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(3.5);
    -moz-transform: scale(3.5);
    -ms-transform: scale(3.5);
    -o-transform: scale(3.5);
  }
}
@keyframes outer-ripple {
  0% {
    transform: scale(1);
    filter: alpha(opacity=50);
    opacity: 0.5;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-filter: alpha(opacity=50);
  }
  80% {
    transform: scale(2.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(2.5);
    -moz-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -o-transform: scale(2.5);
  }
  100% {
    transform: scale(3.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(3.5);
    -moz-transform: scale(3.5);
    -ms-transform: scale(3.5);
    -o-transform: scale(3.5);
  }
}
@-webkit-keyframes inner-ripple {
  0% {
    transform: scale(1);
    filter: alpha(opacity=50);
    opacity: 0.5;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  30% {
    transform: scale(2);
    filter: alpha(opacity=50);
    opacity: 0.5;
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
  }
  100% {
    transform: scale(2.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(2.5);
    -moz-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -o-transform: scale(2.5);
  }
}
@keyframes inner-ripple {
  0% {
    transform: scale(1);
    filter: alpha(opacity=50);
    opacity: 0.5;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  30% {
    transform: scale(2);
    filter: alpha(opacity=50);
    opacity: 0.5;
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -ms-transform: scale(2);
    -o-transform: scale(2);
  }
  100% {
    transform: scale(2.5);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(2.5);
    -moz-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -o-transform: scale(2.5);
  }
}
/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
/*--------------------------------------------------------------
    [ ## Header ]
--------------------------------------------------------------*/
.custom-container {
  max-width: 1820px;
}

.custom-container-two {
  max-width: 1266px;
}

.row > * {
  position: relative;
}

@media (min-width: 1480px) {
  .col-xxl-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
@media (max-width: 575px) {
  .col-xs-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
}
@media only screen and (max-width: 575px) and (max-width: 340px) {
  .col-xs-6 {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .col-xxs-4 {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
@media only screen and (max-width: 575px) and (max-width: 319px) {
  .col-xxs-4 {
    width: 100%;
  }
}
::-moz-selection {
  background-color: #ba1111;
  color: #ffffff;
}
::selection {
  background-color: #ba1111;
  color: #ffffff;
}

/*-------------------------------------------------
    [ ## Header ]
*/
.header-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: transparent;
}

.header {
  background-color: transparent;
  width: 100%;
  z-index: 99;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
}

.header-section.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background: #ffffff;
  -webkit-box-shadow: 0px 10px 50px -10px rgba(10, 37, 64, 0.17);
          box-shadow: 0px 10px 50px -10px rgba(10, 37, 64, 0.17);
}
.header-section.header-fixed .header-bottom-area {
  padding: 10px 0;
}
.header-section.header-fixed .header-bottom-area .navbar-collapse .main-menu li a {
  color: #04072e;
}
.header-section.header-fixed .site-logo {
  display: none;
}
.header-section.header-fixed .site-logo.main-logo {
  display: none !important;
}
.header-section.header-fixed .site-logo.fixed-logo {
  display: block !important;
}
.header-section.header-fixed .header-action a {
  background-color: #04072e;
  color: #ffffff;
}

.header-bottom-area {
  position: relative;
  padding: 20px 0;
}
@media only screen and (max-width: 1199px) {
  .header-bottom-area {
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.02), 0 2px 35px 0 rgba(0, 0, 0, 0.04);
            box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.02), 0 2px 35px 0 rgba(0, 0, 0, 0.04);
  }
}
.header-bottom-area .navbar-expand-xl {
  background-color: transparent;
  padding: 0 !important;
}
@media (max-width: 1199px) {
  .header-bottom-area .navbar-collapse {
    background-color: #ffffff !important;
    padding: 0 10px !important;
  }
  .header-bottom-area .navbar-collapse .main-menu {
    padding: 15px 0;
  }
  .header-bottom-area .menu_has_children .sub-menu li {
    width: 100%;
  }
}
.header-bottom-area .navbar-collapse .main-menu li:last-child .sub-menu {
  left: auto;
  right: 0;
}
.header-bottom-area .navbar-collapse .main-menu li {
  position: relative;
  padding-right: 30px;
}
@media only screen and (max-width: 1199px) {
  .header-bottom-area .navbar-collapse .main-menu li {
    padding-right: 0;
  }
}
.header-bottom-area .navbar-collapse .main-menu li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.header-bottom-area .navbar-collapse .main-menu li:last-child a::after {
  display: none;
}
.header-bottom-area .navbar-collapse .main-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 150%;
}
.header-bottom-area .navbar-collapse .main-menu li:hover .toggle-bar .element {
  background-color: #ffffff !important;
}
.header-bottom-area .navbar-collapse .main-menu li.menu_has_children {
  position: relative;
}
.header-bottom-area .navbar-collapse .main-menu li.menu_has_children i {
  font-size: 14px;
  margin-left: 5px;
}
@media (max-width: 1199px) {
  .header-bottom-area .navbar-collapse .main-menu li.menu_has_children::before {
    top: 12px;
    right: 15px;
  }
}
.header-bottom-area .navbar-collapse .main-menu li a {
  position: relative;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header-bottom-area .navbar-collapse .main-menu li a::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header-bottom-area .navbar-collapse .main-menu li a.site-logo::before {
  display: none !important;
}
.header-bottom-area .navbar-collapse .main-menu li a:hover::before {
  width: 100%;
}
.header-bottom-area .header-section.header-fixed .navbar-collapse .main-menu li a {
  padding: 30px 18px 30px 0;
}
@media (max-width: 1220px) {
  .header-bottom-area .navbar-collapse .main-menu li {
    padding-right: 30px;
  }
}
@media (max-width: 1199px) {
  .header-bottom-area .navbar-collapse .main-menu li a {
    padding: 12px 0 !important;
    color: #04072e !important;
  }
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 200px;
  background-color: #151A24;
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.02), 0 2px 35px 0 rgba(0, 0, 0, 0.04);
          box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.02), 0 2px 35px 0 rgba(0, 0, 0, 0.04);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 9;
  margin-left: 0;
}
@media only screen and (max-width: 1199px) {
  .header-bottom-area .navbar-collapse .main-menu li .sub-menu {
    background-color: #ffffff;
    border-radius: 0;
    border: none;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    z-index: 99;
  }
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-right: 0;
  padding-right: 0;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1199px) {
  .header-bottom-area .navbar-collapse .main-menu li .sub-menu li {
    border-bottom: 1px solid #E2E2E2;
  }
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu li:last-child {
  border-bottom: 0px solid;
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu li:hover {
  background-color: #ba1111;
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu li:hover a {
  color: #ffffff;
  margin-left: 10px;
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu li a {
  color: #8a909a;
  width: 100%;
  padding: 10px 20px;
  font-size: 14px;
  display: block;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu li a::after {
  position: unset;
  content: none;
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu li a::before {
  display: none;
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu li .sub-menu {
  padding: 0;
  top: 0;
  left: 230px;
  border-radius: 0 5px 5px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 1199px) {
  .header-bottom-area .navbar-collapse .main-menu li .sub-menu li .sub-menu {
    border-radius: 0;
    display: none;
  }
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu li .sub-menu::before {
  display: none;
}
.header-bottom-area .navbar-collapse .main-menu li .sub-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.header-section.header-fixed .navbar-collapse .main-menu li .sub-menu li a {
  padding: 8px 20px;
}

@media (max-width: 1199px) {
  .header-bottom-area .navbar-collapse .main-menu li .sub-menu {
    position: initial;
    opacity: 1;
    visibility: visible;
    -webkit-transition: none;
    transition: none;
    display: none;
  }
}
.navbar-collapse .main-menu li:last-child .sub-menu {
  left: auto;
  right: 0;
}

.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.site-logo {
  max-width: 150px;
}

.header-action-area {
  margin-left: 80px;
}
@media only screen and (max-width: 1199px) {
  .header-action-area {
    display: none;
  }
}

.header-action a {
  background: #ffffff;
  border: none;
  font-weight: 600;
  font-size: 14px;
  color: #04072e;
  padding: 10px 20px;
}
.header-action a img {
  width: 15px;
  margin-right: 5px;
}
.header-action a::before {
  display: none;
}
.header-action a:hover, .header-action a.focus {
  background: #04072e;
  color: #ffffff;
  border: none;
}
@media only screen and (max-width: 1199px) {
  .header-action {
    display: none;
  }
}
.header-action.two a {
  border-radius: 6px;
  padding: 13px 20px;
}

.navbar-toggler {
  padding: 0;
}

.navbar-toggler:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.navbar-toggler span {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #04072e;
  font-size: 24px;
}

/*--------------------------------------------------------------
    [ ## Introduction ]
--------------------------------------------------------------*/
.mbYTP_wrapper {
  position: absolute !important;
}

.banner-section {
  position: relative;
  display: block !important;
  overflow: hidden;
}
.banner-section::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 92.5%;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #010C1A), to(#010c1aba));
  background-image: linear-gradient(180deg, #010C1A 20%, #010c1aba 100%);
  opacity: 0.7;
}
.banner-section .row {
  min-height: calc(100vh + 80px);
}
.banner-section .banner-content {
  position: relative;
  z-index: 9;
}
.banner-section .banner-content .logo-text {
  position: absolute;
  left: 18%;
  font-size: 200px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  font-family: "Oswald", sans-serif;
  top: 38%;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}
.banner-section .banner-content .title {
  margin-bottom: 25px;
  line-height: 1.5em;
  font-weight: 600;
  color: #ffffff;
}
@media only screen and (max-width: 991px) {
  .banner-section .banner-content .title {
    margin-bottom: 10px;
  }
}
.banner-section .banner-content .title span {
  font-style: italic;
  font-weight: 500;
  font-family: Gambetta;
  -webkit-text-fill-color: #fff;
}
.banner-section .banner-content .sub-title {
  color: #ba1111;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 3px;
  font-family: "Oswald", sans-serif;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .banner-section .banner-content .sub-title {
    font-size: 16px;
  }
}
.banner-section .banner-content p {
  color: #ffffff;
  font-size: 15px;
  width: 80%;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .banner-section .banner-content p {
    width: 100%;
  }
}
.banner-section .banner-content .banner-btn {
  margin-top: 50px;
}
.banner-section .banner-content .banner-btn a {
  background-color: #ffffff;
  color: #ba1111;
  margin: 0;
}
.banner-section .banner-content .banner-btn a:hover {
  -webkit-transform: none;
          transform: none;
  background-image: -webkit-gradient(linear, left top, right top, from(red), to(#a50101));
  background-image: linear-gradient(to right, red, #a50101);
  -webkit-animation: slidebg 2s linear infinite;
          animation: slidebg 2s linear infinite;
  color: #ffffff;
}
.banner-section .banner-content .banner-btn a i {
  font-size: 18px;
  position: relative;
  top: 2px;
}

@-webkit-keyframes slidebg {
  to {
    background-position: 20vw;
  }
}

@keyframes slidebg {
  to {
    background-position: 20vw;
  }
}
.video-banner-area .video-banner-content-wrap {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/*--------------------------------------------------------------
    [ ## Footer ]
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Footer-block
--------------------------------------------------------------*/
.footer-section {
  margin-bottom: 50px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff2f2), to(#FFFFFF));
  background-image: linear-gradient(180deg, #fff2f2 0%, #FFFFFF 100%);
}

.footer-content {
  text-align: center;
}
.footer-content .title {
  margin-bottom: 35px;
  font-size: 35px;
  line-height: 45px;
}
@media only screen and (max-width: 991px) {
  .footer-content .title {
    font-size: 24px;
    line-height: 35px;
  }
}
.footer-content p {
  width: 80%;
  margin: 0 auto;
}
.footer-content .footer-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: -10px;
  margin-top: 40px;
}
.footer-content .footer-btn a {
  margin: 0;
  margin: 10px;
  background-color: #04072e;
}
.footer-content .footer-btn a.active {
  background-color: transparent;
  border: 1px solid #04072e;
  color: #04072e;
}
.footer-content .footer-btn a:hover {
  background-color: #ba1111;
}

/*--------------------------------------------------------------
# Pages
--------------------------------------------------------------*/
/*--------------------------------------------------------------
    [ ## team ]
--------------------------------------------------------------*/
/*--------------------------------------------------------------
    [ ## Testimonial ]
--------------------------------------------------------------*/
.client-section {
  position: relative;
}
.client-section .client-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.client-item {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 10px 50px -10px rgba(10, 37, 64, 0.17);
          box-shadow: 0px 10px 50px -10px rgba(10, 37, 64, 0.17);
  padding: 25px;
  border-radius: 10px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  min-height: 200px;
}
.client-item:hover {
  -webkit-transform: translate3d(0, -5px, 0);
          transform: translate3d(0, -5px, 0);
}
.client-item .client-item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
}
.client-item .client-item-header .title {
  margin-bottom: 5px;
  font-size: 15px;
}
.client-item .client-item-header .sub-title {
  font-size: 14px;
  font-weight: 500;
}
.client-item .client-item-header .ratings i {
  font-size: 14px;
  color: #FFCE00;
}
.client-item p {
  line-height: 1.6em;
}

/*--------------------------------------------------------------
    [ ## Sections ]
--------------------------------------------------------------*/
/*--------------------------------------------------------------
    [ ## Sections ]
--------------------------------------------------------------*/
/*-------------------------------------------------
    [ ### platform block ]
*/
.platform-header-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.platform-header-area .section-header {
  width: 45%;
}
@media only screen and (max-width: 1199px) {
  .platform-header-area .section-header {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .platform-header-area {
    display: block;
  }
}
@media only screen and (max-width: 1199px) {
  .platform-header-area .nav-tabs {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.platform-area {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff2f2), to(#FFFFFF));
  background-image: linear-gradient(180deg, #fff2f2 0%, #FFFFFF 100%);
  border-radius: 12px;
  padding: 60px;
}
@media only screen and (max-width: 991px) {
  .platform-area {
    padding: 25px;
  }
}
@media only screen and (max-width: 575px) {
  .platform-area {
    padding: 15px;
  }
}

.vid-card {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  overflow: hidden;
}

.card-bg-vid {
  position: relative;
  margin: 0 auto;
  width: 250px;
  height: 250px;
  overflow: hidden;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
}

.modest-vid-embed {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
}

.modest-vid-embed--auto:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: transparent;
}

.modest-vid-embed__wrapper {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  padding-bottom: calc(56.25% + 200px);
  top: -100px;
  z-index: 9;
}

.modest-vid-embed__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.platform-feature-list {
  text-align: center;
  margin-top: 40px;
}
@media only screen and (max-width: 400px) {
  .platform-feature-list {
    text-align: left;
  }
}
.platform-feature-list li {
  position: relative;
  display: inline-block;
  padding-left: 25px;
  font-size: 14px;
  font-weight: 600;
}
@media only screen and (max-width: 400px) {
  .platform-feature-list li {
    display: block;
  }
}
.platform-feature-list li::before {
  position: absolute;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  top: 3px;
  left: 0;
  width: 16px;
  height: 16px;
  line-height: 16px;
  background-color: #02AAB0;
  text-align: center;
  font-size: 10px;
  border-radius: 50%;
  color: #ffffff;
}
.platform-feature-list li + li {
  margin-left: 25px;
}
@media only screen and (max-width: 767px) {
  .platform-feature-list li + li {
    margin: 10px;
  }
}
@media only screen and (max-width: 400px) {
  .platform-feature-list li + li {
    margin-left: 0;
  }
}

/*-------------------------------------------------
    [ ### template block ]
*/
.template-item {
  padding: 15px;
  -webkit-box-shadow: 0px 10px 50px -10px rgba(10, 37, 64, 0.17);
          box-shadow: 0px 10px 50px -10px rgba(10, 37, 64, 0.17);
  border-radius: 10px;
}
.template-item:hover .template-thumb img {
  -webkit-transform: translate3d(0, -5px, 0);
          transform: translate3d(0, -5px, 0);
}

.template-thumb {
  position: relative;
}
.template-thumb .new-badge {
  position: absolute;
  top: 28%;
  left: 20px;
  background-color: #ba1111;
  color: #ffffff;
  border-radius: 50px;
  padding: 1px 15px;
  font-weight: 500;
  font-size: 12px;
}
.template-thumb img {
  border-radius: 6px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.template-content {
  text-align: center;
  margin-top: 20px;
}
.template-content .title {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.template-content .title:hover {
  color: #ba1111;
}

/*-------------------------------------------------
    [ ### pages block ]
*/
.pages-slider-wrapper {
  margin: -100px 0;
}

.pages-slider {
  overflow: hidden;
  padding: 100px 0;
}

.pages-item {
  -webkit-box-shadow: rgba(17, 12, 46, 0.15) 0 48px 100px 0;
          box-shadow: rgba(17, 12, 46, 0.15) 0 48px 100px 0;
  border-radius: 10px;
}
.pages-item img {
  border-radius: 10px;
}

/*-------------------------------------------------
    [ ### build block ]
*/
.build-area {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff2f2), to(#FFFFFF));
  background-image: linear-gradient(180deg, #fff2f2 0%, #FFFFFF 100%);
  border-radius: 12px;
  padding: 80px;
}
@media only screen and (max-width: 991px) {
  .build-area {
    padding: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .build-area {
    padding: 20px;
  }
}

.build-content .sub-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
  color: #DB3157;
}
.build-content .title {
  margin-bottom: 15px;
}
.build-content p {
  color: #56626F;
}
.build-content p span {
  color: #04072e;
}
.build-content .build-list {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.build-content .build-list li {
  position: relative;
  color: #04072e;
  padding-left: 25px;
  font-size: 14px;
  font-weight: 600;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  margin-top: 15px;
}
.build-content .build-list li::before {
  position: absolute;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  top: 1px;
  left: 0;
  color: #DB3157;
}

.build-thumb {
  position: relative;
}
.build-thumb img {
  border-radius: 12px;
}
.build-thumb .build-thumb-element-one {
  position: absolute;
  bottom: 0;
  right: -60px;
  -webkit-box-shadow: 0px 20px 60px -10px rgba(16, 45, 71, 0.27);
          box-shadow: 0px 20px 60px -10px rgba(16, 45, 71, 0.27);
  border-radius: 8px;
}
@media only screen and (max-width: 991px) {
  .build-thumb .build-thumb-element-one {
    position: unset;
  }
}
.build-thumb .build-thumb-element-two {
  position: absolute;
  bottom: 200px;
  right: -60px;
  -webkit-box-shadow: 0px 20px 60px -10px rgba(16, 45, 71, 0.27);
          box-shadow: 0px 20px 60px -10px rgba(16, 45, 71, 0.27);
  width: 235px;
}
@media only screen and (max-width: 991px) {
  .build-thumb .build-thumb-element-two {
    display: none;
  }
}
.build-thumb .build-icon {
  position: absolute;
  bottom: 35%;
  right: 35%;
  width: 60px;
  height: 60px;
  line-height: 60px;
  display: inline-block;
  text-align: center;
  background-color: #DB3157;
  border-radius: 50%;
  color: #ffffff;
  font-size: 20px;
  -webkit-animation: scroll-down 2s linear infinite;
          animation: scroll-down 2s linear infinite;
}
@media only screen and (max-width: 991px) {
  .build-thumb .build-icon {
    display: none;
  }
}
.build-thumb .build-icon svg {
  width: 1em;
  height: 1em;
  position: relative;
}

/*-------------------------------------------------
    [ ### collection block ]
*/
.collection-header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .collection-header-wrapper {
    display: block;
  }
}
.collection-header-wrapper .left {
  width: 48%;
}
@media only screen and (max-width: 767px) {
  .collection-header-wrapper .left {
    width: 100%;
  }
}
.collection-header-wrapper .left .title span {
  background-color: linear-gradient(90deg, #04072e, #ff0000);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.collection-header-wrapper .left .collection-element {
  text-align: right;
  margin-top: 30px;
}
.collection-header-wrapper .left .collection-element img {
  width: 327px;
}
.collection-header-wrapper .right {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .collection-header-wrapper .right {
    width: 100%;
  }
}
.collection-header-wrapper .right p {
  width: 80%;
}
.collection-header-wrapper .right p span {
  color: #ff0000;
  font-weight: 600;
}

.btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
}
.btn-wrapper .btn--base {
  margin: 0;
  margin-right: 30px;
  color: #ffffff;
}
.btn-wrapper a {
  color: #04072e;
  font-weight: 600;
  font-size: 14px;
}

.collection-thumb {
  padding: 150px 0;
  position: relative;
  z-index: 2;
  text-align: center;
  background-attachment: fixed;
}
.collection-thumb::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #04072e;
  opacity: 0.8;
  z-index: -1;
}
.collection-thumb .title {
  color: #ffffff;
  font-size: 100px;
  text-transform: uppercase;
}
@media only screen and (max-width: 991px) {
  .collection-thumb .title {
    font-size: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .collection-thumb .title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .collection-thumb .title {
    font-size: 30px;
  }
}
.collection-thumb .title span {
  font-size: 200px;
  line-height: 200px;
  color: transparent;
  -webkit-text-stroke: 3px #ffffff;
  display: block;
}
@media only screen and (max-width: 991px) {
  .collection-thumb .title span {
    font-size: 140px;
    line-height: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .collection-thumb .title span {
    font-size: 100px;
    line-height: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .collection-thumb .title span {
    font-size: 80px;
    line-height: 150px;
  }
}

/*-------------------------------------------------
    [ ### elements block ]
*/
.elements-item {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 20px 20px;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.elements-item:hover {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 10px 50px -10px rgba(10, 37, 64, 0.17);
          box-shadow: 0px 10px 50px -10px rgba(10, 37, 64, 0.17);
  border: 1px solid transparent;
}
.elements-item .elements-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.elements-item .elements-icon img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.elements-item .elements-content .title {
  font-size: 16px;
  font-weight: 500;
}

/*-------------------------------------------------
    [ ### theme block ]
*/
.theme-section {
  background-color: #0D1017;
  margin-bottom: 120px;
  overflow: hidden;
}

.theme-header {
  position: sticky;
  top: 0;
  margin-bottom: 80px;
}
@media only screen and (max-width: 991px) {
  .theme-header {
    margin-bottom: 60px;
  }
}
.theme-header .sub-title {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}
.theme-header .title {
  font-size: 60px;
  letter-spacing: -1px;
  color: #ffffff;
  line-height: 1.2em;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  .theme-header .title {
    font-size: 40px;
    margin-bottom: 15px;
  }
}
.theme-header p {
  width: 50%;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .theme-header p {
    width: 100%;
  }
}

.theme-wrapper {
  background-color: #0D1017;
  position: relative;
  z-index: 9;
}

.theme-thumb {
  position: relative;
}
.theme-thumb::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0D1017;
  opacity: 0.8;
}

.theme-content {
  padding-top: 30px;
}
.theme-content p {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.4em;
}
@media only screen and (max-width: 991px) {
  .theme-content p {
    font-size: 18px;
  }
}
.theme-content p span {
  color: #ffffff;
}

.theme-widget-item-area {
  padding-top: 120px;
}
@media only screen and (max-width: 991px) {
  .theme-widget-item-area {
    padding-top: 60px;
  }
}

.theme-widget-item {
  background-color: #23252B;
  padding: 40px;
  border-radius: 16px;
}
@media only screen and (max-width: 991px) {
  .theme-widget-item {
    padding: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .theme-widget-item {
    padding: 20px;
  }
}

.theme-widget-thumb {
  background-image: linear-gradient(356deg, #ffeded 0%, #ffffff00 100%);
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}
.theme-widget-thumb img {
  width: 78%;
}

.theme-widget-content {
  background-color: #23252B;
  padding: 62px 40px;
  border-radius: 10px;
}
@media only screen and (max-width: 991px) {
  .theme-widget-content {
    padding: 30px;
  }
}
.theme-widget-content .sub-title {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}
.theme-widget-content .title {
  color: #8a909a;
  font-size: 30px;
  margin-bottom: 20px;
  line-height: 1.6em;
}
@media only screen and (max-width: 991px) {
  .theme-widget-content .title {
    font-size: 24px;
  }
}
.theme-widget-content .title span {
  color: #ffffff;
}
.theme-widget-content p span {
  color: #ffffff;
}

.theme-widget-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}
.theme-widget-footer .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33%;
          flex: 0 0 33%;
}
@media only screen and (max-width: 575px) {
  .theme-widget-footer .item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    margin: 10px;
  }
}
.theme-widget-footer .item:nth-child(3n-2) .icon {
  color: #AE589B;
}
.theme-widget-footer .item:nth-child(3n-3) .icon {
  color: #623AA2;
}
.theme-widget-footer .item .icon {
  font-size: 28px;
  margin-bottom: 15px;
  color: #F97794;
}
.theme-widget-footer .item .content span {
  color: #ffffff;
}

.theme-feature-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.theme-feature-list li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  color: #ffffff;
  position: relative;
  padding-left: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 4px;
}
@media only screen and (max-width: 575px) {
  .theme-feature-list li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.theme-feature-list li:nth-child(even)::before {
  color: #AE589B;
}
.theme-feature-list li::before {
  position: absolute;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  top: 1px;
  left: 0;
  border-radius: 50%;
  color: #F97794;
}

/*-------------------------------------------------
    [ ### control block ]
*/
.control-section {
  overflow: hidden;
}

.control-content .sub-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 30px;
  color: #ba1111;
}
.control-content .title {
  margin-bottom: 25px;
  position: relative;
  line-height: 1.2em;
  margin-top: -8px;
}
@media only screen and (max-width: 991px) {
  .control-content .title {
    margin-top: -5px;
  }
}
.control-content p {
  margin-top: 20px;
}
.control-content p span {
  color: #0a2540;
  font-weight: 600;
}
.control-content .line-text {
  position: relative;
  z-index: 2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.control-content .line-text svg {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 50%;
  width: 106%;
  height: 100%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  overflow: visible;
  z-index: -1;
}
.control-content .line-text svg path {
  stroke: #ba111150;
  stroke-width: 40;
  stroke-dasharray: 1500;
  -webkit-animation: highlighted-line 2s cubic-bezier(0.29, 1.11, 0.74, 1.04) forwards;
          animation: highlighted-line 2s cubic-bezier(0.29, 1.11, 0.74, 1.04) forwards;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  fill: none;
}
.control-content .control-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.control-content .control-list li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 575px) {
  .control-content .control-list li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.control-content .control-list li .control-list-icon {
  width: 45px;
  height: 45px;
  line-height: 45px;
  display: inline-block;
  text-align: center;
  background-color: #db0b1812;
  border-radius: 50%;
}
.control-content .control-list li .control-list-icon svg {
  width: 18px;
}
.control-content .control-list li .control-list-content {
  padding-left: 15px;
}
.control-content .control-list li .control-list-content span {
  color: #04072e;
  font-weight: 600;
}

.control-thumb {
  position: relative;
  text-align: right;
}
.control-thumb img {
  width: 560px;
  border-radius: 8px 8px 8px 8px;
}
.control-thumb .control-inner-thumb {
  position: absolute;
  top: -50px;
  right: -50px;
}
@media only screen and (max-width: 991px) {
  .control-thumb .control-inner-thumb {
    display: none;
  }
}
.control-thumb .control-inner-thumb img {
  width: 250px;
  border-radius: 8px 8px 8px 8px;
  -webkit-box-shadow: 0px 20px 60px -10px rgba(16, 45, 71, 0.27);
          box-shadow: 0px 20px 60px -10px rgba(16, 45, 71, 0.27);
}
.control-thumb .control-icon {
  position: absolute;
  top: -120px;
  right: -60px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  text-align: center;
  background-color: #EFAD8F;
  border-radius: 8px 8px 8px 8px;
  -webkit-box-shadow: 0px 20px 60px -10px rgba(16, 45, 71, 0.27);
          box-shadow: 0px 20px 60px -10px rgba(16, 45, 71, 0.27);
  color: #04072e;
  font-size: 30px;
}

/*-------------------------------------------------
    [ ### service block ]
*/
.service-area {
  padding-top: 80px;
}

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

.service-icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  display: inline-block;
  text-align: center;
  font-size: 40px;
  border-radius: 8px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.04);
  margin-bottom: 20px;
  color: #04072e;
}
.service-icon svg {
  width: 30px;
}

.service-content .title {
  margin-bottom: 15px;
}

/*-------------------------------------------------
    [ ### shop block ]
*/
.shop-section {
  overflow: hidden;
}

.shop-content {
  width: 70%;
}
@media only screen and (max-width: 991px) {
  .shop-content {
    width: 100%;
  }
}
.shop-content .sub-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 30px;
  color: #ba1111;
}
.shop-content .title {
  margin-bottom: 25px;
  position: relative;
  line-height: 1.2em;
  margin-top: -8px;
}
@media only screen and (max-width: 991px) {
  .shop-content .title {
    margin-top: -5px;
  }
}
.shop-content p {
  margin-top: 20px;
}
.shop-content p span {
  color: #0a2540;
  font-weight: 600;
}
.shop-content .line-text {
  position: relative;
  z-index: 2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.shop-content .line-text svg {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 50%;
  width: 106%;
  height: 100%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  overflow: visible;
  z-index: -1;
}
.shop-content .line-text svg path {
  stroke: #ba111150;
  stroke-width: 40;
  stroke-dasharray: 1500;
  -webkit-animation: highlighted-line 2s cubic-bezier(0.29, 1.11, 0.74, 1.04) forwards;
          animation: highlighted-line 2s cubic-bezier(0.29, 1.11, 0.74, 1.04) forwards;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  fill: none;
}

.shop-thumb {
  position: relative;
}
.shop-thumb img {
  border-radius: 8px 8px 8px 8px;
  -webkit-box-shadow: 0px 20px 30px -10px rgba(35, 35, 42, 0.06);
          box-shadow: 0px 20px 30px -10px rgba(35, 35, 42, 0.06);
}
.shop-thumb .shop-element-one {
  position: absolute;
  bottom: -30px;
  right: -60px;
}
.shop-thumb .shop-element-one img {
  width: 333px;
  border-radius: 8px 8px 8px 8px;
  -webkit-box-shadow: 0px 20px 30px -10px rgba(35, 35, 42, 0.18);
          box-shadow: 0px 20px 30px -10px rgba(35, 35, 42, 0.18);
}
.shop-thumb .shop-element-two {
  position: absolute;
  bottom: -100px;
  left: -120px;
}
.shop-thumb .shop-element-two img {
  width: 293px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.shop-thumb .shop-element-three {
  position: absolute;
  top: -40px;
  right: -40px;
  -webkit-animation: scroll-down 2s linear infinite;
          animation: scroll-down 2s linear infinite;
}
.shop-thumb .shop-element-three img {
  width: 75px;
  border-radius: 80px 80px 80px 80px;
  -webkit-box-shadow: 0px 20px 30px -10px rgba(35, 35, 42, 0.18);
          box-shadow: 0px 20px 30px -10px rgba(35, 35, 42, 0.18);
}

/*-------------------------------------------------
    [ ### service block ]
*/
.service-section {
  background-color: #eef4f97d;
}

.service-btn a {
  font-size: 14px;
  font-weight: 600;
  color: #ba1111;
}

/*-------------------------------------------------
    [ ### tutorial block ]
*/
.tutorial-content .title {
  margin-bottom: 25px;
}
.tutorial-content .tutorial-btn {
  margin: -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}
@media only screen and (max-width: 440px) {
  .tutorial-content .tutorial-btn {
    display: block;
    text-align: center;
    margin-top: 40px;
  }
}
.tutorial-content .tutorial-btn a {
  margin: 10px;
  padding: 15px 30px;
  text-transform: uppercase;
}
@media only screen and (max-width: 991px) {
  .tutorial-content .tutorial-btn a {
    padding: 10px 20px;
    width: auto;
  }
}
.tutorial-content .tutorial-btn a.red {
  background-color: #ba1111;
}
.tutorial-content .tutorial-btn a i {
  font-size: 24px;
  position: relative;
  top: 3px;
}

.tutorial-thumb {
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-box-shadow: rgba(17, 12, 46, 0.15) 0 48px 100px 0;
          box-shadow: rgba(17, 12, 46, 0.15) 0 48px 100px 0;
  overflow: hidden;
  margin-top: 40px;
}

/*-------------------------------------------------
    [ ### bdt-navbar block ]
*/
.bdt-position-z-index {
  z-index: 99;
}

.bdt-position-bottom-center {
  bottom: 0;
}

.bdt-position-top-center, .bdt-position-bottom-center {
  left: calc(50% - 0px);
  --bdt-position-translate-x: -50%;
  -webkit-transform: translate(var(--bdt-position-translate-x), 0);
          transform: translate(var(--bdt-position-translate-x), 0);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

[class*=bdt-position-top], [class*=bdt-position-bottom], [class*=bdt-position-left], [class*=bdt-position-right], [class*=bdt-position-center] {
  position: fixed !important;
  max-width: calc(100% - (0px * 2));
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.bdt-navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.bdt-scrollnav-fixed-yes .bdt-scrollnav {
  position: fixed !important;
}
@media (max-width: 767px) {
  .bdt-scrollnav-fixed-yes .bdt-scrollnav {
    display: none;
  }
}

.bdt-scrollnav-fixed-yes .bdt-scrollnav [class*=bdt-navbar] {
  margin: 0;
}

.bdt-scrollnav-fixed-yes .bdt-scrollnav [class*=bdt-navbar] {
  margin: 15px;
}

.bdt-navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  background: #ffffff;
  border-radius: 50px;
  -webkit-box-shadow: 0 10px 35px -3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 35px -3px rgba(0, 0, 0, 0.1);
  list-style: none;
}
.bdt-navbar-nav li {
  margin: 5px 5px 5px 5px;
}
.bdt-navbar-nav li a {
  background-color: #ffffff;
  color: #04072e;
  border-radius: 50px 50px 50px 50px;
  padding: 0px 18px 1px 18px;
  font-size: 12px;
  line-height: 0.1em;
  min-height: 32px;
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.25em;
     -moz-column-gap: 0.25em;
          column-gap: 0.25em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 600;
  text-decoration: none;
}
.bdt-navbar-nav li a.active {
  background-color: #04072e !important;
  color: #ffffff !important;
  border-radius: 50px 50px 50px 50px;
}

/*--------------------------------------------------------------
    [ ## Blog ]
--------------------------------------------------------------*/
/*-------------------------------------------------
    [ ### blog block ]
*/
.blog-section {
  background-color: #F7FAFB;
}

.blog-slider-wrapper {
  margin: -100px 0;
}

.blog-slider {
  overflow: hidden;
  padding: 100px 0;
}

.blog-item {
  -webkit-box-shadow: rgba(17, 12, 46, 0.15) 0 48px 100px 0;
          box-shadow: rgba(17, 12, 46, 0.15) 0 48px 100px 0;
  border-radius: 10px;
}
.blog-item img {
  border-radius: 10px;
}