/*=======================================================================
[1] Theme Default CSS 
=========================================================================*/
html,
body {
  font-family: 'Jost', sans-serif;
  height: 100%;
  line-height: 1.5;
  font-weight: 400;
  vertical-align: baseline;
  background: #ffffff;
  color: #3d3c3c;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-size: 16px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  color: #000000;
}
h1 {
  font-size: 50px;
  line-height: 1.3;
}
@media (max-width: 1199px) {
  h1 {
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 34px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 30px;
  }
}
h2 {
  font-size: 40px;
  line-height: 1.2;
}
@media (max-width: 1199px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 26px;
  }
}
h3 {
  font-size: 30px;
  line-height: 1.5;
}
@media (max-width: 991px) {
  h3 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 20px;
  }
}
h4 {
  font-size: 18px;
  line-height: 1.5;
}
p {
  line-height: 1.5;
  margin: 0 0 20px 0;
}
a {
  text-decoration: none;
}
a:active,
a:hover,
a:focus {
  text-decoration: none;
}
a:active,
a:hover,
a:focus {
  outline: 0 none;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.clear:after {
  clear: both;
  content: "";
  display: block;
}
.wrapper {
  overflow: hidden;
}
.row.gutters-20 {
  padding-left: 5px;
  padding-right: 5px;
}
.row.gutters-20 > [class^="col-"] {
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 1560px) {
  .container {
    max-width: 1550px;
  }
}
/*=======================================================================
[2] Preloader  Styles
=========================================================================*/
.loader {
  height: 100%;
  width: 100%;
  position: fixed;
  overflow: hidden;
  z-index: 9999999;
  background: #ffffff;
}
.loader .cssload-loader {
  width: 65px;
  height: 65px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  top: 50%;
}
.loader .cssload-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}
.loader .cssload-inner.cssload-one {
  left: 0%;
  top: 0%;
  animation: cssload-rotate-one 1.15s linear infinite;
  -o-animation: cssload-rotate-one 1.15s linear infinite;
  -ms-animation: cssload-rotate-one 1.15s linear infinite;
  -webkit-animation: cssload-rotate-one 1.15s linear infinite;
  -moz-animation: cssload-rotate-one 1.15s linear infinite;
  border-bottom: 5px solid #0553ee;
}
.loader .cssload-inner.cssload-two {
  right: 0%;
  top: 0%;
  animation: cssload-rotate-two 1.15s linear infinite;
  -o-animation: cssload-rotate-two 1.15s linear infinite;
  -ms-animation: cssload-rotate-two 1.15s linear infinite;
  -webkit-animation: cssload-rotate-two 1.15s linear infinite;
  -moz-animation: cssload-rotate-two 1.15s linear infinite;
  border-right: 5px solid #0553ee;
}
.loader .cssload-inner.cssload-three {
  right: 0%;
  bottom: 0%;
  animation: cssload-rotate-three 1.15s linear infinite;
  -o-animation: cssload-rotate-three 1.15s linear infinite;
  -ms-animation: cssload-rotate-three 1.15s linear infinite;
  -webkit-animation: cssload-rotate-three 1.15s linear infinite;
  -moz-animation: cssload-rotate-three 1.15s linear infinite;
  border-top: 5px solid #0553ee;
}
@keyframes cssload-rotate-one {
  0% {
    -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    -moz-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    -moz-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}
@-o-keyframes cssload-rotate-one {
  0% {
    -o-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    -o-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}
@-webkit-keyframes cssload-rotate-one {
  0% {
    -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}
@-moz-keyframes cssload-rotate-one {
  0% {
    -moz-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    -moz-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}
@keyframes cssload-rotate-two {
  0% {
    -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    -moz-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    -moz-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}
@-o-keyframes cssload-rotate-two {
  0% {
    -o-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    -o-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}
@-webkit-keyframes cssload-rotate-two {
  0% {
    -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}
@-moz-keyframes cssload-rotate-two {
  0% {
    -moz-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    -moz-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}
@keyframes cssload-rotate-three {
  0% {
    -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    -moz-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    -moz-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}
@-o-keyframes cssload-rotate-three {
  0% {
    -o-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    -o-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}
@-webkit-keyframes cssload-rotate-three {
  0% {
    -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}
@-moz-keyframes cssload-rotate-three {
  0% {
    -moz-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    -moz-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}
/*=======================================================================
[3] Button  Styles
=========================================================================*/
.btn-fill {
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border: 1px solid #0553ee;
  background-color: #0553ee;
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  transition: all 0.3s ease-in;
}
.btn-fill:hover {
  color: #0553ee;
  background-color: transparent;
}
.btn-fill2 {
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  border: 1px solid #ffffff;
  background-color: #ffffff;
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  transition: all 0.3s ease-in;
}
.btn-fill2:hover {
  color: #ffffff;
  background-color: transparent;
}
/*=======================================================================
[4] Section Heading  Styles
=========================================================================*/
.section-heading {
  text-align: center;
  margin-bottom: 50px;
}
.section-heading .sub-title {
  color: #0553ee;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 3px;
  font-weight: 500;
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  .section-heading .sub-title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .section-heading .sub-title {
    font-size: 18px;
  }
}
.section-heading h2 {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 36px;
  color: #14133b;
}
@media (max-width: 1199px) {
  .section-heading h2 {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .section-heading h2 {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .section-heading h2 {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .section-heading h2 {
    font-size: 26px;
  }
}
.section-heading.light {
  color: #ffffff;
}
.section-heading.light h2 {
  color: #ffffff;
}
/*=======================================================================
[5] Header  Styles
=========================================================================*/
header {
  padding: 24px 0 23px;
  background-color: #ffffff;
}
@media (min-width: 1200px) {
  header {
    top: 0;
    z-index: 10;
    left: 0;
    right: 0;
    position: fixed;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  }
}
header .header-logo {
  max-width: 40vw;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
header .action-area {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  header .action-area {
    justify-content: center;
  }
}
header .action-area li {
  margin: 0 25px;
}
header .action-area li .action-text {
  font-size: 16px;
  text-transform: capitalize;
  color: #666666;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
header .action-area li .action-text:hover {
  color: #0553ee;
}
/*=======================================================================
[6] Banner Styles
=========================================================================*/
.banner-wrap {
  overflow: hidden;
  background-color: #0553ee;
  background-image: url(img/banner/1.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 110px 0;
  min-height: calc(100vh - 100px);
  height: 100%;
  position: relative;
}
@media (min-width: 1200px) {
  .banner-wrap {
    margin-top: 100px;
  }
}
.banner-wrap .banner-img-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
}
.banner-wrap .content-box {
  text-align: center;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.banner-wrap .content-box h1 {
  color: #ffffff;
  font-weight: 500;
  font-size: 50px;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .banner-wrap .content-box h1 {
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  .banner-wrap .content-box h1 {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .banner-wrap .content-box h1 {
    font-size: 34px;
  }
}
@media (max-width: 575px) {
  .banner-wrap .content-box h1 {
    font-size: 32px;
  }
}
@media (max-width: 1199px) {
  .banner-wrap {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .banner-wrap {
    padding: 90px 0;
  }
}
@media (max-width: 767px) {
  .banner-wrap {
    padding: 80px 0;
  }
}
@media (max-width: 575px) {
  .banner-wrap {
    padding: 70px 0;
  }
}
/*=======================================================================
[11] Facility Section Styles
=========================================================================*/
.facility-wrap {
  padding-top: 130px;
  padding-bottom: 10px;
}
.facility-wrap .inner-wrap {
  padding: 40px;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
}
.facility-box {
  display: flex;
  padding: 10px;
}
.facility-box .icon-box {
  margin-top: 5px;
  line-height: 1;
  margin-right: 20px;
  border: 1px solid #0553ee;
  border-radius: 50%;
  height: 80px;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.facility-box .icon-box i {
  color: #0553ee;
  font-size: 30px;
}
.facility-box .content-box {
  flex: 1;
}
.facility-box .content-box h3 {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
  color: #14133b;
}
.facility-box .content-box p {
  font-weight: 500;
  color: #3d3c3c;
  margin-bottom: 0;
}
/*=======================================================================
[7] Home Demo  Styles
=========================================================================*/
.home-wrap {
  padding: 115px 0 90px;
}
@media (max-width: 1199px) {
  .home-wrap {
    padding: 105px 0 80px;
  }
}
@media (max-width: 991px) {
  .home-wrap {
    padding: 95px 0 70px;
  }
}
@media (max-width: 767px) {
  .home-wrap {
    padding: 85px 0 60px;
  }
}
@media (max-width: 575px) {
  .home-wrap {
    padding: 75px 0 50px;
  }
}
.home-box {
  text-align: center;
  margin-bottom: 40px;
}
.home-box .figure-box {
  border-radius: 10px;
  box-shadow: 0 0 54px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.home-box .figure-box img {
  border-radius: 10px;
}
.home-box .figure-box:before {
  border-radius: 10px;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(20, 19, 59, 0.7);
  position: absolute;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.home-box .figure-box .mask-item {
  position: absolute;
  z-index: 1;
  top: 70%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.home-box h4 {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 18px;
}
.home-box h4 a {
  color: #14133b;
  transition: all 0.4s ease-in-out;
}
.home-box h4 a:hover {
  color: #0553ee;
}
.home-box:hover .figure-box:before {
  opacity: 1;
  visibility: visible;
}
.home-box:hover .figure-box .mask-item {
  top: 50%;
  opacity: 1;
  visibility: visible;
}
.home-box:hover.coming-soon .figure-box:before {
  display: none;
}
/*=======================================================================
[9] Features Section Styles
=========================================================================*/
.features-wrap {
  padding: 115px 0 90px;
  background-color: #f5faff;
}
@media (max-width: 1199px) {
  .features-wrap {
    padding: 105px 0 80px;
  }
}
@media (max-width: 991px) {
  .features-wrap {
    padding: 95px 0 70px;
  }
}
@media (max-width: 767px) {
  .features-wrap {
    padding: 85px 0 60px;
  }
}
@media (max-width: 575px) {
  .features-wrap {
    padding: 75px 0 50px;
  }
}
.features-box {
  padding: 50px 30px;
  background-color: #ebf2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 30px;
  text-align: center;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
}
.features-box:hover {
  background-color: #0553ee;
}
.features-box:hover i {
  color: #ffffff;
}
.features-box:hover h3 {
  color: #ffffff;
}
.features-box:hover p {
  color: #ffffff;
}
.features-box i {
  font-size: 70px;
  color: #0553ee;
  transition: all 0.4s ease-in-out;
}
.features-box h3 {
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8px;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #14133b;
  transition: all 0.4s ease-in-out;
}
.features-box p {
  font-size: 18px;
  color: #5b6674;
  max-width: 385px;
  width: 100%;
  margin: 0 auto;
  transition: all 0.4s ease-in-out;
}
/*=======================================================================
[8] Elementor Section Styles
=========================================================================*/
.elementor-wrap {
  padding: 120px 0 90px;
  background-color: #fff7ec;
}
@media (max-width: 1199px) {
  .elementor-wrap {
    padding: 110px 0 80px;
  }
}
@media (max-width: 991px) {
  .elementor-wrap {
    padding: 100px 0 70px;
  }
}
@media (max-width: 767px) {
  .elementor-wrap {
    padding: 90px 0 60px;
  }
}
@media (max-width: 575px) {
  .elementor-wrap {
    padding: 80px 0 50px;
  }
}
.elementor-box {
  margin-bottom: 30px;
}
.elementor-box .content-box img {
  margin-bottom: 30px;
}
.elementor-box .content-box h2 {
  font-weight: 700;
  margin-bottom: 15px;
}
.elementor-box .content-box p {
  color: #000000;
  max-width: 500px;
  width: 100%;
}
/*=======================================================================
[9] Features Section Styles
=========================================================================*/
.inner-page-wrap {
  padding: 115px 0 90px;
}
@media (max-width: 1199px) {
  .inner-page-wrap {
    padding: 105px 0 80px;
  }
}
@media (max-width: 991px) {
  .inner-page-wrap {
    padding: 95px 0 70px;
  }
}
@media (max-width: 767px) {
  .inner-page-wrap {
    padding: 85px 0 60px;
  }
}
@media (max-width: 575px) {
  .inner-page-wrap {
    padding: 75px 0 50px;
  }
}
.inner-page-box {
  box-shadow: 0 0 54px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}
/*=======================================================================
[12] Footer  Styles
=========================================================================*/
footer {
  background-image: url(img/banner/banner1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 150px 0;
}
@media (max-width: 1199px) {
  footer {
    padding: 130px 0;
  }
}
@media (max-width: 991px) {
  footer {
    padding: 110px 0;
  }
}
@media (max-width: 767px) {
  footer {
    padding: 90px 0;
  }
}
@media (max-width: 575px) {
  footer {
    padding: 80px 0;
  }
}
footer .sub-title {
  color: #ffffff;
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
footer h2 {
  color: #ffffff;
  font-size: 70px;
  font-weight: 600;
  max-width: 700px;
  line-height: 1.2;
  width: 100%;
  margin: 0 auto 40px;
}
@media (max-width: 1199px) {
  footer h2 {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  footer h2 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  footer h2 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  footer h2 {
    font-size: 36px;
  }
}
footer .item-btn:hover {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #ffffff;
}
/*********************************************/
.btn--common {
  padding: 11px 12px 11px 25px;
  font-size: 16px;
  font-weight: 500;
  background: #eff4ff;
  color: #14133b;
  border-radius: 5px;
  outline: 0;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  letter-spacing: 0.01em;
}
.btn--common:hover,
.btn--common:focus,
.btn--common:active {
  border: 1px solid transparent;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
}
.btn rect.qodef-button-line {
  height: 1.5px;
  y: 7;
}
.btn path.qodef-button-cap {
  stroke-width: 1;
  stroke: #ffffff;
}
.btn--hover:hover,
.btn--hover:focus {
  background: #0554f2;
  color: #ffffff;
}
.btn--primary {
  background: #0554f2;
  color: #ffffff;
}
.btn--primary:hover,
.btn--primary:focus {
  color: #ffffff;
}
.btn--white {
  background: #ffffff;
  color: #0554f2;
}
.btn--white:hover {
  background: #ffffff;
  color: #0554f2;
}
.btn--white path.qodef-button-cap {
  stroke: #0554f2;
}
.btn--link {
  background: transparent;
  padding: 0;
  font-size: 16px;
  color: #0554f2;
  font-weight: 400;
}
.btn--link path.qodef-button-cap {
  stroke-width: 1;
  stroke: #0554f2;
}
.btn--border {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn--border:hover,
.btn--border:focus {
  border: 1px solid #0554f2;
}
.btn--default {
  padding: 11px 35px;
}
.btn--default:hover,
.btn--default:focus {
  background: #14133b;
}
.btn--tertiary {
  background: #e8effe;
  color: #14133b;
}
.btn--tertiary:hover,
.btn--tertiary:focus {
  color: #ffffff;
}
.btn--secondary {
  background: #14133b;
  color: #ffffff;
}
.btn--common svg,
.btn--common svg {
  fill: currentColor;
  vertical-align: middle;
  margin-left: 15px;
  width: 26px;
  z-index: 1;
}
.btn--common .qodef-button-line {
  stroke: currentColor;
  stroke-width: 0.5;
}
.btn--common .qodef-button-cap,
.btn--common .qodef-button-line {
  -webkit-transform: translateX(-13px);
  -ms-transform: translateX(-13px);
  transform: translateX(-13px);
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.btn--common:hover .qodef-button-line {
  -webkit-animation: qode-button-line 0.4s ease forwards;
  animation: qode-button-line 0.4s ease forwards;
}
.btn--common:hover .qodef-button-cap {
  -webkit-animation: qode-button-cap 0.4s ease forwards;
  animation: qode-button-cap 0.4s ease forwards;
}
.qodef-button-animation-out .qodef-button-cap-fake {
  -webkit-animation: qode-button-cap-fake-out 0.35s linear;
  animation: qode-button-cap-fake-out 0.35s linear;
}
.qodef-button-animation-out .qodef-button-cap {
  -webkit-animation: qode-button-cap-out 0.35s ease-in-out;
  animation: qode-button-cap-out 0.35s ease-in-out;
}
.qodef-button-line {
  -webkit-transform: translateX(9px);
  -ms-transform: translateX(9px);
  transform: translateX(9px);
  stroke-width: 0.1;
  stroke: currentColor;
}
.qodef-button-cap,
.qodef-button-line {
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transition: 0.33s cubic-bezier(0.14, -0.07, 0.23, 0.9);
  -o-transition: 0.33s cubic-bezier(0.14, -0.07, 0.23, 0.9);
  transition: 0.33s cubic-bezier(0.14, -0.07, 0.23, 0.9);
}
@-webkit-keyframes qode-button-cap-out {
  0%,
  50% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
  }
}
@keyframes qode-button-cap-out {
  0%,
  50% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
  }
  100%,
  51% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
  }
}
@-webkit-keyframes qode-button-cap-fake-out {
  0% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-cap-fake-out {
  0% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  49%,
  51% {
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
@-webkit-keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
@keyframes qode-button-cap {
  0% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  54% {
    -webkit-transform: translateX(-1px) scaleX(1);
    transform: translateX(-1px) scaleX(1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  55% {
    -webkit-transform: translateX(-20px) scaleX(-1);
    transform: translateX(-20px) scaleX(-1);
    -webkit-clip-path: inset(50% 0 50% 0);
    clip-path: inset(50% 0 50% 0);
  }
  100% {
    -webkit-transform: translateX(-35px) scaleX(-1);
    transform: translateX(-35px) scaleX(-1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
@-webkit-keyframes qode-button-line {
  0%,
  100% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    -webkit-transform: translateX(0) scaleX(0.5);
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    -webkit-transform: translateX(-13px) scaleX(0.6);
    transform: translateX(-13px) scaleX(0.6);
  }
}
@keyframes qode-button-line {
  0%,
  100% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
  }
  10% {
    -webkit-transform: translateX(-13px) scaleX(1);
    transform: translateX(-13px) scaleX(1);
  }
  46%,
  55% {
    -webkit-transform: translateX(0) scaleX(0.5);
    transform: translateX(0) scaleX(0.5);
  }
  99% {
    -webkit-transform: translateX(-13px) scaleX(0.6);
    transform: translateX(-13px) scaleX(0.6);
  }
}
