@charset "UTF-8";
/*-----------------------------------------------------------------------------------

    Template Name:  HTML5 Template
    Author: Themazine
    Version: 1.0

-----------------------------------------------------------------------------------

    CSS INDEX
    ===================

    01. Theme default CSS
	02. variables
    03. mixins
    04. common
    05. overlay
    06. header
    07. breadcrumb 
    08. mobile-menu
    09. search
    10. custom-animation
    11. btn
    12. custom-container
    13. slider
    14. services
    15. chose-us
    16. work-process
    17. case
    18. testimonial
    19. team
    20. blog
    21. plan
    22. typography
    23. about
    24. faq
    25. contact
    26. widget
    27. footer

-----------------------------------------------------------------------------------*/
/*----------------------------------------*/
/*  01. Theme default CSS
/*----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Saira+Extra+Condensed:wght@400;500;600;700;800&display=swap");
@font-face {
  font-family: 'gloss_and_bloomregular';
  src: url("../fonts/gloss_and_bloom.woff2") format("woff2"), url("../fonts/gloss_and_bloom.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/* 1. Theme default css */
body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  font-style: normal;
  color: rgba(24, 21, 44, 0.9);
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.fix {
  overflow: hidden;
}

a,
.button {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

a {
  text-decoration: none;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: blue;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: medium none;
}

button:focus, input:focus, input:focus, textarea, textarea:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Saira Extra Condensed", sans-serif;
  color: #060315;
  line-height: 1.1;
  margin-top: 0px;
  font-style: normal;
  font-weight: 700;
  text-transform: normal;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1, .h1 {
  font-size: 40px;
}

h2,
.h2 {
  font-size: 36px;
  font-weight: 700;
}

h3,
.h3 {
  font-size: 28px;
  font-weight: 700;
}

h4,
.h4 {
  font-size: 22px;
  font-weight: 700;
}

h5,
.h5 {
  font-size: 18px;
  font-weight: 700;
}

h6,
.h6 {
  font-size: 16px;
  font-weight: 700;
}

.list-style-none {
  margin: 0px;
  padding: 0px;
}
.list-style-none li {
  list-style-type: none;
}
.list-style-none li a {
  list-style-type: none;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  font-family: "Poppins", sans-serif;
  color: rgba(24, 21, 44, 0.9);
  margin-bottom: 0;
}

hr {
  border-bottom: 1px solid #d9e3e5;
  border-top: 0 none;
  margin: 30px 0;
  padding: 0;
}

label {
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}

*::-moz-selection {
  background: black;
  color: white;
  text-shadow: none;
}

::-moz-selection {
  background: black;
  color: white;
  text-shadow: none;
}

::selection {
  background: black;
  color: white;
  text-shadow: none;
}

.before-none::before {
  display: none;
}

.after-none::after {
  display: none;
}

/*--
    - Input Placeholder
-----------------------------------------*/
*::-moz-placeholder {
  color: black;
  font-size: 14px;
  opacity: 1;
}

*::placeholder {
  color: black;
  font-size: 14px;
  opacity: 1;
}

/*--
    - position Classes
-----------------------------------------*/
.pos-rel {
  position: relative;
}

.pos-abl {
  position: absolute;
}

/*--
    - Common Classes
-----------------------------------------*/
.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

/*--
    - Background color
-----------------------------------------*/
.grey-bg {
  background: #f8f2f0;
}

.grey-bg-soft {
  background: #fefaf7;
}

.grey-bg-soft2 {
  background: #FFF8EE;
}

.grey-bg-soft3 {
  background: #fefcf7;
}

.sky-blue-bg {
  background-color: #f6fcff;
}

.sky-blue-bg-2 {
  background-color: #F3FAFC;
}

.sky-blue-bg-soft {
  background-color: #F0FCFF;
}

.white-bg {
  background: white;
}

.black-bg {
  background: black;
}

.heding-bg {
  background: #060315;
}

.theme-bg {
  background: #ff3e41;
}

.primary-bg {
  background: #222;
}

/*--
    - color
-----------------------------------------*/
.white-color {
  color: white;
}

.black-color {
  color: black;
}

.theme-color {
  color: #ff3e41;
}

.theme-color2 {
  color: #51cfed;
}

.primary-color {
  color: #222;
}

.theme-bg-color {
  background-color: #ff3e41;
}

.theme-bg-color2 {
  background-color: #51cfed !important;
}

.left-line {
  position: relative;
}
.left-line::before {
  content: "";
  background: white;
  position: absolute;
  left: 0;
  top: 10px;
  width: 50px;
  height: 2px;
  z-index: 1;
}

/*--
section-title
----------------------------------------*/
.section-title {
  position: relative;
  z-index: 2;
}
.section-title h6 {
  color: #ff3f41;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.section-title h2 {
  font-size: 65px;
  line-height: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .section-title h2 {
    font-size: 45px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title h2 {
    font-size: 35px !important;
  }
}
@media (max-width: 767px) {
  .section-title h2 {
    font-size: 26px !important;
  }
}

.sect-title {
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

.bg-shape {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.bg-shape::before {
  content: '';
  position: absolute;
  background-image: url(../img/shape/text-bg.svg);
  width: 100%;
  height: 25px;
  display: inline-block;
  left: 0;
  bottom: 6px;
  z-index: -1;
}
@media (max-width: 767px) {
  .bg-shape::before {
    bottom: 0;
  }
}

.semi-title {
  font-size: 26px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .section-title2 h2 {
    font-size: 45px !important;
  }
}
.section-title2 h2 .bs-2::before {
  content: '';
  position: absolute;
  background-image: url(../img/line/red-line-2.svg);
  background-repeat: no-repeat;
  display: inline-block;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 11px;
  z-index: -1;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .section-title2 h2 .bs-2::before {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .section-title2 h2 .bs-2::before {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title2 h2 .bs-2::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .section-title2 h2 .bs-2::before {
    display: none;
  }
}
.section-title2 p {
  font-size: 20px;
  line-height: 32px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title2 p {
    font-size: 16px;
    line-height: 28px;
  }
}

.popup-video {
  color: white;
  background: #51cfed;
  border-radius: 50%;
  line-height: 65px;
  display: inline-block;
  width: 65px;
  height: 65px;
  text-align: center;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  position: relative;
  z-index: 1;
  animation: pulseBig infinite 5s linear;
}
.popup-video:hover {
  color: white;
  background: #ff3e41;
}

.dark #preloader {
  background-color: #232323;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f7f7f7;
  z-index: 999999;
}

.preloader {
  width: 50px;
  height: 50px;
  display: inline-block;
  padding: 0px;
  text-align: left;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
}

.preloader span {
  position: absolute;
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: #ff3e41;
  -webkit-animation: preloader 1.3s linear infinite;
  animation: preloader 1.3s linear infinite;
}

.preloader span:last-child {
  animation-delay: -0.8s;
  -webkit-animation-delay: -0.8s;
}

@keyframes preloader {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
@-webkit-keyframes preloader {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.5;
  }

  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}
.scrollUp {
  color: white;
  width: 60px;
  height: 60px;
  display: inline-block;
  border-radius: 50%;
  background-color: #ff3e41;
  text-align: center;
  line-height: 60px;
  font-size: 20px;
  position: fixed;
  right: 50px;
  z-index: 1111;
  bottom: 50px;
}
@media (max-width: 767px) {
  .scrollUp {
    width: 40px;
    height: 40px;
    line-height: 40px;
    right: 20px;
    font-size: 16px;
  }
}
.scrollUp i {
  color: white;
}

/*--
    - Overlay
------------------------------------------*/
.overlay-soft {
  position: relative;
  z-index: 1;
}
.overlay-soft::after {
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

[data-overlay] {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
[data-overlay]::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
}

/*-- Overlay Color --*/
[data-overlay="light"]::before {
  background-color: white;
}

[data-overlay="dark"]::before {
  background-color: #ff3e41;
}

/*-- Overlay Opacity --*/
[data-opacity="1"]::before {
  opacity: 0.1;
}

[data-opacity="2"]::before {
  opacity: 0.2;
}

[data-opacity="3"]::before {
  opacity: 0.3;
}

[data-opacity="4"]::before {
  opacity: 0.4;
}

[data-opacity="5"]::before {
  opacity: 0.5;
}

[data-opacity="6"]::before {
  opacity: 0.6;
}

[data-opacity="7"]::before {
  opacity: 0.7;
}

[data-opacity="8"]::before {
  opacity: 0.8;
}

[data-opacity="9"]::before {
  opacity: 0.9;
}

#theme-menu-one {
  padding-left: 85px;
  padding-right: 85px;
}
@media only screen and (min-width: 1601px) and (max-width: 1800px) {
  #theme-menu-one {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  #theme-menu-one {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  #theme-menu-one {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #theme-menu-one {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 767px) {
  #theme-menu-one {
    padding-left: 0;
    padding-right: 0;
  }
}

.main-header-area {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}
.main-header-area .logo-img img {
  max-width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .main-header-area .logo-img img {
    max-width: 80%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-header-area .logo-img img {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .main-header-area .logo-img img {
    max-width: 80%;
  }
}

/* Hamburger-menu */
.hamburger-menu {
  display: inline-block;
}
.hamburger-menu > a {
  display: inline-block;
  font-size: 25px;
  color: #ff3e41;
}

.side-mobile-menu {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .side-mobile-menu {
    display: block;
  }
}
@media (max-width: 767px) {
  .side-mobile-menu {
    display: block;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .side-mobile-menu {
    display: block;
  }
}

.offset-sidebar {
  display: block;
  margin-top: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offset-sidebar {
    display: none;
  }
}
@media (max-width: 767px) {
  .offset-sidebar {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .offset-sidebar {
    display: none;
  }
}

.navbar-nav .nav-item:last-child .nav-link {
  margin-right: 0;
}
.navbar-nav .nav-item.active {
  color: #060315;
}
.navbar-nav .nav-item.active .nav-link {
  color: #060315;
}
.navbar-nav .nav-item .nav-link {
  color: #060315;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  display: inline-block;
  position: relative;
  margin: 0 50px 0 0;
  padding: 30px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .navbar-nav .nav-item .nav-link {
    margin: 0 30px 0 0;
  }
}
.navbar-nav .nav-item .nav-link::after {
  display: none;
}
.navbar-nav .nav-item .nav-link::before {
  content: '';
  position: absolute;
  background-color: #ff3e41;
  width: 0;
  height: 2px;
  left: 0;
  right: auto;
  top: 66%;
  z-index: 1;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.navbar-nav .nav-item .nav-link:hover {
  color: #ff3e41;
}
.navbar-nav .nav-item .nav-link:hover::before {
  width: 100%;
  right: 0;
}
.navbar-nav .nav-item .nav-link i {
  font-size: 10px;
}
.navbar-nav .nav-item:hover > .nav-link {
  color: #FD5F5C;
}

.navbar .dropdown-menu {
  border: 0;
  position: absolute;
  z-index: 5;
  background-color: #fff;
  border-radius: 0;
  display: block;
  right: 0;
  left: 0;
  padding: 8px 0;
  top: 100%;
  visibility: hidden;
  transform: scaleY(0);
  opacity: 0;
  min-width: 220px;
  box-shadow: 0px 30px 70px 0px rgba(0, 0, 0, 0.05);
  margin: 0;
  transform-origin: 0 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.navbar .dropdown-menu .dropdown-item {
  color: #505050;
  font-size: 18px;
  padding: 9px 25px;
  display: block;
  transition: all 0.3s ease-in-out;
}
.navbar .dropdown-menu .dropdown-item:hover {
  transform: translatex(5px);
  color: #ff3e41;
  background-color: transparent;
  -webkit-transform: translatex(5px);
  -moz-transform: translatex(5px);
  -ms-transform: translatex(5px);
  -o-transform: translatex(5px);
}
.navbar .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.navbar .navbar-nav .nav-item.active > .nav-link {
  color: #ff3e41 !important;
  position: relative;
}
.navbar .navbar-nav .nav-item.active > .nav-link::before {
  content: '';
  position: absolute;
  background-color: #ff3e41;
  width: 100%;
  height: 2px;
  left: 0;
  right: auto;
  top: 66%;
  z-index: 1;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.sticky-menu {
  width: 100%;
  background: white;
  top: 0;
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
  padding-top: 0;
  padding-bottom: 0;
}
.sticky-menu .logo {
  transform: translateY(2px);
}
.sticky-menu .hamburger-menu {
  top: 17px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sticky-menu .hamburger-menu {
    top: 35px;
  }
}
.sticky-menu .navbar-nav .nav-item .nav-link {
  color: #505050;
}

.right-btn .theme_btn_border {
  padding: 13px 35px 11px 30px;
  margin-left: 27px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .right-btn .theme_btn_border {
    padding: 13px 15px 11px 15px;
    margin-left: 10px;
  }
}
.right-btn .theme_btn_border img {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.right-btn .theme_btn_border:hover img {
  filter: brightness(1) invert(1);
  -webkit-filter: brightness(1) invert(1);
}

.search-btn {
  background-color: white;
  width: 61px;
  height: 61px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  line-height: 61px;
}

.search-area {
  position: relative;
}
.search-area .input-group {
  width: 230px;
  position: absolute;
  left: -220px;
  top: 105%;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.search-area .input-group input {
  border: 1px solid #060315;
  border-radius: 3px !important;
  width: 100%;
  display: inline-block;
  height: 45px;
  padding: 0 20px;
  position: relative;
}
.search-area .input-group .input-group-text {
  border: 0;
  background-color: transparent;
  position: absolute;
  right: 10px;
  top: 50%;
  padding: 0;
  z-index: 2;
  transform: translateY(-50%);
}
.search-area:hover .input-group {
  opacity: 1;
  visibility: visible;
  left: -180px;
}

.call-to {
  margin-left: 25px;
}
.call-to img {
  margin-right: 10px;
  transform: translateY(5px);
}

.call-text span {
  color: #060315;
  font-size: 15px;
  text-transform: uppercase;
}
.call-text .number {
  font-size: 24px;
  font-weight: 500;
}

.menu-style-2 .navbar-nav .nav-item .nav-link {
  margin: 0;
  margin-right: 42px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .menu-style-2 .navbar-nav .nav-item .nav-link {
    margin-right: 34px;
  }
}

#hideshow-sticky-menu {
  position: fixed;
  width: 100%;
  display: block;
  top: 0;
  transition: top 0.3s;
  background-color: #f8f8f8;
  z-index: 99999;
}

#theme-menu-three {
  background-color: #f8f8f8;
  padding-left: 98px;
  padding-right: 98px;
}
@media only screen and (min-width: 1601px) and (max-width: 1800px) {
  #theme-menu-three {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  #theme-menu-three {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  #theme-menu-three {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #theme-menu-three {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 767px) {
  #theme-menu-three {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.menu-style-3 .navbar-nav .nav-item .nav-link {
  margin: 0;
  margin-right: 45px;
}
@media only screen and (min-width: 1601px) and (max-width: 1800px) {
  .menu-style-3 .navbar-nav .nav-item .nav-link {
    margin-right: 32px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .menu-style-3 .navbar-nav .nav-item .nav-link {
    margin-right: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .menu-style-3 .navbar-nav .nav-item .nav-link {
    margin-right: 25px;
  }
}
.menu-style-3 .navbar {
  padding-left: 55px;
}
@media only screen and (min-width: 1601px) and (max-width: 1800px) {
  .menu-style-3 .navbar {
    padding-left: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .menu-style-3 .navbar {
    padding-left: 0;
  }
}
.menu-style-3 .navbar .dropdown:hover .dropdown-menu {
  top: 126%;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.menu-style-4 .navbar-nav .nav-item .nav-link {
  margin: 0 45px 0 0;
}

.page-title-area {
  position: relative;
  z-index: 2;
}

.page-title-wrapper {
  position: relative;
  z-index: 2;
}
.page-title-wrapper .styled-text {
  margin-bottom: 32px;
}
.page-title-wrapper .page-title {
  color: #060315;
  font-size: 90px;
  font-weight: 700;
  line-height: 0.95;
  z-index: 1;
}
.page-title-wrapper .page-title span {
  color: #ff3e41;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .page-title-wrapper .page-title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .page-title-wrapper .page-title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .page-title-wrapper .page-title {
    font-size: 26px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .page-title-wrapper .page-title {
    font-size: 36px;
  }
}

.page-shape {
  position: absolute;
  z-index: 1;
}
.page-shape.shape_01 {
  left: 4.2%;
  top: 187px;
}
.page-shape.shape_04 {
  left: 16.61%;
  top: 168px;
  animation: rotation infinite 5s linear;
}
.page-shape.shape_05 {
  left: 20.93%;
  top: 57.3%;
  animation: rotation infinite 5s linear;
}
.page-shape.shape_06 {
  right: 17.76%;
  top: 234px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .page-shape.shape_06 {
    right: 14%;
    top: 36%;
  }
}
.page-shape.shape_07 {
  left: -15px;
  bottom: 33px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .page-shape.shape_07 {
    width: 16%;
  }
}
.page-shape.shape_08 {
  right: 80px;
  bottom: 23px;
}
.page-shape.shape_09 {
  right: 11.66%;
  bottom: 27px;
  animation: float-bob-y infinite 5s linear;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .page-shape.shape_09 {
    width: 16%;
  }
}

.page-title-area2 .page-shape.shape_05 {
  left: 11.5%;
  top: 59.3%;
  animation: rotation infinite 5s linear;
}
.page-title-area2 .page-shape.shape_06 {
  right: 30%;
  top: 255px;
}
.page-title-area2 .page-title-img-wrapper .breadcrumb-img {
  margin-top: -30px;
  margin-right: -225px;
  animation: float-bob-y infinite 5s linear;
}
@media only screen and (min-width: 1601px) and (max-width: 1800px) {
  .page-title-area2 .page-title-img-wrapper .breadcrumb-img {
    margin-right: 0;
    max-width: 100%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .page-title-area2 .page-title-img-wrapper .breadcrumb-img {
    margin-right: 0;
    max-width: 100%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .page-title-area2 .page-title-img-wrapper .breadcrumb-img {
    margin-right: 0;
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .page-title-area2 .page-title-img-wrapper .breadcrumb-img {
    margin-right: 0;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .page-title-area2 .page-title-img-wrapper .breadcrumb-img {
    margin-right: 0;
    margin-top: 50px;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .page-title-3 .page-title-wrapper .fs-20 {
    font-size: 16px;
    line-height: 1.3;
  }
}
.page-title-3 .page-shape.shape_05 {
  left: 12%;
  top: 58%;
}
.page-title-3 .page-shape.shape_06 {
  right: 12.5%;
  top: 343px;
}
.page-title-3 .page-shape.shape_08 {
  right: 136px;
  bottom: -226px;
  animation: float-bob-y infinite 2s linear;
  -webkit-animation: float-bob-y infinite 2s linear;
}
.page-title-3 .page-shape.shape_09 {
  right: 5px;
  bottom: -67px;
}

.page-title-blog-details .page-title-wrapper .page-title {
  font-size: 75px;
  line-height: 1.1;
}
.page-title-blog-details .page-title-wrapper .blog-author-img {
  border-radius: 50%;
  margin-bottom: 16px;
}
.page-title-blog-details .meta-links {
  color: #626161;
  display: inline-block;
}
.page-title-blog-details .page-shape {
  position: absolute;
}
.page-title-blog-details .page-shape.shape_04 {
  left: 11%;
  top: 43%;
  animation: rotation infinite 5s linear;
  -webkit-animation: rotation infinite 5s linear;
}
.page-title-blog-details .page-shape.shape_05 {
  left: 189px;
  top: 77% !important;
  animation: rotation infinite 5s linear;
}
.page-title-blog-details .page-shape.shape_06 {
  right: 9.76%;
  top: 234px;
}
.page-title-blog-details .page-shape.blog-shape-3 {
  transform: rotate(8deg);
  -webkit-transform: rotate(8deg);
  -moz-transform: rotate(1deg);
  -ms-transform: rotate(8deg);
  -o-transform: rotate(8deg);
  left: -33px;
  top: 46%;
}
.page-title-blog-details .page-shape.blog-shape-4 {
  right: 9% !important;
  top: 41% !important;
  z-index: -1;
}

.page-shape.blog-shape-1 {
  left: 4.2%;
  top: 187px;
  height: 69%;
}
.page-shape.blog-shape-2 {
  height: 69%;
}
.page-shape.service-2-shape {
  left: 0;
  top: 187px;
}
.page-shape.service-2-shape2 {
  left: 15%;
  top: 168px;
  animation: rotation infinite 5s linear;
}
.page-shape.contact-shape-1 {
  left: 4.2%;
  top: 190px;
  height: 73%;
}

.slide-bar {
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: -370px;
  width: 350px;
  padding: 25px 30px;
  height: 100%;
  display: block;
  background-color: #060315;
  z-index: 99999;
  -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slide-bar {
    width: 350px;
  }
}
@media (max-width: 767px) {
  .slide-bar {
    width: 310px;
    padding: 25px 20px;
  }
}

.slide-bar.show {
  right: 0;
}

.open-mobile-menu {
  display: inline-block;
}
.open-mobile-menu a {
  display: block;
  width: 50px;
  height: 50px;
  background: #212121;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  margin-left: 20px;
  color: #fff;
}
.open-mobile-menu a:hover {
  background: #ff3e41;
}
.open-mobile-menu a.active {
  background: #ff3e41;
}

.close-mobile-menu a {
  color: white;
  position: relative;
  z-index: 2;
  font-size: 16px;
  top: -10px;
  left: 0;
}
.close-mobile-menu a:hover {
  color: #ff0000;
}

.on-side {
  overflow: hidden;
}

.body-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1010;
  left: 0;
  opacity: 0;
  display: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.body-overlay.active {
  opacity: 1;
  display: block;
}

.side-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.side-mobile-menu ul li a {
  padding: 13px 0;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 16px;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}
.side-mobile-menu ul li a:hover {
  color: #ff3e41;
  padding-left: 5px;
}
.side-mobile-menu ul li a[aria-expanded="true"] {
  color: #ff3e41;
}
.side-mobile-menu ul li a[aria-expanded="true"]:before {
  background: #ff3e41;
  border-color: #ff3e41;
}
.side-mobile-menu ul li ul {
  padding-left: 0;
  list-style: none;
}
.side-mobile-menu ul li ul li {
  padding-left: 15px;
}
.side-mobile-menu ul li ul li:hover > a {
  color: #ff3e41;
  padding-left: 20px;
}
.side-mobile-menu ul li ul li:hover > a:before {
  background: #ff3e41;
  border-color: #ff3e41;
}
.side-mobile-menu ul li ul li a {
  position: relative;
  padding-left: 15px;
  text-transform: capitalize;
  font-size: 16px;
}
.side-mobile-menu ul li ul li a:before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid white;
  border-radius: 50%;
}
.side-mobile-menu ul li ul li a[aria-expanded="true"] {
  padding-left: 20px;
}
.side-mobile-menu ul li.has-dropdown > a:after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-width: 2px 0 0 2px;
  border-style: solid;
  border-color: initial;
  right: 16px;
  top: 50%;
  -webkit-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
  -webkit-transform-origin: top;
  transform-origin: top;
  transition: all .3s ease-out;
}
.side-mobile-menu ul li.has-dropdown a[aria-expanded="true"]:after {
  -webkit-transform: rotate(-135deg) translateY(-50%);
  transform: rotate(-135deg) translateY(-50%);
}

.offset-widget.offset-logo {
  border-bottom: 1px solid #eeecec;
  padding-bottom: 20px;
}
.offset-widget .info-widget .offset-title {
  font-size: 20px;
  font-weight: 800;
  color: white;
}
.offset-widget .info-widget p {
  color: white;
}
.offset-widget .info-widget.info-widget2 p {
  margin-bottom: 15px;
}
.offset-widget .info-widget.info-widget2 p i {
  margin-right: 7px;
  color: white;
}

/* Menu Search
-------------------------------------------------------*/
.header-2-icon {
  color: white;
}

.nav-search.search-trigger.header-2-icon {
  color: white;
  display: inline-block;
}

.nav-search {
  position: relative;
  display: block;
  color: inherit;
}

.nav-search:hover {
  color: inherit;
}

.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 121;
  background: rgba(0, 0, 0, 0.9);
}

.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.search-wrap .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.search-wrap .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  animation: slideInUp .3s;
}

.search-wrap .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  text-transform: uppercase;
  background: transparent;
  font-size: 25px;
  color: #fff;
  border-bottom: 2px solid #898989;
  text-align: center;
  letter-spacing: 2px;
}

.search-wrap input.form-control,
.search-wrap input.form-control:focus {
  background-color: #fff;
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
input.main-search-input::-webkit-input-placeholder {
  color: #fff;
  font-size: 25px;
}

input.main-search-input:-moz-placeholder {
  color: #fff;
  opacity: 1;
  font-size: 25px;
}

input.main-search-input::-moz-placeholder {
  color: #fff;
  opacity: 1;
  font-size: 25px;
}

input.main-search-input:-ms-input-placeholder {
  color: #fff;
  font-size: 25px;
}

.search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

@-webkit-keyframes jump {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40% {
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes jump {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40% {
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes rotated {
  0% {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
  }

  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}
@keyframes rotated {
  0% {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
  }

  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}
@-webkit-keyframes rotatedHalf {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes rotatedHalf {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@-webkit-keyframes rotatedHalfTwo {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@keyframes rotatedHalfTwo {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@-webkit-keyframes scale-upOne {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
  }
}
@keyframes scale-upOne {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
  }
}
@-webkit-keyframes scale-right {
  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  50% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }

  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@keyframes scale-right {
  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  50% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }

  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0.5;
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 0.7;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0.5;
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 0.7;
  }
}
@keyframes hvr-ripple-out {
  0% {
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 1;
  }

  100% {
    top: -6px;
    right: -6px;
    bottom: -6px;
    left: -6px;
    opacity: 0;
  }
}
@keyframes hvr-ripple-out-two {
  0% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
  }

  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
@-webkit-keyframes scale-up-one {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  40% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale-up-one {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  40% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes scale-up-one-1 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  40% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale-up-one-1 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  40% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes scale-up-two {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  40% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}
@keyframes scale-up-two {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  40% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}
@-webkit-keyframes scale-up-three {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }

  40% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }

  100% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}
@keyframes scale-up-three {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }

  40% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }

  100% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}
@-webkit-keyframes scale-up-four {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
  }

  40% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }

  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes scale-up-four {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
  }

  40% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }

  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@-webkit-keyframes scale-up-five {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  40% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }

  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes scale-up-five {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  40% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes animationFramesOne {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }

  20% {
    transform: translate(73px, -1px) rotate(36deg);
  }

  40% {
    transform: translate(141px, 72px) rotate(72deg);
  }

  60% {
    transform: translate(83px, 122px) rotate(108deg);
  }

  80% {
    transform: translate(-40px, 72px) rotate(144deg);
  }

  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@-webkit-keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }

  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
  }

  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
  }

  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
  }

  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
  }

  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes animationFramesTwo {
  0% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }

  20% {
    transform: translate(73px, -1px) rotate(36deg) scale(0.9);
  }

  40% {
    transform: translate(141px, 72px) rotate(72deg) scale(1);
  }

  60% {
    transform: translate(83px, 122px) rotate(108deg) scale(1.2);
  }

  80% {
    transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
  }

  100% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
@-webkit-keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
  }

  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg) scale(0.9);
  }

  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg) scale(1);
  }

  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg) scale(1.2);
  }

  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
  }

  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
@keyframes animationFramesThree {
  0% {
    transform: translate(165px, -179px);
  }

  100% {
    transform: translate(-346px, 617px);
  }
}
@-webkit-keyframes animationFramesThree {
  0% {
    -webkit-transform: translate(165px, -179px);
  }

  100% {
    -webkit-transform: translate(-346px, 617px);
  }
}
@keyframes animationFramesFour {
  0% {
    transform: translate(-200px, 151px) rotate(0deg);
  }

  100% {
    transform: translate(251px, -200px) rotate(180deg);
  }
}
@-webkit-keyframes animationFramesFour {
  0% {
    -webkit-transform: translate(-200px, 151px) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(251px, -200px) rotate(180deg);
  }
}
@keyframes animationFramesFive {
  0% {
    transform: translate(61px, -99px) rotate(0deg);
  }

  21% {
    transform: translate(4px, -190px) rotate(38deg);
  }

  41% {
    transform: translate(-139px, -200px) rotate(74deg);
  }

  60% {
    transform: translate(-263px, -164px) rotate(108deg);
  }

  80% {
    transform: translate(-195px, -49px) rotate(144deg);
  }

  100% {
    transform: translate(-1px, 0px) rotate(180deg);
  }
}
@-webkit-keyframes animationFramesFive {
  0% {
    -webkit-transform: translate(61px, -99px) rotate(0deg);
  }

  21% {
    -webkit-transform: translate(54px, -90px) rotate(38deg);
  }

  41% {
    -webkit-transform: translate(-139px, -200px) rotate(74deg);
  }

  60% {
    -webkit-transform: translate(-263px, -164px) rotate(108deg);
  }

  80% {
    -webkit-transform: translate(-195px, -49px) rotate(144deg);
  }

  100% {
    -webkit-transform: translate(-1px, 0px) rotate(180deg);
  }
}
@keyframes gradientBG {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 300% 0;
  }

  100% {
    background-position: 0 0;
  }
}
@-webkit-keyframes gradientBG {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 300% 0;
  }

  100% {
    background-position: 0 0;
  }
}
@keyframes imageBgAnim {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 120% 0;
  }

  100% {
    background-position: 0 0;
  }
}
@-webkit-keyframes gradientBG {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 120% 0;
  }

  100% {
    background-position: 0 0;
  }
}
/* Move frame*/
@keyframes moveRound {
  0% {
    background-color: #eee3ff;
    left: -24px;
    top: 0px;
  }

  25% {
    background-color: #feddfc;
    left: 100px;
    top: 0px;
  }

  50% {
    background-color: #efe4ff;
    left: 100px;
    top: 100px;
  }

  75% {
    background-color: #e2fcf4;
    left: -24px;
    top: 200px;
  }

  100% {
    background-color: #eee3ff;
    left: -24px;
    top: 0px;
  }
}
@-webkit-keyframes moveRound {
  0% {
    background-color: #eee3ff;
    left: -24px;
    top: 0px;
  }

  25% {
    background-color: #feddfc;
    left: 100px;
    top: 0px;
  }

  50% {
    background-color: #efe4ff;
    left: 100px;
    top: 200px;
  }

  75% {
    background-color: #e2fcf4;
    left: -24px;
    top: 100px;
  }

  100% {
    background-color: #eee3ff;
    left: -24px;
    top: 0px;
  }
}
@keyframes moveShap {
  0% {
    left: 0px;
    top: 0px;
  }

  25% {
    left: 100px;
    top: 0px;
  }

  50% {
    left: 100px;
    top: 100px;
  }

  75% {
    left: 0px;
    top: 200px;
  }

  100% {
    left: 0px;
    top: 0px;
  }
}
@keyframes moveShap2 {
  0% {
    right: 0px;
    top: 0px;
  }

  25% {
    right: 100px;
    top: 0px;
  }

  50% {
    right: 100px;
    top: 100px;
  }

  75% {
    right: 0px;
    top: 200px;
  }

  100% {
    right: 0px;
    top: 0px;
  }
}
/* Heartbeat frame*/
@-webkit-keyframes heartbeat {
  to {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@keyframes heartbeat {
  to {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
/* Rotation frame*/
@keyframes rotation {
  to {
    transform: rotate(360deg);
  }
}
/* pulseBig */
@keyframes pulseBig {
  0% {
    box-shadow: 0 0 0 0 #fff;
  }

  50% {
    box-shadow: 0 0 0 30px rgba(1, 93, 199, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
  }
}
/* pulseBig2 */
@keyframes pulseBig2 {
  0% {
    box-shadow: 0 0 0 0 #51cfed;
  }

  50% {
    box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
  }
}
/* pulseBig3 */
@keyframes pulseBig3 {
  0% {
    box-shadow: 0 0 0 0 #ff3e41;
  }

  50% {
    box-shadow: 0 0 0 10px rgba(1, 93, 199, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
  }
}
/* pulseBig2 */
@keyframes pulseBig4 {
  0% {
    box-shadow: 0 0 0 0 #fc9ba4;
  }

  50% {
    box-shadow: 0 0 0 10px rgba(1, 93, 199, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
  }
}
.scaleUp1 {
  -webkit-animation-name: scaleUp1;
  animation-name: scaleUp1;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes scaleUp1 {
  0% {
    -webkit-transform: translateY(1);
    transform: translateY(1);
  }

  20% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }

  40% {
    -webkit-transform: translateY(1);
    transform: translateY(1);
  }

  80% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }

  100% {
    -webkit-transform: translateY(1);
    transform: translateY(1);
  }
}
@keyframes scaleUp1 {
  0% {
    -webkit-transform: translateY(1);
    transform: translateY(1);
  }

  20% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }

  40% {
    -webkit-transform: translateY(1);
    transform: translateY(1);
  }

  80% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }

  100% {
    -webkit-transform: translateY(1);
    transform: translateY(1);
  }
}
@keyframes rail-line {
  0% {
    transform: translate(-150px);
  }

  100% {
    transform: translate(150px);
    background: #ff3e41;
  }
}
@-moz-keyframes rail-line {
  0% {
    transform: translate(-150px);
  }

  100% {
    transform: translate(150px);
    background: #ff3e41;
  }
}
@-webkit-keyframes rail-line {
  0% {
    transform: translate(-50px);
  }

  100% {
    transform: translate(50px);
    background: #ff3e41;
  }
}
@keyframes type {
  0% {
    width: 0ch;
  }

  100% {
    width: 100%;
  }
}
@-webkit-keyframes type {
  0% {
    width: 0ch;
  }

  100% {
    width: 100%;
  }
}
@keyframes runs {
  0% {
    transform: translateY(0) rotate(90deg);
  }

  50% {
    transform: translateY(300px) rotate(90deg);
  }

  100% {
    transform: translateY(-300px) rotate(180deg);
  }
}
@-webkit-keyframes runs {
  0% {
    transform: translateY(0) rotate(90deg);
  }

  50% {
    transform: translateY(300px) rotate(90deg);
  }

  100% {
    transform: translateY(-300px) rotate(180deg);
  }
}
@-moz-keyframes runs {
  0% {
    transform: translateY(0) rotate(90deg);
  }

  50% {
    transform: translateY(300px) rotate(90deg);
  }

  100% {
    transform: translateY(-300px) rotate(180deg);
  }
}
@-o-keyframes runs {
  0% {
    transform: translateY(0) rotate(90deg);
  }

  50% {
    transform: translateY(300px) rotate(90deg);
  }

  100% {
    transform: translateY(-300px) rotate(180deg);
  }
}
@keyframes zoomIncolor {
  0% {
    transform: scale(0.8);
  }

  50% {
    transform: scale(1);
    background: #ff3e41;
    opacity: 0.5;
  }

  100% {
    transform: scale(1.3);
    background: #ff3e41;
    opacity: 0.8;
  }
}
@-webkit-keyframes zoomIncolor {
  0% {
    transform: scale(0.8);
  }

  50% {
    transform: scale(1);
    background: #ff3e41;
    opacity: 0.5;
  }

  100% {
    transform: scale(1.3);
    background: #ff3e41;
    opacity: 0.8;
  }
}
@-moz-keyframes zoomIncolor {
  0% {
    transform: scale(0.8);
  }

  50% {
    transform: scale(1);
    background: #ff3e41;
    opacity: 0.5;
  }

  100% {
    transform: scale(1.3);
    background: #ff3e41;
    opacity: 0.8;
  }
}
@keyframes squareMove {
  0% {
    transform: translateX(0px) rotate(0deg);
  }

  33% {
    transform: translateY(-100px) rotate(180deg);
  }

  66% {
    transform: translateX(200px) rotate(-90deg);
  }

  100% {
    transform: translateX(0px) rotate(0deg);
  }
}
@-webkit-keyframes squareMove {
  0% {
    transform: translateX(0px);
  }

  33% {
    transform: translateY(-100px);
  }

  66% {
    transform: translateX(200px);
  }

  100% {
    transform: translateX(0px);
  }
}
@-moz-keyframes squareMove {
  0% {
    transform: translateX(0px);
  }

  33% {
    transform: translateY(-100px);
  }

  66% {
    transform: translateX(200px);
  }

  100% {
    transform: translateX(0px);
  }
}
/*--
	-theme-btn
----------------------------------------*/
.theme_btn {
  overflow: hidden;
  color: white;
  background: #ff3e41;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 1;
  padding: 22px 45px 22px 45px;
  display: inline-block;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  text-transform: uppercase;
}
.theme_btn:hover {
  color: white;
  background: #51cfed;
}
.theme_btn.style-3:hover {
  transform: translateY(-3px);
  text-decoration: underline;
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
}

.theme_btn2 {
  padding: 22px 48px 22px 48px;
}

.theme_btn_border {
  background: transparent;
  border: 1px solid #060315;
  color: #060315;
  border-radius: 3px;
  padding: 10px ​35px !important;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.theme_btn_border:hover, .theme_btn_border.active {
  color: white;
  background-color: #060315;
  border-color: #060315;
}
.theme_btn_border.active:hover {
  background: transparent;
  border: 2px solid black;
  color: black;
}
.theme_btn_border.style-2b {
  border-color: #ff3e41;
  padding: 20px 32px;
  color: #ff3e41;
}
.theme_btn_border.style-2b:hover {
  color: white;
  background-color: #ff3e41;
}

.border_btn_red {
  color: #ff3e41;
  border-color: #ff3e41;
}
.border_btn_red:hover, .border_btn_red.active {
  color: white;
  background-color: #ff3e41;
  border-color: #ff3e41;
}

.black-btn {
  background-color: #060315;
  padding: 20px 33px;
  text-transform: initial;
}
.black-btn:hover {
  background-color: #51cfed;
}

.form-btn {
  border: 0;
}

.blog-more .theme_btn_border {
  padding: 21px 30px;
}

.btn-hover-style {
  position: relative;
  z-index: 1;
}
.btn-hover-style::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 25px;
  height: 100%;
  background-color: #FF696B;
  z-index: -1;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.btn-hover-style:hover::before {
  width: 100%;
  background-color: #51cfed;
}

.intro-custom-container {
  max-width: 1485px;
  margin: 0 auto;
}

.services-custom-container {
  max-width: 1605px;
  margin: 0 auto;
}

.services-custom-container-2 {
  max-width: 1420px;
  margin: 0 auto;
}

.testimonial-custom-container {
  max-width: 1250px;
  margin: 0 auto;
}

.page-title-custom-container {
  max-width: 1580px;
  margin: 0 auto;
}

.slider-shape {
  position: absolute;
  z-index: 1;
}
.slider-shape.shape_01 {
  bottom: 85px;
  left: 0;
  z-index: 2;
}
.slider-shape.shape_02 {
  right: 44%;
  bottom: 112px;
}
.slider-shape.shape_03 {
  right: 20.67%;
  bottom: 0;
}
.slider-shape.shape_04 {
  left: 13.54%;
  top: 207px;
}
.slider-shape.shape_05 {
  left: 160px;
  top: 58%;
}
.slider-shape.shape_06 {
  top: 305px;
  right: 32.55%;
}
.slider-shape.shape_07 {
  right: 94px;
  bottom: 100px;
}
.slider-shape.shape_08 {
  right: 4.68%;
  top: 227px;
}

.main-slider {
  position: relative;
}

.transport {
  position: absolute;
  z-index: 1;
}
.transport.img-one {
  right: 9.5%;
  top: -93px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .transport.img-one {
    max-width: 33%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .transport.img-one {
    max-width: 20%;
  }
}
@media (max-width: 767px) {
  .transport.img-one {
    max-width: 40%;
  }
}
.transport.img-two {
  right: 24%;
  bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .transport.img-two {
    max-width: 18%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .transport.img-two {
    max-width: 18%;
  }
}
.transport.img-three {
  right: 14.5%;
  bottom: 125px;
  animation: float-bob-y infinite 4s linear;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .transport.img-three {
    max-width: 7%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .transport.img-three {
    max-width: 7%;
  }
}
.transport.img-four {
  right: 60px;
  bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .transport.img-four {
    max-width: 13%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .transport.img-four {
    max-width: 13%;
  }
}

.slider-video {
  display: inline-block;
  text-align: center;
  position: absolute;
  right: 11%;
  bottom: -120px;
  z-index: 2;
}
@media (max-width: 767px) {
  .slider-video {
    right: 0;
    bottom: -167px;
    z-index: 2;
    left: 0;
    margin: 0 auto;
  }
}
.slider-video .popup-video {
  margin-bottom: 30px;
}
.slider-video h2 {
  font-size: 36px;
  font-family: "gloss_and_bloomregular";
  font-weight: 400;
}

.styled-text {
  font-size: 24px;
  font-weight: 400;
  font-family: "gloss_and_bloomregular";
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .styled-text {
    font-size: 20px;
  }
}

.main-title {
  font-size: 120px;
  line-height: 1.01;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .main-title {
    font-size: 72px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .main-title {
    font-size: 62px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-title {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .main-title {
    font-size: 36px;
  }
}

.slider__content {
  position: relative;
  z-index: 5;
}
.slider__content h5 {
  font-size: 20px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  line-height: 1.8;
  margin-bottom: 55px;
  padding-right: 100px;
}
@media (max-width: 767px) {
  .slider__content h5 {
    padding-right: 0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .main-slider-1 .slider-video {
    right: auto;
    left: 15px;
  }
}
@media (max-width: 767px) {
  .main-slider-1 .slider-video h2 {
    font-size: 30px;
  }
}

.main-slider2 {
  padding-top: 95px;
  position: relative;
  z-index: 2;
}
.main-slider2 .slider-video {
  right: 5%;
  bottom: -160px;
}
.main-slider2 .slider-video span {
  color: #060315;
  font-size: 20px;
  margin-right: 20px;
}
.main-slider2 .slider-video .popup-video {
  width: 75px;
  height: 75px;
  line-height: 75px;
  animation: pulseBig2 infinite 5s linear;
  -webkit-animation: pulseBig2 infinite 5s linear;
}
.main-slider2 .slider-video .popup-video:hover {
  background-color: #38c8ec;
}

#slider-two {
  background-color: #eef4f6;
}

.slider-shape2 {
  position: absolute;
  z-index: 1;
}
.slider-shape2.shape_01 {
  top: 26%;
  left: 9%;
  animation: animationFramesTwo infinite 10s linear;
  -webkit-animation: animationFramesTwo infinite 10s linear;
}
.slider-shape2.shape_02 {
  left: 3.5%;
  top: 48%;
  animation: float-bob-y infinite 5s linear;
  -webkit-animation: float-bob-y infinite 5s linear;
}
.slider-shape2.shape_03 {
  right: 22%;
  bottom: 0;
}
.slider-shape2.shape_04 {
  left: 20%;
  top: 28%;
}
.slider-shape2.shape_05 {
  left: 6%;
  bottom: 13%;
  animation: rotation infinite 5s alternate;
  -webkit-animation: rotation infinite 5s alternate;
}
.slider-shape2.shape_07 {
  right: 22%;
  bottom: 2%;
}
.slider-shape2.shape_06 {
  right: 11%;
  top: 27%;
  width: 52px;
  height: 52px;
  transform: rotate(41deg);
  z-index: 3;
}
.slider-shape2.shape_08 {
  right: 11.7%;
  bottom: 0;
}

.slide-img {
  position: absolute;
  z-index: 1;
}
.slide-img.img-one {
  top: 13%;
  right: 25%;
  z-index: 2;
  animation: float-bob-y infinite 4s linear;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .slide-img.img-one {
    top: 13%;
    right: 17%;
    width: 3%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .slide-img.img-one {
    top: 13%;
    right: 17%;
    width: 3%;
  }
}
.slide-img.img-two {
  right: 6%;
  top: 34%;
  z-index: 4;
}
@media only screen and (min-width: 1601px) and (max-width: 1800px) {
  .slide-img.img-two {
    right: 2%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .slide-img.img-two {
    width: 22%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .slide-img.img-two {
    width: 22%;
  }
}
.slide-img.img-three {
  right: 4.5%;
  top: -2%;
  z-index: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .slide-img.img-three {
    right: 1.5%;
    top: -5%;
  }
}

.bs-2::before {
  background-image: url(../img/shape/red-line-1.svg);
  height: 100%;
  left: 0;
  top: 31px;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .bs-2::before {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .bs-2::before {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bs-2::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .bs-2::before {
    display: none;
  }
}

.slider-style-3 {
  position: relative;
  z-index: 1;
}
.slider-style-3::before {
  content: '';
  position: absolute;
  background: url(../img/slider/home3-slider-shape1.png) no-repeat;
  left: 0;
  top: 17%;
  bottom: 0;
  width: 198px;
  height: 100%;
  z-index: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .slider-style-3::before {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .slider-style-3::before {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-style-3::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .slider-style-3::before {
    display: none;
  }
}

.main-slider3 .img-one {
  top: -9%;
  right: 4%;
  z-index: 2;
  animation: float-bob-y infinite 5s linear;
}
@media only screen and (min-width: 1601px) and (max-width: 1800px) {
  .main-slider3 .img-one {
    right: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .main-slider3 .img-one {
    width: 29%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .main-slider3 .img-one {
    width: 35%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-slider3 .img-one {
    top: 0;
    right: 4%;
    width: 42%;
  }
}
@media (max-width: 767px) {
  .main-slider3 .img-one {
    display: none;
  }
}
.main-slider3 .slider-video {
  right: 100px;
  bottom: -197px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .main-slider3 .slider-video {
    bottom: -140px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-slider3 .slider-video {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .main-slider3 .slider-video {
    display: none !important;
  }
}
.main-slider3 .slider-video .popup-video {
  background-color: #ff3e41;
}
.main-slider3 .slider-video .popup-video:hover {
  background-color: #51cfed;
}
.main-slider3 .slider__content h3 {
  padding-left: 10px;
  padding-right: 10px;
}
.main-slider3 .slider__content h3.bg-shape::before {
  height: 100%;
  top: 1px;
}

.slider-shape3 {
  position: absolute;
}
.slider-shape3.shape_01 {
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  top: 22%;
}
.slider-shape3.shape_02 {
  left: 11%;
  top: 20%;
}
.slider-shape3.shape_03 {
  right: 50.78%;
  bottom: 3%;
}
.slider-shape3.shape_04 {
  right: 0;
  bottom: 0;
}

.round-background {
  border-radius: 0 0 68% 68%;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .round-background {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
  }
}
@media (max-width: 767px) {
  .round-background {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
  }
}

.service-shape {
  position: absolute;
  z-index: 1;
}
.service-shape.service-1 {
  left: 13.22%;
  top: 28%;
  animation: rotation infinite 7s linear;
}
.service-shape.service-2 {
  right: 15.41%;
  top: 18%;
  animation: rotateIn infinite 4s linear;
}

.c-services {
  border-radius: 5px;
  padding: 50px 50px 57px 50px;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .c-services {
    padding: 50px 20px 57px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .c-services {
    padding: 50px 20px 57px 20px;
  }
}
@media (max-width: 767px) {
  .c-services {
    padding: 40px 15px 57px 5px;
  }
}
.c-services__icon {
  display: inline-block;
  width: 124px;
  height: 124px;
  background: rgba(206, 239, 255, 0);
  border: 1px solid transparent;
  border-radius: 50%;
  text-align: center;
  line-height: 124px;
  margin: 0 auto;
  margin-bottom: 35px;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.c-services__icon img {
  width: 78px;
  height: 78px;
}
.c-services .service-title {
  font-size: 30px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .c-services .service-title {
    font-size: 26px;
  }
}
.c-services p {
  color: rgba(24, 21, 44, 0.8);
  font-size: 18px;
}
.c-services a {
  color: black;
  font-size: 16px;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  transform: translateY(-20px);
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.c-services a img {
  margin-left: 6px;
  width: 20px;
  height: 10px;
}
.c-services a:hover {
  color: #ff3e41;
}
.c-services:hover, .c-services.active {
  border-radius: 5px;
  background: white;
  box-shadow: 0px 0px 26px rgba(215, 212, 212, 0.35);
  transform: translateY(-25px);
}
.c-services:hover .c-services__icon, .c-services.active .c-services__icon {
  border-color: #f9f0ee;
}
.c-services:hover a, .c-services.active a {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.feature-active.owl-carousel .owl-item img {
  display: inline-block !important;
  width: unset !important;
}

.onestop-management {
  position: relative;
  z-index: 1;
}

.manage-shape {
  position: absolute;
  z-index: 1;
}
.manage-shape.manage-1 {
  left: 120px;
  top: 27%;
  animation: float-bob-y infinite 4s alternate-reverse;
}
.manage-shape.manage-2 {
  left: 237px;
  bottom: 120px;
  animation: rotation infinite 5s linear;
}
.manage-shape.manage-3 {
  right: 0;
  z-index: -1;
  top: 0;
  animation: float-bob-y infinite 4s alternate;
}

.management-title {
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .management-title {
    padding-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .management-title {
    padding-right: 0;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .management-title {
    padding-right: 0;
    margin-bottom: 30px;
  }
}
.management-title h2 {
  margin-bottom: 35px;
  padding-right: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .management-title h2 {
    padding-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .management-title h2 {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .management-title h2 {
    padding-right: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .trusted-area {
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .trusted-area {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .trusted-area {
    padding-left: 15px;
  }
}

.row-count-content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .row-count-content {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 32px;
  }
}
@media (max-width: 767px) {
  .row-count-content {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .row-count-content {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 32px;
  }
}

.counter-box {
  padding: 35px 28px 25px 28px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-box {
    padding: 35px 15px 25px 15px;
  }
}
.counter-box h2 {
  font-size: 50px;
  margin-bottom: 15px;
}
.counter-box h2 b {
  font-size: 22px;
}
.counter-box h3 {
  font-weight: 600;
  margin-bottom: 14px;
}

.cb-1 {
  background-color: #FEFAF7;
}

.cb-3 {
  background-color: #F4FCFA;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cb-3 {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .cb-3 {
    margin-top: 0;
  }
}

.profit-shape {
  position: absolute;
  z-index: 1;
}
.profit-shape.pashape-1 {
  right: 16%;
  bottom: 16%;
}
.profit-shape.pashape-2 {
  right: 9.5%;
  bottom: 14%;
  animation: float-bob-y infinite 5s linear;
}
.profit-shape.pashape-2 {
  right: 9%;
  bottom: 9%;
  animation: float-bob-y infinite 5s linear;
}
.profit-shape.pashape-3 {
  right: 4%;
  bottom: 7%;
}
.profit-shape.pashape-4 {
  right: 0;
  bottom: 24%;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .services-wrapper .section-title {
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-wrapper .section-title {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .services-wrapper .section-title {
    padding-left: 0;
  }
}

.services-selers-img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 48%;
  height: 685px;
}
@media only screen and (min-width: 1601px) and (max-width: 1900px) {
  .services-selers-img {
    top: 95px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .services-selers-img {
    top: 210px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .services-selers-img {
    top: 200px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-selers-img {
    position: relative;
    width: 100%;
    height: 500px;
    margin-bottom: 150px;
  }
}
@media (max-width: 767px) {
  .services-selers-img {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .services-selers-img {
    top: 200px;
  }
}
.services-selers-img .pashape-5 {
  position: absolute;
  right: -22px;
  bottom: -12px;
  z-index: -1;
  animation: rotation infinite 5s linear;
}
.services-selers-img .pashape-6 {
  position: absolute;
  right: -66px;
  bottom: -30px;
  z-index: -1;
  animation: float-bob-y infinite 3s linear;
}

.service-shape2 {
  position: absolute;
  z-index: 1;
}
.service-shape2.service-1 {
  right: 5%;
  top: 34%;
  z-index: -1;
}

.c-service2 {
  background: white;
  box-shadow: 0px 0px 26px rgba(215, 212, 212, 0.35);
  padding: 50px 35px 0px 35px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .c-service2 {
    padding: 50px 10px 0px 10px;
  }
}
.c-service2 .c-services__icon {
  width: 78px;
  height: 78px;
  border: 0;
  position: relative;
  z-index: 1;
}
.c-service2 .c-services__icon::before {
  content: '';
  position: absolute;
  background-color: #F1F1F1;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  left: -5px;
  top: 15px;
  z-index: -1;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .c-service2 p {
    font-size: 16px;
  }
}
.c-service2.active {
  border-color: #060315;
  padding-bottom: 57px;
}
.c-service2:hover .c-services__icon {
  border: 0;
}
.c-service2:hover .c-services__icon::before {
  transform: scale(1.3);
}

.c-services-box {
  padding-bottom: 28px;
  border: 2px solid transparent;
  -webkit-transition: all 0.2s ease 0s;
  -moz-transition: all 0.2s ease 0s;
  -ms-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  margin-bottom: 30px;
}
.c-services-box:hover {
  border-color: #060315;
  background: white;
  box-shadow: 0px 0px 26px rgba(215, 212, 212, 0.35);
}
.c-services-box:hover .c-service2 {
  box-shadow: none;
}

.service-shape-v2 {
  position: absolute;
  z-index: 1;
}
.service-shape-v2.service-1 {
  right: 9.89%;
  top: 42%;
  animation: float-bob-y infinite 5s linear;
}
.service-shape-v2.service-2 {
  right: 92px;
  top: -98px;
  z-index: 2;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .service-shape-v2.service-2 {
    top: -178px;
  }
}

.value-shape {
  position: absolute;
  z-index: 1;
}
.value-shape.vshape-1 {
  top: 12%;
  right: 8.75%;
  animation: float-bob-y infinite 4s linear;
  -webkit-animation: float-bob-y infinite 4s linear;
}
.value-shape.vshape-2 {
  top: 24%;
  left: 6.19%;
  animation: float-bob-y infinite 3s linear;
  -webkit-animation: float-bob-y infinite 3s linear;
}

.value-added-content {
  padding-right: 60px;
  padding-left: 28px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .value-added-content {
    padding-right: 0;
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .value-added-content {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .value-added-content {
    padding-right: 0;
    padding-left: 0;
  }
}
.value-added-content .section-title {
  padding-right: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .value-added-content .section-title {
    padding-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .value-added-content .section-title {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .value-added-content .section-title {
    padding-right: 0;
  }
}

.added-list li {
  color: rgba(24, 21, 44, 0.9);
  font-size: 16px;
  padding-left: 22px;
  margin-bottom: 9px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .added-list li {
    font-size: 14px;
  }
}
.added-list li::before {
  content: '\f00c';
  position: absolute;
  font-family: "Font Awesome 5 pro";
  font-size: 16px;
  left: 0;
  top: 0;
  z-index: 1;
}

.text-list-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0px;
}
@media (max-width: 767px) {
  .text-list-box {
    display: block;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .text-list-box {
    display: grid;
  }
}

.shipment-time {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
@media (max-width: 767px) {
  .shipment-time {
    display: block;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .shipment-time {
    display: grid;
  }
}
.shipment-time .box-one {
  background-color: #FEFAF7;
  border-radius: 5px;
  padding: 35px 30px 40px 32px;
}
.shipment-time .box-one .box-title {
  font-size: 50px;
}
@media (max-width: 767px) {
  .shipment-time .box-one .box-title {
    font-size: 26px;
  }
}
.shipment-time .box-2 {
  background-color: #e7f4f7;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .shipment-time-content {
    padding-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shipment-time-content {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .shipment-time-content {
    padding-right: 0;
  }
}

.shipment-content-img {
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .shipment-content-img {
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shipment-content-img {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .shipment-content-img {
    padding-left: 0;
  }
}

.air-shape {
  position: absolute;
  z-index: 1;
}
.air-shape.shape_01 {
  left: 120px;
  top: 22%;
  animation: rotation infinite 5s linear;
}
.air-shape.shape_02 {
  right: -16px;
  top: -20px;
  transform: rotate(40deg);
}

.shape-style {
  overflow: hidden;
}
.shape-style::before {
  content: '';
  position: absolute;
  width: 503px;
  height: 212px;
  background: #f5f1e7;
  left: 160px;
  top: 137px;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .shape-style::before {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shape-style::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .shape-style::before {
    display: none;
  }
}
.shape-style::after {
  content: '';
  position: absolute;
  width: 503px;
  height: 212px;
  background: #f5f1e7;
  right: 15.83%;
  top: 14%;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .shape-style::after {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shape-style::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .shape-style::after {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .why-chose-us-bg {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .why-chose-us-bg {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .why-chose-us-bg .chose-wrapper {
    background-color: transparent;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .why-chose-us-bg .chose-wrapper {
    background-color: transparent;
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .why-chose-us-bg .chose-wrapper {
    background-color: transparent;
    padding-top: 60px;
  }
}

.chose-img-wrapper {
  position: relative;
  z-index: 1;
}
.chose-img-wrapper .big-img {
  margin-left: -188px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .chose-img-wrapper .big-img {
    max-width: 100%;
    height: auto;
    margin-left: 0;
    margin-top: 130px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chose-img-wrapper .big-img {
    max-width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .chose-img-wrapper .big-img {
    max-width: 100%;
    margin-left: 0;
  }
}

.chose-shape {
  position: absolute;
  z-index: 1;
}
.chose-shape.cshape-1 {
  top: 38px;
  left: -57%;
}
.chose-shape.cshape-2 {
  right: -107px;
  bottom: -155px;
  z-index: -1;
}
.chose-shape.cshape-3 {
  right: 14.42%;
  top: 29%;
  animation: float-bob-y 4s infinite linear;
  z-index: 2;
}
.chose-shape.cshape-4 {
  right: 0;
  bottom: 0;
}
.chose-shape.cshape-5 {
  left: -54px;
  bottom: 0;
}

.chose-wrapper {
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .chose-wrapper {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chose-wrapper {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (max-width: 767px) {
  .chose-wrapper {
    padding-right: 0;
    padding-left: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .chose-wrapper .section-title {
    padding-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chose-wrapper .section-title {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .chose-wrapper .section-title {
    padding-right: 0;
  }
}

.chose-box {
  padding: 0;
  overflow: hidden;
  clear: both;
}
.chose-box p {
  margin-top: 18px;
  width: 50%;
  float: left;
}
@media (max-width: 767px) {
  .chose-box p {
    width: 100%;
    float: none;
  }
}

.single-box-list {
  padding: 0;
  padding-right: 45px;
  margin: 0;
  list-style: none;
  width: 50%;
  float: left;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .single-box-list {
    padding-right: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .single-box-list {
    padding-right: 10px;
  }
}
@media (max-width: 767px) {
  .single-box-list {
    padding: 0;
    padding-right: 0;
    margin: 0;
    list-style: none;
    width: 100%;
    float: none;
  }
}
.single-box-list li {
  margin-bottom: 10px;
  padding: 15px 0;
}
.single-box-list li:nth-child(2) {
  border-top: 1px solid #d9e3e5;
  border-bottom: 1px solid #d9e3e5;
}

.single-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.single-box h4 {
  font-size: 26px;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .single-box h4 {
    font-size: 18px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .why-chose-wrapper .section-title2 {
    margin-bottom: 25px;
  }
}

.comic-progress-bar {
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .comic-progress-bar {
    margin-bottom: 15px;
  }
}
.comic-progress-bar .p-title {
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin-bottom: 18px;
}
.comic-progress-bar .progress {
  height: 19px;
  background-color: transparent;
  border-radius: 0;
  border: 1px solid #E6E6E6;
  overflow: visible;
  width: 100%;
}
.comic-progress-bar .progress .progress-bar {
  color: rgba(24, 21, 44, 0.9);
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  background-color: #ff3e41;
  width: 90%;
  height: 9px;
  margin-top: 4px;
  margin-left: 6px;
  overflow: visible;
}
.comic-progress-bar .progress .progress-bar span {
  text-align: right;
  margin-top: -75px;
}
.comic-progress-bar .progress .bar-2 {
  background-color: #51cfed;
}
.comic-progress-bar .progress .bar-3 {
  background-color: #FB9D49;
}

.logistics-shape {
  position: absolute;
  z-index: 1;
}
.logistics-shape.shape_01 {
  left: 126px;
  top: 401px;
  animation: animationFramesTwo infinite 10s linear;
  -webkit-animation: animationFramesTwo infinite 10s linear;
}

.best-img-box {
  position: relative;
}
.best-img-box .best-img {
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .best-img-box .best-img {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .best-img-box .best-img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .best-img-box .best-img {
    width: 100%;
  }
}
.best-img-box .counter-box {
  position: absolute;
  bottom: 0;
  z-index: 3;
  background-color: white;
  text-align: start;
  width: 240px;
  height: 198px;
  border-radius: 5px;
  box-shadow: 0px 15px 38px rgba(197, 198, 208, 0.35);
}
.best-img-box .cb-1a {
  top: 190px;
  left: 118px;
}
@media (max-width: 767px) {
  .best-img-box .cb-1a {
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
  }
}
.best-img-box .cb-2 {
  right: -60px;
  left: auto;
  bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .best-img-box .cb-2 {
    right: 0;
    bottom: -40px;
  }
}

.best-shape {
  position: absolute;
  z-index: 1;
}
.best-shape.best-1 {
  top: -29px;
  left: 48px;
}
.best-shape.best-2 {
  right: -40px;
  top: -33px;
}

.work-shape {
  position: absolute;
  z-index: 1;
}
.work-shape.pshape-1 {
  right: 11%;
  top: 26%;
  animation: float-bob-y infinite 5s linear;
}
.work-shape.pshape-2 {
  left: 7.5%;
  top: 28%;
  animation: float-bob-y infinite 5s linear;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .work-shape.pshape-2 {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .work-shape.pshape-2 {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .work-shape.pshape-2 {
    display: none;
  }
}
@media (max-width: 767px) {
  .work-shape.pshape-2 {
    display: none;
  }
}
.work-shape.pshape-3 {
  left: 12.39%;
  bottom: 12%;
  animation: scale-up-one infinite 3s linear;
}
.work-shape.pshape-4 {
  right: 8%;
  bottom: 16%;
  animation: rotation infinite 5s alternate-reverse;
}

.single-work {
  text-align: center;
  position: relative;
  z-index: 1;
}
.single-work__icon {
  background-color: #E7F4F7;
  display: inline-block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  line-height: 120px;
  position: relative;
  z-index: 2;
}
.single-work .semi-title {
  color: #18152c;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-work .semi-title {
    font-size: 18px;
  }
}

.sw-2::before {
  content: '';
  position: absolute;
  background: url(../img/icon/dot-line.svg) no-repeat;
  width: 100%;
  height: 81px;
  left: -151px;
  top: -67px;
  z-index: -1;
  transform: rotate(5deg);
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .sw-2::before {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sw-2::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .sw-2::before {
    display: none;
  }
}
.sw-2 .single-work__icon {
  background-color: #F9F5ED;
}

.sw-3::before {
  content: '';
  position: absolute;
  background: url(../img/icon/dot-line.svg) no-repeat;
  width: 100%;
  height: 81px;
  left: -151px;
  top: -68px;
  z-index: -1;
  transform: rotate(6deg);
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .sw-3::before {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sw-3::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .sw-3::before {
    display: none;
  }
}
.sw-3::after {
  content: '';
  position: absolute;
  background: url(../img/icon/dot-line.svg) no-repeat;
  width: 100%;
  height: 81px;
  right: -151px;
  top: -58px;
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .sw-3::after {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sw-3::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .sw-3::after {
    display: none;
  }
}
.sw-3 .single-work__icon {
  background-color: #FAF1F1;
}

.sw-4 .single-work__icon {
  background-color: #E9F3FF;
}

.section-title2 h2 .w-round-shape::before {
  background-image: url(../img/line/red-line-4.svg) no-repeat !important;
}

.logistics-box {
  animation: float-bob-y infinite 5s linear;
}

.work-shape-h3 {
  position: absolute;
  z-index: 1;
}
.work-shape-h3.pshape-1 {
  right: 6%;
  top: 25%;
  animation: float-bob-y infinite 5s linear;
}

.work-shape.case-1a {
  left: 5%;
  top: 18%;
}

.case-studies {
  z-index: 2;
}

.case-shape {
  position: absolute;
  z-index: 1;
}
.case-shape.cashape-1 {
  left: 5.10%;
  top: 23%;
  animation: animationFramesTwo infinite 10s linear;
}
.case-shape.cashape-2 {
  left: 7.5%;
  bottom: 8%;
  animation: float-bob-y infinite 4s linear;
  z-index: -1;
}
.case-shape.cashape-3 {
  right: 0;
  bottom: 1%;
  z-index: -1;
  animation: float-bob-y infinite 5s linear;
}
.case-shape.cashape-4 {
  right: 7%;
  bottom: 9%;
  animation: rotation infinite 10s linear;
}

.section-title .theme-bg-color2 {
  padding: 21px 33px;
}

.plus-icon {
  background: #060315;
  width: 62px;
  height: 62px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  line-height: 62px;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -31px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.plus-icon img {
  display: inline-block !important;
  max-width: 100% !important;
  width: 25px;
  height: 26px;
}
.plus-icon:hover img {
  width: 25px !important;
  height: 26px;
  transform: rotate(90deg);
}

.case-title {
  font-size: 36px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .case-title {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .case-title {
    font-size: 22px;
  }
}
.case-title:hover a {
  color: #ff3e41;
}

.case-feedback {
  padding-left: 115px;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .case-feedback {
    padding-left: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .case-feedback {
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .case-feedback {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .case-feedback {
    padding-left: 0;
  }
}
.case-feedback p {
  font-size: 20px;
  line-height: 1.8;
}

.authors-designation {
  position: relative;
  z-index: 1;
}
.authors-designation h5 {
  font-size: 20px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
.authors-designation h6 {
  color: #18152c;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
.authors-designation .signature {
  position: absolute;
  z-index: 1;
  left: 53%;
  top: -10px;
}

.single-case__thumb {
  overflow: hidden;
}
.single-case__thumb img {
  display: block;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.single-case__content {
  position: relative;
  background-color: white;
  padding: 70px 50px 70px 37px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .single-case__content {
    padding: 70px 30px 70px 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .single-case__content {
    padding: 40px 15px 70px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-case__content {
    padding: 40px 15px 70px 20px;
  }
}
@media (max-width: 767px) {
  .single-case__content {
    padding: 40px 15px 70px 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .single-case__content .case-title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .single-case__content .case-title {
    font-size: 26px;
  }
}
.single-case__content .plus-icon {
  display: inline-block;
}
.single-case__content .plus-icon img {
  display: inline-block;
  max-width: 100%;
}
.single-case:hover .single-case__thumb img {
  transform: scale(1.1);
}
.single-case:hover .single-case__content {
  box-shadow: 0px 35px 25px rgba(219, 223, 224, 0.35);
}
.single-case:hover .plus-icon {
  background-color: #51cfed;
}

.case-style-2 {
  padding-right: 175px;
  padding-left: 175px;
}
@media only screen and (min-width: 1601px) and (max-width: 1800px) {
  .case-style-2 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .case-style-2 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .case-style-2 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .case-style-2 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 767px) {
  .case-style-2 {
    padding-left: 0;
    padding-right: 0;
  }
}
.case-style-2 .single-case .single-case__content {
  padding: 70px 40px 70px 37px;
}
@media only screen and (min-width: 1601px) and (max-width: 1800px) {
  .case-style-2 .single-case .single-case__content {
    padding: 70px 15px 70px 15px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .case-style-2 .single-case .single-case__content {
    padding: 30px 15px 30px 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .case-style-2 .single-case .single-case__content {
    padding: 30px 15px 30px 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .case-style-2 .single-case .single-case__content {
    padding: 30px 15px 30px 15px;
  }
}
@media (max-width: 767px) {
  .case-style-2 .single-case .single-case__content {
    padding: 30px 15px 30px 15px;
  }
}
@media only screen and (min-width: 1601px) and (max-width: 1900px) {
  .case-style-2 .single-case .single-case__content .case-title {
    font-size: 28px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .case-style-2 .single-case .single-case__content .case-title {
    font-size: 28px;
  }
}

.case-shape.c2ashape-1 {
  left: 180px;
  top: 232px;
  animation: animationFramesTwo infinite 10s linear;
}
.case-shape.c2ashape-2 {
  right: 10%;
  top: 15%;
  animation: rotation infinite 5s alternate-reverse;
}
.case-shape.c2ashape-3 {
  right: 70px;
  top: 69%;
  animation: float-bob-y infinite 5s alternate-reverse;
}

.offer-bg {
  background-color: #FDF3EC;
  padding: 35px 40px 10px 55px;
  position: relative;
}
@media (max-width: 767px) {
  .offer-bg {
    padding: 35px 15px 10px 15px;
  }
}
.offer-bg .more_case {
  padding: 22px 30px 22px 30px;
}
@media (max-width: 767px) {
  .offer-bg .propose-offer h2 {
    font-size: 26px;
  }
}

.offer-shape {
  position: absolute;
  z-index: 1;
}
.offer-shape.offer-one {
  left: 15px;
  top: 25px;
  animation: rotation infinite 5s linear;
}
.offer-shape.offer-two {
  right: 14%;
  top: 20px;
}
.offer-shape.offer-three {
  right: 28%;
  bottom: 20px;
  animation: rotation infinite 4s linear;
  -webkit-animation: rotation infinite 4s linear;
}

.case-shape.case-one-a {
  left: 143px;
  top: 64%;
}
.case-shape.case-one-b {
  right: 0;
  z-index: -1;
  top: 26%;
}

.case-mesonry {
  border: 1px solid transparent;
  background-color: white;
  box-shadow: 0px 0px 49px 0px rgba(200, 198, 198, 0.35);
}
.case-mesonry .plus-icon {
  left: 40px;
  top: -34px;
  margin: 0;
  background-color: white;
  border: 1px solid #f0f0f0;
}
.case-mesonry .plus-icon img {
  filter: brightness(0) invert(0);
}
.case-mesonry .single-case__content {
  padding: 60px 50px 11px 37px;
  border: 1px solid transparent;
  border-top: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .case-mesonry .single-case__content {
    padding: 60px 15px 11px 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .case-mesonry .single-case__content {
    padding: 60px 15px 11px 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .case-mesonry .single-case__content {
    padding: 60px 15px 11px 15px;
  }
}
@media (max-width: 767px) {
  .case-mesonry .single-case__content {
    padding: 60px 15px 11px 15px;
  }
}
.case-mesonry:hover {
  box-shadow: 15.556px 15.556px 35px 0px rgba(192, 192, 192, 0.35);
}
.case-mesonry:hover .plus-icon {
  background-color: #ff3e41;
  border-color: #ff3e41;
}
.case-mesonry:hover .plus-icon img {
  filter: brightness(0) invert(1);
}
.case-mesonry:hover .single-case__content {
  border-color: #060315;
  border-top: 0;
}
.case-mesonry:hover .case-title a {
  color: #060315;
  text-decoration: underline;
}

.gf_btn {
  border: 0;
  background: transparent;
  color: #060315;
  font-size: 24px;
  font-family: "Saira Extra Condensed", sans-serif;
  font-weight: 500;
  line-height: 1;
  display: inline-block;
  margin: 5px 10px;
  padding: 0;
}
.gf_btn.active {
  color: #ff3e41;
}

.case-shape.case-two-a {
  left: 142px;
  top: 79.5%;
  animation: float-bob-y infinite 5s linear;
}
.case-shape.case-two-b {
  right: -98px;
  top: 51%;
  z-index: -1;
}

.case-single-content {
  padding-left: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .case-single-content {
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .case-single-content {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .case-single-content {
    padding-left: 0;
  }
}
.case-single-content .assistant-accesories {
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .case-single-content .assistant-accesories {
    grid-gap: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .case-single-content .assistant-accesories {
    grid-gap: 15px;
  }
}
@media (max-width: 767px) {
  .case-single-content .assistant-accesories {
    display: block;
    grid-gap: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .case-single-content .assistant-accesories {
    display: grid;
  }
}
.case-single-content .assistant-accesories .box-one {
  padding: 35px 22px 40px 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .case-single-content .assistant-accesories .box-one {
    padding: 35px 15px 40px 15px;
  }
}
@media (max-width: 767px) {
  .case-single-content .assistant-accesories .box-one {
    padding: 35px 10px 40px 10px;
  }
}
@media (max-width: 767px) {
  .case-single-content .assistant-accesories .box-one h3 {
    font-size: 22px;
  }
}
.case-single-content .assistant-accesories .box-3 {
  background-color: #ecf2fb;
}

.case-single-title {
  font-size: 65px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .case-single-title {
    font-size: 46px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .case-single-title {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .case-single-title {
    font-size: 26px;
  }
}

.project-manager .section-title {
  font-size: 24px;
}
.project-manager .social-links a:nth-child(2) {
  background-color: #51cfee;
}
.project-manager .social-links a:last-child {
  background-color: #6ba4da;
}
.project-manager .social-links a:hover {
  background-color: #060315;
}

.shipping-shape.sshape-3-case-2 {
  right: 6%;
  top: 10px;
  animation: rotation infinite 5s linear;
}

.pr-manager {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
@media (max-width: 767px) {
  .pr-manager {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pr-manager {
    margin-bottom: 0;
  }
}

.case-single-shape {
  position: absolute;
  z-index: 1;
}
.case-single-shape.cshape-1 {
  right: 0;
  z-index: -1;
  top: 37.5%;
  animation: float-bob-y infinite 3s linear;
  -webkit-animation: float-bob-y infinite 3s linear;
}

.testimonial-wrapper {
  padding: 65px 30px 45px 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .testimonial-wrapper {
    padding: 65px 20px 45px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-wrapper {
    padding: 65px 15px 45px 15px;
  }
}
@media (max-width: 767px) {
  .testimonial-wrapper {
    padding: 65px 15px 45px 15px;
  }
}

.testimonial-active.owl-carousel .owl-item img {
  display: inline-block !important;
  max-width: 100% !important;
}

.author-img1 {
  width: 81px;
  height: 81px;
  border-radius: 50%;
  float: left;
  margin-right: 10px;
  display: inline-block;
}

.authors-name {
  margin-top: 12px;
}
.authors-name .sect-title {
  color: #060315;
  font-weight: 600;
  margin-bottom: 0;
}

.test-shape {
  position: absolute;
  z-index: 1;
}
.test-shape.tshape-1 {
  top: 23%;
  left: 7.5%;
  animation: float-bob-y infinite 5s linear;
}
.test-shape.tshape-2 {
  top: 30%;
  left: 7.7%;
  animation: float-bob-y infinite 5s linear;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .test-shape.tshape-2 {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .test-shape.tshape-2 {
    display: none !important;
  }
}
.test-shape.tshape-3 {
  right: 7.5%;
  top: 18%;
  animation: float-bob-y infinite 5s linear;
}
.test-shape.tshape-4 {
  bottom: 9%;
  right: 7.5%;
  width: 52px;
  height: 52px;
  transform: rotate(78deg);
  animation: float-bob-y infinite 5s linear;
}

.nav-style-1 .owl-dots {
  position: absolute;
  z-index: 11;
  left: 0;
  right: 0;
  text-align: center;
  bottom: -80px;
}
.nav-style-1 .owl-dots .owl-dot {
  background-color: #E7E6E5 !important;
  width: 18px;
  height: 5px;
  border-radius: 2.5px;
  display: inline-block;
  margin: 0 5px;
}
.nav-style-1 .owl-dots .owl-dot.active {
  background-color: #ff3e41 !important;
}

.testimonial-style {
  position: relative;
  z-index: 1;
}
.testimonial-style::before {
  content: '';
  position: absolute;
  background-color: #f7f7f7;
  left: 376px;
  top: 140px;
  width: 363px;
  height: 440px;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .testimonial-style::before {
    left: 0;
    top: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-style::before {
    left: 0;
    top: 60px;
  }
}
@media (max-width: 767px) {
  .testimonial-style::before {
    display: none;
  }
}

.testimonial-wrapper2 {
  position: relative;
  z-index: 3;
}
.testimonial-wrapper2 .author-img {
  width: 81px;
  height: 81px;
}
.testimonial-wrapper2 img {
  display: inline-block !important;
  max-width: 100% !important;
}
.testimonial-wrapper2 .testimonial-text {
  font-size: 32px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .testimonial-wrapper2 .testimonial-text {
    font-size: 18px;
  }
}

.copic-team-wrapper .section-title {
  padding-right: 40px;
  padding-left: 40px;
}
@media (max-width: 767px) {
  .copic-team-wrapper .section-title {
    padding-left: 0;
    padding-right: 0;
  }
}

.social-links a {
  color: white;
  font-size: 16px;
  background-color: #ff3e41;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  line-height: 48px;
  text-align: center;
  margin: 0 3px;
}

.team-content {
  background: linear-gradient(rgba(4, 27, 32, 0) 0%, #0d0d0d 100%);
  background: -webkit-linear-gradient(rgba(4, 27, 32, 0) 0%, #0d0d0d 100%);
  background: -moz-linear-gradient(rgba(4, 27, 32, 0) 0%, #0d0d0d 100%);
  background: -o-linear-gradient(rgba(4, 27, 32, 0) 0%, #0d0d0d 100%);
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  bottom: -110%;
  padding: 25px 0;
  z-index: 1;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.team-content .sect-title {
  color: white;
  font-weight: 500;
  margin-bottom: 0;
}
.team-content p {
  color: white;
}

.team-wrapper {
  overflow: hidden;
}
.team-wrapper .team-thumb {
  overflow: hidden;
}
.team-wrapper .team-thumb img {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.team-wrapper .social-links a:last-child {
  background-color: #51cfed;
}
.team-wrapper .social-links a:hover {
  color: #ff3e41;
  background-color: white;
}
.team-wrapper:hover .team-thumb img {
  transform: scale(1.1);
}
.team-wrapper:hover .team-content {
  bottom: 0;
}

.team-shape {
  position: absolute;
  z-index: 1;
}
.team-shape.tmshape-1 {
  left: 6%;
  bottom: 18%;
  animation: rotation infinite 3s alternate;
}
.team-shape.tmshape-2 {
  right: 6%;
  bottom: 7.5%;
  z-index: -1;
  animation: float-bob-y infinite 5s alternate-reverse;
}
.team-shape.tmshape-3a {
  left: 146px;
  top: 200px;
  animation: float-bob-y infinite 5s alternate-reverse;
}
@media (max-width: 767px) {
  .team-shape.tmshape-3a {
    display: none;
  }
}

.copic-team-wrapper .bs-2::before {
  background-image: url(../img/line/red-line-5.svg);
  left: 8px;
  top: 17px;
}

.team-shape2 {
  position: absolute;
  z-index: 1;
}
.team-shape2.tmshape-1 {
  left: 108px;
  top: 39%;
  animation: float-bob-y infinite 7s alternate;
}
.team-shape2.tmshape-2 {
  right: 130px;
  top: 113px;
  animation: float-bob-y infinite 3s alternate;
  z-index: -1;
}

.blog-shape {
  position: absolute;
  z-index: 1;
}
.blog-shape.bshape-1 {
  right: 6%;
  top: 5%;
  animation: rotation 7s infinite linear;
}
.blog-shape.bshape-2 {
  left: 5.7%;
  top: 1%;
  animation: float-bob-y 5s infinite linear;
}
.blog-shape.bshape-3 {
  bottom: 16%;
  left: 5.7%;
  animation: float-bob-y 7s infinite linear;
}

.meta-btn {
  color: white;
  background-color: #ff3e41;
  border-radius: 3px;
  display: inline-block;
  line-height: 1;
  padding: 7px 12px;
}

.blog-title {
  font-weight: 600;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .blog-title {
    font-size: 26px;
  }
}

.blogs-content {
  padding: 30px 20px 20px 20px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .blogs-content {
    padding: 30px 15px 20px 15px;
  }
}
.blogs-content .blog-title a:hover {
  color: #ff3e41;
}

.comic-blogs-wrapper .comic-blogs-thumb {
  overflow: hidden;
}
.comic-blogs-wrapper .comic-blogs-thumb img {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.comic-blogs-wrapper:hover .comic-blogs-thumb img {
  transform: scale(1.1);
}
.comic-blogs-wrapper:hover .blogs-content {
  background: white;
  box-shadow: 0px 9px 24px rgba(213, 213, 213, 0.35);
}

.blog-gd-shape.bshape-3 {
  top: 45%;
  left: 10.3%;
  animation: float-bob-y 7s infinite linear;
}

.page-shape-02 {
  position: absolute;
  z-index: 1;
}
.page-shape-02.shape_08 {
  right: 80px;
  bottom: -40px;
}

.blog-list-content {
  padding-right: 35px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .blog-list-content {
    padding-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-list-content {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .blog-list-content {
    padding-right: 0;
  }
}

.blog-single .blog-title {
  font-size: 43px;
  line-height: 1.3;
  font-weight: 700;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .blog-single .blog-title {
    font-size: 36px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-single .blog-title {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .blog-single .blog-title {
    font-size: 26px;
  }
}
.blog-single .blog-title a:hover {
  color: #ff3e41;
}
.blog-single .meta-links:hover {
  color: #ff3e41;
}
.blog-single .more-btn {
  color: #060315;
  font-weight: 500;
}
.blog-single .more-btn:hover {
  text-decoration: underline;
}
.blog-single .blog-single-content {
  padding-right: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .blog-single .blog-single-content {
    padding-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-single .blog-single-content {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .blog-single .blog-single-content {
    padding-right: 0;
  }
}

.page-title-blog-single .page-shape.shape_05 {
  left: 10%;
  top: 80%;
}
.page-title-blog-single .page-shape.shape_06 {
  right: 10.76%;
  top: 234px;
}
.page-title-blog-single .page-shape.shape_09 {
  right: 8%;
  top: 34%;
}
.page-title-blog-single .page-title-wrapper .blog-author-img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-bottom: 15px;
}
.page-title-blog-single .page-title-wrapper .page-title {
  font-size: 75px;
  line-height: 1.08;
  margin-bottom: 23px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .page-title-blog-single .page-title-wrapper .page-title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .page-title-blog-single .page-title-wrapper .page-title {
    font-size: 26px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .page-title-blog-single .page-title-wrapper .page-title {
    font-size: 36px;
  }
}

.blog-single-box {
  border: 1px solid #060315;
  background-color: #f3f8fd;
  padding: 50px 80px 50px 40px;
}
@media (max-width: 767px) {
  .blog-single-box {
    padding: 50px 15px 50px 15px;
  }
}
.blog-single-box .blog-single-content {
  padding-right: 0;
}

.page-navigation .page-item:first-child .page-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.page-navigation .page-item:last-child .page-link:hover img {
  filter: brightness(1) invert(1);
}
.page-navigation .page-link {
  color: #060315;
  font-size: 18px;
  background-color: transparent;
  width: 54px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  margin: 0 7px;
  padding: 0;
}
@media (max-width: 767px) {
  .page-navigation .page-link {
    font-size: 14px;
    width: 40px;
    height: 40px;
    line-height: 42px;
    margin: 0 2px;
  }
}
.page-navigation .page-link:hover, .page-navigation .page-link:focus {
  z-index: 2;
  color: white;
  background-color: #ff3e41;
  border-color: #ff3e41;
  outline: none;
  box-shadow: none;
}

.blog-quote p {
  color: #060315;
  font-size: 30px;
  font-family: "Saira Extra Condensed", sans-serif;
  line-height: 1.3;
}

.share-links {
  border-width: 1px 0 1px 0;
  border-color: #d9e3e5;
  border-style: solid;
  padding-top: 30px;
}

.tag_cloud .tag {
  color: #060315;
  font-size: 15px;
  border: 1px solid #060315;
  line-height: 1;
  padding: 9px 12px;
  display: inline-block;
  margin-right: 2px;
}
.tag_cloud .tag:hover {
  color: white;
  background-color: #ff3e41;
  border-color: #ff3e41;
}

.social_share a {
  color: #060315;
}
.social_share a:hover {
  color: #060315;
}
.social_share span {
  color: white;
  font-size: 25px;
  line-height: 54px;
  width: 54px;
  height: 54px;
  display: inline-block;
  border-radius: 50%;
  background-color: #ff3e41;
  text-align: center;
  margin-left: 12px;
}

.nav-heding {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

.post-left {
  padding-right: 140px;
  text-align: start;
  margin-bottom: 30px;
  line-height: 1.3;
  cursor: pointer;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .post-left {
    padding-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .post-left {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .post-left {
    padding-right: 0;
  }
}
.post-left:hover h4 {
  color: #ff3e41;
}

.post-right {
  padding-left: 100px;
  text-align: end;
  margin-bottom: 30px;
  line-height: 1.3;
  cursor: pointer;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .post-right {
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .post-right {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .post-right {
    text-align: start;
    padding-left: 15px;
  }
}
.post-right:hover h4 {
  color: #ff3e41;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .blog-details-content {
    padding-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-details-content {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .blog-details-content {
    padding-right: 0;
  }
}

.shipping-shape {
  position: absolute;
  z-index: 1;
}
.shipping-shape.sshape-1 {
  left: 12.5%;
  top: 32%;
  animation: animationFramesTwo 15s infinite linear;
}
.shipping-shape.sshape-2 {
  right: -55px;
  bottom: 120px;
  width: 385px;
  height: 185px;
  transform: rotateY(-180deg);
}

.shipping-img-box {
  position: relative;
}
.shipping-img-box .img-one {
  position: absolute;
  left: 14%;
  top: -6%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shipping-img-box .img-one {
    top: 0;
  }
}

.bi-cycle {
  max-width: 345px;
  width: 100%;
  min-height: 365px;
  left: 14.5%;
  right: 0;
  margin: 0 auto;
  top: 35px;
  z-index: 3;
}
@media (max-width: 767px) {
  .bi-cycle {
    left: 8.5%;
  }
}
.bi-cycle .img-three {
  position: absolute;
  left: -1.2%;
  bottom: 3%;
  animation: rotation infinite 5s linear;
}
@media (max-width: 767px) {
  .bi-cycle .img-three {
    left: -9.2%;
  }
}
.bi-cycle .img-four {
  position: absolute;
  right: 10%;
  bottom: 2.3%;
  z-index: -1;
  animation: rotation infinite 5s linear;
}
@media (max-width: 767px) {
  .bi-cycle .img-four {
    right: 2%;
  }
}
.bi-cycle .img-five {
  position: absolute;
  bottom: 2%;
  left: 0;
}

.fw-bold {
  font-weight: 700;
}

.fw-semibold {
  font-weight: 600;
}

.fw-medium {
  font-weight: 500;
}

.fw-normal {
  font-weight: 400;
}

.fw-light {
  font-weight: 300;
}

.fs-20 {
  font-size: 20px;
}

.fs-16 {
  font-size: 20px;
}

.fs-14 {
  font-size: 20px;
}

.fs-12 {
  font-size: 20px;
}

.single-box-list2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  border-bottom: 1px solid #d9e3e5;
  padding-bottom: 24px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-box-list2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .single-box-list2 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.about-shape {
  position: absolute;
  z-index: 1;
}
.about-shape.ashape-1 {
  right: 11%;
  top: 13%;
  animation: float-bob-y 4s infinite linear;
  z-index: 2;
}
.about-shape.ashape-2 {
  bottom: 0;
  left: -20px;
}
.about-shape.ashape-3 {
  bottom: 0;
  right: -20px;
  transform: rotateY(-90deg);
}
.about-shape.ashape-4 {
  right: 5%;
  top: 68%;
  animation: float-bob-y 4s infinite linear;
}

.about-img-wrapper {
  position: relative;
  z-index: 2;
}
.about-img-wrapper .about-one {
  margin-left: -270px;
  margin-top: -50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-img-wrapper .about-one {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .about-img-wrapper .about-one {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 30px;
  }
}
.about-img-wrapper .about-two {
  position: absolute;
  bottom: -27%;
  right: 16%;
}

.about-box-shape {
  position: absolute;
  z-index: 1;
}
.about-box-shape.about-three {
  right: 83%;
  bottom: -34%;
  transform: rotate(-83deg);
  z-index: -1;
}
.about-box-shape.about-four {
  left: -35%;
  top: -15%;
}
.about-box-shape.about-five {
  left: -60px;
  bottom: -55px;
  z-index: -1;
}
.about-box-shape.about-six {
  right: 37px;
  bottom: -195px;
  z-index: -1;
}
.about-box-shape.about-seven {
  right: 39px;
  bottom: 75px;
  z-index: -1;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .about-wrapper {
    padding-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-wrapper {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .about-wrapper {
    padding-right: 0;
  }
}

.about-shape3 {
  position: absolute;
  z-index: 1;
}
.about-shape3.ashape-3 {
  bottom: 0;
  right: 10.31%;
  transform: rotateY(186deg);
  z-index: 2;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .about-shape3.ashape-3 {
    right: 0;
  }
}

.copic-faq {
  position: relative;
  z-index: 1;
}
.copic-faq .faq-shape {
  position: absolute;
  z-index: 1;
}
.copic-faq .faq-shape.faq-one {
  left: 186px;
  top: 68%;
}
.copic-faq .faq-shape.faq-two {
  right: 86px;
  top: 82px;
}

.text-list {
  padding-right: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .text-list {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .text-list {
    padding-right: 0;
  }
}
.text-list li {
  padding-left: 30px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}
.text-list li::before {
  content: '\f00c';
  position: absolute;
  font-family: "Font awesome 5 Pro";
  font-size: 16px;
  left: 0;
  top: 0;
  z-index: 1;
}

.faq-que-list .accordion-item {
  margin-bottom: 30px;
  border: 0;
}
.faq-que-list .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.faq-que-list .accordion-item .accordion-button {
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  border: 0;
  background-color: #ff3e41;
  border-radius: 0;
  padding: 24px;
  position: relative;
}
.faq-que-list .accordion-item .accordion-button::before {
  content: '\f068';
  position: absolute;
  font-family: "Font awesome 5 Pro";
  font-size: 16px;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.faq-que-list .accordion-item .accordion-button::after {
  display: none;
}
.faq-que-list .accordion-item .accordion-button:focus {
  z-index: 3;
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}
.faq-que-list .accordion-item .collapsed {
  color: #060315;
  background-color: #f8f6f6;
}
.faq-que-list .accordion-item .collapsed::before {
  content: '\f067';
}
.faq-que-list .accordion-item .accordion-body {
  padding: 25px 24px 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-que-list .accordion-item .accordion-body {
    padding: 15px 0 5px;
  }
  .faq-que-list .accordion-item .accordion-body p {
    line-height: 1.5;
  }
}

.faq-area-2 .faq-que-list .accordion-item .accordion-button {
  color: #060315;
  background-color: white;
  border: 1px solid #060315;
  padding-left: 52px;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 767px) {
  .faq-area-2 .faq-que-list .accordion-item .accordion-button {
    font-size: 16px;
    padding-left: 45px;
    padding-right: 10px;
  }
}
.faq-area-2 .faq-que-list .accordion-item .accordion-button::before {
  left: 22px;
}
.faq-area-2 .faq-que-list .accordion-item .collapsed {
  border: 1px solid transparent;
}

.faq-shape.sshape-2 {
  position: absolute;
  right: 6%;
  top: 14%;
  animation: float-bob-y infinite 4s linear;
  -webkit-animation: float-bob-y infinite 4s linear;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .faq-img-box img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .faq-img-box img {
    width: 100%;
  }
}

.call-to-action {
  position: relative;
}

.cta-border {
  border: 2px solid #060315;
  padding: 25px 70px 0;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-border {
    padding: 25px 15px 0;
  }
}
@media (max-width: 767px) {
  .cta-border {
    padding: 25px 15px 0;
  }
}

.cta-shape {
  position: absolute;
  z-index: 1;
}
.cta-shape.cta-one {
  left: 211px;
  top: 95px;
  z-index: -2;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .cta-shape.cta-one {
    top: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-shape.cta-one {
    width: 30%;
    top: 60px;
  }
}
.cta-shape.cta-two {
  right: 115px;
  top: 150px;
}

.cta-title h2 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 38px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .cta-title h2 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-title h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .cta-title h2 {
    font-size: 26px;
  }
}

.contact-shape {
  position: absolute;
  z-index: 1;
}
.contact-shape.contact-one {
  left: 98px;
  bottom: 198px;
  animation: rotation infinite 3s linear;
}

.info-box .contact-title {
  font-size: 30px;
}

.contact-wrapper {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
}

.contact-form-1 input, .contact-form-1 textarea {
  border: 0;
  padding: 0;
  border-bottom: 1px solid #060315;
  background-color: transparent;
  width: 100%;
  font-size: 16px;
  text-transform: uppercase;
  padding-bottom: 18px;
  position: relative;
  resize: none;
}
.contact-form-1 textarea {
  height: 120px;
  display: block;
  width: 100%;
}

.comment-form .form-group label {
  color: #060315;
  font-size: 16px;
  display: block;
  margin-bottom: 12px;
}
.comment-form .form-group input {
  color: rgba(24, 21, 44, 0.5);
  font-size: 15px;
  text-transform: capitalize;
  background-color: #f7f7f6;
  height: 55px;
  border: 0;
  line-height: 52px;
  padding: 0;
  padding-left: 12px;
}
.comment-form .form-group textarea {
  color: rgba(24, 21, 44, 0.5);
  font-size: 15px;
  text-transform: capitalize;
  background-color: #f7f7f6;
  height: 190px;
  border: 0;
  padding: 0;
  padding-left: 12px;
  padding-top: 22px;
  resize: none;
}
.comment-form .form-check .form-check-input {
  margin-top: 4px;
  margin-right: 13px;
}

.contact-shape.contact-two {
  right: 96px;
  bottom: 62px;
  animation: float-bob-y infinite 4s linear;
}

.cta-shape.cta-service1 {
  left: 211px;
  top: 0;
  z-index: -2;
}
.cta-shape.cta-service2 {
  top: 25px;
}

.widget_search .search-form {
  position: relative;
  z-index: 1;
}
.widget_search .search-form::before {
  content: '\f002';
  position: absolute;
  font-size: 18px;
  font-family: "Font Awesome 5 Pro";
  left: 19px;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
}
.widget_search input {
  color: #ababab;
  font-size: 15px;
  line-height: 1;
  background-color: transparent;
  border: 1px solid #dddddd;
  border-radius: 0;
  width: 100%;
  height: 58px;
  padding-left: 49px;
}

.widget_categories ul li {
  color: #060315;
  font-size: 22px;
  font-weight: 500;
  font-family: "Saira Extra Condensed", sans-serif;
  position: relative;
  border-bottom: 1px solid #dddddd;
  padding: 14px 0;
}
.widget_categories ul li:first-child {
  border-top: 1px solid #dddddd;
}
.widget_categories ul li:hover a,
.widget_categories ul li:hover span {
  color: #ff3e41;
}
.widget_categories ul li span {
  position: absolute;
  top: right;
  right: 0;
}

.widget.widget_add_banner .wideget_cta_content {
  padding: 30px 30px 40px 30px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.widget.widget_add_banner .wideget_cta_content::before {
  content: "";
  position: absolute;
  width: 116px;
  height: 116px;
  background-color: #27D1F5;
  border-radius: 50%;
  left: -83px;
  top: -69px;
  z-index: -1;
}
.widget.widget_add_banner .wideget_cta_content::after {
  content: "";
  position: absolute;
  width: 116px;
  height: 116px;
  background-color: #27D1F5;
  border-radius: 50%;
  right: -83px;
  bottom: -69px;
  z-index: -1;
}
.widget.widget_add_banner .add-title {
  font-size: 30px;
}
.widget.widget_add_banner .number {
  font-size: 32px;
  font-family: "Saira Extra Condensed", sans-serif;
}

.quote-info-wrapper {
  background-color: white;
  box-shadow: 0px 0px 30px 0px rgba(229, 230, 232, 0.72);
  padding: 60px 5px 60px 25px;
}
@media (max-width: 767px) {
  .quote-info-wrapper {
    padding: 35px ​5px 10px 25px;
  }
}
.quote-info-wrapper p {
  color: #060315;
  font-size: 16px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
  display: inline-block;
}
.quote-info-wrapper .nice-select {
  width: 92%;
  background-color: #f6f6f6;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border: 1px solid transparent;
  height: 65px;
  line-height: 65px;
}
@media (max-width: 767px) {
  .quote-info-wrapper .nice-select {
    margin-bottom: 15px;
  }
}
.quote-info-wrapper .nice-select .list {
  width: 100%;
}
.quote-info-wrapper .nice-select.open {
  background-color: transparent;
  border-color: #060315;
}
.quote-info-wrapper .align-bottom-content {
  transform: translateY(59px);
  -webkit-transform: translateY(59px);
  -moz-transform: translateY(59px);
  -ms-transform: translateY(59px);
  -o-transform: translateY(59px);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .quote-info-wrapper .align-bottom-content {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
  }
}

.from-place {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .from-place {
    display: block;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .from-place {
    display: grid;
  }
}

.quotes-title {
  font-size: 30px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .quotes-title {
    font-size: 26px;
  }
}

.q-style1 {
  position: relative;
  z-index: 1;
  /* Chrome, Safari, Edge, Opera */
}
.q-style1 input {
  width: 100%;
  border: 0;
  background-color: #f6f6f6;
  height: 65px;
  padding-left: 16px;
  font-size: 15px;
  color: rgba(24, 21, 44, 0.6);
}
.q-style1 input::-webkit-outer-spin-button, .q-style1 input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.q-style1 input::-webkit-outer-spin-button,
.q-style1 input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.q-style1 .qut-btn {
  border: 0;
  background: 0;
  padding: 0;
  font-size: 11px;
  position: absolute;
  z-index: 2;
  top: 0;
}
.q-style1 .quantity-plus.qut-btn {
  right: 24px;
  top: 10px;
}
.q-style1 .quantity-minus.qut-btn {
  right: 24px;
  top: auto;
  bottom: 10px;
}

.footer-area {
  z-index: 2;
}

.fot-shape {
  position: absolute;
  z-index: 1;
}
.fot-shape.f-shape1 {
  left: 0;
  bottom: 6px;
  z-index: -1;
}
.fot-shape.f-shape2 {
  right: 12%;
  top: 16%;
  animation: rotation infinite 5s alternate;
  -webkit-animation: rotation infinite 5s alternate;
}
.fot-shape.f-shape3 {
  left: 11%;
  bottom: 30%;
  opacity: 0.5;
  animation: rotation infinite 5s linear;
}
.fot-shape.f-shape4 {
  right: 3%;
  bottom: 10%;
  width: 58px;
  height: 58px;
  transform: rotate(-96deg);
}

.footer__widget {
  position: relative;
  z-index: 3;
}
.footer__widget ul {
  list-style-type: none;
}
.footer__widget .widget-title {
  font-size: 28px;
  font-weight: 600;
}
.footer__widget .addres-details {
  color: #060315;
  font-size: 17px;
  display: inline-block;
}
.footer__widget .social-links a {
  color: white;
}
.footer__widget .social-links a:nth-child(2) {
  background-color: #51cfed;
}
.footer__widget .social-links a:nth-child(3) {
  background-color: #6BA4DA;
}
.footer__widget .social-links a:hover {
  background-color: #ff3e41;
}

.fot-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.fot-list li {
  list-style-type: none;
}
.fot-list li a {
  font-size: 17px;
  color: rgba(0, 1, 8, 0.9);
  display: inline-block;
  margin-bottom: 10px;
}
.fot-list li a:hover {
  color: #ff3e41;
}

.subscribe-form {
  position: relative;
}
.subscribe-form input {
  color: rgba(6, 3, 21, 0.5);
  width: 100%;
  background: white;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  height: 65px;
  display: inline-block;
  border: 0;
  padding-left: 50px;
}

.fot_sub_btn {
  border: 0;
  background-color: #51cfed;
  padding: 18px 16px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  border-radius: 4px 0 0 4px;
}
.fot_sub_btn img {
  filter: brightness(1) invert(1);
  -webkit-filter: brightness(1) invert(1);
}
.fot_sub_btn .right-arrow {
  color: white;
}

.copyright p {
  color: rgba(0, 1, 8, 0.9);
}

.copy-right-area .fot-list li {
  display: inline-block;
  margin-left: 23px;
}

.borders-grey {
  border-bottom: 1px solid #d9e3e5;
}

.form-check {
  margin-bottom: 13px;
}
.form-check .form-check-input {
  width: 17px;
  height: 16px;
  margin-top: 6px;
  vertical-align: center;
  background-color: none !important;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 0;
}
.form-check .form-check-input:focus {
  border-color: 0 !important;
  outline: 0;
  box-shadow: none !important;
}
.form-check label.form-check-label {
  font-size: 16px;
}

.foter-layout-2 .subscribe-form input {
  background-color: #f3f3f3;
}

/*# sourceMappingURL=main.css.map */

.navbar .dropdown-menu .dropdown-item span{
	position:relative;
	color:#ffffff;
	font-size:12px;
	line-height:1em;
	padding:5px 10px;
	text-transform:uppercase;
	background-color:#ff3e41;
}