/*======================
   01. Theme Base CSS
=========================*/
html,
body {
  width: 100%;
  height: 100%;
}

body {
  position: relative;
  font-family: "Open Sans", sans-serif;
  color: #535150;
  font-size: 16px;
  letter-spacing: 0.26px;
  font-weight: 400;
  background: #F5F5F5;
  height: unset;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

section {
  overflow: hidden;
}

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

.container-fluid {
  padding: 0px;
  height: 100%;
}

* {
  box-sizing: border-box;
}

p, tr td {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.26px;
  line-height: 24px;
  color: #535150;
  margin: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  color: #002A55;
  font-size: 28px;
  font-weight: 500;
}

a {
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  display: block;
  margin: 0px;
  color: #535150;
  font-weight: 500;
  text-transform: capitalize;
}

a:hover {
  text-decoration: none;
}

a:active,
a:hover {
  outline: 0 none;
  color: none !important;
}

button {
  cursor: pointer;
  background: transparent;
  border: 0px;
  outline: none;
}

button:focus {
  outline: none;
  box-shadow: none;
}

section {
  position: relative;
}

dialog {
  margin: 0px;
  border: 0px;
  padding: 0px;
  position: relative;
}

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

li {
  display: inline-block;
}

.section_title h2 {
  text-align: center;
  display: block;
  font-size: 38px;
  line-height: 52px;
  font-weight: 600;
  margin-bottom: 0;
}

.section_title p {
  font-weight: 500;
  font-size: 22px;
}

.section_title span {
  color: #FBC740;
}

.o_zero {
  opacity: 0;
}

.d_none {
  display: none;
}

.color_one {
  color: #17B0C3;
}

.bold_p {
  font-weight: 700;
}

.section_title {
  font-size: 40px;
  text-align: center;
  line-height: 51px;
}
.section_title span {
  color: #B91826;
  font-weight: 700;
}

.container {
  max-width: 1140px;
  width: 100%;
  margin: 0px auto;
  padding: 0px 20px;
}

.container_sm {
  margin: 0px auto;
  max-width: 991px;
  width: 100%;
}

main {
  position: relative;
}
main::before {
  position: absolute;
  content: "";
  max-width: 1140px;
  width: 100%;
  height: 100%;
  background: #F5F5F5;
  opacity: 0.8;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

header {
  position: absolute;
  top: 0;
  z-index: 99;
  width: 100%;
}
header .top-nav {
  background: rgba(0, 42, 85, 0.5);
}
header .top-nav nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
header .top-nav nav .logo a {
  height: 35px;
  display: inline-block;
}
header .top-nav nav .logo a img {
  height: 100%;
  object-fit: cover;
}
header .top-nav.sticky {
  position: fixed;
  top: -60px;
  left: 0;
  width: 100%;
  background: rgba(0, 42, 85, 0.7);
  animation: goDown 0.5s ease-in-out forwards;
}
header .top-nav.sticky .menu > li a {
  padding: 28px 0px;
}
@keyframes goDown {
  0% {
    top: -60px;
  }
  100% {
    transform: translateY(60px);
  }
}
header .menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
header .menu > li {
  margin: 0 1rem;
}
header .menu > li a {
  color: rgb(255, 255, 255);
  font-size: 14px;
  position: relative;
  transition: all 0.2s ease-in-out;
  padding: 36px 0px;
}
header .menu > li a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  top: 0;
  left: 50%;
  background: #ECB72D;
  transform: translate(-50%, 0) scaleX(0);
  transition: all 0.2s ease-in-out;
}
header .menu > li a:hover, header .menu > li a.active {
  color: #ECB72D;
}
header .menu > li a:hover::before, header .menu > li a.active::before {
  transform: translate(-50%, 0) scaleX(1);
  transition: all 0.2s ease-in-out;
}
header .menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header #menu-toggle {
  display: none;
}
header .menu-button,
header .menu-button::before,
header .menu-button::after {
  display: block;
  background-color: #fff;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}
header .menu-button::before {
  content: "";
  margin-top: -8px;
}
header .menu-button::after {
  content: "";
  margin-top: 8px;
}
header #menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}
header #menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}
header #menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

figure.banner {
  height: 600px;
  margin: 0px;
}
figure.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.cheap_domain {
  padding: 50px 0px;
}
.cheap_domain .packages_link {
  display: block;
  text-align: right;
  margin-bottom: 10px;
}
.cheap_domain .packages_link a {
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  text-decoration: underline;
}
.cheap_domain .packages_link a i {
  margin-left: 5px;
  position: relative;
  left: 0;
  transition: all 0.2s ease-in-out;
}
.cheap_domain .packages_link a:hover i {
  left: 5px;
  transition: all 0.2s ease-in-out;
}
.cheap_domain .section_title {
  margin-bottom: 75px;
}

dialog.yearly_box {
  position: relative;
  padding: 0px;
  width: 100%;
  margin: 0px auto 50px;
  background: radial-gradient(110% 100% at 50% 0, #f5f5f5 20%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
  filter: drop-shadow(0px -6px 40px rgba(76, 79, 157, 0.16));
  display: inline-block;
  border: 0px;
}
dialog.yearly_box .price_year {
  width: 555px;
  margin: 0px auto;
  background: #F26B32;
  border-radius: 0px 0px 40px 40px;
  position: relative;
}
dialog.yearly_box .price_year::before, dialog.yearly_box .price_year::after {
  content: "";
  position: absolute;
  bottom: 100%;
  width: 20px;
  height: 20px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  background: #B4552D;
  z-index: 2;
}
dialog.yearly_box .price_year:before {
  right: 100%;
}
dialog.yearly_box .price_year::after {
  left: 100%;
}
dialog.yearly_box .price_year .dialog_area {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  position: relative;
  padding-bottom: 20px;
}
dialog.yearly_box .price_year .dialog_area::before {
  position: absolute;
  content: "";
  top: -20px;
  height: 20px;
  width: calc(100% + 20px);
  left: -10px;
  background: #F26B32;
}
dialog.yearly_box .price_year h2, dialog.yearly_box .price_year h3 {
  color: rgb(255, 255, 255);
  font-family: "Open Sans", sans-serif;
  margin: 0px;
}
dialog.yearly_box .price_year h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 800;
}
dialog.yearly_box .price_year h2 {
  font-weight: 300;
  font-size: 64px;
  line-height: 100px;
}

summary.price_detail {
  text-align: center;
  width: 70%;
  margin: 0px auto 80px;
}

.cheaper_side {
  display: flex;
  align-items: center;
  width: 80%;
  margin: 0px auto;
}
.cheaper_side .section_title {
  width: 40%;
  text-align: right;
  display: inline-block;
  margin: 0px;
  flex: 1;
}
.cheaper_side aside {
  width: 60%;
  text-align: left;
  margin-left: 120px;
  display: inline-block;
}
.cheaper_side aside p {
  line-height: 26px;
}

.domain_header h3 {
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  margin-bottom: 20px;
}

.domain_name {
  padding: 50px 0px;
}
.domain_name .domain_header h3 {
  margin-bottom: 35px;
}
.domain_name .domain_area {
  display: grid;
  grid-template: auto/auto auto auto;
  grid-gap: 25px;
}
.domain_name .domain_area dialog {
  flex: 1;
  box-shadow: 0px 1px 10px 0px rgba(45, 19, 106, 0.1);
  background: transparent;
  display: block;
  height: auto;
  text-align: center;
  padding: 40px 30px 35px;
}
.domain_name .domain_area dialog h4 {
  font-family: "Open Sans", sans-serif;
  color: #535150;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 20px;
}
.domain_name .domain_area dialog p {
  font-size: 14px;
}

.container_sm {
  margin: 0px auto;
  max-width: 991px;
  width: 100%;
}

.domain_ext {
  padding: 50px 0px;
}
.domain_ext .domain_header, .domain_ext .ext_detail {
  max-width: 767px;
  text-align: center;
  margin: 0px auto;
}
.domain_ext .ext_detail {
  margin-top: 50px;
}

.ext_box {
  display: grid;
  grid-template: auto/auto auto;
  grid-gap: 30px;
  margin-top: 45px;
}
.ext_box .box_area {
  box-shadow: 0px 1px 10px 0px rgba(45, 19, 106, 0.1);
  padding: 50px 40px;
  text-align: center;
}
.ext_box .box_area h5 {
  font-family: "Open Sans", sans-serif;
  color: #535150;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  margin-bottom: 20px;
}
.ext_box .box_area .ext_name {
  display: flex;
  justify-content: center;
  margin: 20px 0px;
}
.ext_box .box_area .ext_name span {
  font-size: 16px;
  margin-right: 30px;
  line-height: 32px;
}
.ext_box .box_area .ext_name p {
  font-size: 24px;
  line-height: 32px;
  padding: 0px;
  margin-bottom: 0;
}
.ext_box .box_area p {
  padding: 0px 20px;
}

.wordpress_domain {
  padding: 70px 0px;
}
.wordpress_domain .search_domain {
  text-align: center;
  padding: 80px 0px 70px;
}
.wordpress_domain .search_domain .search_title {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 55px;
  display: inline-block;
}
.wordpress_domain .search_domain dialog.yearly_box {
  background: radial-gradient(200% 100% at 50% 0, #f5f5f5 20%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
}
.wordpress_domain .search_domain dialog.yearly_box .price_year {
  width: 767px;
}
.wordpress_domain .search_domain dialog.yearly_box .price_year .dialog_area form {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  padding: 20px 60px;
}
.wordpress_domain .search_domain dialog.yearly_box .price_year .dialog_area form .form-group {
  width: 100%;
  flex: 1;
}
.wordpress_domain .search_domain dialog.yearly_box .price_year .dialog_area form .form-group input.form-control {
  width: -webkit-fill-available;
  border: 0px;
  padding: 10px 18px;
  font-size: 20px;
  line-height: 27px;
  color: #535150;
  background: rgb(255, 255, 255);
  box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.25);
}
.wordpress_domain .search_domain dialog.yearly_box .price_year .dialog_area form .form-group input.form-control::placeholder {
  color: #818181;
}
.wordpress_domain .search_domain dialog.yearly_box .price_year .dialog_area form .form-group input.form-control:focus {
  outline: none;
  border: 0;
}
.wordpress_domain .search_domain dialog.yearly_box .price_year .dialog_area form button.searchbtn {
  background: #002A55;
  color: rgb(255, 255, 255);
  font-size: 20px;
  line-height: 25px;
  padding: 12px 35px;
  transition: all 0.2s ease-in-out;
}
.wordpress_domain .search_domain dialog.yearly_box .price_year .dialog_area form button.searchbtn:hover {
  background: rgb(255, 255, 255);
  color: #002A55;
  transition: all 0.2s ease-in-out;
}

.wp_domain_search {
  padding: 30px 0px;
}
.wp_domain_search ul {
  padding-left: 30px;
  margin: 10px 0px;
}
.wp_domain_search ul li {
  list-style: disc;
  padding: 5px 0px;
  display: list-item;
}

.box h3 {
  font-family: inherit;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: var(--headline);
}
.box h3 span {
  font-weight: 500;
}
.box .values div,
.box small div {
  display: inline-block;
  vertical-align: top;
}
.box .values {
  margin: 0;
  font-weight: 500;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
}
.box .values p {
  font-weight: 600;
}
.box .values > div:first-child {
  margin-right: 2px;
}
.box .values > div:last-child {
  margin-left: 2px;
}
.box small {
  color: var(--text);
  display: block;
  margin-top: 8px;
  font-size: 14px;
}
.box .slider {
  margin-top: 20px;
}

.slider {
  --primary: #002A55;
  --handle: #fff;
  --handle-active: #fbd3c2;
  --handle-hover: #fef0eb;
  --handle-border: 2px solid var(--primary);
  --line: #cdd9ed;
  --line-active: var(--primary);
  height: 23px;
  width: 100%;
  position: relative;
  pointer-events: none;
}
.slider .ui-slider-handle {
  --y: 0;
  --background: var(--handle);
  cursor: grab;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  width: 23px;
  height: 23px;
  transform: translateX(-50%);
  position: absolute;
  outline: none;
  display: block;
  pointer-events: auto;
}
.slider .ui-slider-handle div {
  width: 18px;
  height: 30px;
  border-radius: 8px;
  top: -3px;
  position: relative;
  transition: background 0.4s ease;
  transform: translateY(calc(var(--y) * 1px));
  background: var(--background);
  box-shadow: inset 0px 0px 0px 7px #F26B32;
}
.slider .ui-slider-handle:hover {
  --background: var(--handle-hover);
}
.slider .ui-slider-handle:active {
  --background: var(--handle-active);
  cursor: grabbing;
}
.slider svg {
  stroke: rgb(255, 255, 255);
  display: block;
  height: 83px;
}
.slider svg path {
  fill: none;
  stroke-width: 8;
}
.slider .active, .slider > svg {
  position: absolute;
  top: -30px;
  height: 83px;
}
.slider > svg {
  left: 0;
  width: 100%;
}
.slider .active {
  position: absolute;
  overflow: hidden;
  left: calc(var(--l) * 1px);
  right: calc(var(--r) * 1px);
}
.slider .active svg {
  stroke: #002A55;
  position: relative;
  left: calc(var(--l) * -1px);
  right: calc(var(--r) * -1px);
}
.slider .active svg path {
  stroke-width: 8;
}

.cheap_price .filter_section {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 60px 50px;
}
.cheap_price .filter_section .price_range {
  display: flex;
  gap: 30px;
  align-items: flex-end;
}
.cheap_price .filter_section .filter_title h4 {
  font-size: 24px;
  margin-bottom: 0;
  line-height: 30px;
}
.cheap_price .filter_section .filter_title .rang_area {
  width: 470px;
}
.cheap_price .categories_area {
  margin-bottom: 70px;
}
.cheap_price .categories_area ul {
  text-align: center;
  margin: 0px 30px;
}
.cheap_price .categories_area ul li {
  display: inline-block;
  margin: 12px 8px;
}
.cheap_price .categories_area ul li a {
  font-size: 16px;
  line-height: 21px;
  color: #535150;
  font-weight: 400;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0px 1px 10px 0px rgba(45, 19, 106, 0.1);
  border: 1.5px solid transparent;
  transition: all 0.2s ease-in-out;
}
.cheap_price .categories_area ul li a i {
  margin-right: 10px;
  vertical-align: middle;
}
.cheap_price .categories_area ul li a:hover {
  border: 1.5px solid #002A55;
  transition: all 0.2s ease-in-out;
}
.cheap_price .categories_area ul li a:focus {
  background: #002A55;
  color: rgb(255, 255, 255);
}
.cheap_price .sort_by {
  margin-bottom: 70px;
}
.cheap_price .sort_by ul li {
  display: inline-block;
  margin-left: 10px;
}
.cheap_price .sort_by ul li a {
  font-weight: 400;
  padding: 10px 20px;
  border-radius: 0px;
  border: 1.5px solid transparent;
  box-shadow: 0px 1px 10px 0px rgba(45, 19, 106, 0.1);
}
.cheap_price .sort_by ul li a:hover {
  transition: all 0.2s ease-in-out;
  border: 1.5px solid #412619;
}
.cheap_price .sort_by ul li a:focus {
  background: #412619;
  color: rgb(255, 255, 255);
}
.cheap_price .alldomain {
  margin: 0px 100px;
  margin-bottom: 70px;
  display: grid;
  grid-template: auto/auto auto auto;
  grid-gap: 80px;
}
.cheap_price .alldomain .domain_inner {
  box-shadow: 0px 1px 10px 0px rgba(45, 19, 106, 0.1);
  text-align: center;
}
.cheap_price .alldomain .domain_inner .domainext {
  padding: 30px 0px 20px;
  border: 2px dashed #c6ccff;
  border-bottom: 0px;
  position: relative;
  overflow: hidden;
}
.cheap_price .alldomain .domain_inner .domainext h4 {
  font-size: 32px;
  font-weight: 400;
  line-height: 41px;
}
.cheap_price .alldomain .domain_inner .domainext i {
  font-size: 22px;
  margin-bottom: 10px;
}
.cheap_price .alldomain .domain_inner .sale_seal {
  position: absolute;
  top: 15px;
  left: -28px;
  background: #B91826;
  line-height: 12px;
  padding: 5px 30px;
  transform: rotate(-45deg);
}
.cheap_price .alldomain .domain_inner .sale_seal span {
  color: rgb(255, 255, 255);
  font-size: 12px;
  line-height: 12px;
}
.cheap_price .alldomain .domain_inner .dm_price {
  position: relative;
  display: inline-block;
}
.cheap_price .alldomain .domain_inner .dm_price .shape {
  position: relative;
  top: 10px;
  background: #F26B32;
  padding: 10px 25px;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  display: inline-block;
  z-index: 5;
}
.cheap_price .alldomain .domain_inner .dm_price .shape p {
  color: rgb(255, 255, 255);
  font-weight: 700;
  line-height: 21px;
  font-family: "Space Grotesk", sans-serif;
}
.cheap_price .alldomain .domain_inner .dm_price .shape::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 10px;
}
.cheap_price .alldomain .domain_inner .dm_price::before, .cheap_price .alldomain .domain_inner .dm_price::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  background: #B4552D;
  bottom: -10px;
}
.cheap_price .alldomain .domain_inner .dm_price::before {
  left: -7px;
}
.cheap_price .alldomain .domain_inner .dm_price::after {
  right: -7px;
}

.reg_domain {
  padding: 70px 0px;
}
.reg_domain .wp_domain_search ul li {
  list-style: auto;
}

.domain_ext.reg_domain .wp_domain_search ul li {
  list-style: disc;
}

/******************************************************************************  Footer  ******************************************************************************/
/******************************************************************************  Footer  ******************************************************************************/
footer {
  background: #363839;
  border-top: 10px solid #E9EAEE;
  padding: 50px 0px;
}
footer .footer_area {
  display: grid;
  grid-template: auto/auto auto auto auto;
  grid-gap: 30px;
}
footer .footer_area h3, footer .footer_area a, footer .footer_area p {
  color: rgb(255, 255, 255);
}
footer .footer_area h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 17px;
  line-height: 26px;
  margin-bottom: 20px;
}
footer .footer_area ul li {
  display: block;
}
footer .footer_area ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  padding: 5px 0px;
  transition: all 0.2s ease-in-out;
}
footer .footer_area ul li a:hover {
  color: #F26B32;
  transition: all 0.2s ease-in-out;
}
footer .footer_area p {
  margin-top: 20px;
  margin-bottom: 40px;
}
footer .footer_area .paybtn {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
footer .footer_area .payprocess ul li {
  display: inline-block;
}

/******************************************************************************  scroll top  ******************************************************************************/
/******************************************************************************  scroll top  ******************************************************************************/
.scrolltop p {
  display: none;
  position: fixed;
  right: 30px;
  bottom: 50px;
  cursor: pointer;
  width: 35px;
  height: 50px;
  border-radius: 20px;
  text-align: center;
  background: #F26B32;
}
.scrolltop p i {
  color: rgb(255, 255, 255);
  font-size: 18px;
  line-height: 50px;
  animation: goUp 1.5s infinite;
}
@keyframes goUp {
  0% {
    line-height: 60px;
  }
  50% {
    line-height: 45px;
  }
  100% {
    line-height: 60px;
  }
}

/******************************************************************************  Preloader  ******************************************************************************/
/******************************************************************************  Preloader  ******************************************************************************/
.loader9 {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: rgb(255, 255, 255);
  z-index: 9999;
}

.loader_center {
  display: inline-block;
  left: 50%;
  top: 50%;
  position: relative;
  transform: translate(-50%, -50%);
}

.loader9 .loader_center::after {
  content: "";
  width: 64px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 59px;
  left: -32px;
  animation: loading-93 1.25s linear infinite;
}

.loader9 .box-1, .loader9 .box-2 {
  border-radius: 2px;
  position: absolute;
}

.loader9 .box-1 {
  width: 64px;
  height: 64px;
  background: #F26B32;
  top: 0;
  left: -32px;
  z-index: 1;
  animation: loading-9 1.25s linear infinite;
}

.loader9 .box-2 {
  width: 32px;
  height: 32px;
  background: #002A55;
  top: -32px;
  left: -16px;
  animation: loading-92 1.25s linear infinite;
}

@-webkit-keyframes loading-9 {
  0%, 5% {
    width: 128px;
    height: 32px;
    transform: translateX(-32px) translateY(35px) rotate(0);
  }
  22% {
    transform: translateX(0) translateY(0) rotate(0);
  }
  25% {
    width: 64px;
    height: 64px;
    transform: translateX(0) translateY(-10px) rotate(0);
  }
  35% {
    transform: translateX(0) translateY(-90px) rotate(30deg);
  }
  45% {
    transform: translateX(0) translateY(-130px) rotate(60deg);
  }
  50% {
    transform: translateX(0) translateY(-145px) rotate(75deg);
  }
  55% {
    transform: translateX(0) translateY(-150px) rotate(90deg);
  }
  60% {
    transform: translateX(0) translateY(-140px) rotate(105deg);
  }
  65% {
    transform: translateX(0) translateY(-130px) rotate(120deg);
  }
  75% {
    transform: translateX(0) translateY(-90px) rotate(150deg);
  }
  85% {
    width: 64px;
    height: 64px;
    transform: translateX(0) translateY(0) rotate(180deg);
  }
  100% {
    width: 128px;
    height: 32px;
    transform: translateX(-32px) translateY(35px) rotate(180deg);
  }
}
@keyframes loading-9 {
  0%, 5% {
    width: 128px;
    height: 32px;
    transform: translateX(-32px) translateY(35px) rotate(0);
  }
  22% {
    transform: translateX(0) translateY(0) rotate(0);
  }
  25% {
    width: 64px;
    height: 64px;
    transform: translateX(0) translateY(-10px) rotate(0);
  }
  35% {
    transform: translateX(0) translateY(-90px) rotate(30deg);
  }
  45% {
    transform: translateX(0) translateY(-130px) rotate(60deg);
  }
  50% {
    transform: translateX(0) translateY(-145px) rotate(75deg);
  }
  55% {
    transform: translateX(0) translateY(-150px) rotate(90deg);
  }
  60% {
    transform: translateX(0) translateY(-140px) rotate(105deg);
  }
  65% {
    transform: translateX(0) translateY(-130px) rotate(120deg);
  }
  75% {
    transform: translateX(0) translateY(-90px) rotate(150deg);
  }
  85% {
    width: 64px;
    height: 64px;
    transform: translateX(0) translateY(0) rotate(180deg);
  }
  100% {
    width: 128px;
    height: 32px;
    transform: translateX(-32px) translateY(35px) rotate(180deg);
  }
}
@-webkit-keyframes loading-92 {
  0%, 5% {
    width: 64px;
    height: 16px;
    transform: translateX(-16px) translateY(51px) rotate(0);
  }
  22% {
    transform: translateX(0) translateY(3px) rotate(0);
  }
  25% {
    width: 32px;
    height: 32px;
    transform: translateX(0) translateY(-15px) rotate(0);
  }
  35% {
    transform: translateX(0) translateY(-135px) rotate(-60deg);
  }
  45% {
    transform: translateX(0) translateY(-195px) rotate(-120deg);
  }
  50% {
    transform: translateX(0) translateY(-215px) rotate(-150deg);
  }
  55% {
    transform: translateX(0) translateY(-225px) rotate(-180deg);
  }
  60% {
    transform: translateX(0) translateY(-215px) rotate(-210deg);
  }
  65% {
    transform: translateX(0) translateY(-195px) rotate(-240deg);
  }
  75% {
    transform: translateX(0) translateY(-135px) rotate(-300deg);
  }
  85% {
    width: 32px;
    height: 32px;
    transform: translateX(0) translateY(0) rotate(-360deg);
  }
  100% {
    width: 64px;
    height: 16px;
    transform: translateX(-16px) translateY(51px) rotate(-360deg);
  }
}
@keyframes loading-92 {
  0%, 5% {
    width: 64px;
    height: 16px;
    transform: translateX(-16px) translateY(51px) rotate(0);
  }
  22% {
    transform: translateX(0) translateY(3px) rotate(0);
  }
  25% {
    width: 32px;
    height: 32px;
    transform: translateX(0) translateY(-15px) rotate(0);
  }
  35% {
    transform: translateX(0) translateY(-135px) rotate(-60deg);
  }
  45% {
    transform: translateX(0) translateY(-195px) rotate(-120deg);
  }
  50% {
    transform: translateX(0) translateY(-215px) rotate(-150deg);
  }
  55% {
    transform: translateX(0) translateY(-225px) rotate(-180deg);
  }
  60% {
    transform: translateX(0) translateY(-215px) rotate(-210deg);
  }
  65% {
    transform: translateX(0) translateY(-195px) rotate(-240deg);
  }
  75% {
    transform: translateX(0) translateY(-135px) rotate(-300deg);
  }
  85% {
    width: 32px;
    height: 32px;
    transform: translateX(0) translateY(0) rotate(-360deg);
  }
  100% {
    width: 64px;
    height: 16px;
    transform: translateX(-16px) translateY(51px) rotate(-360deg);
  }
}
@-webkit-keyframes loading-93 {
  0%, 100% {
    transform: scale(2.5, 1);
  }
  30%, 85% {
    transform: scale(1.5, 1);
  }
  55% {
    transform: scale(0.8, 0.8);
  }
}
@keyframes loading-93 {
  0%, 100% {
    transform: scale(2.5, 1);
  }
  30%, 85% {
    transform: scale(1.5, 1);
  }
  55% {
    transform: scale(0.8, 0.8);
  }
}
/******************************************************************************  bg shape  ******************************************************************************/
/******************************************************************************  bg shape   ******************************************************************************/
.bg_shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -5;
}
.bg_shape span {
  position: absolute;
  width: 663px;
  height: 535px;
  left: 0;
  top: 500px;
  background: #B91826;
  opacity: 0.1;
}
.bg_shape span:nth-child(1) {
  border-radius: 44% 56% 71% 29%/49% 30% 70% 51%;
}
.bg_shape span:nth-child(2) {
  border-radius: 23% 76% 71% 28%/44% 74% 19% 43%;
  left: unset;
  right: 0;
  top: 20%;
  background: #F26B32;
}
.bg_shape span:nth-child(3) {
  border-radius: 63% 35% 34% 64%/24% 41% 52% 69%;
  background: #ECB72D;
  top: 45%;
}
.bg_shape span:nth-child(4) {
  border-radius: 48% 35% 88% 17%/37% 20% 65% 52%;
  left: unset;
  right: 0;
  top: 60%;
}
.bg_shape span:nth-child(5) {
  border-radius: 66% 25% 34% 82%/62% 35% 60% 28%;
  background: #002A55;
  top: 75%;
}
.bg_shape span:nth-child(6) {
  border-radius: 20% 73% 34% 82%/62% 64% 27% 28%;
  left: unset;
  right: 0;
  top: 80%;
  background: #ECB72D;
}
.bg_shape span:nth-child(7) {
  border-radius: 47% 50% 28% 78%/47% 49% 41% 45%;
  background: #F26B32;
  top: 90%;
}/*# sourceMappingURL=style.css.map */