/*---------------------------
	Fonts
----------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;family=Rubik:ital,wght@0,300..900;1,300..900&amp;display=swap");

/* 01. Common css   */
html {
  font-size: 15px;
}

:root {
  scroll-behavior: unset;
}

body {
  font-family: "Rubik", sans-serif;
  color: #636363;
  background-color: #fff;
  font-size: 16px;
  font-size: calc-rem-value(16);
  overflow-x: hidden;
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

p {
  font-size: 16px;
  color: #636363;
  line-height: 1.8em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #ff0000;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

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

a {
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

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

@media (max-width: 991px) {
  .ptb-120 {
    padding: 90px 0;
  }
}

@media (max-width: 767px) {
  .ptb-120 {
    padding: 80px 0;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1290px;
  }
}

.hidden {
  display: none;
}

.sr-only {
  display: none !important;
  opacity: 0;
  visibility: hidden;
}

/* 1.2 Global Elements */
.page-wrap {
  position: relative;
  overflow: hidden;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1170px;
  }
}

.wow {
  visibility: hidden;
}

.fi:before {
  margin: 0;
}

.section-bg {
  background: #F5F5F5 !important;
}

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

@media (max-width: 991px) {
  .pt-120 {
    padding-top: 90px;
  }
}

@media (max-width: 767px) {
  .pt-120 {
    padding-top: 80px;
  }
}

@media (max-width: 575px) {
  .pt-120 {
    padding-top: 60px;
  }
}

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

@media (max-width: 991px) {
  .pb-120 {
    padding-bottom: 90px;
  }
}

@media (max-width: 767px) {
  .pb-120 {
    padding-bottom: 80px;
  }
}

@media (max-width: 575px) {
  .pb-120 {
    padding-bottom: 60px;
  }
}

/*** contact form error handling ***/
.contact-activation .error-handling-messages {
  width: 100% !important;
  margin-top: 15px !important;
}

.contact-activation label.error {
  color: red;
  font-size: 13px;
  font-weight: normal;
  margin: 5px 0 0 0;
  text-align: left;
  display: block;
  margin-bottom: 10px;
}

.contact-activation #c-loader,
.contact-activation #loader {
  display: none;
  margin-top: 10px;
}

.contact-activation #c-loader i,
.contact-activation #loader i {
  font-size: 30px;
  font-size: calc-rem-value(30);
  color: #ff0000;
  display: inline-block;
  -webkit-animation: rotating linear 2s infinite;
  animation: rotating linear 2s infinite;
}

.contact-activation #success,
.contact-activation #c-success,
.contact-activation #c-error,
.contact-activation #error {
  width: 100%;
  color: #fff;
  padding: 5px 10px;
  font-size: 16px;
  text-align: center;
  display: none;
}

@media (max-width: 767px) {

  .contact-activation #success,
  .contact-activation #c-success,
  .contact-activation #c-error,
  .contact-activation #error {
    font-size: 15px;
  }
}

.contact-activation #c-success,
.contact-activation #success {
  background-color: #009a00;
  border-left: 5px solid green;
  margin-bottom: 5px;
}

.contact-activation #c-error,
.contact-activation #error {
  background-color: #ff1a1a;
  border-left: 5px solid red;
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.rotating {
  -webkit-animation: rotating 5s alternate infinite;
  animation: rotating 5s alternate infinite;
}

/*** back to top **/
.back-btn {
  background-color: #ff0000;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 4px solid #005289;
  border-radius: 3px;
  text-align: center;
  display: none;
  position: fixed;
  z-index: 999;
  right: 15px;
  bottom: 15px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}

@media (max-width: 991px) {
  .back-btn {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}

.back-btn:hover {
  background-color: #ff0000;
}

.back-btn i {
  font-size: 18px;
  font-size: calc-rem-value(18);
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.pricing-page .pricing-section .pricing-item .pricing-item-inner {
  background: #f9fafb;
}

.left-to-right-shade {
  position: relative;
  overflow: hidden;
}

.left-to-right-shade:before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  transition: all 0.3s ease;
}

.left-to-right-shade:hover:before {
  -webkit-animation: shadeLf 1s;
  animation: shadeLf 1s;
}

.middle-shade {
  position: relative;
  overflow: hidden;
}

.middle-shade::before {
  background: rgba(255, 255, 255, 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  transition: all 0.4s linear;
  z-index: 1;
}

.middle-shade:hover:before {
  left: 0;
  right: 0;
  opacity: 0;
}

/** for popup image ***/
.mfp-wrap {
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 99999;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

/*** for fancybox video ***/
.fancybox-overlay {
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999 !important;
}

.fancybox-wrap {
  z-index: 99999 !important;
}

.ch-top-title,
.ch-top-title-s2,
.ch-top-title-s3 {
  margin-bottom: 45px;
  text-align: center;
}

@media (max-width: 991px) {

  .ch-top-title,
  .ch-top-title-s2,
  .ch-top-title-s3 {
    margin-bottom: 35px;
    text-align: center;
  }
}

@media (max-width: 575px) {

  .ch-top-title,
  .ch-top-title-s2,
  .ch-top-title-s3 {
    margin-bottom: 20px;
    text-align: center;
  }
}

.ch-top-title span,
.ch-top-title-s2 span,
.ch-top-title-s3 span {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #005289;
  font-family: "Poppins", sans-serif;
  padding-right: 30px;
  position: relative;
}

@media (max-width: 767px) {

  .ch-top-title span,
  .ch-top-title-s2 span,
  .ch-top-title-s3 span {
    font-size: 15px;
  }
}

@media (max-width: 450px) {

  .ch-top-title span,
  .ch-top-title-s2 span,
  .ch-top-title-s3 span {
    font-size: 14px;
  }
}

.ch-top-title h2,
.ch-top-title-s2 h2,
.ch-top-title-s3 h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  margin-top: 5px;
}

@media (max-width: 1199px) {

  .ch-top-title h2,
  .ch-top-title-s2 h2,
  .ch-top-title-s3 h2 {
    font-size: 40px;
    line-height: 50px;
  }
}

@media (max-width: 991px) {

  .ch-top-title h2,
  .ch-top-title-s2 h2,
  .ch-top-title-s3 h2 {
    font-size: 35px;
    line-height: 40px;
  }
}

@media (max-width: 575px) {

  .ch-top-title h2,
  .ch-top-title-s2 h2,
  .ch-top-title-s3 h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

@media (max-width: 450px) {

  .ch-top-title h2,
  .ch-top-title-s2 h2,
  .ch-top-title-s3 h2 {
    font-size: 22px;
    line-height: 35px;
  }
}

.ch-top-title-s2 {
  text-align: left;
}

.ch-top-title-s2 span {
  padding-right: 0;
}

.ch-top-title-s2 span:after {
  display: none;
}

.ch-top-title-s2 h2 {
  color: #1B1A1A;
}

.ch-top-title-s3 h2 {
  color: #1B1A1A;
}

.ch-btn-style-1,
.ch-btn-style-2,
.ch-btn-style-3,
.ch-btn-style-4 {
  background: #ff0000;
  color: #fff;
  display: inline-block;
  font-weight: 500;
  padding: 20px 45px;
  border: 0;
  z-index: 11;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.ch-btn-style-1::before,
.ch-btn-style-2::before,
.ch-btn-style-3::before,
.ch-btn-style-4::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #ff0000;
  transform-origin: 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  transition: 0.5s;
  z-index: -1;
}

.ch-btn-style-1:hover,
.ch-btn-style-1:focus,
.ch-btn-style-1:active,
.ch-btn-style-2:hover,
.ch-btn-style-2:focus,
.ch-btn-style-2:active,
.ch-btn-style-3:hover,
.ch-btn-style-3:focus,
.ch-btn-style-3:active,
.ch-btn-style-4:hover,
.ch-btn-style-4:focus,
.ch-btn-style-4:active {
  background-color: #1B1A1A;
  color: #fff;
}

.ch-btn-style-1:hover:before,
.ch-btn-style-1:focus:before,
.ch-btn-style-1:active:before,
.ch-btn-style-2:hover:before,
.ch-btn-style-2:focus:before,
.ch-btn-style-2:active:before,
.ch-btn-style-3:hover:before,
.ch-btn-style-3:focus:before,
.ch-btn-style-3:active:before,
.ch-btn-style-4:hover:before,
.ch-btn-style-4:focus:before,
.ch-btn-style-4:active:before {
  transform: scaleX(0);
}

@media (max-width: 991px) {

  .ch-btn-style-1,
  .ch-btn-style-2,
  .ch-btn-style-3,
  .ch-btn-style-4 {
    font-size: 18px;
    font-size: calc-rem-value(18);
  }
}

@media (max-width: 767px) {

  .ch-btn-style-1,
  .ch-btn-style-2,
  .ch-btn-style-3,
  .ch-btn-style-4 {
    padding: 15px 22px;
    font-size: 14px;
  }
}

.ch-btn-style-2 {
  color: #fff;
  background-color: #1B1A1A;
  margin-right: 20px;
}

.ch-btn-style-2::before {
  background: #005289;
}

.ch-btn-style-2:hover,
.ch-btn-style-2:focus,
.ch-btn-style-2:active {
  color: #fff;
}

.ch-btn-style-2:hover:before,
.ch-btn-style-2:focus:before,
.ch-btn-style-2:active:before {
  transform: scaleX(0);
  background: #005289;
}

.ch-btn-style-3 {
  background: none;
  color: #ff0000;
  border: 1px solid #ff0000;
}

.ch-btn-style-3::before {
  background: #fff;
}

.ch-btn-style-3:hover {
  border-color: #1B1A1A;
}

.ch-btn-style-3:hover:before {
  transform: scaleX(0);
  background: #ff0000;
}

.ch-btn-style-4 {
  background: #005289;
}

.ch-btn-style-4::before {
  background: #ff0000;
}

.ch-btn-style-4:hover,
.ch-btn-style-4:focus,
.ch-btn-style-4:active {
  background-color: #005289;
  color: #fff;
}

.ch-btn-style-4:hover:before,
.ch-btn-style-4:focus:before,
.ch-btn-style-4:active:before {
  transform: scaleX(0);
}

.form input,
.form textarea,
.form select {
  border-color: #bfbfbf;
  border-radius: 0;
  outline: 0;
  box-shadow: none;
  color: #595959;
  font-style: normal;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: #ff0000;
  -webkit-box-shadow: 0 0 5px 0 #f4c54f;
  -moz-box-shadow: 0 0 5px 0 #f4c54f;
  -o-box-shadow: 0 0 5px 0 #f4c54f;
  -ms-box-shadow: 0 0 5px 0 #f4c54f;
  box-shadow: 0 0 5px 0 #f4c54f;
}

.form ::-webkit-input-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form :-moz-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form ::-moz-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form :-ms-input-placeholder {
  font-style: 14px;
  font-style: italic;
  color: #595959;
}

.form select {
  font-style: normal;
  background: url(../images/select-icon.png) no-repeat right center;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  cursor: pointer;
}

.form select::-ms-expand {
  /* for IE 11 */
  display: none;
}

.form ::-webkit-input-placeholder {
  /* Edge */
  font-style: normal;
}

.form :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-style: normal;
}

.form ::placeholder {
  font-style: normal;
}

.social-links {
  overflow: hidden;
}

.social-links li {
  float: left;
  width: 35px;
  height: 35px;
  margin-right: 1px;
}

.social-links li a {
  background-color: #f4c54f;
  width: 35px;
  height: 35px;
  line-height: 35px;
  display: block;
  color: #fff;
  text-align: center;
}

.social-links li a:hover {
  background-color: #ff0000;
}

.header-search-form {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  margin-top: -540px;
  transform: translateY(-100%);
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition: all 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  -o-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.header-search-form .close-header-search {
  position: absolute;
  right: 25px;
  left: auto;
  color: #ffffff;
  width: auto;
  height: auto;
  top: 25px;
  margin: 0px;
  border: none;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 50px;
  height: 50px;
  background: #ff0000;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
}

.header-search-form .close-header-search i {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 20px;
}

.header-search-form form {
  position: absolute;
  max-width: 700px;
  top: 50%;
  left: 15px;
  right: 15px;
  margin: -35px auto 0;
  transform: scaleX(0);
  transform-origin: center;
  background-color: transparent;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.header-search-form .form-group {
  position: relative;
  margin: 0px;
  overflow: hidden;
  border-radius: 40px;
}

.header-search-form .form-group input[type=text],
.header-search-form .form-group input[type=search] {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 50px;
  color: #000000;
  height: 70px;
  width: 100%;
  padding: 10px 30px;
  background: #ffffff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 500;
  text-transform: capitalize;
  border-radius: 40px;
  border: 0;
}

.header-search-form .form-group input[type=text]:focus,
.header-search-form .form-group input[type=search]:focus {
  outline: none;
  border-color: #ff0000;
}

.header-search-form .form-group input[type=submit] {
  position: absolute;
  right: 30px;
  top: 0px;
  height: 70px;
  line-height: 70px;
  background: transparent;
  text-align: center;
  font-size: 24px;
  color: #000000;
  padding: 0;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.header-search-form .form-group input[type=submit]:hover,
.header-search-form .form-group button:hover {
  color: #000000;
}

.header-search-form .form-group .search-btn {
  width: 60px;
  height: 70px;
  background: #ff0000;
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  border: 0;
}

.header-search-form input::placeholder,
.header-search-form textarea::placeholder {
  color: #000000;
}

.header-search-form.active {
  transform: translateY(0%);
  margin-top: 0;
}

.header-search-form.active .close-header-search {
  visibility: visible;
  opacity: 1;
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}

.header-search-form.active form {
  transform: scaleX(1);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.page-title {
  background: url(../images/page-title.jpg);
  min-height: 555px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
  overflow: hidden;
}

.page-title:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background: #02020A;
  opacity: 0.8;
}

@media (max-width: 991px) {
  .page-title {
    min-height: 350px;
  }
}

@media (max-width: 575px) {
  .page-title {
    min-height: 250px;
  }
}

@media (min-width: 991px) {
  .page-title .page-title-wrap {
    padding: 0 209px;
  }
}

@media (max-width: 1700px) {
  .page-title .page-title-wrap {
    padding: 0 89px;
  }
}

@media (max-width: 1500px) {
  .page-title .page-title-wrap {
    padding: 0 29px;
  }
}

.page-title .page-title-wrap .breadcumb-img {
  padding: 10px;
  padding-top: 78px;
  position: relative;
  bottom: -10px;
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 991px) {
  .page-title .page-title-wrap .breadcumb-img {
    bottom: 0;
    padding-top: 10px;
  }
}

@media (max-width: 767px) {
  .page-title .page-title-wrap .breadcumb-img {
    display: none;
  }
}

.page-title .page-title-wrap .breadcumb-img img {
  clip-path: polygon(46% 0, 100% 0, 100% 100%, 3% 100%);
  min-height: 450px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .page-title .page-title-wrap .breadcumb-img img {
    min-height: 350px;
  }
}

.page-title .page-title-wrap .breadcumb-img:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #fff;
  z-index: -1;
  clip-path: polygon(52% 0, 100% 0, 100% 100%, 2% 100%);
}

@media (max-width: 991px) {
  .page-title .page-title-wrap .breadcumb-img:before {
    clip-path: polygon(45% 0, 100% 0, 100% 100%, 2% 100%);
    height: 101%;
    top: -1px;
  }
}

.page-title .breadcumb-wrap {
  padding-top: 80px;
}

@media (max-width: 991px) {
  .page-title .breadcumb-wrap {
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .page-title .breadcumb-wrap {
    text-align: center;
  }
}

.page-title .breadcumb-wrap h2 {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 58px;
  color: #fff;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .page-title .breadcumb-wrap h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

.page-title .breadcumb-wrap ol {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
}

@media (max-width: 767px) {
  .page-title .breadcumb-wrap ol {
    justify-content: center;
  }
}

.page-title .breadcumb-wrap ol li {
  display: inline-block;
  padding: 0px 15px;
  color: #ff0000;
  position: relative;
  font-size: 16px;
}

.page-title .breadcumb-wrap ol li i {
  color: #636363;
  margin-right: 5px;
}

.page-title .breadcumb-wrap ol li:first-child {
  padding-left: 0;
}

@media (max-width: 767px) {
  .page-title .breadcumb-wrap ol li {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .page-title .breadcumb-wrap ol li {
    font-size: 16px;
    padding: 0 10px;
  }

  .page-title .breadcumb-wrap ol li:first-child {
    padding-left: 0;
  }
}

.page-title .breadcumb-wrap ol li:after {
  content: "/";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}

.page-title .breadcumb-wrap ol li:last-child span {
  color: #cbd4fd;
}

.page-title .breadcumb-wrap ol li:last-child:after {
  display: none;
}

.page-title .breadcumb-wrap ol li a {
  color: #fff;
  font-size: 16px;
  transition: all 0.3s;
}

.page-title .breadcumb-wrap ol li a:hover {
  color: #ff0000;
}

/* Preloader Container */
.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #005289;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Gooey Animation Container */
.gooey {
  position: relative;
  width: 150px;
  height: 50px;
  background: transparent;
  filter: contrast(1.5);
}

/* Main Dot Animation */
.gooey .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 17px;
  left: 0;
  background: #ff0000;
  border-radius: 50%;
  animation: mainDot 1.8s infinite cubic-bezier(.36, .07, .19, .97);
}

/* Trailing Dots Animation */
.gooey .dots {
  position: absolute;
  top: 17px;
  left: 0;
  width: 150px;
  display: flex;
  justify-content: space-between;
  animation: trailDots 1.8s infinite ease-in-out;
}

.gooey .dots span {
  display: block;
  width: 16px;
  height: 16px;
  background: #ff0000;
  border-radius: 50%;
  transform: scale(1);
  animation: pulse 1.8s infinite ease-in-out;
}

/* Keyframes for Main Dot Movement */
@keyframes mainDot {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(130px) rotate(360deg);
  }

  100% {
    transform: translateX(0);
  }
}

/* Keyframes for Trailing Dots Movement */
@keyframes trailDots {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-25px);
  }
}

/* Keyframes for Pulsing Effect */
@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.7);
  }
}


/**** pagination ****/
.pagination-wrapper {
  text-align: center;
  margin-top: 60px;
}

@media (max-width: 991px) {
  .pagination-wrapper {
    text-align: left;
    margin-top: 40px;
  }
}

.pagination-wrapper .pg-pagination {
  display: inline-block;
  overflow: hidden;
  list-style-type: none;
  text-align: center;
}

.pagination-wrapper .pg-pagination li {
  float: left;
  margin-right: 10px;
}

@media (max-width: 767px) {
  .pagination-wrapper .pg-pagination li {
    margin-right: 5px;
  }
}

.pagination-wrapper .pg-pagination li:last-child {
  margin-right: 0;
}

.pagination-wrapper .pg-pagination li a {
  background-color: transparent;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  font-size: calc-rem-value(16);
  font-weight: 600;
  color: #1B1A1A;
  background: #f9f7f6;
  display: block;
}

@media (max-width: 991px) {
  .pagination-wrapper .pg-pagination li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    font-size: calc-rem-value(15);
  }
}

.pagination-wrapper .pg-pagination .active a,
.pagination-wrapper .pg-pagination li a:hover {
  background: #1B1A1A;
  border-color: #1B1A1A;
  color: #fff;
}

.pagination-wrapper .pg-pagination .fi:before {
  font-size: 15px;
  font-size: calc-rem-value(15);
}

.pagination-wrapper-left {
  text-align: left;
}

.pagination-wrapper-right {
  text-align: right;
}

@media screen and (min-width: 1200px) {
  .pagination-wrapper-right {
    padding-right: 50px;
  }
}

@media (max-width: 991px) {
  .pagination-wrapper-right {
    margin-top: 45px;
    text-align: left;
  }
}

/*--------------------------------------------------------------
02. header section
--------------------------------------------------------------*/
.header-main-wrap .topbar {
  background: #005289;
  z-index: 111;
  position: relative;
}

@media (min-width: 991px) {
  .header-main-wrap .topbar {
    padding: 0 220px;
  }
}

@media (max-width: 1700px) {
  .header-main-wrap .topbar {
    padding: 0 100px;
  }
}

@media (max-width: 1500px) {
  .header-main-wrap .topbar {
    padding: 0 40px;
  }
}

@media (max-width: 575px) {
  .header-main-wrap .topbar {
    padding: 15px 0;
  }
}

@media (max-width: 991px) {
  .header-main-wrap .topbar .container-fluid {
    padding: 0;
  }
}

@media (max-width: 575px) {
  .header-main-wrap .topbar .container-fluid {
    padding: 0 15px;
  }
}

.header-main-wrap .topbar .topbar-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 991px) {
  .header-main-wrap .topbar .topbar-right {
    justify-content: center;
  }
}

.header-main-wrap .topbar .topbar-right .contact-info ul {
  display: flex;
}

@media (max-width: 991px) {
  .header-main-wrap .topbar .topbar-right .contact-info ul {
    justify-content: center;
  }
}

.header-main-wrap .topbar .topbar-right .contact-info ul li {
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 29px;
  padding: 10px 0;
  color: #fff;
}

@media (max-width: 991px) {
  .header-main-wrap .topbar .topbar-right .contact-info ul li {
    padding: 5px 0;
  }
}

.header-main-wrap .topbar .topbar-right .contact-info.social {
  padding-left: 0px;
  margin-right: 0px;
}

.header-main-wrap .topbar .topbar-right .contact-info.social ul {
  justify-content: center;
}

.header-main-wrap .topbar .topbar-right .contact-info.social li {
  color: #fff;
}

@media (max-width: 575px) {
  .header-main-wrap .topbar .topbar-right .contact-info.social li {
    padding: 0;
  }
}

.header-main-wrap .topbar .topbar-right .contact-info.social li+li {
  margin-left: 6px;
}

.header-main-wrap .topbar .topbar-right .contact-info.social li a {
  color: #1B1A1A;
  display: block;
  width: 30px;
  height: 30px;
  line-height: 35px;
  border-radius: 50%;
  background: #fff;
  color: #005289;
  text-align: center;
}

.header-main-wrap .topbar .topbar-right .contact-info.social li a:hover {
  background: #ff0000;
  color: #fff;
}

.header-main-wrap .topbar .topbar-right .language .nice-select {
  background: none;
  border: 0;
  color: #fff;
}

.header-main-wrap .topbar .topbar-right .language .nice-select:after {
  border-bottom-color: #fff;
  border-right-color: #fff;
  height: 7px;
  width: 7px;
  margin-top: -6px;
}

.header-main-wrap .topbar .topbar-right .language .nice-select .list {
  color: #1B1A1A;
}

@media (max-width: 575px) {
  .header-main-wrap .topbar .contact-intro {
    text-align: center;
  }
}

.header-main-wrap .topbar .contact-intro ul {
  display: flex;
}

@media (max-width: 991px) {
  .header-main-wrap .topbar .contact-intro ul {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.header-main-wrap .topbar .contact-intro ul li {
  padding: 10px 0;
  color: #fff;
  font-family: cursive;
}

@media (max-width: 1399px) {
  .header-main-wrap .topbar .contact-intro ul li {
    font-size: 14px;
  }
}

@media (max-width: 1199px) {
  .header-main-wrap .topbar .contact-intro ul li {
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .header-main-wrap .topbar .contact-intro ul li {
    font-size: 15px;
    padding: 5px 0;
  }
}

@media (max-width: 575px) {
  .header-main-wrap .topbar .contact-intro ul li {
    padding-bottom: 0;
    font-size: 14px;
  }
}

.header-main-wrap .topbar .contact-intro ul li+li {
  margin-left: 20px;
}

@media (max-width: 575px) {
  .header-main-wrap .topbar .contact-intro ul li+li {
    margin-left: 0;
  }
}

.header-main-wrap .topbar .contact-intro ul li a {
  color: #fff;
}

.header-main-wrap .topbar .contact-intro ul li i {
  margin-right: 10px;
}

@media (max-width: 1199px) {
  .header-main-wrap .topbar .contact-intro ul li i {
    margin-right: 5px;
  }
}

.header-main-wrap .topbar .col:last-child {
  padding-right: 20px;
}

.header-main-wrap .topbar .col:last-child .contact-intro ul {
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .header-main-wrap .topbar .col:last-child .contact-intro ul {
    justify-content: center;
  }
}

.header-main-wrap .topbar .col:last-child .contact-intro ul li+li {
  margin-left: 20px;
}

@media (min-width: 991px) {
  .cp-header-area {
    padding: 0 220px;
  }
}

@media (max-width: 1700px) {
  .cp-header-area {
    padding: 0 100px;
  }
}

@media (max-width: 1500px) {
  .cp-header-area {
    padding: 0 40px;
  }
}

@media (max-width: 991px) {
  .cp-header-area {
    padding: 15px 30px;
  }
}

@media (max-width: 575px) {
  .cp-header-area {
    padding: 15px 0;
  }
}

.cp-header-area .main-menu .row {
  width: 100%;
}

.cp-header-area ul.nav {
  list-style: none;
  justify-content: center;
}

.cp-header-area .main-menu>ul {
  display: flex;
  list-style: none;
}

@media screen and (min-width: 992px) {
  .cp-header-area .main-menu #navbar li {
    position: relative;
  }

  .cp-header-area .main-menu ul li.has-submenu {
    position: relative;
  }

  .cp-header-area .main-menu ul>li>a {
    font-size: 16px;
    padding: 35px 25px;
    display: block;
    color: #1B1A1A;
    font-weight: 600;
    position: relative;
  }

  .cp-header-area .main-menu ul>li>a:hover,
  .cp-header-area .main-menu ul>li>a .active {
    color: #ff0000;
  }

  .cp-header-area .main-menu ul>li>a:hover:before,
  .cp-header-area .main-menu ul>li>a.active:before {
    opacity: 1;
    visibility: visible;
  }

  .cp-header-area .main-menu ul>li.has-submenu>a:before {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "\f107";
    font-family: "FontAwesome";
  }

  .cp-header-area .main-menu ul .sub-menu {
    background-color: #fff;
    box-shadow: 0px 2px 20px 0px rgba(62, 65, 159, 0.09);
    width: 230px;
    position: absolute;
    padding: 20px 0;
    left: 0;
    top: 110%;
    z-index: 10;
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform-origin: center top 0;
    -webkit-transform-origin: center top 0;
    -moz-transform-origin: center top 0;
    -ms-transform-origin: center top 0;
    -o-transform-origin: center top 0;
    transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    visibility: hidden;
  }

  .cp-header-area .main-menu ul>li .sub-menu a {
    font-size: 16px;
    font-size: calc-rem-value(16);
    display: block;
    padding: 12px 20px;
    color: #1B1A1A;
    position: relative;
    overflow: hidden;
  }

  .cp-header-area .main-menu ul>li .sub-menu a:hover,
  .cp-header-area .main-menu ul>li .sub-menu a .active {
    color: #005289;
  }

  .cp-header-area .main-menu ul>li>.sub-menu .sub-menu {
    left: 110%;
    top: 0;
  }

  .cp-header-area .main-menu ul>li>.sub-menu>.menu-item-has-children>a {
    position: relative;
  }

  .cp-header-area .main-menu ul>li>.sub-menu>.menu-item-has-children>a:before {
    font-family: "themify";
    content: "\e649";
    font-size: 11px;
    font-size: 0.73333rem;
    position: absolute;
    right: 15px;
    top: 58%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .cp-header-area .main-menu ul>li:hover>.sub-menu {
    opacity: 1;
    top: 100%;
    transform: scaleY(100%);
    -webkit-transform: scaleY(100%);
    -moz-transform: scaleY(100%);
    -ms-transform: scaleY(100%);
    -o-transform: scaleY(100%);
    visibility: visible;
  }

  .cp-header-area .main-menu #navbar .sub-menu>li:hover>.sub-menu {
    left: 100%;
    visibility: visible;
    opacity: 1;
  }
}

.cp-header-area .cp-header-area-right {
  margin-top: 5px;
}

@media (max-width: 992px) {
  .cp-header-area .cp-header-area-right {
    padding-right: 80px;
  }
}

@media (max-width: 767px) {
  .cp-header-area .cp-header-area-right {
    padding-right: 35px;
  }
}

@media (max-width: 1399px) {
  .cp-header-area .cp-header-area-right .ch-btn-style-1 {
    padding: 20px 25px;
  }
}

.cp-header-area .cp-header-area-right>ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 992px) {
  .cp-header-area .cp-header-area-right>ul .ch-btn-style-1 {
    width: 132px;
    margin: 10px 0;
  }
}

@media (max-width: 991px) {
  .cp-header-area .cp-header-area-right>ul .ch-btn-style-1 {
    width: auto;
    margin: 0;
  }
}

@media (max-width: 1199px) {
  .cp-header-area .cp-header-area-right>ul .ch-btn-style-1 {
    padding: 15px 10px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .cp-header-area .cp-header-area-right>ul .ch-btn-style-1 {
    display: none;
  }
}

@media (max-width: 991px) {
  .cp-header-area .main-menu .navigation {
    padding: 20px 0;
  }
}

@media (max-width: 1399px) {
  .cp-header-area .main-menu ul>li>a {
    padding: 35px 16px;
  }
}

@media (max-width: 1199px) {
  .cp-header-area .main-menu ul>li>a {
    padding: 35px 12px;
    font-size: 14px;
  }
}

.cp-header-area .cp-header-area-right .search-toggle-btn {
  margin-right: 100px;
}

.cp-header-area .cp-header-area-right .search-toggle-btn i {
  color: #ff0000;
  font-size: 22px;
}

.cp-header-style-1 {
  position: relative;
  z-index: 11;
}

.cp-header-style-1 .mean-container a.meanmenu-reveal {
  margin-top: -73px;
}

@media (max-width: 991px) {
  .cp-header-style-1 .mean-container a.meanmenu-reveal {
    margin-top: -55px;
  }
}

@media (max-width: 767px) {
  .cp-header-style-1 .mean-container a.meanmenu-reveal {
    margin-top: -55px;
  }
}

@media (max-width: 450px) {
  .cp-header-style-1 .mean-container a.meanmenu-reveal {
    margin-top: -50px;
  }
}

.cp-header-style-1 .logo {
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.14);
  text-align: center;
  padding: 10px;
  background: #fff;
  position: relative;
}

@media (max-width: 991px) {
  .cp-header-style-1 .logo {
    box-shadow: none;
    margin-bottom: 0;
    text-align: left;
    padding: 0;
  }
}

.cp-header-style-1 .logo span {
  display: block;
  background: #ff0000;
  margin-bottom: 20px;
  padding: 5px;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1500px) {
  .cp-header-style-1 .logo span {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .cp-header-style-1 .logo span {
    display: none;
  }
}

.cp-header-style-1 .logo img {
  padding: 0 20px;
}

@media (max-width: 991px) {
  .cp-header-style-1 .logo img {
    padding: 0;
  }
}

@media (min-width: 991px) {
  .cp-header-style-2 {
    position: absolute;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 11;
  }

  .cp-header-style-2 .menu-area {
    background: #fff;
  }
}

@media (min-width: 767px) {
  .cp-header-style-2 .mean-container a.meanmenu-reveal {
    margin-top: -60px;
  }
}

.cp-header-style-2 .second-menu {
  padding: 0 10px;
}

@media (max-width: 1399px) {
  .cp-header-style-2 .second-menu {
    padding: 0;
  }
}

@media (max-width: 992px) {
  .cp-header-style-2 .mean-container a.meanmenu-reveal {
    margin-top: -67px;
  }
}

@media (max-width: 991px) {
  .cp-header-style-2 .mean-container a.meanmenu-reveal {
    margin-top: -55px;
  }
}

.cp-header-style-3 {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 11;
}

@media (max-width: 991px) {
  .cp-header-style-3 {
    position: relative;
    background: #021611;
  }
}

.cp-header-style-3 .main-menu ul>li>a {
  color: #fff;
}

.cp-header-style-3 .main-menu ul>li>a:hover {
  color: #ff0000;
}

@media (max-width: 1399px) {
  .cp-header-style-3 .ch-btn-style-4 {
    padding: 20px 20px;
  }
}

@media (max-width: 992px) {
  .cp-header-style-3 .ch-btn-style-4 {
    width: 132px;
    margin: 10px 0;
  }
}

@media (max-width: 991px) {
  .cp-header-style-3 .ch-btn-style-4 {
    width: auto;
    margin: 0;
  }
}

@media (max-width: 1199px) {
  .cp-header-style-3 .ch-btn-style-4 {
    padding: 15px 10px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .cp-header-style-3 .ch-btn-style-4 {
    display: none;
  }
}

@media (min-width: 767px) {
  .cp-header-style-3 .mean-container a.meanmenu-reveal {
    margin-top: -55px;
  }
}

/*--------------------------------------------------------------
03. Hero Style
--------------------------------------------------------------*/
/*1.2.1 ch-main-hero */
.ch-main-hero,
.ch-main-hero-s2,
.ch-main-hero-s3,
.ch-main-hero-s4 {
  background: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.ch-main-hero::before,
.ch-main-hero-s2::before,
.ch-main-hero-s3::before,
.ch-main-hero-s4::before {
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  height: 100%;
  content: "";
  background: url(../images/hero/bg-shape.jpg);
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.ch-main-hero .ch-main-hero-wrap,
.ch-main-hero-s2 .ch-main-hero-wrap,
.ch-main-hero-s3 .ch-main-hero-wrap,
.ch-main-hero-s4 .ch-main-hero-wrap {
  position: relative;
}

.ch-main-hero .ch-main-hero-wrap,
.ch-main-hero-s2 .ch-main-hero-wrap,
.ch-main-hero-s3 .ch-main-hero-wrap,
.ch-main-hero-s4 .ch-main-hero-wrap {
  padding: 200px 0;
}

@media (max-width: 991px) {

  .ch-main-hero .ch-main-hero-wrap,
  .ch-main-hero-s2 .ch-main-hero-wrap,
  .ch-main-hero-s3 .ch-main-hero-wrap,
  .ch-main-hero-s4 .ch-main-hero-wrap {
    padding: 60px 0 0;
  }
}

@media (max-width: 575px) {

  .ch-main-hero .ch-main-hero-wrap,
  .ch-main-hero-s2 .ch-main-hero-wrap,
  .ch-main-hero-s3 .ch-main-hero-wrap,
  .ch-main-hero-s4 .ch-main-hero-wrap {
    padding: 40px 0 0;
  }
}

.ch-main-hero .ch-main-hero-text,
.ch-main-hero-s2 .ch-main-hero-text,
.ch-main-hero-s3 .ch-main-hero-text,
.ch-main-hero-s4 .ch-main-hero-text {
  position: relative;
}

@media (max-width: 1399px) {

  .ch-main-hero .ch-main-hero-text,
  .ch-main-hero-s2 .ch-main-hero-text,
  .ch-main-hero-s3 .ch-main-hero-text,
  .ch-main-hero-s4 .ch-main-hero-text {
    padding-left: 50px;
  }
}

@media (max-width: 991px) {

  .ch-main-hero .ch-main-hero-text,
  .ch-main-hero-s2 .ch-main-hero-text,
  .ch-main-hero-s3 .ch-main-hero-text,
  .ch-main-hero-s4 .ch-main-hero-text {
    padding-left: 0;
  }
}

.ch-main-hero .ch-main-hero-text .left-icon,
.ch-main-hero-s2 .ch-main-hero-text .left-icon,
.ch-main-hero-s3 .ch-main-hero-text .left-icon,
.ch-main-hero-s4 .ch-main-hero-text .left-icon {
  position: absolute;
  left: -120px;
  top: 0;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: #ff0000;
  color: #fff;
  text-align: center;
  font-size: 40px;
  border-radius: 50%;
}

@media (max-width: 1399px) {

  .ch-main-hero .ch-main-hero-text .left-icon,
  .ch-main-hero-s2 .ch-main-hero-text .left-icon,
  .ch-main-hero-s3 .ch-main-hero-text .left-icon,
  .ch-main-hero-s4 .ch-main-hero-text .left-icon {
    left: -40px;
  }
}

@media (max-width: 991px) {

  .ch-main-hero .ch-main-hero-text .left-icon,
  .ch-main-hero-s2 .ch-main-hero-text .left-icon,
  .ch-main-hero-s3 .ch-main-hero-text .left-icon,
  .ch-main-hero-s4 .ch-main-hero-text .left-icon {
    display: none;
  }
}

.ch-main-hero .ch-main-hero-text::before,
.ch-main-hero-s2 .ch-main-hero-text::before,
.ch-main-hero-s3 .ch-main-hero-text::before,
.ch-main-hero-s4 .ch-main-hero-text::before {
  position: absolute;
  left: -80px;
  top: 50px;
  width: 2px;
  height: 78%;
  content: "";
  background: #005289;
}

@media (max-width: 1399px) {

  .ch-main-hero .ch-main-hero-text::before,
  .ch-main-hero-s2 .ch-main-hero-text::before,
  .ch-main-hero-s3 .ch-main-hero-text::before,
  .ch-main-hero-s4 .ch-main-hero-text::before {
    left: 0;
  }
}

@media (max-width: 991px) {

  .ch-main-hero .ch-main-hero-text::before,
  .ch-main-hero-s2 .ch-main-hero-text::before,
  .ch-main-hero-s3 .ch-main-hero-text::before,
  .ch-main-hero-s4 .ch-main-hero-text::before {
    display: none;
  }
}

.ch-main-hero .ch-main-hero-text::after,
.ch-main-hero-s2 .ch-main-hero-text::after,
.ch-main-hero-s3 .ch-main-hero-text::after,
.ch-main-hero-s4 .ch-main-hero-text::after {
  position: absolute;
  left: -80px;
  bottom: 32px;
  width: 60px;
  height: 2px;
  content: "";
  background: #005289;
}

@media (max-width: 1399px) {

  .ch-main-hero .ch-main-hero-text::after,
  .ch-main-hero-s2 .ch-main-hero-text::after,
  .ch-main-hero-s3 .ch-main-hero-text::after,
  .ch-main-hero-s4 .ch-main-hero-text::after {
    left: 0;
    width: 30px;
    bottom: 22px;
  }
}

@media (max-width: 991px) {

  .ch-main-hero .ch-main-hero-text::after,
  .ch-main-hero-s2 .ch-main-hero-text::after,
  .ch-main-hero-s3 .ch-main-hero-text::after,
  .ch-main-hero-s4 .ch-main-hero-text::after {
    display: none;
  }
}

.ch-main-hero .ch-main-hero-text .arrow,
.ch-main-hero-s2 .ch-main-hero-text .arrow,
.ch-main-hero-s3 .ch-main-hero-text .arrow,
.ch-main-hero-s4 .ch-main-hero-text .arrow {
  position: absolute;
  right: -100px;
  top: 28%;
  z-index: -1;
}

@media (max-width: 1399px) {

  .ch-main-hero .ch-main-hero-text .arrow,
  .ch-main-hero-s2 .ch-main-hero-text .arrow,
  .ch-main-hero-s3 .ch-main-hero-text .arrow,
  .ch-main-hero-s4 .ch-main-hero-text .arrow {
    max-width: 150px;
    right: -50px;
  }
}

@media (max-width: 991px) {

  .ch-main-hero .ch-main-hero-text .arrow,
  .ch-main-hero-s2 .ch-main-hero-text .arrow,
  .ch-main-hero-s3 .ch-main-hero-text .arrow,
  .ch-main-hero-s4 .ch-main-hero-text .arrow {
    display: none;
  }
}

.ch-main-hero .ch-main-hero-text .arrow img,
.ch-main-hero-s2 .ch-main-hero-text .arrow img,
.ch-main-hero-s3 .ch-main-hero-text .arrow img,
.ch-main-hero-s4 .ch-main-hero-text .arrow img {
  animation: bounceLeftToRight 4s infinite;
}

@media (max-width: 991px) {

  .ch-main-hero .ch-main-hero-text,
  .ch-main-hero-s2 .ch-main-hero-text,
  .ch-main-hero-s3 .ch-main-hero-text,
  .ch-main-hero-s4 .ch-main-hero-text {
    text-align: center;
    padding-top: 0;
  }
}

.ch-main-hero .ch-main-hero-text h2,
.ch-main-hero-s2 .ch-main-hero-text h2,
.ch-main-hero-s3 .ch-main-hero-text h2,
.ch-main-hero-s4 .ch-main-hero-text h2 {
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 20px;
  margin-bottom: 30px;
}

.ch-main-hero .ch-main-hero-text h2 span,
.ch-main-hero-s2 .ch-main-hero-text h2 span,
.ch-main-hero-s3 .ch-main-hero-text h2 span,
.ch-main-hero-s4 .ch-main-hero-text h2 span {
  color: #ff0000;
}

@media (max-width: 1399px) {

  .ch-main-hero .ch-main-hero-text h2,
  .ch-main-hero-s2 .ch-main-hero-text h2,
  .ch-main-hero-s3 .ch-main-hero-text h2,
  .ch-main-hero-s4 .ch-main-hero-text h2 {
    font-size: 50px;
    line-height: 70px;
  }
}

@media (max-width: 1199px) {

  .ch-main-hero .ch-main-hero-text h2,
  .ch-main-hero-s2 .ch-main-hero-text h2,
  .ch-main-hero-s3 .ch-main-hero-text h2,
  .ch-main-hero-s4 .ch-main-hero-text h2 {
    font-size: 45px;
    line-height: 58px;
  }
}

@media (max-width: 575px) {

  .ch-main-hero .ch-main-hero-text h2,
  .ch-main-hero-s2 .ch-main-hero-text h2,
  .ch-main-hero-s3 .ch-main-hero-text h2,
  .ch-main-hero-s4 .ch-main-hero-text h2 {
    font-size: 28px;
    line-height: 40px;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}

.ch-main-hero .ch-main-hero-text p,
.ch-main-hero-s2 .ch-main-hero-text p,
.ch-main-hero-s3 .ch-main-hero-text p,
.ch-main-hero-s4 .ch-main-hero-text p {
  max-width: 562px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0.64px;
  display: flex;
}

@media (max-width: 991px) {

  .ch-main-hero .ch-main-hero-text p,
  .ch-main-hero-s2 .ch-main-hero-text p,
  .ch-main-hero-s3 .ch-main-hero-text p,
  .ch-main-hero-s4 .ch-main-hero-text p {
    margin: 0 auto;
  }
}

@media (max-width: 575px) {

  .ch-main-hero .ch-main-hero-text p,
  .ch-main-hero-s2 .ch-main-hero-text p,
  .ch-main-hero-s3 .ch-main-hero-text p,
  .ch-main-hero-s4 .ch-main-hero-text p {
    font-size: 14px;
  }
}

.ch-main-hero .ch-main-hero-text p i,
.ch-main-hero-s2 .ch-main-hero-text p i,
.ch-main-hero-s3 .ch-main-hero-text p i,
.ch-main-hero-s4 .ch-main-hero-text p i {
  width: 65px;
  margin-right: 10px;
}

.ch-main-hero .ch-main-hero-text p i img,
.ch-main-hero-s2 .ch-main-hero-text p i img,
.ch-main-hero-s3 .ch-main-hero-text p i img,
.ch-main-hero-s4 .ch-main-hero-text p i img {
  animation: circle 15s linear infinite;
}

.ch-main-hero .right-image,
.ch-main-hero-s2 .right-image,
.ch-main-hero-s3 .right-image,
.ch-main-hero-s4 .right-image {
  position: absolute;
  bottom: 0;
  right: -50px;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 991px) {

  .ch-main-hero .right-image,
  .ch-main-hero-s2 .right-image,
  .ch-main-hero-s3 .right-image,
  .ch-main-hero-s4 .right-image {
    position: relative;
    right: 0;
  }
}

@media (max-width: 991px) {

  .ch-main-hero .right-image,
  .ch-main-hero-s2 .right-image,
  .ch-main-hero-s3 .right-image,
  .ch-main-hero-s4 .right-image {
    max-width: 450px;
    margin: 0 auto;
    margin-top: 50px;
    justify-content: flex-start;
  }
}

@media (max-width: 575px) {

  .ch-main-hero .right-image,
  .ch-main-hero-s2 .right-image,
  .ch-main-hero-s3 .right-image,
  .ch-main-hero-s4 .right-image {
    justify-content: center;
  }
}

.ch-main-hero .right-image .right-image-inner,
.ch-main-hero-s2 .right-image .right-image-inner,
.ch-main-hero-s3 .right-image .right-image-inner,
.ch-main-hero-s4 .right-image .right-image-inner {
  position: relative;
  z-index: 1;
}

.ch-main-hero .right-image .right-image-inner .box,
.ch-main-hero-s2 .right-image .right-image-inner .box,
.ch-main-hero-s3 .right-image .right-image-inner .box,
.ch-main-hero-s4 .right-image .right-image-inner .box {
  position: absolute;
  top: -20px;
  left: 27%;
  transform: translateX(-50%);
  width: 293px;
  height: 293px;
  background: #fff;
  border: 2px dashed #ff0000;
  border-radius: 50%;
  z-index: -1;
  animation: circle 60s linear infinite;
}

@media (max-width: 1399px) {

  .ch-main-hero .right-image .right-image-inner .box,
  .ch-main-hero-s2 .right-image .right-image-inner .box,
  .ch-main-hero-s3 .right-image .right-image-inner .box,
  .ch-main-hero-s4 .right-image .right-image-inner .box {
    width: 260px;
    height: 260px;
    top: -5px;
  }
}

@media (max-width: 420px) {

  .ch-main-hero .right-image .right-image-inner .box,
  .ch-main-hero-s2 .right-image .right-image-inner .box,
  .ch-main-hero-s3 .right-image .right-image-inner .box,
  .ch-main-hero-s4 .right-image .right-image-inner .box {
    left: 40px;
  }
}

.ch-main-hero .hero-btn,
.ch-main-hero-s2 .hero-btn,
.ch-main-hero-s3 .hero-btn,
.ch-main-hero-s4 .hero-btn {
  margin-top: 40px;
}

.ch-main-hero .right-bg-img,
.ch-main-hero-s2 .right-bg-img,
.ch-main-hero-s3 .right-bg-img,
.ch-main-hero-s4 .right-bg-img {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 1399px) {

  .ch-main-hero .right-bg-img,
  .ch-main-hero-s2 .right-bg-img,
  .ch-main-hero-s3 .right-bg-img,
  .ch-main-hero-s4 .right-bg-img {
    max-width: 700px;
  }
}

.ch-main-hero-s2,
.ch-main-hero-s4 {
  position: relative;
  z-index: 1;
}

.ch-main-hero-s2:before,
.ch-main-hero-s4:before {
  display: none;
}

.ch-main-hero-s2 .hero-bg,
.ch-main-hero-s4 .hero-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
  clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%);
}

@media (max-width: 991px) {

  .ch-main-hero-s2 .hero-bg,
  .ch-main-hero-s4 .hero-bg {
    width: 100%;
    clip-path: unset;
  }
}

.ch-main-hero-s2 .hero-bg-color,
.ch-main-hero-s4 .hero-bg-color {
  position: absolute;
  left: 0;
  top: 0;
  width: 60.25%;
  height: 100%;
  z-index: -1;
  clip-path: polygon(0% 0%, 87% 0%, 100% 50%, 87% 100%, 0% 100%);
}

@media (max-width: 991px) {

  .ch-main-hero-s2 .hero-bg-color,
  .ch-main-hero-s4 .hero-bg-color {
    display: none;
  }
}

.ch-main-hero-s2 .hero-bg-color:before,
.ch-main-hero-s4 .hero-bg-color:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  content: "";
  background: #005289;
}

.ch-main-hero-s2 .hero-bg-color:after,
.ch-main-hero-s4 .hero-bg-color:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  content: "";
  background: #ff0000;
}

.ch-main-hero-s2 .hero-bg2,
.ch-main-hero-s4 .hero-bg2 {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  z-index: -11;
}

.ch-main-hero-s2 .ch-main-hero-text:before,
.ch-main-hero-s4 .ch-main-hero-text:before {
  content: url(../images/hero/left-shape.png);
  background: none;
  top: 25px;
  left: -40px;
}

@media (max-width: 1399px) {

  .ch-main-hero-s2 .ch-main-hero-text:before,
  .ch-main-hero-s4 .ch-main-hero-text:before {
    top: 16px;
    left: 0;
  }
}

.ch-main-hero-s2 .ch-main-hero-text:after,
.ch-main-hero-s4 .ch-main-hero-text:after {
  display: none;
}

.ch-main-hero-s2 .ch-main-hero-text h2 span,
.ch-main-hero-s4 .ch-main-hero-text h2 span {
  padding-bottom: 5px;
  position: relative;
  display: inline-block;
}

@media (max-width: 575px) {

  .ch-main-hero-s2 .ch-main-hero-text h2 span,
  .ch-main-hero-s4 .ch-main-hero-text h2 span {
    padding-bottom: 0;
  }
}

.ch-main-hero-s2 .ch-main-hero-text h2 span:before,
.ch-main-hero-s4 .ch-main-hero-text h2 span:before {
  content: url(../images/hero/bottom-shape.png);
  background: none;
  position: absolute;
  bottom: -15px;
  left: 0;
}

@media (max-width: 575px) {

  .ch-main-hero-s2 .ch-main-hero-text h2 span:before,
  .ch-main-hero-s4 .ch-main-hero-text h2 span:before {
    display: none;
  }
}

.ch-main-hero-s2 .ch-main-hero-text .hero-btn,
.ch-main-hero-s4 .ch-main-hero-text .hero-btn {
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {

  .ch-main-hero-s2 .ch-main-hero-text .hero-btn,
  .ch-main-hero-s4 .ch-main-hero-text .hero-btn {
    justify-content: center;
    padding-bottom: 80px;
  }
}

@media (max-width: 575px) {

  .ch-main-hero-s2 .ch-main-hero-text .hero-btn,
  .ch-main-hero-s4 .ch-main-hero-text .hero-btn {
    padding-bottom: 50px;
  }
}

.ch-main-hero-s2 .ch-main-hero-text .hero-btn .hero-open-video,
.ch-main-hero-s4 .ch-main-hero-text .hero-btn .hero-open-video {
  margin-left: 30px;
}

.ch-main-hero-s2 .ch-main-hero-text .hero-btn .hero-open-video a,
.ch-main-hero-s4 .ch-main-hero-text .hero-btn .hero-open-video a {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  display: block;
  background: #005289;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  font-size: 24px;
  position: relative;
}

.ch-main-hero-s2 .ch-main-hero-text .hero-btn .hero-open-video a:before,
.ch-main-hero-s4 .ch-main-hero-text .hero-btn .hero-open-video a:before {
  border: 1px solid #005289;
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  animation: animated-border 1500ms ease-out infinite;
}

.ch-main-hero-s2 .left-img,
.ch-main-hero-s4 .left-img {
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 767px) {

  .ch-main-hero-s2 .left-img,
  .ch-main-hero-s4 .left-img {
    display: none;
  }
}

.ch-main-hero-s2 .plug-shape,
.ch-main-hero-s4 .plug-shape {
  position: absolute;
  left: 85px;
  top: 75px;
}

@media (max-width: 991px) {

  .ch-main-hero-s2 .plug-shape,
  .ch-main-hero-s4 .plug-shape {
    display: none;
  }
}

.ch-main-hero-s2 .plug-shape img,
.ch-main-hero-s4 .plug-shape img {
  animation: bounceLeftToRight 4s infinite;
}

.ch-main-hero-s3::before {
  background: linear-gradient(0deg, #000 0%, #005289 100%);
  opacity: 0.169;
}

.ch-main-hero-s3 .ch-main-hero-wrap {
  padding: 0;
}

.ch-main-hero-s3 .right-image {
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  right: -200px;
}

@media (max-width: 991px) {
  .ch-main-hero-s3 .right-image {
    position: relative;
    right: 0;
    top: 0;
    transform: unset;
    padding-bottom: 80px;
  }
}

.ch-main-hero-s3 .ch-main-hero-text {
  padding: 250px 0;
}

@media (max-width: 991px) {
  .ch-main-hero-s3 .ch-main-hero-text {
    padding: 80px 0 0;
  }
}

.ch-main-hero-s3 .ch-main-hero-text .arrow {
  top: 42%;
}

.ch-main-hero-s3 .ch-main-hero-text:before {
  display: none;
}

.ch-main-hero-s3 .ch-main-hero-text:after {
  display: none;
}

.ch-main-hero-s3 .ch-main-hero-text h2 {
  color: #fff;
}

.ch-main-hero-s3 .ch-main-hero-text p {
  color: #fff;
}

.ch-main-hero-s3 .ch-main-hero-text .top-text {
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .ch-main-hero-s3 .ch-main-hero-text .top-text {
    justify-content: center;
  }
}

.ch-main-hero-s3 .ch-main-hero-text .top-text span {
  display: inline-block;
  color: #04060A;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 10px 20px;
  background: #fff;
  border-radius: 40px;
  margin-left: -22px;
}

.ch-main-hero-s3 .ch-main-hero-text .top-text span small {
  font-size: 18px;
  color: #005289;
}

.ch-main-hero-s3 .ch-main-hero-text .top-text i {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: #fff;
  color: #ff0000;
  text-align: center;
  border-radius: 50%;
  font-size: 40px;
  position: relative;
}

.ch-main-hero-s3 .visible-text {
  position: absolute;
  left: 40px;
  bottom: 30px;
}

@media (max-width: 575px) {
  .ch-main-hero-s3 .visible-text {
    left: 15px;
    bottom: 10px;
  }
}

.ch-main-hero-s3 .visible-text h2 {
  font-family: "Rubik", sans-serif;
  font-size: 149.935px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.49);
}

@media (max-width: 991px) {
  .ch-main-hero-s3 .visible-text h2 {
    font-size: 80.935px;
  }
}

@media (max-width: 575px) {
  .ch-main-hero-s3 .visible-text h2 {
    font-size: 60.935px;
  }
}

.ch-main-hero-s4 {
  background: #050209;
  position: relative;
  padding: 60px;
  padding-top: 120px;
}

@media (max-width: 991px) {
  .ch-main-hero-s4 {
    padding: 50px 15px;
  }
}

@media (max-width: 575px) {
  .ch-main-hero-s4 {
    padding: 30px 0px;
  }
}

.ch-main-hero-s4 .bg-shape-1 {
  position: absolute;
  left: 0;
  top: -2px;
  width: 100%;
}

.ch-main-hero-s4 .bg-shape-1 svg {
  width: 100%;
  height: auto;
}

.ch-main-hero-s4 .bg-shape-2 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.ch-main-hero-s4 .bg-shape-2 svg {
  width: 100%;
  height: auto;
}

.ch-main-hero-s4 .ch-main-hero-wrap {
  padding: 120px;
  background: #1B1A1A;
  border-radius: 100px;
}

@media (max-width: 1500px) {
  .ch-main-hero-s4 .ch-main-hero-wrap {
    padding: 80px 50px;
  }
}

@media (max-width: 991px) {
  .ch-main-hero-s4 .ch-main-hero-wrap {
    padding: 50px 30px;
  }
}

@media (max-width: 575px) {
  .ch-main-hero-s4 .ch-main-hero-wrap {
    padding: 30px 15px;
  }
}

.ch-main-hero-s4 .ch-main-hero-wrap .ch-main-hero-text {
  max-width: 550px;
  margin-left: 50px;
}

@media (max-width: 1399px) {
  .ch-main-hero-s4 .ch-main-hero-wrap .ch-main-hero-text {
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  .ch-main-hero-s4 .ch-main-hero-wrap .ch-main-hero-text {
    margin: 0 auto;
  }
}

.ch-main-hero-s4 .ch-main-hero-wrap .ch-main-hero-text::before {
  left: -35px;
}

@media (max-width: 1399px) {
  .ch-main-hero-s4 .ch-main-hero-wrap .ch-main-hero-text::before {
    left: 0;
  }
}

@media (max-width: 1399px) {
  .ch-main-hero-s4 .ch-main-hero-wrap .ch-main-hero-text h2 {
    font-size: 42px;
    line-height: 46px;
  }
}

@media (max-width: 1199px) {
  .ch-main-hero-s4 .ch-main-hero-wrap .ch-main-hero-text h2 {
    font-size: 36px;
    line-height: 46px;
  }
}

@media (max-width: 575px) {
  .ch-main-hero-s4 .ch-main-hero-wrap .ch-main-hero-text h2 {
    font-size: 25px;
    line-height: 36px;
  }
}

/*--------------------------------------------------------------
04. footer Style
--------------------------------------------------------------*/
.footer-section {
  position: relative;
  font-size: 15px;
  overflow: hidden;
  z-index: 1;
}

.footer-section ul {
  list-style: none;
}

.footer-section p {
  color: #fff;
  margin-top: 30px;
}

.footer-section li {
  color: #fff;
}

.footer-section .container {
  position: relative;
}

.footer-section .upper-footer {
  padding: 80px 0 120px;
  background: #005289;
  position: relative;
}

.footer-section .upper-footer::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.85;
}

@media (max-width: 991px) {
  .footer-section .upper-footer {
    padding: 80px 0 0px;
  }
}

@media (max-width: 767px) {
  .footer-section .upper-footer {
    padding: 60px 0 30px;
  }
}

@media (max-width: 991px) {
  .footer-section .upper-footer .col {
    min-height: 235px;
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .footer-section .upper-footer .col {
    min-height: auto;
  }
}

.footer-section .widget-title {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .footer-section .widget-title {
    margin-bottom: 20px;
  }
}

.footer-section .widget-title h3 {
  color: #fff;
  margin: 0;
  position: relative;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.footer-section .about-widget .logo {
  max-width: 180px;
  margin-bottom: 30px;
}

.footer-section .about-widget .widget-title {
  margin-bottom: 0;
}

.footer-section .about-widget p {
  margin-bottom: 0.8em;
  line-height: 1.9em;
}

.footer-section .about-widget p:last-child {
  margin-bottom: 0;
}

.footer-section .link-widget {
  overflow: hidden;
  padding-left: 50px;
}

@media (max-width: 1199px) {
  .footer-section .link-widget {
    padding-left: 0;
  }
}

.footer-section .link-widget ul li {
  position: relative;
}

.footer-section .link-widget ul li a {
  color: #fff;
  font-size: 16px;
  line-height: 30px;
  display: block;
  position: relative;
  text-transform: capitalize;
}

.footer-section .link-widget ul li a:hover {
  color: #ff0000;
}

.footer-section .link-widget ul li+li {
  margin-top: 5px;
}

.footer-section .social-widget {
  padding-left: 30px;
  margin-top: 20px;
}

@media (max-width: 1199px) {
  .footer-section .social-widget {
    padding-left: 0;
  }
}

.footer-section .social-widget ul {
  display: flex;
}

.footer-section .social-widget ul li a {
  color: #1B1A1A;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background: #fff;
}

.footer-section .social-widget ul li a:hover {
  background: #ff0000;
  color: #fff;
}

.footer-section .social-widget ul li+li {
  margin-left: 10px;
}

.footer-section .schedule ul li+li {
  margin-top: 18px;
}

.footer-section .instagram ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0px -3px;
}

.footer-section .instagram ul li {
  -ms-flex: 0 0 33.33%;
  flex: 0 0 33.33%;
  max-width: 33.33%;
  margin-bottom: 5px;
  padding: 0px 3px;
}

.footer-section .instagram ul li img {
  width: 100%;
}

.footer-section .instagram ul li a {
  position: relative;
  display: block;
}

.footer-section .instagram ul li a:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: url(../images/link.png);
  border-radius: 5px;
  background: rgba(1, 34, 19, 0.6);
  font-family: "icomoon";
  color: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 1;
  font-size: 40px;
  transition: all 0.6s;
  border-radius: 3px;
}

.footer-section .instagram ul li a:hover:before {
  opacity: 1;
  visibility: visible;
}

.footer-section .lower-footer {
  text-align: center;
  position: relative;
  background: #005289;
}

.footer-section .lower-footer .row {
  padding: 20px 0px;
}

@media (max-width: 991px) {
  .footer-section .lower-footer .row {
    padding: 20px 0px;
  }
}

.footer-section .lower-footer .lower-footer-link {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .footer-section .lower-footer .lower-footer-link {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.footer-section .lower-footer .lower-footer-link li a {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  color: #fff;
}

.footer-section .lower-footer .lower-footer-link li a:hover {
  color: #ff0000;
}

.footer-section .lower-footer .lower-footer-link li+li {
  padding-left: 20px;
}

.footer-section .lower-footer .copy-right {
  text-align: left;
}

@media (max-width: 991px) {
  .footer-section .lower-footer .copy-right {
    text-align: center;
    margin-top: 10px;
  }
}

.footer-section .lower-footer .copyright {
  display: inline-block;
  font-size: 14px;
  margin: 0;
}

.footer-section .lower-footer .copyright a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 991px) {
  .footer-section .lower-footer .copyright {
    float: none;
    display: block;
  }
}

.footer-section.style-2 {
  background: #142132;
  position: relative;
}

.footer-section.style-2::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.85;
  background: url(../images/footer-bg2.png);
}

.footer-section.style-2 .upper-footer {
  padding: 80px 0 80px;
  background: transparent;
}

@media (max-width: 991px) {
  .footer-section.style-2 .upper-footer {
    padding: 50px 0 0px;
  }
}

.footer-section.style-2 .lower-footer {
  background: transparent;
}

.footer-section.style-2 .lower-footer .row {
  border-top: 1px solid #D5EAFB;
}

.sticky-header {
  width: 100%;
  position: fixed;
  left: 0;
  top: -200px;
  z-index: 9999;
  opacity: 0;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -o-transition: all 0.7s;
  -ms-transition: all 0.7s;
  transition: all 0.7s;
}

.sticky-on {
  opacity: 1;
  top: 0;
}

/*--------------------------------------------------------------
05. Home-style-1
--------------------------------------------------------------*/
/*===================================
 06. features-area
 ====================================*/
.features-area .features-wrap {
  background: #FFF;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
}

.features-area .features-wrap .features-item {
  padding: 40px 30px;
  display: flex;
  z-index: 1;
  position: relative;
}

@media (max-width: 1399px) {
  .features-area .features-wrap .features-item {
    padding: 40px 20px;
  }
}

@media (max-width: 991px) {
  .features-area .features-wrap .features-item {
    border-bottom: 1px solid #ECECEC;
    padding: 40px 20px;
  }
}

.features-area .features-wrap .features-item::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 100px;
  background: #ECECEC;
  content: "";
}

@media (max-width: 767px) {
  .features-area .features-wrap .features-item::before {
    display: none;
  }
}

.features-area .features-wrap .features-item::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #005289;
  content: "";
  transition: all 0.3s;
}

.features-area .features-wrap .features-item:hover::after {
  width: 120px;
}

.features-area .features-wrap .features-item .icon {
  margin-right: 20px;
}

.features-area .features-wrap .features-item .icon i {
  font-size: 50px;
  color: #ff0000;
}

.features-area .features-wrap .features-item .features-text h3 a {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #1B1A1A;
}

.features-area .features-wrap .features-item .features-text h3 a:hover {
  color: #005289;
}

.features-area .features-wrap .features-item .features-text p {
  margin-bottom: 0;
}

.features-area .features-wrap .features-item .shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.features-area .features-wrap .col:first-child .features-item::before {
  display: none;
}

.features-area .features-wrap .col:last-child .features-item {
  border: 0;
}

@media (max-width: 991px) {
  .features-area .features-wrap .col:last-child .features-item::before {
    display: none;
  }
}

/*===================================
 07. about-area 
 ====================================*/
.about-area {
  position: relative;
  z-index: 1;
}

.about-area .dots-shape-1 {
  position: absolute;
  left: 100px;
  top: 10%;
  z-index: -1;
  animation: bounceLeftToRight 4s infinite;
}

@media (max-width: 1700px) {
  .about-area .dots-shape-1 {
    display: none;
  }
}

.about-area .dots-shape-2 {
  position: absolute;
  left: 120px;
  bottom: 22%;
  z-index: -1;
  animation: bounceLeftToRight 6s infinite;
}

@media (max-width: 1700px) {
  .about-area .dots-shape-2 {
    display: none;
  }
}

@media (max-width: 991px) {
  .about-area .about-left-item {
    padding: 50px 0;
    margin-bottom: 80px;
  }
}

@media (max-width: 575px) {
  .about-area .about-left-item {
    margin-bottom: 40px;
  }
}

.about-area .about-left-item .about-left-wrap {
  width: 495px;
  height: 495px;
  border: 3px solid #005289;
  border-radius: 50%;
  position: relative;
  left: -100px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 1399px) {
  .about-area .about-left-item .about-left-wrap {
    width: 395px;
    height: 395px;
    left: 0px;
  }
}

@media (max-width: 991px) {
  .about-area .about-left-item .about-left-wrap {
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .about-area .about-left-item .about-left-wrap {
    width: 295px;
    height: 295px;
  }
}

.about-area .about-left-item .about-left-wrap .about-middle {
  width: 197.24px;
  height: 197.12px;
  background: #F6F6F6;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.about-area .about-left-item .about-left-wrap .about-middle .about-middle-text {
  width: 152.78px;
  height: 152.72px;
  background: rgba(241, 181, 31, 0.502);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  border: 4px dashed #F6F6F6;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-area .about-left-item .about-left-wrap .about-middle .about-middle-text:before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 110.78px;
  height: 110.72px;
  background: #ff0000;
  border-radius: 50%;
  content: "";
  z-index: -1;
}

.about-area .about-left-item .about-left-wrap .about-middle .about-middle-text h3 {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  line-height: 30px;
}

.about-area .about-left-item .about-left-wrap .about-middle .about-middle-text small {
  color: #FFF;
  font-family: Rubik;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.about-area .about-left-item .about-left-wrap .bottom-shape {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: -1;
}

.about-area .about-left-item .about-left-wrap .round-image-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  animation: zoom-in-zoom-out 8s ease infinite;
}

@media (max-width: 1399px) {

  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-1 img,
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-2 img,
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-3 img,
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-4 img,
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-5 img,
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-6 img {
    max-width: 150px;
  }
}

@media (max-width: 575px) {

  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-1 img,
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-2 img,
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-3 img,
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-4 img,
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-5 img,
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-6 img {
    max-width: 100px;
  }
}

.about-area .about-left-item .about-left-wrap .round-image-wrap .image-1 {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
}

@media (max-width: 1399px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-1 {
    top: -70px;
  }
}

@media (max-width: 575px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-1 {
    top: -50px;
  }
}

.about-area .about-left-item .about-left-wrap .round-image-wrap .image-1 img {
  border-radius: 50%;
}

.about-area .about-left-item .about-left-wrap .round-image-wrap .image-2 {
  position: absolute;
  right: -80px;
  top: 2%;
}

@media (max-width: 1399px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-2 {
    right: -50px;
  }
}

@media (max-width: 575px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-2 {
    right: -30px;
  }
}

.about-area .about-left-item .about-left-wrap .round-image-wrap .image-2 img {
  border-radius: 50%;
}

.about-area .about-left-item .about-left-wrap .round-image-wrap .image-3 {
  position: absolute;
  right: -70px;
  bottom: 8%;
}

@media (max-width: 1399px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-3 {
    right: -40px;
  }
}

@media (max-width: 575px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-3 {
    right: -20px;
  }
}

.about-area .about-left-item .about-left-wrap .round-image-wrap .image-3 img {
  border-radius: 50%;
}

.about-area .about-left-item .about-left-wrap .round-image-wrap .image-4 {
  position: absolute;
  left: 50%;
  bottom: -100px;
  transform: translateX(-50%);
}

@media (max-width: 1399px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-4 {
    bottom: -70px;
  }
}

@media (max-width: 575px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-4 {
    bottom: -50px;
  }
}

.about-area .about-left-item .about-left-wrap .round-image-wrap .image-4 img {
  border-radius: 50%;
}

.about-area .about-left-item .about-left-wrap .round-image-wrap .image-5 {
  position: absolute;
  left: -80px;
  top: 2%;
}

@media (max-width: 1399px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-5 {
    left: -50px;
  }
}

@media (max-width: 575px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-5 {
    left: -30px;
  }
}

.about-area .about-left-item .about-left-wrap .round-image-wrap .image-5 img {
  border-radius: 50%;
}

.about-area .about-left-item .about-left-wrap .round-image-wrap .image-6 {
  position: absolute;
  left: -70px;
  bottom: 8%;
}

@media (max-width: 1399px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-6 {
    left: -40px;
  }
}

@media (max-width: 575px) {
  .about-area .about-left-item .about-left-wrap .round-image-wrap .image-6 {
    left: -20px;
  }
}

.about-area .about-left-item .about-left-wrap .round-image-wrap .image-6 img {
  border-radius: 50%;
}

.about-area .about-right-text .ab-title {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
  display: block;
  color: #005289;
  position: relative;
}

.about-area .about-right-text h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .about-area .about-right-text h2 {
    font-size: 35px;
    line-height: 45px;
  }
}

@media (max-width: 575px) {
  .about-area .about-right-text h2 {
    font-size: 30px;
    line-height: 35px;
  }
}

.about-area .about-right-text p {
  margin-bottom: 20px;
  max-width: 525px;
}

@media (max-width: 1199px) {
  .about-area .about-right-text p {
    margin-bottom: 40px;
  }
}

.about-area .about-features-wrap {
  border-bottom: 1px solid #E3E3E3;
}

.about-area .about-features-wrap .about-features-img {
  padding-right: 20px;
  max-width: 200px;
}

@media (max-width: 575px) {
  .about-area .about-features-wrap .about-features-img {
    padding-right: 0;
    margin-bottom: 20px;
  }
}

.about-area .about-features-wrap .about-features-img img {
  width: 100%;
}

.about-area .about-features-wrap .progress-single {
  margin-bottom: 20px;
  position: relative;
}

.about-area .about-features-wrap .progress-single h5 {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}

.about-area .about-features-wrap .progress-single .progress {
  background: #fff;
  height: 8px;
  position: relative;
  border: 1px solid #ff0000;
}

.about-area .about-features-wrap .progress-single .progress .progress-bar {
  background-color: #ff0000;
  height: 4px;
  position: relative;
  top: 1px;
  left: 2px;
  border-radius: 5px;
}

.about-area .about-features-wrap .progress-number {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #1B1A1A;
  margin-bottom: 5px;
}

@media (max-width: 767px) {
  .about-area .about-features-wrap .progress-number {
    font-size: 18px;
  }
}

.about-area .about-list ul {
  display: flex;
  flex-wrap: wrap;
  padding-top: 30px;
}

.about-area .about-list ul li {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-left: 20px;
  margin-bottom: 20px;
  flex-basis: 50%;
  position: relative;
}

@media (max-width: 450px) {
  .about-area .about-list ul li {
    flex-basis: 100%;
  }
}

.about-area .about-list ul li:before {
  position: absolute;
  left: 0;
  top: 3px;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: #005289;
}

.about-area .about-bottom {
  display: flex;
  flex-wrap: wrap;
}

.about-area .about-bottom .about-bottom-btn {
  flex-basis: 50%;
}

.about-area .about-bottom .author-sign {
  flex-basis: 50%;
}

/*==============================
 08. funfact-area
 ===============================*/
@media (max-width: 991px) {
  .funfact-area {
    padding-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .funfact-area {
    padding-bottom: 40px;
  }
}

.funfact-area .info {
  border-radius: 5px;
  padding: 25px 22px;
  background: url(../images/funfact-bg.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
  border-radius: 10px;
}

@media (max-width: 1199px) {
  .funfact-area .info {
    padding: 25px 12px;
  }
}

.funfact-area .info:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #000;
  opacity: 0.5;
  z-index: -1;
  border-radius: 10px;
}

.funfact-area .info:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #EFF4F9;
  z-index: -1;
  border-radius: 8px;
  transition: all 0.3s;
}

.funfact-area .info i {
  display: block;
  width: 78px;
  height: 78px;
  line-height: 78px;
  background: #ff0000;
  outline: 5px solid #fff;
  text-align: center;
  color: #fff;
  font-size: 40px;
  border-radius: 50%;
  margin-right: 20px;
  transition: all 0.3s;
}

@media (max-width: 991px) {
  .funfact-area .info {
    margin-bottom: 20px;
  }
}

.funfact-area .info p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: #1B1A1A;
  margin-bottom: 0;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .funfact-area .info p {
    font-size: 14px;
  }
}

.funfact-area .info h3 {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0;
  color: #1B1A1A;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .funfact-area .info h3 {
    font-size: 25px;
  }
}

.funfact-area .info:hover:after {
  width: 0;
}

.funfact-area .info:hover i {
  background-color: #005289;
}

.funfact-area .info:hover h3,
.funfact-area .info:hover p {
  color: #fff;
}

/*==============================
 09. service-area
 ===============================*/
.service-area {
  position: relative;
  z-index: 1;
  margin-bottom: 100px;
}

.service-area .service-wrap .service-item {
  margin: 0 20px;
  padding-top: 43px;
  margin-bottom: 0;
  border-bottom: 1px solid #ddd;
}

.service-area .service-wrap .service-item .service-text {
  border-radius: 30px 30px 0 0;
  background: #fff;
  text-align: center;
  padding-bottom: 20px;
}

.service-area .service-wrap .service-item .service-text .icon {
  width: 85px;
  height: 85px;
  line-height: 85px;
  background: #FFF;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  font-size: 40px;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 20px;
  color: #ff0000;
  position: relative;
  top: -42.5px;
}

.service-area .service-wrap .service-item .service-text h3 {
  margin-top: -42px;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}

.service-area .service-wrap .service-item .service-text h3 a {
  color: #ff0000;
}

.service-area .service-wrap .service-item .service-text p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-top: 10px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (max-width: 991px) {
  .service-area .service-wrap .service-item .service-text p {
    font-size: 15px;
  }
}

.service-area .service-wrap .service-item .service-text a.read-more {
  position: relative;
  padding-right: 25px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #1B1A1A;
}

.service-area .service-wrap .service-item .service-text a.read-more:before {
  position: absolute;
  right: 0px;
  top: 6px;
  content: "\e661";
  font-family: "themify";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 12px;
  line-height: 100%;
  transition: all 0.3s;
}

.service-area .service-wrap .service-item .service-text a.read-more:hover {
  letter-spacing: 1.9px;
  color: #005289;
}

.service-area .service-wrap .service-item .service-text .service-img {
  padding: 10px 0;
  overflow: visible;
}

.service-area .service-wrap .owl-item.center .service-item .service-text .icon {
  color: #005289;
}

.service-area .service-wrap .owl-item.center .service-item .service-text a.read-more {
  color: #005289;
}

.service-area .service-wrap .owl-nav {
  display: none;
}

.service-area .service-wrap .owl-dots {
  text-align: center;
  bottom: -80px;
  position: absolute;
  width: 100%;
}

.service-area .service-wrap .owl-dots button {
  border: none;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  border-radius: 10px;
  background: #E2E9F0;
}

@media (max-width: 575px) {
  .service-area .service-wrap .owl-dots button {
    width: 8px;
    height: 13px;
  }
}

.service-area .service-wrap .owl-dots button.active {
  background: #ff0000;
  width: 20px;
  height: 20px;
}

@media (max-width: 575px) {
  .service-area .service-wrap .owl-dots button.active {
    width: 12px;
    height: 12px;
  }
}

.service-area .right-shape {
  position: absolute;
  right: 20px;
  bottom: 0;
}

/*==============================
 10. brand-section
 ===============================*/
.brand-section {
  padding-top: 90px;
  padding-bottom: 100px;
}

@media (max-width: 991px) {
  .brand-section {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}

.brand-section .brand-slider .brand-item img {
  filter: grayscale(100%);
  margin: 0 auto;
  transition: all 0.3s;
}

.brand-section .brand-slider .brand-item:hover img {
  filter: grayscale(0);
}

.brand-section .brand-slider .owl-item img {
  width: unset;
}

.brand-section .brand-slider .owl-nav {
  display: none;
}

/*==============================
 11. choose-area
 ===============================*/
.choose-area {
  position: relative;
  z-index: 1;
}

.choose-area .line-vector {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

@media (max-width: 1199px) {
  .choose-area .line-vector {
    max-width: 50%;
  }
}

@media (max-width: 991px) {
  .choose-area .line-vector {
    max-width: 30%;
  }
}

.choose-area .solar-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

@media (max-width: 1500px) {
  .choose-area .solar-panel {
    max-width: 50%;
  }
}

@media (max-width: 991px) {
  .choose-area .solar-panel {
    display: none;
  }
}

.choose-area .solar-panel .sun-shape {
  position: absolute;
  top: -50px;
  left: 50px;
}

.choose-area .solar-panel .sun-shape img {
  animation: circle 60s linear infinite;
}

@media (max-width: 1199px) {
  .choose-area .solar-panel .sun-shape img {
    max-width: 50%;
  }
}

.choose-area .choose-wrap .ch-top-title-s2 {
  margin-bottom: 20px;
}

.choose-area .choose-wrap .choose-items {
  display: flex;
  flex-wrap: wrap;
}

.choose-area .choose-wrap .choose-items .info {
  padding: 25px 22px;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
  border: 1px solid #DDDDDD;
  margin-left: -1px;
  margin-top: -1px;
  flex-basis: 50%;
}

@media (max-width: 1199px) {
  .choose-area .choose-wrap .choose-items .info {
    padding: 25px 12px;
  }
}

@media (max-width: 480px) {
  .choose-area .choose-wrap .choose-items .info {
    flex-basis: 100%;
  }
}

.choose-area .choose-wrap .choose-items .info:after {
  position: absolute;
  left: 2%;
  top: 5%;
  width: 0;
  height: 90%;
  content: "";
  background: #fff;
  z-index: -1;
  transition: all 0.3s;
}

.choose-area .choose-wrap .choose-items .info i {
  display: block;
  width: 63px;
  height: 63px;
  line-height: 63px;
  background: #ff0000;
  text-align: center;
  color: #fff;
  font-size: 30px;
  border-radius: 50%;
  margin-right: 20px;
  transition: all 0.3s;
}

.choose-area .choose-wrap .choose-items .info p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: #1B1A1A;
  margin-bottom: 0;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .choose-area .choose-wrap .choose-items .info p {
    font-size: 14px;
  }
}

.choose-area .choose-wrap .choose-items .info h3 {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0;
  color: #1B1A1A;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .choose-area .choose-wrap .choose-items .info h3 {
    font-size: 18px;
  }
}

.choose-area .choose-wrap .choose-items .info:hover:after {
  width: 95%;
}

.choose-area .choose-wrap .choose-items .info:hover i {
  background-color: #005289;
}

.choose-area .choose-wrap .choose-features {
  margin-top: 40px;
  display: flex;
  align-items: center;
}

@media (max-width: 480px) {
  .choose-area .choose-wrap .choose-features {
    flex-wrap: wrap;
  }
}

.choose-area .choose-wrap .choose-features .choose-icon i {
  width: 100px;
  height: 88px;
  line-height: 88px;
  display: block;
  border: 1px solid #005289;
  text-align: center;
  margin-right: 20px;
}

@media (max-width: 480px) {
  .choose-area .choose-wrap .choose-features .choose-icon i {
    margin-bottom: 20px;
  }
}

.choose-area .choose-wrap .choose-features .choose-list ul li {
  font-family: Rubik;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.choose-area .choose-wrap .choose-features .choose-list ul li i {
  margin-right: 5px;
  color: #ff0000;
  transition: all 0.3s;
}

.choose-area .choose-wrap .choose-features .choose-list ul li+li {
  margin-top: 15px;
}

.choose-area .choose-wrap .choose-features .choose-list ul li:hover i {
  color: #005289;
}

/*==============================
 12. cta-area
 ===============================*/
.cta-area .cta-wrap {
  position: relative;
  z-index: 1;
  border-radius: 0 0 80px 80px;
}

.cta-area .cta-wrap:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #2E3A31;
  opacity: 0.788;
  z-index: -1;
  border-radius: 0 0 80px 80px;
}

.cta-area .cta-inner {
  max-width: 643px;
  margin: 0 auto;
}

.cta-area .cta-inner .ch-top-title {
  margin-bottom: 25px;
}

.cta-area .cta-inner .cotact-wrap {
  display: flex;
  max-width: 483px;
  margin: 0 auto;
  align-items: center;
}

@media (max-width: 575px) {
  .cta-area .cta-inner .cotact-wrap {
    display: block;
    text-align: center;
  }
}

.cta-area .cta-inner .cotact-wrap .call-btn {
  margin-right: 50px;
  display: flex;
  align-items: center;
}

@media (max-width: 575px) {
  .cta-area .cta-inner .cotact-wrap .call-btn {
    justify-content: center;
    margin-bottom: 20px;
  }
}

.cta-area .cta-inner .cotact-wrap .call-btn i {
  font-size: 40px;
  color: #005289;
  margin-right: 10px;
}

.cta-area .cta-inner .cotact-wrap .call-btn p {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  margin-bottom: 0;
}

.cta-area .cta-inner .cotact-wrap .call-btn p strong {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: block;
  margin-top: 5px;
}

/*==============================
 13. testimonial-section
 ===============================*/
.testimonial-section {
  padding-bottom: 200px;
  position: relative;
  z-index: 1;
}

@media (max-width: 575px) {
  .testimonial-section {
    padding-bottom: 100px;
  }
}

.testimonial-section .testimonial-items {
  margin-left: auto;
}

.testimonial-section .testimonial-items .owl-nav {
  display: none;
}

.testimonial-section .testimonial-items .owl-stage-outer {
  position: relative;
}

@media (max-width: 991px) {
  .testimonial-section .testimonial-items .owl-stage-outer {
    margin-left: 0px;
  }
}

.testimonial-section .testimonial-items .testimonial-item {
  padding-bottom: 40px;
}

.testimonial-section .testimonial-items .testimonial-item .ratting {
  display: flex;
  margin-bottom: 10px;
}

.testimonial-section .testimonial-items .testimonial-item .ratting li {
  color: #ff0000;
}

.testimonial-section .testimonial-items .testimonial-item .ratting li span {
  color: #CDCDCD;
}

.testimonial-section .testimonial-items .testimonial-item .ratting li+li {
  margin-left: 6px;
}

.testimonial-section .testimonial-items .testimonial-item h4 {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 5px;
  margin-top: 30px;
}

.testimonial-section .testimonial-items .testimonial-item h4 i {
  color: #01AB31;
}

.testimonial-section .testimonial-items .testimonial-item p {
  margin-bottom: 0;
}

.testimonial-section .testimonial-items .testimonial-item .info-img {
  margin-top: 0px;
}

.testimonial-section .testimonial-items .testimonial-item .info-img img {
  width: unset;
  border-radius: 50%;
}

.testimonial-section .testimonial-items .testimonial-item .quote {
  position: absolute;
  right: 30px;
  bottom: 65px;
}

.testimonial-section .testimonial-items .testimonial-item .quote i {
  font-size: 60px;
  color: #ECECEC;
  transition: all 0.3s;
}

.testimonial-section .testimonial-items .testimonial-item-inner {
  padding: 28px 36px;
  padding-bottom: 0;
}

@media (max-width: 1199px) {
  .testimonial-section .testimonial-items .testimonial-item-inner {
    background: #FFF;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
  }
}

@media (max-width: 575px) {
  .testimonial-section .testimonial-items .testimonial-item-inner {
    padding: 28px 20px;
    padding-bottom: 0;
  }
}

.testimonial-section .testimonial-items .testimonial-item-inner .info-img {
  position: relative;
  bottom: -30px;
}

.testimonial-section .testimonial-items .owl-item.active.center .testimonial-item-inner {
  background: #FFF;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
}

.testimonial-section .testimonial-items .owl-item.active.center .quote i {
  color: #005289;
}

.testimonial-section .testimonial-items .owl-nav {
  display: none;
}

.testimonial-section .testimonial-items .owl-dots {
  text-align: center;
  bottom: -60px;
  position: absolute;
  width: 100%;
}

@media (max-width: 575px) {
  .testimonial-section .testimonial-items .owl-dots {
    bottom: -30px;
  }
}

.testimonial-section .testimonial-items .owl-dots button {
  border: none;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  border-radius: 10px;
  background: #E2E9F0;
}

@media (max-width: 575px) {
  .testimonial-section .testimonial-items .owl-dots button {
    width: 8px;
    height: 12px;
  }
}

.testimonial-section .testimonial-items .owl-dots button.active {
  background: #ff0000;
  width: 20px;
  height: 20px;
}

@media (max-width: 575px) {
  .testimonial-section .testimonial-items .owl-dots button.active {
    width: 12px;
    height: 12px;
  }
}

.testimonial-section .testimonial-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

@media (max-width: 1199px) {
  .testimonial-section .testimonial-shape {
    max-width: 200px;
  }
}

@media (max-width: 575px) {
  .testimonial-section .testimonial-shape {
    display: none;
  }
}

/*==============================
 14. pricing-section
 ===============================*/
.pricing-section {
  position: relative;
}

@media (max-width: 991px) {
  .pricing-section {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .pricing-section {
    padding-bottom: 50px;
  }
}

.pricing-section .pricing-item {
  padding: 10px;
  position: relative;
  padding-bottom: 0;
}

@media (max-width: 991px) {
  .pricing-section .pricing-item {
    margin-bottom: 30px;
  }
}

.pricing-section .pricing-item:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 165px;
  content: "";
  background: #005289;
  opacity: 0.102;
}

.pricing-section .pricing-item-inner {
  padding: 40px;
  background: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 1399px) {
  .pricing-section .pricing-item-inner {
    padding: 40px;
  }
}

@media (max-width: 1199px) {
  .pricing-section .pricing-item-inner {
    padding: 30px;
  }
}

.pricing-section .pricing-item-inner .price-wrap {
  display: flex;
  padding-bottom: 20px;
  margin-bottom: 40px;
  position: relative;
}

.pricing-section .pricing-item-inner .price-wrap:before {
  position: absolute;
  left: -20%;
  bottom: 0;
  width: 200%;
  height: 2px;
  content: "";
  background: #DDD;
}

.pricing-section .pricing-item-inner .price-wrap .price-icon {
  padding-right: 20px;
}

.pricing-section .pricing-item-inner .price-wrap .price-icon i {
  font-size: 60px;
  color: #ff0000;
}

.pricing-section .pricing-item-inner .price-price span {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

@media (max-width: 1399px) {
  .pricing-section .pricing-item-inner .price-price span {
    font-size: 18px;
  }
}

.pricing-section .pricing-item-inner .price-price h3 {
  font-family: "Poppins";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.pricing-section .pricing-item-inner ul {
  margin-bottom: 50px;
}

.pricing-section .pricing-item-inner ul li {
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1399px) {
  .pricing-section .pricing-item-inner ul li {
    font-size: 15px;
  }
}

@media (max-width: 1199px) {
  .pricing-section .pricing-item-inner ul li {
    font-size: 14px;
  }
}

.pricing-section .pricing-item-inner ul li i {
  margin-right: 10px;
}

.pricing-section .pricing-item-inner ul li i.gray {
  color: #636363;
}

.pricing-section .pricing-item-inner ul li+li {
  margin-top: 28px;
}

.pricing-section .col:nth-child(2) .pricing-item:before {
  opacity: 1;
}

.pricing-section .col:nth-child(2) .pricing-item-inner {
  position: relative;
  z-index: 1;
}

.pricing-section .col:nth-child(2) .pricing-item-inner:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #04351F;
  opacity: 0.95;
  z-index: -1;
}

.pricing-section .col:nth-child(2) .pricing-item-inner .price-wrap::before {
  background: #ff0000;
}

.pricing-section .col:nth-child(2) .pricing-item-inner ul li {
  color: #fff;
}

.pricing-section .col:nth-child(2) .pricing-item-inner .price-price h3 {
  color: #fff;
}

.pricing-section .col:nth-child(2) .pricing-item-inner .price-price span {
  color: #fff;
}

.pricing-section .col:nth-child(2) .pricing-item-inner .price-icon i {
  color: #fff;
}

.pricing-section .col:nth-child(odd) .pricing-item .ch-btn-style-1 {
  background: transparent;
  border: 1px solid #ff0000;
  color: #ff0000;
}

.pricing-section .col:nth-child(odd) .pricing-item .ch-btn-style-1:before {
  background-color: #fff;
}

.pricing-section .col:nth-child(odd) .pricing-item .ch-btn-style-1:hover {
  background-color: #ff0000;
  color: #fff;
}

/*==============================
 15. project-section
 ===============================*/
.project-section .project-filters-btn {
  max-width: 856px;
  margin: 0 auto;
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .project-section .project-filters-btn {
    margin-bottom: 40px;
  }
}

.project-section .project-filters-btn p {
  max-width: 502px;
}

.project-section .project-filters-btn ul {
  display: flex;
  flex-wrap: wrap;
}

.project-section .project-filters-btn ul li {
  margin: 10px;
}

.project-section .project-filters-btn ul li a {
  padding: 3px 10px;
  display: block;
  background: transparent;
  color: #1B1A1A;
}

@media (max-width: 1199px) {
  .project-section .project-filters-btn ul li a {
    padding: 0px 7px;
  }
}

.project-section .project-filters-btn ul li a.current {
  color: #fff;
  background: #ff0000;
}

@media (max-width: 1199px) {
  .project-section .project-filters-btn ul li {
    margin: 10px 5px;
    font-size: 14px;
  }
}

.project-section .project-filters-btn ul li:first-child {
  margin-left: 0;
}

.project-section .project-item {
  position: relative;
  margin-bottom: 22px;
  overflow: hidden;
}

.project-section .project-item .project-img {
  position: relative;
}

.project-section .project-item .project-img i {
  position: absolute;
  right: 0;
  top: -150px;
  transform: translate(-50%, -50%);
  width: 53px;
  height: 53px;
  line-height: 53px;
  background: #fff;
  color: #ff0000;
  text-align: center;
  font-size: 30px;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 575px) {
  .project-section .project-item .project-img i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
  }
}

.project-section .project-item .project-img:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(31, 33, 45, 0.8) 100%);
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}

.project-section .project-item .project-text {
  padding: 20px 30px;
  position: absolute;
  left: 30px;
  bottom: -100%;
  transition: all 0.3s;
  background: #fff;
  border-top-right-radius: 40px;
  min-width: 400px;
}

@media (max-width: 991px) {
  .project-section .project-item .project-text {
    min-width: 300px;
    left: 15px;
  }
}

@media (max-width: 575px) {
  .project-section .project-item .project-text {
    padding: 20px 15px;
    min-width: 260px;
  }
}

.project-section .project-item .project-text span {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #005289;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .project-section .project-item .project-text span {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .project-section .project-item .project-text span {
    font-size: 13px;
  }
}

.project-section .project-item .project-text h2 {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #1B1A1A;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .project-section .project-item .project-text h2 {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .project-section .project-item .project-text h2 {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .project-section .project-item .project-text h2 {
    font-size: 16px;
  }
}

.project-section .project-item .project-text a {
  color: #fff;
  display: inline-block;
  padding: 10px 15px;
  background: #ff0000;
}

.project-section .project-item:hover .project-img i {
  opacity: 1;
  visibility: visible;
  top: 50px;
}

@media (max-width: 575px) {
  .project-section .project-item:hover .project-img i {
    top: 30px;
  }
}

.project-section .project-item:hover .project-img:before {
  opacity: 1;
  visibility: visible;
}

.project-section .project-item:hover .project-text {
  bottom: 30px;
}

@media (max-width: 991px) {
  .project-section .project-item:hover .project-text {
    bottom: 15px;
  }
}

.project-section .project-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
  padding: 15px 28px;
  border-left: 3px solid #ff0000;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .project-section .project-bottom {
    display: block;
    border: 0;
    margin-top: 20px;
    padding: 0;
  }
}

.project-section .project-bottom .text {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .project-section .project-bottom .text {
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
}

@media (max-width: 575px) {
  .project-section .project-bottom .text {
    display: block;
  }
}

.project-section .project-bottom p {
  font-size: 25.995px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  font-family: "Poppins", sans-serif;
  color: #1B1A1A;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .project-section .project-bottom p {
    font-size: 20.995px;
  }
}

.project-section .project-bottom h3 {
  font-size: 44.736px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  align-items: center;
  color: #005289;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .project-section .project-bottom h3 {
    font-size: 34.736px;
  }
}

.project-section .project-bottom small {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #636363;
  display: flex;
  margin-left: 30px;
}

@media (max-width: 767px) {
  .project-section .project-bottom small {
    margin-left: 0;
  }
}

.project-section .project-bottom .shape {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

@media (max-width: 767px) {
  .project-section .project-bottom .shape {
    display: none;
  }
}

/*==============================
 16. contact-section
 ===============================*/
.contact-section {
  position: relative;
  z-index: 1;
}

@media (max-width: 1199px) {
  .contact-section {
    padding-bottom: 300px;
  }
}

@media (max-width: 991px) {
  .contact-section {
    padding-bottom: 0;
  }
}

.contact-section .contact-top {
  display: flex;
  position: relative;
  z-index: 11;
}

@media (max-width: 991px) {
  .contact-section .contact-top {
    display: block;
  }
}

@media (max-width: 991px) {
  .contact-section .contact-top .contact-left img {
    width: 100%;
  }
}

.contact-section .contact-top .left-shape {
  width: 374px;
  height: 320.91px;
  background: #EFF4F9;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 11;
}

@media (max-width: 1199px) {
  .contact-section .contact-top .left-shape {
    width: 220px;
  }
}

@media (max-width: 991px) {
  .contact-section .contact-top .left-shape {
    width: 100%;
    padding: 30px;
  }
}

.contact-section .contact-top .left-shape .inner {
  width: 318px;
  height: 273px;
  display: block;
  border: 2px dashed #ff0000;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 1199px) {
  .contact-section .contact-top .left-shape .inner {
    width: 160px;
  }
}

@media (max-width: 991px) {
  .contact-section .contact-top .left-shape .inner {
    width: 100%;
  }
}

@media (max-width: 1199px) {
  .contact-section .contact-top .left-shape .inner img {
    max-width: 80px;
  }
}

.contact-section .solar-contact {
  padding-left: 360px;
}

@media (max-width: 1199px) {
  .contact-section .solar-contact {
    padding-left: 200px;
  }
}

@media (max-width: 991px) {
  .contact-section .solar-contact {
    padding-left: 0;
  }
}

.contact-section .contact-form-area {
  padding: 80px 50px 40px;
  max-width: 768px;
  margin-top: -625px;
  background: #fff;
  position: relative;
  z-index: 11;
  border-bottom: 5px solid #005289;
}

@media (max-width: 1199px) {
  .contact-section .contact-form-area {
    margin-top: -525px;
  }
}

@media (max-width: 991px) {
  .contact-section .contact-form-area {
    margin-top: 0;
  }
}

@media (max-width: 575px) {
  .contact-section .contact-form-area {
    padding: 50px 20px 40px;
  }
}

.contact-section .contact-form-area .form-field {
  margin-bottom: 30px;
}

.contact-section .contact-form-area .ch-top-title-s2 {
  margin-bottom: 20px;
  position: relative;
}

.contact-section .contact-form-area .ch-top-title-s2 p {
  max-width: 500px;
}

.contact-section .contact-form-area .ch-top-title-s2 i {
  position: absolute;
  right: 0;
  top: -40px;
  font-size: 85px;
  color: #005289;
}

@media (max-width: 575px) {
  .contact-section .contact-form-area .ch-top-title-s2 i {
    display: none;
  }
}

.contact-section .contact-form-area form input,
.contact-section .contact-form-area form select,
.contact-section .contact-form-area form textarea {
  background: transparent;
  width: 100%;
  height: 55px;
  border: 1px solid transparent;
  border-radius: 5px;
  box-shadow: none !important;
  padding-left: 25px;
  background: #FCFCFC;
  border: 1px solid #E7E6E6;
}

@media (max-width: 991px) {

  .contact-section .contact-form-area form input,
  .contact-section .contact-form-area form select,
  .contact-section .contact-form-area form textarea {
    height: 45px;
  }
}

.contact-section .contact-form-area form input:focus,
.contact-section .contact-form-area form select:focus,
.contact-section .contact-form-area form textarea:focus {
  border-color: #ff0000;
  background: #FCFCFC;
}

.contact-section .contact-form-area form textarea {
  height: 180px;
  padding-top: 15px;
}

.contact-section .contact-form-area form {
  overflow: hidden;
}

.contact-section .contact-form-area form ::-webkit-input-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #636363;
}

.contact-section .contact-form-area form :-moz-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #636363;
}

.contact-section .contact-form-area form ::-moz-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #636363;
}

.contact-section .contact-form-area form :-ms-input-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #636363;
}

.contact-section .contact-form-area form select {
  display: inline-block;
  color: #636363;
  cursor: pointer;
  opacity: 1;
  padding: 6px 25px;
  font-size: 15px;
  font-size: calc-rem-value(15);
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -moz-appearance: none;
  background: #FCFCFC url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
  position: relative;
}

.contact-section .contact-form-area form select:focus {
  background: #FCFCFC url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
}

.contact-section .contact-form-area form .submit-area {
  width: 100%;
  margin-top: 10px;
  margin-left: 0;
}

.contact-section .contact-form-area form .submit-area .ch-btn-style-1,
.contact-section .contact-form-area form .submit-area .ch-btn-style-4 {
  width: 100%;
}

.contact-section .map {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 557px;
  z-index: 1;
}

@media (max-width: 991px) {
  .contact-section .map {
    position: relative;
  }
}

.contact-section .map iframe {
  width: 100%;
  height: 557px;
}

/*=================================
 17. ch-blog-area 
 ==================================*/
.ch-blog-area {
  padding-bottom: 90px;
}

@media (max-width: 991px) {
  .ch-blog-area {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .ch-blog-area {
    padding-bottom: 50px;
  }
}

.ch-blog-area .blog-items .blog-item {
  background: #fff;
  margin-bottom: 30px;
  transition: all 0.3s;
}

.ch-blog-area .blog-items .blog-item .blog-img {
  overflow: hidden;
  overflow: hidden;
}

.ch-blog-area .blog-items .blog-item img {
  width: 100%;
  transform: scale(1);
  transition: all 0.6s;
}

@media (max-width: 575px) {
  .ch-blog-area .blog-items .blog-item img {
    width: 100%;
  }
}

.ch-blog-area .blog-items .blog-item:hover .blog-img img {
  transform: scale(1.2);
}

.ch-blog-area .blog-items .blog-item .blog-content {
  border: 1px solid #DDD;
  padding: 30px;
  border-top: 0;
  border-bottom: 0;
  padding-top: 0;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .ch-blog-area .blog-items .blog-item .blog-content {
    padding: 0 15px 30px;
  }
}

.ch-blog-area .blog-items .blog-item .blog-content ul {
  display: flex;
  align-items: center;
  padding: 5px;
  background: #fff;
  margin-top: -15px;
  position: relative;
  z-index: 11;
}

@media (max-width: 575px) {
  .ch-blog-area .blog-items .blog-item .blog-content ul {
    justify-content: center;
  }
}

.ch-blog-area .blog-items .blog-item .blog-content ul li {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.ch-blog-area .blog-items .blog-item .blog-content ul li span {
  display: block;
  padding: 5px 8px;
  background: #ff0000;
  color: #fff;
  transition: all 0.3s;
}

.ch-blog-area .blog-items .blog-item .blog-content ul li+li {
  margin-left: 20px;
}

.ch-blog-area .blog-items .blog-item .blog-content ul li strong {
  color: #1B1A1A;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}

.ch-blog-area .blog-items .blog-item .blog-content h2 {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin-top: 25px;
  margin-bottom: 15px;
}

@media (max-width: 1199px) {
  .ch-blog-area .blog-items .blog-item .blog-content h2 {
    font-size: 20px;
    line-height: 30px;
  }
}

@media (max-width: 575px) {
  .ch-blog-area .blog-items .blog-item .blog-content h2 {
    margin-top: 10px;
  }
}

.ch-blog-area .blog-items .blog-item .blog-content h2 a {
  color: #1B1A1A;
}

.ch-blog-area .blog-items .blog-item .blog-content h2 a:hover {
  color: #1B1A1A;
}

.ch-blog-area .blog-items .blog-item .blog-content p {
  margin-bottom: 0;
}

.ch-blog-area .blog-items .blog-item .blog-bottom {
  padding: 30px;
  border: 1px solid #DDD;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ch-blog-area .blog-items .blog-item .blog-bottom .blog-bottom-author img {
  border-radius: 50%;
}

@media (max-width: 1199px) {
  .ch-blog-area .blog-items .blog-item .blog-bottom {
    padding: 30px 15px;
  }
}

.ch-blog-area .blog-items .blog-item:hover {
  background: #EFF4F9;
}

.ch-blog-area .blog-items .blog-item:hover .blog-content ul li span {
  background-color: #005289;
}

.ch-blog-area .blog-items .blog-item:hover .ch-btn-style-3 {
  background-color: #ff0000;
  color: #fff;
  border-color: #005289;
}

.ch-blog-area .blog-items .blog-item:hover .ch-btn-style-3:before {
  background-color: #005289;
}

.ch-blog-area .blog-items .blog-item:hover .ch-btn-style-3:hover {
  border-color: #ff0000;
}

.ch-blog-area .blog-items .blog-item:hover .middle-shade:before {
  left: 0;
  right: 0;
  opacity: 0;
}

/*=================================
 18. ch-newsletter-area
 ==================================*/
.ch-newsletter-area .col {
  padding: 0;
  min-height: 100%;
}

.ch-newsletter-area .ch-newsletter-wrap {
  padding: 80px 30px;
  position: relative;
  z-index: 1;
  min-height: 320px;
}

@media (max-width: 991px) {
  .ch-newsletter-area .ch-newsletter-wrap {
    padding: 60px 30px;
    min-height: 100%;
  }
}

@media (max-width: 575px) {
  .ch-newsletter-area .ch-newsletter-wrap {
    padding: 30px 15px;
  }
}

.ch-newsletter-area .ch-newsletter-wrap .ch-newsletter-inner {
  max-width: 539px;
  margin: 0 auto;
}

@media (max-width: 1399px) {
  .ch-newsletter-area .ch-newsletter-wrap .ch-newsletter-inner {
    padding-right: 100px;
  }
}

@media (max-width: 991px) {
  .ch-newsletter-area .ch-newsletter-wrap .ch-newsletter-inner {
    padding-right: 80px;
  }
}

@media (max-width: 767px) {
  .ch-newsletter-area .ch-newsletter-wrap .ch-newsletter-inner {
    padding-right: 0;
    text-align: center;
  }
}

.ch-newsletter-area .ch-newsletter-wrap h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
  color: #fff;
}

@media (max-width: 1399px) {
  .ch-newsletter-area .ch-newsletter-wrap h2 {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .ch-newsletter-area .ch-newsletter-wrap h2 {
    font-size: 30px;
  }
}

@media (max-width: 500px) {
  .ch-newsletter-area .ch-newsletter-wrap h2 {
    font-size: 30px;
    margin-bottom: 10px;
    line-height: 40px;
  }
}

.ch-newsletter-area .ch-newsletter-wrap p {
  color: #fff;
  margin-bottom: 30px;
}

.ch-newsletter-area .ch-newsletter-wrap:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background: #ff0000;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.922;
}

.ch-newsletter-area .ch-newsletter-wrap.style-2 {
  min-height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.ch-newsletter-area .ch-newsletter-wrap.style-2:before {
  background: #005289;
}

.ch-newsletter-area .ch-newsletter-wrap.style-2 .middle-btn {
  position: absolute;
  left: -84.5px;
  top: 50%;
  transform: translateY(-50%);
  width: 163px;
  height: 163px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 991px) {
  .ch-newsletter-area .ch-newsletter-wrap.style-2 .middle-btn {
    width: 120px;
    height: 120px;
    left: -60px;
  }
}

@media (max-width: 767px) {
  .ch-newsletter-area .ch-newsletter-wrap.style-2 .middle-btn {
    display: none;
  }
}

.ch-newsletter-area .ch-newsletter-wrap.style-2 .middle-btn i {
  font-size: 80px;
  color: #ff0000;
}

@media (max-width: 991px) {
  .ch-newsletter-area .ch-newsletter-wrap.style-2 .middle-btn i {
    font-size: 60px;
  }
}

.ch-newsletter-area .newsletter-form .form-field {
  position: relative;
  width: 320px;
}

@media (max-width: 767px) {
  .ch-newsletter-area .newsletter-form .form-field {
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .ch-newsletter-area .newsletter-form .form-field {
    width: 280px;
  }
}

.ch-newsletter-area .newsletter-form .form-field input {
  width: 320px;
  height: 50px;
  border: 1px solid #1B1A1A;
  padding: 15px;
  padding-right: 150px;
  background: #fff;
  color: #1B1A1A;
  border: 0;
}

.ch-newsletter-area .newsletter-form .form-field input:focus {
  outline: none;
  border-color: #1B1A1A;
}

@media (max-width: 575px) {
  .ch-newsletter-area .newsletter-form .form-field input {
    width: 280px;
  }
}

.ch-newsletter-area .newsletter-form .form-field button {
  height: 40px;
  width: 130px;
  background: #005289;
  border: 0;
  color: #fff;
  transition: all 0.3s;
  position: absolute;
  right: 5px;
  top: 5px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

.ch-newsletter-area .newsletter-form .form-field button:hover {
  background: #1B1A1A;
  color: #fff;
}

.ch-newsletter-area.style-2 .ch-newsletter-wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.ch-newsletter-area.style-2 .ch-newsletter-wrap .ch-newsletter-inner {
  max-width: 610px;
}

.ch-newsletter-area.style-2 .ch-newsletter-wrap .ch-newsletter-inner p {
  color: #FFF;
  font-family: Poppins;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .ch-newsletter-area.style-2 .ch-newsletter-wrap .ch-newsletter-inner p {
    font-size: 20px;
  }
}

@media (max-width: 1199px) {
  .ch-newsletter-area.style-2 .ch-newsletter-wrap .ch-newsletter-inner p {
    font-size: 17px;
  }
}

/*--------------------------------------------------------------
19. Home-style-2
--------------------------------------------------------------*/
/*===================================
 search-area
 ====================================*/
@media (max-width: 991px) {
  .search-area {
    padding-top: 80px;
  }
}

.search-area .search-wrap {
  border: 1px solid #ddd;
  padding: 20px 30px;
  border-radius: 80px;
  background: #fff;
  margin-top: -50px;
  z-index: 11;
  position: relative;
}

@media (max-width: 991px) {
  .search-area .search-wrap {
    margin-top: 0;
  }
}

.search-area .search-wrap .search-item {
  position: relative;
  z-index: 990;
  padding-left: 20px;
}

@media (max-width: 767px) {
  .search-area .search-wrap .search-item {
    padding-left: 0;
  }
}

.search-area .search-wrap .search-item:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 49px;
  background: #ddd;
  content: "";
  z-index: 11;
}

@media (max-width: 767px) {
  .search-area .search-wrap .search-item:before {
    display: none;
  }
}

.search-area .search-wrap .search-item select {
  width: 100%;
}

.search-area .search-wrap .search-item input {
  width: 100%;
  border: 0;
  height: 50px;
  padding: 15px;
  font-size: 16px;
}

.search-area .search-wrap .search-item input:focus {
  outline: none;
}

.search-area .search-wrap .search-item .form-field {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.search-area .search-wrap .search-item .nice-select {
  width: 173px;
  border: 0;
  font-size: 16px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .search-area .search-wrap .search-item .nice-select {
    width: 100%;
  }
}

.search-area .search-wrap .search-item .nice-select .list {
  margin-top: 30px;
}

@media (max-width: 991px) {
  .search-area .search-wrap .search-item .nice-select .list {
    margin-top: 0;
  }
}

.search-area .search-wrap .search-item .nice-select:after {
  height: 10px;
  width: 10px;
  margin-top: -7px;
}

.search-area .search-wrap .search-item .nice-select.open:after {
  border-color: #005289;
}

.search-area .search-wrap .search-item.search-btn {
  text-align: right;
  z-index: 9;
}

@media (max-width: 991px) {
  .search-area .search-wrap .search-item.search-btn {
    text-align: center;
    margin-top: 50px;
  }
}

@media (max-width: 575px) {
  .search-area .search-wrap .search-item.search-btn {
    margin-top: 20px;
  }
}

.search-area .search-wrap .search-item.search-btn .ch-btn-style-1 {
  border-radius: 40px;
}

.search-area .search-wrap .search-item.search-btn .ch-btn-style-1 i {
  margin-right: 5px;
  position: relative;
  top: 2px;
}

.search-area .search-wrap .col:first-child .search-item:before,
.search-area .search-wrap .col:last-child .search-item:before {
  display: none;
}

.search-area .search-wrap .col:nth-child(1) .search-item {
  z-index: 9901;
}

.search-area .search-wrap .col:nth-child(1) .search-item .nice-select {
  margin: 0;
}

.search-area .search-wrap .col:nth-child(2) .search-item {
  z-index: 992;
}

/*===================================
 06. features-area
 ====================================*/
.features-area-s2 {
  padding-bottom: 60px;
}

@media (max-width: 991px) {
  .features-area-s2 {
    padding-bottom: 20px;
  }
}

.features-area-s2 .features-wrap {
  background: none;
  box-shadow: none;
}

.features-area-s2 .features-wrap .features-item {
  display: block;
  text-align: center;
  border: 1px solid #ddd;
  overflow: hidden;
  position: relative;
  padding: 50px 30px;
  transition: all 0.3s;
  background: url(../images/features-bg.jpg);
  z-index: 1;
  transition: all 0.4s;
  margin-bottom: 60px;
}

@media (max-width: 1199px) {
  .features-area-s2 .features-wrap .features-item {
    padding: 40px 15px;
  }
}

.features-area-s2 .features-wrap .features-item::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(352deg, #000 -17.24%, #005289 117.24%);
  opacity: 0.902;
  z-index: -1;
  z-index: -11;
}

.features-area-s2 .features-wrap .features-item:before {
  position: absolute;
  right: -43px;
  top: -43px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #ddd;
  border-radius: 50%;
  content: "";
  transition: all 0.3s;
}

.features-area-s2 .features-wrap .features-item .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #fff;
  z-index: -1;
  transition: all 0.3s;
}

.features-area-s2 .features-wrap .features-item .icon {
  margin-bottom: 20px;
}

.features-area-s2 .features-wrap .features-item .icon i {
  font-size: 60px;
  color: #ff0000;
  transition: all 0.3s;
}

.features-area-s2 .features-wrap .features-item .features-text h3 a {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #1B1A1A;
}

@media (max-width: 1199px) {
  .features-area-s2 .features-wrap .features-item .features-text h3 a {
    font-size: 20px;
  }
}

.features-area-s2 .features-wrap .features-item .features-text h3 a:hover {
  color: #005289;
}

.features-area-s2 .features-wrap .features-item .features-text p {
  margin-bottom: 0;
  transition: all 0.3s;
}

.features-area-s2 .features-wrap .features-item .number {
  position: absolute;
  right: 10px;
  top: 0;
}

.features-area-s2 .features-wrap .features-item .number h4 {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #fff;
  font-family: Rubik;
  font-size: 55.493px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  z-index: 11;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
}

.features-area-s2 .features-wrap .features-item .bottom-btn {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.features-area-s2 .features-wrap .features-item .bottom-btn a {
  padding: 10px;
  background: #ff0000;
  color: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-area-s2 .features-wrap .features-item:hover {
  overflow: unset;
}

.features-area-s2 .features-wrap .features-item:hover .number h4 {
  opacity: 1;
  visibility: visible;
}

.features-area-s2 .features-wrap .features-item:hover .features-text h3 a {
  color: #fff;
}

.features-area-s2 .features-wrap .features-item:hover .features-text p {
  color: #fff;
}

.features-area-s2 .features-wrap .features-item:hover .icon i {
  color: #fff;
}

.features-area-s2 .features-wrap .features-item:hover .overlay {
  height: 0;
}

.features-area-s2 .features-wrap .features-item:hover:before {
  display: none;
}

.features-area-s2 .features-wrap .features-item:hover .bottom-btn {
  opacity: 1;
  visibility: visible;
  bottom: -42px;
}

.about-area.style-2 {
  position: relative;
  z-index: 1;
  padding-bottom: 200px;
}

@media (max-width: 1199px) {
  .about-area.style-2 {
    padding-bottom: 120px;
  }
}

.about-area.style-2 .right-img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  max-width: 450px;
}

@media (max-width: 1199px) {
  .about-area.style-2 .right-img {
    max-width: 250px;
  }
}

@media (max-width: 991px) {
  .about-area.style-2 .about-left-item {
    padding-top: 0;
  }
}

@media (max-width: 575px) {
  .about-area.style-2 .about-left-item {
    padding-bottom: 80px;
  }
}

.about-area.style-2 .about-right-text h2 {
  margin-bottom: 10px;
}

.about-area.style-2 .about-image {
  position: relative;
  z-index: 1;
}

.about-area.style-2 .about-image .ab-shape {
  position: absolute;
  left: -50px;
  top: -50px;
  z-index: -1;
}

.about-area.style-2 .about-image .ab-shape img {
  animation: bounceLeftToRight 4s infinite;
}

.about-area.style-2 .about-image .about-image-wrap {
  display: flex;
  position: absolute;
  left: -127px;
  bottom: -80px;
  align-items: flex-end;
}

.about-area.style-2 .about-image .about-btm {
  display: flex;
  background: #005289;
  padding: 20px 30px;
  padding-right: 60px;
}

@media (max-width: 575px) {
  .about-area.style-2 .about-image .about-btm {
    padding: 10px;
  }
}

.about-area.style-2 .about-image .about-btm i {
  color: #fff;
  font-size: 50px;
  margin-right: 20px;
}

@media (max-width: 575px) {
  .about-area.style-2 .about-image .about-btm i {
    font-size: 40px;
    margin-right: 10px;
  }
}

.about-area.style-2 .about-image .about-btm .about-btm-text span {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: block;
  margin-bottom: 5px;
  color: #fff;
}

@media (max-width: 575px) {
  .about-area.style-2 .about-image .about-btm .about-btm-text span {
    font-size: 13px;
  }
}

.about-area.style-2 .about-image .about-btm .about-btm-text h4 {
  font-family: Rubik;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #fff;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .about-area.style-2 .about-image .about-btm .about-btm-text h4 {
    font-size: 18px;
  }
}

.about-area.style-2 .about-right-item .about-list-wrap {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

@media (max-width: 575px) {
  .about-area.style-2 .about-right-item .about-list-wrap .about-list {
    padding-bottom: 10px;
  }
}

.about-area.style-2 .about-right-item .about-list-wrap .about-list h5 {
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}

@media (max-width: 575px) {
  .about-area.style-2 .about-right-item .about-list-wrap .about-list h5 {
    font-size: 16px;
  }
}

.about-area.style-2 .about-right-item .about-list-wrap .about-list ul {
  display: block;
  padding-top: 10px;
}

.about-area.style-2 .about-right-item .about-list-wrap .about-list ul li {
  margin-bottom: 10px;
}

.about-area.style-2 .about-right-item .about-list-wrap .about-exprience {
  border-right: 1px solid #ddd;
  padding-right: 10px;
  margin-right: 20px;
  padding: 20px;
  padding-top: 0;
}

@media (max-width: 575px) {
  .about-area.style-2 .about-right-item .about-list-wrap .about-exprience {
    margin-right: 10px;
    padding: 0;
  }
}

.about-area.style-2 .about-right-item .about-list-wrap .about-exprience .about-exprience-inner {
  transform: rotate(270deg);
}

.about-area.style-2 .about-right-item .about-list-wrap .about-exprience span {
  font-size: 21.916px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #1B1A1A;
}

@media (max-width: 575px) {
  .about-area.style-2 .about-right-item .about-list-wrap .about-exprience span {
    font-size: 15.916px;
  }
}

.about-area.style-2 .about-right-item .about-list-wrap .about-exprience h3 {
  font-size: 70.947px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 3px #005289;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .about-area.style-2 .about-right-item .about-list-wrap .about-exprience h3 {
    font-size: 40.947px;
    line-height: 20px;
  }
}

@media (max-width: 575px) {
  .about-area.style-2 .about-right-item .about-bottom {
    display: block;
  }
}

@media (max-width: 575px) {
  .about-area.style-2 .about-right-item .about-bottom .about-bottom-btn {
    margin-bottom: 20px;
  }
}

.about-area.style-2 .about-right-item .about-bottom .about-bottom-btn .about-bottom-btn-author {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.about-area.style-2 .about-right-item .about-bottom .about-bottom-btn .about-bottom-btn-author img {
  border-radius: 50%;
  padding: 3px;
  border: 1px solid #005289;
  margin-right: 15px;
}

.about-area.style-2 .about-right-item .about-bottom .about-bottom-btn .about-bottom-btn-author h5 {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.about-area.style-2 .about-right-item .about-bottom .about-bottom-btn .about-bottom-btn-author h5 span {
  display: block;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.service-area-2 {
  background: #EFF4F9;
  padding-bottom: 90px;
}

@media (max-width: 991px) {
  .service-area-2 {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .service-area-2 {
    padding-bottom: 50px;
  }
}

.service-area-2 .service-item {
  background: #fff;
  margin-bottom: 30px;
  border-radius: 10px;
}

.service-area-2 .service-item .service-item-wrap {
  display: flex;
  align-items: center;
}

@media (max-width: 490px) {
  .service-area-2 .service-item .service-item-wrap {
    display: block;
  }
}

.service-area-2 .service-item .service-item-wrap .service-img {
  flex-basis: 50%;
  overflow: hidden;
  border-top-right-radius: 10px;
}

.service-area-2 .service-item .service-item-wrap .service-img img {
  transition: all 0.3s;
  width: 100%;
  transform: scale(1);
  border-top-right-radius: 10px;
}

.service-area-2 .service-item .service-item-wrap .service-text {
  padding: 40px 30px;
  flex-basis: 50%;
}

@media (max-width: 1199px) {
  .service-area-2 .service-item .service-item-wrap .service-text {
    padding: 20px 20px;
  }
}

.service-area-2 .service-item .service-item-wrap .service-text p {
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .service-area-2 .service-item .service-item-wrap .service-text p {
    font-size: 14px;
  }
}

.service-area-2 .service-item .service-item-wrap .service-text .icon {
  margin-bottom: 10px;
}

.service-area-2 .service-item .service-item-wrap .service-text .icon i {
  font-size: 60px;
  color: #ff0000;
}

.service-area-2 .service-item .service-item-wrap .service-text h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media (max-width: 1199px) {
  .service-area-2 .service-item .service-item-wrap .service-text h3 {
    font-size: 18px;
  }
}

.service-area-2 .service-item .service-item-wrap .service-text h3 a {
  color: #1B1A1A;
}

.service-area-2 .service-item .service-btm {
  display: flex;
  justify-content: space-between;
  padding: 25px 30px;
  border-top: 1px solid #E3E3E3;
  align-items: center;
}

@media (max-width: 1199px) {
  .service-area-2 .service-item .service-btm {
    padding: 20px 20px;
  }
}

@media (max-width: 450px) {
  .service-area-2 .service-item .service-btm {
    flex-wrap: wrap;
  }
}

.service-area-2 .service-item .service-btm ul {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 450px) {
  .service-area-2 .service-item .service-btm ul {
    margin-bottom: 5px;
  }
}

.service-area-2 .service-item .service-btm ul li i {
  margin-right: 5px;
  color: #005289;
}

.service-area-2 .service-item .service-btm ul li+li {
  margin-left: 10px;
}

.service-area-2 .service-item .service-btm a {
  color: #363636;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  display: flex;
  align-items: center;
}

.service-area-2 .service-item .service-btm a:hover {
  color: #ff0000;
}

.service-area-2 .service-item .service-btm a i {
  margin-top: 2px;
}

.service-area-2 .service-item:hover .service-item-wrap .service-img img {
  transform: scale(1.2);
}

.service-area-2 .service-item:hover .middle-shade:before {
  left: 0;
  right: 0;
  opacity: 0;
}

.ch-skill-area {
  position: relative;
  z-index: 1;
  margin-bottom: 144px;
  padding-bottom: 0;
}

@media (max-width: 991px) {
  .ch-skill-area {
    margin-bottom: 0;
    padding-bottom: 90px;
  }
}

@media (max-width: 767px) {
  .ch-skill-area {
    margin-bottom: 0;
    padding-bottom: 80px;
  }
}

.ch-skill-area::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(1, 34, 19, 0.9);
  z-index: -1;
  z-index: -11;
}

.ch-skill-area .ch-skill-left {
  max-width: 533px;
}

.ch-skill-area .ch-skill-left .ch-top-title {
  text-align: left;
}

.ch-skill-area .ch-skill-left .ch-top-title h2 {
  margin-bottom: 20px;
}

.ch-skill-area .ch-skill-left .ch-top-title p {
  color: #fff;
}

.ch-skill-area .ch-skill-left .progress-single {
  margin-bottom: 20px;
  position: relative;
}

.ch-skill-area .ch-skill-left .progress-single h5 {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
  color: #fff;
}

.ch-skill-area .ch-skill-left .progress-single .progress {
  background: transparent;
  height: 8px;
  position: relative;
  border: 1px solid #ff0000;
}

.ch-skill-area .ch-skill-left .progress-single .progress .progress-bar {
  background-color: #ff0000;
  height: 4px;
  position: relative;
  top: 1px;
  left: 2px;
  border-radius: 5px;
}

.ch-skill-area .ch-skill-left .progress-number {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #fff;
  margin-bottom: 5px;
}

@media (max-width: 767px) {
  .ch-skill-area .ch-skill-left .progress-number {
    font-size: 18px;
  }
}

.ch-skill-area .contact-form-area {
  padding: 20px;
  max-width: 768px;
  margin-bottom: -148px;
  background: #fff;
  position: relative;
  z-index: 11;
}

@media (max-width: 991px) {
  .ch-skill-area .contact-form-area {
    margin-bottom: 20px;
    margin-top: 40px;
  }
}

.ch-skill-area .contact-form-area .contact-form-area-inner {
  border: 1px solid #ddd;
  border-bottom: 5px solid #005289;
  padding: 80px 50px 40px;
}

@media (max-width: 575px) {
  .ch-skill-area .contact-form-area .contact-form-area-inner {
    padding: 50px 20px 40px;
  }
}

.ch-skill-area .contact-form-area .form-field {
  margin-bottom: 21px;
}

.ch-skill-area .contact-form-area .ch-top-title-s2 {
  margin-bottom: 20px;
  position: relative;
  text-align: center;
}

.ch-skill-area .contact-form-area form input,
.ch-skill-area .contact-form-area form select,
.ch-skill-area .contact-form-area form textarea {
  width: 100%;
  height: 55px;
  border: 1px solid transparent;
  border-radius: 5px;
  box-shadow: none !important;
  padding-left: 25px;
  background: #FCFCFC;
  border: 1px solid #E7E6E6;
}

@media (max-width: 991px) {

  .ch-skill-area .contact-form-area form input,
  .ch-skill-area .contact-form-area form select,
  .ch-skill-area .contact-form-area form textarea {
    height: 45px;
  }
}

.ch-skill-area .contact-form-area form input:focus,
.ch-skill-area .contact-form-area form select:focus,
.ch-skill-area .contact-form-area form textarea:focus {
  border-color: #ff0000;
  background: #FCFCFC;
}

.ch-skill-area .contact-form-area form textarea {
  height: 180px;
  padding-top: 15px;
}

.ch-skill-area .contact-form-area form {
  overflow: hidden;
}

.ch-skill-area .contact-form-area form ::-webkit-input-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #636363;
}

.ch-skill-area .contact-form-area form :-moz-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #636363;
}

.ch-skill-area .contact-form-area form ::-moz-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #636363;
}

.ch-skill-area .contact-form-area form :-ms-input-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #636363;
}

.ch-skill-area .contact-form-area form select {
  display: inline-block;
  color: #636363;
  cursor: pointer;
  opacity: 1;
  padding: 6px 25px;
  font-size: 15px;
  font-size: calc-rem-value(15);
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -moz-appearance: none;
  background: #FCFCFC url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
  position: relative;
}

.ch-skill-area .contact-form-area form select:focus {
  background: #FCFCFC url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
}

.ch-skill-area .contact-form-area form .submit-area {
  width: 100%;
  margin-top: 10px;
  margin-left: 0;
}

.ch-skill-area .contact-form-area form .submit-area .ch-btn-style-1,
.ch-skill-area .contact-form-area form .submit-area .ch-btn-style-4 {
  width: 100%;
}

.ch-skill-area .skill-bottom {
  background: #EFF4F9;
  display: flex;
  margin-bottom: -150px;
}

@media (max-width: 991px) {
  .ch-skill-area .skill-bottom {
    margin: 0;
  }
}

@media (max-width: 575px) {
  .ch-skill-area .skill-bottom {
    display: block;
  }
}

.ch-skill-area .skill-bottom .skill-bottom-item {
  padding: 40px;
  display: flex;
  align-items: center;
}

@media (max-width: 1199px) {
  .ch-skill-area .skill-bottom .skill-bottom-item {
    padding: 20px;
  }
}

.ch-skill-area .skill-bottom .skill-bottom-item:last-child {
  border-left: 2px solid #ddd;
}

@media (max-width: 575px) {
  .ch-skill-area .skill-bottom .skill-bottom-item:last-child {
    border-left: 0;
    border-top: 2px solid #ddd;
  }
}

.ch-skill-area .skill-bottom .skill-bottom-item .skill-icon {
  width: 60px;
  height: 59.84px;
  line-height: 82.84px;
  background: #005289;
  text-align: center;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s;
}

.ch-skill-area .skill-bottom .skill-bottom-item .skill-icon i {
  color: #fff;
  font-size: 30px;
}

.ch-skill-area .skill-bottom .skill-bottom-item .skill-text h4 {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

@media (max-width: 1199px) {
  .ch-skill-area .skill-bottom .skill-bottom-item .skill-text h4 {
    font-size: 18px;
  }
}

.ch-skill-area .skill-bottom .skill-bottom-item:hover .skill-icon {
  background: #ff0000;
}

.project-section.style-2 .project-container .col:nth-child(2) {
  margin-top: 0px;
}

.project-section.style-2 .project-container .project-item {
  margin-top: 0;
  transition: all 0.3s;
}

.project-section.style-2 .project-container .project-item .project-img img {
  width: 100%;
}

.project-section.style-2 .project-container .project-item .project-text {
  bottom: -70px;
  border-radius: 0;
}

.project-section.style-2 .project-container .project-item:hover .project-text {
  bottom: 0px;
  border-top-right-radius: 40px;
}

.brand-section.style-2 {
  background: #EFF4F9;
  padding: 70px 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .brand-section.style-2 {
    padding: 50px 0;
  }
}

.brand-section.style-2 .partner-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 100%;
  text-align: center;
}

.brand-section.style-2 .partner-title h2 {
  font-family: Rubik;
  font-size: 135.86px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1199px) {
  .brand-section.style-2 .partner-title h2 {
    font-size: 100.86px;
  }
}

@media (max-width: 991px) {
  .brand-section.style-2 .partner-title h2 {
    font-size: 86px;
  }
}

@media (max-width: 767px) {
  .brand-section.style-2 .partner-title h2 {
    font-size: 55px;
  }
}

@media (max-width: 575px) {
  .brand-section.style-2 .partner-title h2 {
    font-size: 40px;
  }
}

.testimonial-section.style-2 {
  padding-bottom: 180px;
}

@media (max-width: 991px) {
  .testimonial-section.style-2 {
    padding-bottom: 150px;
  }
}

@media (max-width: 767px) {
  .testimonial-section.style-2 {
    padding-bottom: 120px;
  }
}

.testimonial-section.style-2::before {
  display: none;
}

.testimonial-section.style-2 .testimonial-items .owl-stage-outer {
  margin: -15px;
}

.testimonial-section.style-2 .testimonial-items .owl-stage {
  margin: 15px;
}

.testimonial-section.style-2 .testimonial-items .testimonial-item {
  position: relative;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.03);
  padding: 45px 0;
  overflow: hidden;
  border: 1px dashed transparent;
  transition: all 0.3s;
}

.testimonial-section.style-2 .testimonial-items .testimonial-item .dots-shape {
  position: absolute;
  right: 0;
  top: 0;
}

.testimonial-section.style-2 .testimonial-items .testimonial-item .testimonial-text p {
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
  line-height: 26px;
}

.testimonial-section.style-2 .testimonial-items .testimonial-item .quote {
  position: absolute;
  right: 30px;
  bottom: 30px;
}

.testimonial-section.style-2 .testimonial-items .testimonial-item .quote i {
  font-size: 60px;
  color: #ECECEC;
  transition: all 0.3s;
}

.testimonial-section.style-2 .testimonial-items .testimonial-item::before {
  position: absolute;
  left: -110px;
  top: -110px;
  width: 162px;
  height: 162px;
  background: #57B23E;
  opacity: 0.071;
  border-radius: 50%;
  content: "";
  transition: all 0.3s;
}

.testimonial-section.style-2 .testimonial-items .testimonial-item::after {
  position: absolute;
  left: -90px;
  top: -90px;
  width: 162px;
  height: 162px;
  background: #57B23E;
  opacity: 0.071;
  border-radius: 50%;
  content: "";
  transition: all 0.3s;
}

.testimonial-section.style-2 .testimonial-items .testimonial-item .info-item {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

@media (max-width: 575px) {
  .testimonial-section.style-2 .testimonial-items .testimonial-item .info-item {
    flex-wrap: wrap;
  }
}

.testimonial-section.style-2 .testimonial-items .testimonial-item .info-item .info-img {
  bottom: 0;
  margin-right: 10px;
}

.testimonial-section.style-2 .testimonial-items .testimonial-item .info-text .info-text-bio {
  display: flex;
  align-items: center;
}

.testimonial-section.style-2 .testimonial-items .testimonial-item .info-text .info-text-bio h4 {
  margin-top: 0;
}

@media (max-width: 575px) {
  .testimonial-section.style-2 .testimonial-items .testimonial-item .info-text .info-text-bio h4 {
    font-size: 18px;
  }
}

.testimonial-section.style-2 .testimonial-items .testimonial-item:hover {
  border-color: #ff0000;
}

.testimonial-section.style-2 .testimonial-items .testimonial-item:hover::before {
  opacity: 0.478;
}

.testimonial-section.style-2 .testimonial-items .testimonial-item:hover::after {
  opacity: 0.478;
}

.testimonial-section.style-2 .testimonial-items .testimonial-item:hover .quote i {
  font-size: 60px;
  color: #ff0000;
}

@media (max-width: 1199px) {
  .testimonial-section.style-2 .testimonial-items .testimonial-item .testimonial-item-inner {
    box-shadow: none;
  }
}

.choose-area-s2 {
  position: relative;
  z-index: 1;
}

.choose-area-s2 .right-vector {
  position: absolute;
  right: 39px;
  bottom: 44px;
}

@media (max-width: 575px) {
  .choose-area-s2 .right-vector {
    display: none;
  }
}

.choose-area-s2 .right-vector img {
  animation: bounceLeftToRight 4s infinite;
}

.choose-area-s2 .col {
  padding: 0;
}

.choose-area-s2 .choose-img {
  position: relative;
}

.choose-area-s2 .choose-img img {
  min-height: 855px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .choose-area-s2 .choose-img img {
    min-height: 100%;
  }
}

.choose-area-s2 .choose-img .choose-open-video {
  position: absolute;
  right: 50px;
  bottom: 50px;
}

.choose-area-s2 .choose-img .choose-open-video .open-video {
  display: block;
  width: 84px;
  height: 84px;
  background: #fff;
  text-align: center;
  line-height: 92px;
  color: #ff0000;
  font-size: 50px;
  border-radius: 50%;
  position: relative;
  border: 1px solid #fff;
  z-index: 1;
}

.choose-area-s2 .choose-img .choose-open-video .open-video::before {
  content: " ";
  width: 130%;
  height: 130%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  position: absolute;
  left: -12px;
  top: -12px;
  -webkit-animation: pulse 1s infinite;
  animation: pulse 1s infinite;
  z-index: -1;
}

.choose-area-s2 .choose-text {
  max-width: 712px;
  padding: 75px 0;
  padding-left: 85px;
  padding-right: 15px;
}

@media (max-width: 1199px) {
  .choose-area-s2 .choose-text {
    padding-left: 25px;
  }
}

@media (max-width: 991px) {
  .choose-area-s2 .choose-text {
    padding-left: 15px;
    padding-top: 80px;
  }
}

@media (max-width: 575px) {
  .choose-area-s2 .choose-text {
    padding: 70px 15px;
  }
}

.choose-area-s2 .choose-text p {
  max-width: 502px;
}

.choose-area-s2 .choose-text .ch-top-title-s2 {
  margin-bottom: 40px;
}

.choose-area-s2 .choose-text .choose-items {
  padding-bottom: 40px;
}

.choose-area-s2 .choose-text .choose-items .info {
  padding: 25px 22px;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
  border: 1px solid #DDDDDD;
  margin-left: -1px;
  margin-top: -1px;
  flex-basis: 50%;
  background: #fff;
}

@media (max-width: 1199px) {
  .choose-area-s2 .choose-text .choose-items .info {
    padding: 25px 12px;
  }
}

@media (max-width: 480px) {
  .choose-area-s2 .choose-text .choose-items .info {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}

.choose-area-s2 .choose-text .choose-items .info:after {
  position: absolute;
  left: 2%;
  top: 5%;
  width: 0;
  height: 90%;
  content: "";
  background: #fff;
  z-index: -1;
  transition: all 0.3s;
}

.choose-area-s2 .choose-text .choose-items .info i {
  display: block;
  width: 63px;
  height: 63px;
  line-height: 63px;
  background: #ff0000;
  text-align: center;
  color: #fff;
  font-size: 30px;
  border-radius: 50%;
  margin-right: 20px;
  transition: all 0.3s;
}

@media (max-width: 480px) {
  .choose-area-s2 .choose-text .choose-items .info i {
    margin-right: 0px;
    margin-bottom: 20px;
  }
}

.choose-area-s2 .choose-text .choose-items .info p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: #1B1A1A;
  margin-bottom: 0;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .choose-area-s2 .choose-text .choose-items .info p {
    font-size: 14px;
  }
}

.choose-area-s2 .choose-text .choose-items .info h3 {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 5px;
  color: #1B1A1A;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .choose-area-s2 .choose-text .choose-items .info h3 {
    font-size: 18px;
  }
}

.choose-area-s2 .choose-text .choose-items .info:hover:after {
  width: 95%;
}

.choose-area-s2 .choose-text .choose-items .info:hover i {
  background-color: #005289;
}

.team-area {
  background: #EFF4F9;
}

.team-area .team-wrap {
  padding-bottom: 60px;
}

.team-area .team-item {
  padding: 38px 30px;
  position: relative;
  z-index: 1;
}

.team-area .team-item .back-shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
  clip-path: polygon(0 0, 24% 0, 100% 100%, 0% 100%);
}

.team-area .team-item .back-shape::before {
  position: absolute;
  left: -80px;
  top: -80px;
  width: 218px;
  height: 218px;
  background: #ff0000;
  border-radius: 50%;
  content: "";
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.team-area .team-item .back-shape::after {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 218px;
  height: 218px;
  background: #005289;
  border-radius: 50%;
  content: "";
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.team-area .team-item .team-img {
  position: relative;
}

.team-area .team-item .team-text {
  position: absolute;
  right: -30px;
  bottom: 10px;
  padding: 15px 36px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0px 5px 29px rgba(0, 0, 0, 0.04);
}

.team-area .team-item .team-text h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0;
}

.team-area .team-item .team-text h3 a {
  color: #1B1A1A;
}

.team-area .team-item .team-text h3 a:hover {
  color: #ff0000;
}

.team-area .team-item .team-text::before {
  position: absolute;
  left: -11px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  line-height: 22px;
  content: "\e61a";
  background: #005289;
  border-radius: 50%;
  font-family: "themify";
  font-size: 10px;
  color: #fff;
  transition: all 0.3s;
}

.team-area .owl-item.active.center .team-item .back-shape::before {
  opacity: 1;
  visibility: visible;
}

.team-area .owl-item.active.center .team-item .back-shape::after {
  opacity: 1;
  visibility: visible;
}

.team-area .owl-item.active.center .team-item .team-text::before {
  background-color: #ff0000;
  content: "\e622";
}

.team-area .team-item:hover .back-shape::before {
  opacity: 1;
  visibility: visible;
}

.team-area .team-item:hover .back-shape::after {
  opacity: 1;
  visibility: visible;
}

.team-area .team-item:hover .team-text::before {
  background-color: #ff0000;
  content: "\e622";
}

.team-area .owl-nav {
  display: none;
}

.team-area .owl-dots {
  text-align: center;
  bottom: 0px;
  position: absolute;
  width: 100%;
}

.team-area .owl-dots button {
  border: none;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  border-radius: 10px;
  background: #E2E9F0;
}

@media (max-width: 575px) {
  .team-area .owl-dots button {
    width: 8px;
    height: 12px;
  }
}

.team-area .owl-dots button.active {
  background: #ff0000;
  width: 20px;
  height: 20px;
}

@media (max-width: 575px) {
  .team-area .owl-dots button.active {
    width: 12px;
    height: 12px;
  }
}

.work-area .work-item {
  text-align: center;
  background: red;
  margin-top: 105px;
  padding: 40px 30px;
  transition: all 0.3s;
  background: url(../images/features-bg.jpg);
  z-index: 1;
  transition: all 0.4s;
  position: relative;
  border-radius: 20px;
}

@media (max-width: 1199px) {
  .work-area .work-item {
    padding: 40px 20px;
  }
}

.work-area .work-item::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #000;
  opacity: 0.8;
  z-index: -1;
  z-index: -11;
  border-radius: 20px;
}

.work-area .work-item:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #EFF4F9;
  z-index: -1;
  transition: all 0.3s;
  content: "";
  border-radius: 18px;
}

.work-area .work-item:hover:before {
  width: 0;
}

.work-area .work-item .work-img {
  border-radius: 50%;
  border-radius: 50%;
  box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.07);
  width: 206px;
  height: 206px;
  margin: 0 auto;
  margin-top: -50px;
  position: relative;
  top: -103px;
  background: #fff;
  padding: 5px;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .work-area .work-item .work-img {
    width: 126px;
    height: 126px;
    top: -63px;
  }
}

.work-area .work-item .work-img img {
  border-radius: 50%;
  width: 100%;
}

.work-area .work-item .work-text {
  margin-top: -90px;
}

@media (max-width: 1199px) {
  .work-area .work-item .work-text {
    margin-top: -43px;
  }
}

@media (max-width: 991px) {
  .work-area .work-item .work-text {
    top: 0px;
  }
}

.work-area .work-item .work-text h3 {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .work-area .work-item .work-text h3 {
    font-size: 18px;
  }
}

.work-area .work-item .work-text p {
  margin-bottom: 0;
  transition: all 0.3s;
}

.work-area .work-item .number {
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  z-index: 11;
  background: #005289;
  width: 34px;
  height: 34px;
  line-height: 34px;
  border-radius: 50%;
  transition: all 0.3s;
}

.work-area .work-item .number span {
  color: #FFF;
  font-family: Rubik;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.work-area .work-item:hover:before {
  width: 0;
}

.work-area .work-item:hover .work-img {
  top: -115px;
}

@media (max-width: 1199px) {
  .work-area .work-item:hover .work-img {
    top: -70px;
  }
}

.work-area .work-item:hover .work-text h3 {
  color: #fff;
}

.work-area .work-item:hover .work-text p {
  color: #fff;
}

.work-area .work-item:hover .number {
  background-color: #ff0000;
}

.work-area .work-item:hover .middle-shade:before {
  left: 0;
  right: 0;
  opacity: 0;
}

.work-area .col {
  position: relative;
}

.work-area .col::before {
  position: absolute;
  right: -30px;
  top: 0;
  content: "";
  background: url(../images/work/arrow.png);
  width: 111px;
  height: 71px;
}

@media (max-width: 991px) {
  .work-area .col::before {
    display: none;
  }
}

.work-area .col:nth-child(even) {
  margin-top: 50px;
}

@media (max-width: 991px) {
  .work-area .col:nth-child(even) {
    margin-top: 0;
  }
}

.work-area .col:nth-child(even)::before {
  transform: rotate(330deg);
  top: -20px;
}

.work-area .col:last-child::before {
  display: none;
}

.video-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.video-area:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #02020A;
  opacity: 0.831;
  content: "";
  z-index: -1;
}

.video-area .ch-top-title-s2 {
  padding: 100px 0 0;
}

.video-area .ch-top-title-s2 h2 {
  color: #fff;
}

.video-area .ch-top-title-s2 p {
  color: #fff;
  margin-bottom: 30px;
}

.video-area .video-right-img {
  margin-bottom: -150px;
  padding-top: 50px;
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .video-area .video-right-img {
    padding-top: 0;
  }
}

@media (max-width: 1199px) {
  .video-area .video-right-img img {
    max-width: 360px;
  }
}

@media (max-width: 1024px) {
  .video-area .video-right-img img {
    max-width: 300px;
  }
}

.video-area .video-right-img .open-video {
  width: 102px;
  height: 102px;
  line-height: 102px;
  border-radius: 50%;
  display: block;
  background: #005289;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  font-size: 40px;
  position: relative;
  right: -50px;
  top: -50px;
}

.video-area .video-right-img .open-video:before {
  border: 1px solid #005289;
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  animation: animated-border 1500ms ease-out infinite;
}

@media (max-width: 1399px) {
  .video-area .video-right-img .open-video {
    right: -10px;
  }
}

@media (max-width: 1024px) {
  .video-area .video-right-img .open-video {
    right: 0;
  }
}

@media (max-width: 575px) {
  .video-area .video-right-img .open-video {
    display: none;
  }
}

.video-area .video-right-img .open-video i {
  position: relative;
  right: -3px;
}

.video-area .shape1 {
  position: absolute;
  left: -100px;
  top: -100px;
  width: 212px;
  height: 212px;
  background: #005289;
  border-radius: 50%;
  border: 10px solid #fff;
  z-index: -1;
}

@media (max-width: 1199px) {
  .video-area .shape1 {
    width: 125px;
    height: 125px;
    left: -60px;
    top: -60px;
  }
}

.video-area .shape2 {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 1199px) {
  .video-area .shape2 {
    display: none;
  }
}

.video-area .shape2 span {
  display: block;
  width: 212px;
  height: 212px;
  background: #ff0000;
  opacity: 0.659;
  border-radius: 50%;
  position: absolute;
  left: -80px;
  bottom: -50px;
  z-index: 1;
}

.video-area .shape2 span:nth-child(2) {
  left: -180px;
  bottom: -100px;
  z-index: -1;
}

.video-area .shape2 span:nth-child(3) {
  left: -120px;
  bottom: 20px;
  z-index: -1;
}

/*--------------------------------------------------------------
20. Home-style-3
--------------------------------------------------------------*/
.search-area.style-2 .search-wrap {
  margin-top: 0;
  border: 0;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 0;
  padding: 30px 40px;
}

@media (max-width: 767px) {
  .search-area.style-2 .search-wrap {
    padding: 30px 20px;
  }
}

.search-area.style-2 .search-wrap h3 {
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
}

.search-area.style-2 .search-wrap .search-item {
  padding-left: 0;
}

@media (max-width: 767px) {
  .search-area.style-2 .search-wrap .search-item {
    margin-bottom: 20px;
  }
}

.search-area.style-2 .search-wrap .search-item::before {
  display: none;
}

.search-area.style-2 .search-wrap .search-item input,
.search-area.style-2 .search-wrap .search-item .nice-select {
  background: #EFF4F9;
  height: 55px;
  line-height: 55px;
  border-radius: 0;
  width: 100%;
}

.search-area.style-2 .search-wrap .search-item .nice-select:after {
  right: 20px;
}

.search-area.style-2 .search-wrap .search-item .ch-btn-style-1 {
  border-radius: 0;
  padding: 18px 45px;
}

.about-area.style-3 {
  position: relative;
}

.about-area.style-3 .right-img {
  position: absolute;
  right: 80px;
  bottom: 0;
  z-index: -1;
}

@media (max-width: 1199px) {
  .about-area.style-3 .right-img {
    display: none;
  }
}

@media (max-width: 991px) {
  .about-area.style-3 .about-left-item {
    padding-bottom: 0;
    padding-top: 0;
  }
}

.about-area.style-3 .about-left-item .about-img {
  position: relative;
}

@media (max-width: 991px) {
  .about-area.style-3 .about-left-item .about-img {
    padding-left: 30px;
  }
}

.about-area.style-3 .about-left-item .about-img img {
  border-top-right-radius: 200px;
}

@media (max-width: 991px) {
  .about-area.style-3 .about-left-item .about-img img {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .about-area.style-3 .about-left-item .about-img img {
    border-top-right-radius: 100px;
  }
}

.about-area.style-3 .about-left-item .about-img:before {
  position: absolute;
  left: -50px;
  top: 40px;
  width: 200px;
  height: 40%;
  content: "";
  background: #ff0000;
  z-index: -1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 12% 100%);
}

@media (max-width: 991px) {
  .about-area.style-3 .about-left-item .about-img:before {
    left: 0;
    height: 35%;
  }
}

.about-area.style-3 .about-left-item .about-img:after {
  position: absolute;
  left: -50px;
  bottom: 40px;
  width: 200px;
  height: 40%;
  content: "";
  background: #005289;
  z-index: -1;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

@media (max-width: 991px) {
  .about-area.style-3 .about-left-item .about-img:after {
    left: 0;
    height: 35%;
  }
}

.about-area.style-3 .about-left-item .about-img .about-img-inner {
  position: absolute;
  right: 0;
  top: 0;
}

.about-area.style-3 .about-left-item .about-img .about-img-inner img {
  border-radius: 50%;
}

.about-area.style-3 .about-left-item .about-img .about-img-inner:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #1B1A1A;
  opacity: 0.5;
  border-radius: 50%;
}

.about-area.style-3 .about-left-item .about-img .about-img-inner:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 10px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.about-area.style-3 .about-left-item .about-img .about-img-inner .open-video {
  display: block;
  width: 55px;
  height: 55px;
  background: #fff;
  text-align: center;
  line-height: 55px;
  color: #005289;
  font-size: 20px;
  border-radius: 50%;
  position: absolute;
  border: 1px solid #fff;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.about-area.style-3 .about-left-item .about-img .about-img-inner .open-video::before {
  content: " ";
  width: 130%;
  height: 130%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  position: absolute;
  left: -8px;
  top: -8px;
  -webkit-animation: pulse 1s infinite;
  animation: pulse 1s infinite;
  z-index: -1;
}

.about-area.style-3 .about-bottom {
  padding-top: 15px;
}

.brand-section.style-3 {
  border-top: 1px solid #ddd;
  padding: 80px 0;
}

.service-area.style-3 {
  z-index: 1;
}

.service-area.style-3 .top-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 505px;
  z-index: -1;
  overflow: hidden;
}

@media (max-width: 991px) {
  .service-area.style-3 .top-bg {
    height: 435px;
  }
}

.service-area.style-3 .top-bg .flower {
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 991px) {
  .service-area.style-3 .top-bg .flower {
    display: none;
  }
}

.service-area.style-3 .service-wrap .service-item {
  padding-top: 0;
  border-bottom: 0;
}

.service-area.style-3 .service-wrap .service-item .service-text {
  padding-top: 30px;
}

.service-area.style-3 .service-wrap .service-item .service-text h3 {
  margin-top: 0;
}

.service-area.style-3 .service-wrap .service-item .service-text .read-more {
  margin: 0 auto;
  margin-bottom: -22px;
  display: block;
  max-width: 130px;
}

.service-area.style-3 .service-wrap .service-item .service-text .icon {
  position: relative;
  z-index: 11;
  top: auto;
  margin-bottom: 0;
  bottom: -42.5px;
}

.service-area.style-3 .service-wrap .owl-dots {
  bottom: -25px;
}

.choose-area-s3 {
  position: relative;
  z-index: 1;
}

.choose-area-s3 .choose-img {
  position: relative;
  right: -50px;
}

@media (max-width: 991px) {
  .choose-area-s3 .choose-img {
    right: 0;
    padding-top: 30px;
  }
}

.choose-area-s3 .choose-img img {
  border-radius: 50%;
}

@media (max-width: 991px) {
  .choose-area-s3 .choose-img img {
    min-height: 100%;
  }
}

.choose-area-s3 .choose-img .inner-img-1 {
  position: absolute;
  right: -50px;
  top: 0;
}

@media (max-width: 1199px) {
  .choose-area-s3 .choose-img .inner-img-1 {
    max-width: 150px;
    right: 30px;
  }
}

@media (max-width: 575px) {
  .choose-area-s3 .choose-img .inner-img-1 {
    max-width: 120px;
  }
}

.choose-area-s3 .choose-img .inner-img-2 {
  position: absolute;
  left: 0;
  bottom: -50px;
}

@media (max-width: 1199px) {
  .choose-area-s3 .choose-img .inner-img-2 {
    max-width: 150px;
    bottom: -10px;
  }
}

@media (max-width: 991px) {
  .choose-area-s3 .choose-img .inner-img-2 {
    bottom: -10px;
  }
}

@media (max-width: 575px) {
  .choose-area-s3 .choose-img .inner-img-2 {
    max-width: 120px;
  }
}

.choose-area-s3 .choose-img .inner-img-3 {
  position: absolute;
  right: -30px;
  bottom: -30px;
}

@media (max-width: 1199px) {
  .choose-area-s3 .choose-img .inner-img-3 {
    max-width: 150px;
    bottom: -10px;
  }
}

@media (max-width: 991px) {
  .choose-area-s3 .choose-img .inner-img-3 {
    right: 0px;
    bottom: -10px;
  }
}

@media (max-width: 575px) {
  .choose-area-s3 .choose-img .inner-img-3 {
    max-width: 120px;
  }
}

.choose-area-s3 .choose-text p {
  max-width: 502px;
}

.choose-area-s3 .choose-text .ch-top-title-s2 {
  margin-bottom: 40px;
}

.choose-area-s3 .choose-text .choose-items {
  padding-bottom: 40px;
}

.choose-area-s3 .choose-text .choose-items .info {
  padding: 25px 22px;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
  border: 1px solid #DDDDDD;
  margin-left: -1px;
  margin-top: -1px;
  flex-basis: 50%;
  background: #fff;
}

@media (max-width: 1199px) {
  .choose-area-s3 .choose-text .choose-items .info {
    padding: 25px 12px;
  }
}

@media (max-width: 480px) {
  .choose-area-s3 .choose-text .choose-items .info {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}

.choose-area-s3 .choose-text .choose-items .info:after {
  position: absolute;
  left: 2%;
  top: 5%;
  width: 0;
  height: 90%;
  content: "";
  background: #fff;
  z-index: -1;
  transition: all 0.3s;
}

.choose-area-s3 .choose-text .choose-items .info i {
  display: block;
  width: 63px;
  height: 63px;
  line-height: 63px;
  background: #ff0000;
  text-align: center;
  color: #fff;
  font-size: 30px;
  border-radius: 50%;
  margin-right: 20px;
  transition: all 0.3s;
}

@media (max-width: 480px) {
  .choose-area-s3 .choose-text .choose-items .info i {
    margin-right: 0px;
    margin-bottom: 20px;
  }
}

.choose-area-s3 .choose-text .choose-items .info p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: #1B1A1A;
  margin-bottom: 0;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .choose-area-s3 .choose-text .choose-items .info p {
    font-size: 14px;
  }
}

.choose-area-s3 .choose-text .choose-items .info h3 {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 5px;
  color: #1B1A1A;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .choose-area-s3 .choose-text .choose-items .info h3 {
    font-size: 18px;
  }
}

.choose-area-s3 .choose-text .choose-items .info:hover:after {
  width: 95%;
}

.choose-area-s3 .choose-text .choose-items .info:hover i {
  background-color: #005289;
}

.video-area.style-2 {
  overflow: hidden;
}

.video-area.style-2 .ch-top-title-s2 {
  padding: 100px 0;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .video-area.style-2 .ch-top-title-s2 {
    padding-top: 40px;
  }
}

.video-area.style-2 .video-right-img {
  padding-top: 0;
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .video-area.style-2 .video-right-img {
    padding-top: 80px;
  }
}

.video-area.style-2 .video-right-img .open-video {
  right: 0;
  top: 0;
}

@media (max-width: 575px) {
  .video-area.style-2 .video-right-img .open-video {
    display: block;
  }
}

.video-area.style-2 .shape-1 {
  position: absolute;
  right: 30px;
  bottom: -300px;
  width: 336.493px;
  height: 336.493px;
  background: #005289;
  transform: rotate(137deg);
}

@media (max-width: 575px) {
  .video-area.style-2 .shape-1 {
    bottom: -350px;
  }
}

.video-area.style-2 .shape-2 {
  position: absolute;
  right: -90px;
  top: -82px;
  width: 136.493px;
  height: 236.493px;
  background: #005289;
  transform: rotate(137deg);
  opacity: 0.6;
}

.faq-section .ch-top-title-s2 {
  margin-bottom: 20px;
}

.faq-section .faq-img-wrap {
  display: flex;
  margin: 0 -10px;
}

@media (max-width: 1199px) {
  .faq-section .faq-img-wrap {
    margin-bottom: 30px;
  }
}

.faq-section .faq-img-wrap .faq-img {
  flex-basis: 50%;
  padding: 0 10px;
}

.faq-section .faq-img-wrap .faq-img img {
  width: 100%;
}

.faq-section .accordion {
  border: 1px solid #ddd;
}

.faq-section .accordion-item {
  border: 0;
  border-bottom: 1px solid #ddd;
}

.faq-section .accordion-item button {
  padding: 30px 20px;
  font-size: 16.999px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background: none;
  color: #fff;
  background: #05211E;
}

@media (max-width: 1399px) {
  .faq-section .accordion-item button {
    padding: 20px;
  }
}

@media (max-width: 1199px) {
  .faq-section .accordion-item button {
    font-size: 20px;
    padding: 24px;
    line-height: 28px;
  }
}

@media (max-width: 575px) {
  .faq-section .accordion-item button {
    font-size: 16px;
    padding: 12px;
  }
}

.faq-section .accordion-item button::after {
  background: none;
  content: "\e905";
  font-family: "icomoon";
  font-size: 12px;
  font-weight: 700;
}

.faq-section .accordion-item button:not(.collapsed)::after {
  position: relative;
  top: -5px;
}

.faq-section .accordion-item button.collapsed {
  color: #373b3e;
  background: #fff;
}

.faq-section .accordion-item button:focus {
  box-shadow: none;
  outline: none;
  border-color: #e1e1e1;
}

.faq-section .accordion-item .accordion-body {
  padding: 20px;
  display: flex;
}

@media (max-width: 575px) {
  .faq-section .accordion-item .accordion-body {
    flex-wrap: wrap;
  }
}

.faq-section .accordion-item .accordion-body .left-number {
  width: 94px;
  min-width: 94px;
  height: 84px;
  line-height: 84px;
  background: #005289;
  border-radius: 5px;
  margin-right: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
}

.faq-section .accordion-item .accordion-body .left-number span {
  font-size: 40px;
  border: 1px dashed #fff;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: block;
  height: 78px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  border-radius: 5px;
}

@media (max-width: 575px) {
  .faq-section .accordion-item .accordion-body .left-number {
    margin-bottom: 20px;
  }
}

.faq-section .accordion-item .accordion-collapse {
  border: 0;
}

.ch-testimonial-area {
  padding-bottom: 300px;
  position: relative;
  z-index: 11;
}

@media (max-width: 991px) {
  .ch-testimonial-area {
    padding-bottom: 200px;
  }
}

.ch-testimonial-area .shape-1 {
  position: absolute;
  left: 113px;
  top: 150px;
  z-index: -1;
}

@media (max-width: 991px) {
  .ch-testimonial-area .shape-1 {
    display: none;
  }
}

.ch-testimonial-area .shape-1 img {
  border-radius: 50%;
  animation: zoom-in-zoom-out 3s ease infinite;
}

.ch-testimonial-area .shape-2 {
  position: absolute;
  right: 113px;
  top: 150px;
  z-index: -1;
}

@media (max-width: 991px) {
  .ch-testimonial-area .shape-2 {
    display: none;
  }
}

.ch-testimonial-area .shape-2 img {
  border-radius: 50%;
  animation: zoom-in-zoom-out 3s ease infinite;
}

.ch-testimonial-area .shape-3 {
  position: absolute;
  right: 100px;
  bottom: 70px;
  z-index: -1;
}

@media (max-width: 991px) {
  .ch-testimonial-area .shape-3 {
    display: none;
  }
}

.ch-testimonial-area .shape-3 img {
  border-radius: 50%;
  animation: zoom-in-zoom-out 3s ease infinite;
}

.ch-testimonial-area .ch-testimonial-single-wrap {
  max-width: 930px;
  margin: 0 auto;
  position: relative;
}

.ch-testimonial-area .ch-testimonial-single-wrap .test-bg {
  position: absolute;
  top: 0;
}

@media (max-width: 767px) {
  .ch-testimonial-area .ch-testimonial-single-wrap .test-bg {
    width: 120%;
    left: -10%;
  }
}

@media (max-width: 991px) {
  .ch-testimonial-area .ch-testimonial-single-wrap .test-bg {
    min-height: 600px;
  }

  .ch-testimonial-area .ch-testimonial-single-wrap .test-bg img {
    width: 100%;
    min-height: 600px;
  }
}

.ch-testimonial-area .ch-testimonial-single-wrap .ch-testimonial-text {
  max-width: 477px;
  text-align: center;
  margin: 0 auto;
  padding-top: 70px;
}

@media (max-width: 450px) {
  .ch-testimonial-area .ch-testimonial-single-wrap .ch-testimonial-text {
    padding-top: 30px;
  }
}

.ch-testimonial-area .ch-testimonial-single-wrap .ch-testimonial-text .ratting {
  display: flex;
  margin-bottom: 10px;
  justify-content: center;
}

.ch-testimonial-area .ch-testimonial-single-wrap .ch-testimonial-text .ratting li {
  color: #ff0000;
}

.ch-testimonial-area .ch-testimonial-single-wrap .ch-testimonial-text .ratting li span {
  color: #CDCDCD;
}

.ch-testimonial-area .ch-testimonial-single-wrap .ch-testimonial-text .ratting li+li {
  margin-left: 6px;
}

.ch-testimonial-area .ch-testimonial-single-wrap .ch-testimonial-text h4 {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 5px;
  margin-top: 30px;
}

.ch-testimonial-area .ch-testimonial-single-wrap .ch-testimonial-text h4 i {
  color: #01AB31;
}

.ch-testimonial-area .ch-testimonial-single-wrap .ch-testimonial-text p {
  margin-bottom: 0;
}

.ch-testimonial-area .ch-testimonial-single-wrap .ch-testimonial-thumbnil-active {
  max-width: 250px;
  margin: 0 auto;
  margin-top: 30px;
  overflow: hidden;
  padding-top: 15px;
  padding-bottom: 15px;
}

@media (max-width: 450px) {
  .ch-testimonial-area .ch-testimonial-single-wrap .ch-testimonial-thumbnil-active {
    margin-top: 10px;
  }
}

.ch-testimonial-area .ch-testimonial-single-wrap .ch-testimonial-thumbnil-active .slick-list {
  padding: 0 !important;
  overflow: visible;
}

.ch-testimonial-area .ch-testimonial-single-wrap .ch-testimonial-thumbnil-active .slick-list .slick-slide.slick-current.slick-center img {
  transform: scale(1.2);
}

.ch-testimonial-area .ch-testimonial-single-wrap .ch-testimonial-thumbnil-active img {
  border-radius: 50%;
}

.ch-skill-area.style-2 {
  padding-top: 60px;
}

.ch-skill-area.style-2::after {
  display: none;
}

.ch-skill-area.style-2 .left-man {
  position: absolute;
  left: 60px;
  bottom: 0;
  max-width: 750px;
  z-index: 1;
}

@media (max-width: 1500px) {
  .ch-skill-area.style-2 .left-man {
    max-width: 600px;
  }
}

@media (max-width: 1399px) {
  .ch-skill-area.style-2 .left-man {
    max-width: 550px;
  }
}

@media (max-width: 991px) {
  .ch-skill-area.style-2 .left-man {
    display: none;
  }
}

.ch-skill-area.style-2 .left-man:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 120%;
  height: 90%;
  content: "";
  background: #fff;
  z-index: -1;
  clip-path: polygon(0 0, 100% 0, 75% 100%, 6% 100%);
}

@media (max-width: 991px) {
  .ch-skill-area.style-2 .contact-form-area {
    margin-top: 0;
  }
}

.ch-skill-area.style-2 .contact-form-area .contact-form-area-inner {
  padding: 30px;
}

.ch-skill-area.style-2 .skill-bottom {
  background-color: #005289;
}

@media (max-width: 1199px) {
  .ch-skill-area.style-2 .skill-bottom {
    margin-bottom: -150px;
  }
}

@media (max-width: 991px) {
  .ch-skill-area.style-2 .skill-bottom {
    margin-bottom: 0px;
  }
}

.ch-skill-area.style-2 .skill-bottom .skill-img img {
  width: 100%;
}

.ch-skill-area.style-2 .skill-bottom .skill-bottom-item .skill-icon {
  background-color: #fff;
  line-height: 75.84px;
}

.ch-skill-area.style-2 .skill-bottom .skill-bottom-item .skill-icon i {
  color: #005289;
}

.ch-skill-area.style-2 .skill-bottom .skill-bottom-item:last-child {
  border: 0;
  background: #005289;
}

.ch-skill-area.style-2 .skill-bottom .skill-bottom-item:last-child h4 {
  color: #fff;
}

@media (min-width: 991px) {
  .skill-bottom-map {
    margin-top: -144px;
  }
}

.skill-bottom-map iframe {
  width: 100%;
  height: 675px;
}

@media (max-width: 991px) {
  .skill-bottom-map iframe {
    height: 450px;
  }
}

.ch-blog-area.style-2 .blog-items .blog-active {
  padding-bottom: 30px;
}

.ch-blog-area.style-2 .blog-items .owl-stage-outer {
  margin: -15px;
}

.ch-blog-area.style-2 .blog-items .owl-stage {
  margin: 15px;
}

.ch-blog-area.style-2 .blog-items .blog-item {
  text-align: center;
}

.ch-blog-area.style-2 .blog-items .blog-item .blog-content {
  border-bottom: 1px solid #ddd;
  padding: 30px 70px;
  padding-top: 0;
}

@media (max-width: 1199px) {
  .ch-blog-area.style-2 .blog-items .blog-item .blog-content {
    padding: 30px 50px;
    padding-top: 0;
  }
}

@media (max-width: 991px) {
  .ch-blog-area.style-2 .blog-items .blog-item .blog-content {
    padding: 30px 15px;
    padding-top: 0;
  }
}

.ch-blog-area.style-2 .blog-items .blog-item .blog-content ul {
  max-width: 265px;
  margin: 0 auto;
  margin-top: -15px;
}

.ch-blog-area.style-2 .blog-items .owl-nav {
  display: none;
}

.ch-blog-area.style-2 .blog-items .owl-dots {
  text-align: center;
  bottom: 0px;
  position: absolute;
  width: 100%;
}

.ch-blog-area.style-2 .blog-items .owl-dots button {
  border: none;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  border-radius: 10px;
  background: #E2E9F0;
}

@media (max-width: 575px) {
  .ch-blog-area.style-2 .blog-items .owl-dots button {
    width: 8px;
    height: 12px;
  }
}

.ch-blog-area.style-2 .blog-items .owl-dots button.active {
  background: #ff0000;
  width: 20px;
  height: 20px;
}

@media (max-width: 575px) {
  .ch-blog-area.style-2 .blog-items .owl-dots button.active {
    width: 12px;
    height: 12px;
  }
}

/*--------------------------------------------------------------
21. Home-style-4
--------------------------------------------------------------*/
body.dark-mode {
  background: #050209;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
  color: #fff;
}

body.dark-mode body {
  color: #fff;
}

body.dark-mode p {
  color: #fff;
}

body.dark-mode a {
  color: #fff;
}

body.dark-mode .back-btn {
  background-color: #005289;
  border-color: #005289;
}

body.dark-mode .back-btn i {
  color: #fff;
}

body.dark-mode .mean-container a.meanmenu-reveal {
  background-color: #005289;
  border-color: #005289;
}

@media (min-width: 992px) {
  body.dark-mode .cp-header-style-3 {
    padding-top: 14px;
  }
}

body.dark-mode .cp-header-style-3 ul.nav {
  justify-content: flex-end;
}

body.dark-mode .cp-header-style-3 ul.nav li a:hover {
  color: #005289;
}

body.dark-mode .mean-container .mean-nav {
  background: #212124 none repeat scroll 0 0;
}

body.dark-mode .mean-container .mean-nav ul li a {
  border-top: 1px solid rgb(43, 43, 46);
}

body.dark-mode .cp-header-area-right .ch-btn-style-1 {
  background-color: #fff;
  color: #1B1A1A;
}

body.dark-mode .cp-header-area-right .ch-btn-style-1:hover {
  background-color: #005289;
  color: #fff;
}

body.dark-mode .cp-header-area-right .ch-btn-style-1:before {
  background-color: #fff;
}

body.dark-mode .cp-header-area-right .search-toggle-btn i {
  color: #1B1A1A;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: #fff;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  font-size: 14px;
}

body.dark-mode .ch-btn-style-1,
body.dark-mode .ch-btn-style-3 {
  border-color: #38373B;
}

@media (min-width: 1199px) {
  body.dark-mode .features-area-s2 {
    padding-bottom: 60px;
  }
}

@media (max-width: 1199px) {
  body.dark-mode .features-area-s2 {
    padding-bottom: 30px;
  }
}

body.dark-mode .features-area-s2 .features-wrap .features-item {
  border-color: #474747;
}

body.dark-mode .features-area-s2 .features-wrap .features-item .overlay {
  background-color: #1B1A1A;
}

body.dark-mode .features-area-s2 .features-wrap .features-item::before {
  display: none;
}

body.dark-mode .features-area-s2 .features-wrap .features-item .features-text h3 a {
  color: #fff;
}

body.dark-mode .about-area.style-2 .col {
  padding: 0;
}

body.dark-mode .about-area.style-2 .about-right-item {
  margin-left: -100px;
  position: relative;
  padding: 50px;
  bottom: -170px;
  z-index: 1;
}

@media (max-width: 1199px) {
  body.dark-mode .about-area.style-2 .about-right-item {
    margin-left: 0px;
    bottom: 0;
    padding: 30px;
  }
}

@media (max-width: 575px) {
  body.dark-mode .about-area.style-2 .about-right-item {
    padding: 30px 10px;
    padding-right: 20px;
  }
}

body.dark-mode .about-area.style-2 .about-right-item:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  content: "";
  background: #050209;
  z-index: -1;
}

body.dark-mode .about-area.style-2 .about-right-item .border-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 10px;
  background: #fff;
}

body.dark-mode .about-area.style-2 .about-right-item .border-2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 10px;
  background: #ff0000;
}

body.dark-mode .about-area.style-2 .about-right-item .border-3 {
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 50%;
  background: #005289;
}

body.dark-mode .about-area.style-2 .about-right-item .about-list-wrap {
  border-color: #2A272D;
}

body.dark-mode .about-area.style-2 .about-right-item .about-list-wrap .about-exprience {
  border-color: #2A272D;
}

body.dark-mode .about-area.style-2 .about-right-item .about-list-wrap .about-exprience span {
  color: #fff;
}

body.dark-mode .about-area.style-2 .about-right-item .about-list-wrap .about-list ul li {
  color: #fff;
}

body.dark-mode .about-area.style-2 .about-right-item .visible-text {
  position: absolute;
  right: 0px;
  top: -180px;
}

@media (max-width: 1199px) {
  body.dark-mode .about-area.style-2 .about-right-item .visible-text {
    display: none;
  }
}

body.dark-mode .about-area.style-2 .about-right-item .visible-text h2 {
  font-family: "Rubik", sans-serif;
  font-size: 149.935px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
}

@media (max-width: 991px) {
  body.dark-mode .about-area.style-2 .about-right-item .visible-text h2 {
    font-size: 80.935px;
  }
}

@media (max-width: 575px) {
  body.dark-mode .about-area.style-2 .about-right-item .visible-text h2 {
    font-size: 60.935px;
  }
}

body.dark-mode .about-area.style-2 .right-img {
  opacity: 0.1;
}

body.dark-mode .service-area-2 {
  background-color: #1B1A1A;
}

body.dark-mode .service-area-2 .service-item {
  background-color: #050209;
}

body.dark-mode .service-area-2 .service-item .service-item-wrap .service-text h3 a {
  color: #fff;
}

body.dark-mode .service-area-2 .service-item .service-btm {
  border-color: #38373B;
}

body.dark-mode .service-area-2 .service-item .service-btm ul li {
  color: #fff;
}

body.dark-mode .service-area-2 .service-item .service-btm a {
  color: #fff;
}

body.dark-mode .service-area-2 .service-item .service-btm a:hover {
  color: #ff0000;
}

body.dark-mode .ch-skill-area {
  background: #050209;
}

body.dark-mode .ch-skill-area::after {
  display: none;
}

body.dark-mode .ch-skill-area .contact-form-area {
  background-color: #1B1A1A;
}

@media (min-width: 991px) {
  body.dark-mode .ch-skill-area .contact-form-area {
    margin-bottom: -140px;
  }
}

body.dark-mode .ch-skill-area .contact-form-area .contact-form-area-inner {
  border-color: #333;
  border-bottom-color: #005289;
}

body.dark-mode .ch-skill-area .contact-form-area .contact-form-area-inner form input,
body.dark-mode .ch-skill-area .contact-form-area .contact-form-area-inner form select,
body.dark-mode .ch-skill-area .contact-form-area .contact-form-area-inner form textarea {
  border-color: #333;
  background-color: transparent;
}

body.dark-mode .ch-skill-area .contact-form-area .contact-form-area-inner form input:focus,
body.dark-mode .ch-skill-area .contact-form-area .contact-form-area-inner form select:focus,
body.dark-mode .ch-skill-area .contact-form-area .contact-form-area-inner form textarea:focus {
  border-color: #ff0000;
  background: transparent;
  color: #fff;
}

body.dark-mode .ch-skill-area .contact-form-area .contact-form-area-inner form input option,
body.dark-mode .ch-skill-area .contact-form-area .contact-form-area-inner form select option,
body.dark-mode .ch-skill-area .contact-form-area .contact-form-area-inner form textarea option {
  color: #333;
}

body.dark-mode .ch-skill-area .skill-bottom {
  background-color: #1B1A1A;
}

body.dark-mode .ch-skill-area .skill-bottom .skill-bottom-item:last-child {
  border-color: #38373B;
}

body.dark-mode .project-section .project-filters-btn ul li a {
  color: #fff;
}

body.dark-mode .brand-section.style-2 {
  background-color: #1B1A1A;
}

body.dark-mode .testimonial-section.style-2 .testimonial-items .testimonial-item {
  background-color: #1B1A1A;
}

body.dark-mode .testimonial-section.style-2 .testimonial-items .testimonial-item .info-text .info-text-bio span {
  color: #fff;
  display: inline-block;
  margin-left: 10px;
}

body.dark-mode .choose-area-s2 .choose-text .choose-items .info {
  background: transparent;
  border-color: #38373B;
}

body.dark-mode .choose-area-s2 .choose-text .choose-items .info .info-text h3 {
  color: #fff;
}

body.dark-mode .choose-area-s2 .choose-text .choose-items .info .info-text p {
  color: #fff;
}

body.dark-mode .choose-area-s2 .choose-text .choose-items .info:after {
  background-color: #1B1A1A;
}

body.dark-mode .team-area {
  background-color: #1B1A1A;
}

body.dark-mode .work-area .col::before {
  display: none;
}

body.dark-mode .work-area .work-item:before {
  background-color: #1B1A1A;
}

body.dark-mode .ch-blog-area .blog-items .blog-item {
  background: transparent;
}

body.dark-mode .ch-blog-area .blog-items .blog-item .blog-content {
  border-color: #38373B;
}

body.dark-mode .ch-blog-area .blog-items .blog-item .blog-content h2 a {
  color: #fff;
}

body.dark-mode .ch-blog-area .blog-items .blog-item .blog-content h2 a:hover {
  color: #ff0000;
  text-decoration: underline;
}

body.dark-mode .ch-blog-area .blog-items .blog-item .ch-btn-style-3::before {
  background: #050209;
}

body.dark-mode .ch-blog-area .blog-items .blog-item .blog-bottom {
  border-color: #38373B;
}

body.dark-mode .ch-blog-area .blog-items .blog-item:hover {
  background: #1B1A1A;
}

body.dark-mode .ch-blog-area .blog-items .blog-item:hover .ch-btn-style-3::before {
  background: #005289;
}

/*--------------------------------------------------------------
22. About Page
--------------------------------------------------------------*/
.about-page .text-moving-sec-s2 {
  margin-bottom: 40px;
}

@media (max-width: 575px) {
  .about-page .text-moving-sec-s2 {
    margin-bottom: 20px;
  }
}

@media (min-width: 991px) {
  .about-page .about-area-s2 {
    padding-bottom: 180px;
  }
}

/*--------------------------------------------------------------
23. Service Page
--------------------------------------------------------------*/
.service-page .service-area-2 {
  background: #fff;
}

.service-page .service-area-2 .service-item {
  border: 1px solid #F2F2F2;
}

.service-page .service-area-2 .service-item .service-btm {
  border-color: #F2F2F2;
}

.service-single-page .service-single-category {
  padding: 30px;
  background: #EFF4F9;
}

@media (max-width: 1199px) {
  .service-single-page .service-single-category {
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .service-single-page .service-single-category {
    margin-top: 30px;
  }
}

.service-single-page .service-single-category h3 {
  font-family: Poppins;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .service-single-page .service-single-category h3 {
    margin-bottom: 10px;
  }
}

.service-single-page .service-single-category ul li+li {
  margin-top: 20px;
}

.service-single-page .service-single-category ul li a {
  display: block;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #636363;
  padding: 12px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding-left: 50px;
  position: relative;
}

@media (max-width: 1199px) {
  .service-single-page .service-single-category ul li a {
    font-size: 14px;
    padding-left: 40px;
  }
}

.service-single-page .service-single-category ul li a::before {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  line-height: 24px;
  background: #005289;
  border-radius: 50%;
  content: "\e649";
  font-family: "themify";
  text-align: center;
  font-size: 10px;
  color: #fff;
  transition: all 0.3s;
}

.service-single-page .service-single-category ul li a:hover {
  background-color: #ff0000;
  color: #fff;
}

.service-single-page .service-single-category ul li a:hover::before {
  background-color: #fff;
  color: #005289;
}

.service-single-page .service-details {
  padding-top: 46px;
}

.service-single-page .service-details h2 {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

.service-single-page .service-details .choose-wrap {
  margin-top: 40px;
}

@media (max-width: 991px) {
  .service-single-page .service-details .choose-wrap {
    margin-bottom: 30px;
  }
}

.service-single-page .service-details p {
  max-width: 1022px;
}

.service-single-page .service-details .choose-items {
  padding-bottom: 40px;
}

.service-single-page .service-details .choose-items .info {
  padding: 20px 22px;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
  border: 1px solid #DDDDDD;
  margin-left: -1px;
  margin-top: -1px;
  flex-basis: 50%;
  background: #fff;
}

@media (max-width: 1199px) {
  .service-single-page .service-details .choose-items .info {
    padding: 25px 12px;
  }
}

@media (max-width: 480px) {
  .service-single-page .service-details .choose-items .info {
    flex-basis: 100%;
    flex-wrap: wrap;
  }
}

.service-single-page .service-details .choose-items .info:after {
  position: absolute;
  left: 2%;
  top: 5%;
  width: 0;
  height: 90%;
  content: "";
  background: #fff;
  z-index: -1;
  transition: all 0.3s;
}

.service-single-page .service-details .choose-items .info i {
  display: block;
  width: 63px;
  height: 63px;
  line-height: 63px;
  background: #ff0000;
  text-align: center;
  color: #fff;
  font-size: 30px;
  border-radius: 50%;
  margin-right: 20px;
  transition: all 0.3s;
}

@media (max-width: 480px) {
  .service-single-page .service-details .choose-items .info i {
    margin-right: 0px;
    margin-bottom: 20px;
  }
}

.service-single-page .service-details .choose-items .info p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: #1B1A1A;
  margin-bottom: 0;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .service-single-page .service-details .choose-items .info p {
    font-size: 14px;
  }
}

.service-single-page .service-details .choose-items .info h3 {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 5px;
  color: #1B1A1A;
  transition: all 0.3s;
}

@media (max-width: 1199px) {
  .service-single-page .service-details .choose-items .info h3 {
    font-size: 18px;
  }
}

.service-single-page .service-details .choose-items .info:hover:after {
  width: 95%;
}

.service-single-page .service-details .choose-items .info:hover i {
  background-color: #005289;
}

/*--------------------------------------------------------------
24. Portfolio Page
--------------------------------------------------------------*/
.project-page .project-section {
  padding-bottom: 90px;
}

@media (max-width: 991px) {
  .project-page .project-section {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .project-page .project-section {
    padding-bottom: 50px;
  }
}

.project-single .project-details h2 {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  text-transform: capitalize;
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .project-single .project-details h2 {
    font-size: 22px;
  }
}

.project-single .project-details .details-img {
  padding: 30px 0;
}

.project-single .project-details .details-items {
  margin-top: 40px;
}

.project-single .project-details .details-items h4 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin-top: 20px;
}

.project-single .contact-form-area {
  padding: 30px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
  padding-top: 40px;
  margin-top: 40px;
}

@media (max-width: 991px) {
  .project-single .contact-form-area {
    padding: 20px;
  }
}

.project-single .contact-form-area .form-field {
  margin-bottom: 30px;
}

.project-single .contact-form-area h3 {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
}

.project-single .contact-form-area form input,
.project-single .contact-form-area form select,
.project-single .contact-form-area form textarea {
  background: transparent;
  width: 100%;
  height: 50px;
  border: 1px solid transparent;
  border-radius: 5px;
  box-shadow: none !important;
  padding-left: 25px;
  border: 1px solid #ebebeb;
}

@media (max-width: 991px) {

  .project-single .contact-form-area form input,
  .project-single .contact-form-area form select,
  .project-single .contact-form-area form textarea {
    height: 45px;
  }
}

.project-single .contact-form-area form input:focus,
.project-single .contact-form-area form select:focus,
.project-single .contact-form-area form textarea:focus {
  border-color: #ff0000;
  background: transparent;
}

.project-single .contact-form-area form textarea {
  height: 180px;
  padding-top: 15px;
}

.project-single .contact-form-area form {
  margin: 0 -15px;
  overflow: hidden;
}

.project-single .contact-form-area form ::-webkit-input-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}

.project-single .contact-form-area form :-moz-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}

.project-single .contact-form-area form ::-moz-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}

.project-single .contact-form-area form :-ms-input-placeholder {
  font-style: 15px;
  font-style: normal;
  color: #9d9c9c;
}

.project-single .contact-form-area form select {
  display: inline-block;
  color: #a9a9a9;
  cursor: pointer;
  opacity: 1;
  padding: 6px 25px;
  font-size: 15px;
  font-size: calc-rem-value(15);
  -webkit-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -moz-appearance: none;
  background: transparent url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
  position: relative;
}

.project-single .contact-form-area form select:focus {
  background: transparent url(../images/select-icon2.png) no-repeat calc(100% - 15px) center;
}

.project-single .contact-form-area form .submit-area {
  width: 100%;
  margin-left: 0;
}

@media (max-width: 767px) {
  .project-single .contact-form-area form .submit-area {
    margin-bottom: 0;
  }
}

.project-single .contact-form-area form .submit-area .theme-btn {
  border-radius: 0px;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
}

.project-single .contact-form-area form .submit-area .theme-btn:after {
  border-radius: 0px;
}

.project-single .contact-form-area form>div {
  margin: 0 15px 0px;
}

@media (max-width: 600px) {
  .project-single .contact-form-area form>div {
    width: calc(100% - 25px);
    float: none;
  }
}

.project-single .contact-form-area form .fullwidth {
  width: calc(100% - 25px);
  float: none;
  clear: both;
}

.project-single .project-sidebar {
  /*** search-widget ***/
}

@media (max-width: 991px) {
  .project-single .project-sidebar {
    margin-top: 50px;
  }
}

.project-single .project-sidebar .search-widget {
  padding: 0px;
  margin-bottom: 40px;
}

.project-single .project-sidebar .search-widget form div {
  position: relative;
}

.project-single .project-sidebar .search-widget input {
  background: none;
  border: 1px solid rgba(31, 33, 45, 0.15);
  height: 55px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  padding: 6px 50px 6px 20px;
  border-radius: 0;
  box-shadow: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.project-single .project-sidebar .search-widget input:focus {
  background-color: #fff;
}

.project-single .project-sidebar .search-widget form button {
  background: transparent;
  width: 55px;
  height: 55px;
  line-height: 50px;
  font-size: 20px;
  font-size: calc-rem-value(20);
  color: #fff;
  border: 0;
  outline: 0;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
  background: #ff0000;
  border-radius: 0px 5px 5px 0px;
}

.project-single .project-sidebar .search-widget form button i {
  font-size: 14px;
}

.project-single .project-sidebar .details-widget {
  background: url(../images/service/flower.png);
  padding: 40px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.project-single .project-sidebar .details-widget::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(352deg, #000 -17.24%, #005289 117.24%);
  opacity: 0.95;
  z-index: -1;
}

@media (max-width: 1199px) {
  .project-single .project-sidebar .details-widget {
    padding: 25px;
  }
}

.project-single .project-sidebar .details-widget .details-widget-item {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.project-single .project-sidebar .details-widget .details-widget-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}

.project-single .project-sidebar .details-widget .details-widget-item span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: #fff;
}

.project-single .project-sidebar .details-widget .details-widget-item h4 {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 27px;
  margin-top: 3px;
  margin-bottom: 0;
  color: #fff;
}

.project-single .project-sidebar .service-single-category {
  padding: 30px;
  background: #EFF4F9;
}

@media (max-width: 1199px) {
  .project-single .project-sidebar .service-single-category {
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .project-single .project-sidebar .service-single-category {
    margin-top: 30px;
  }
}

.project-single .project-sidebar .service-single-category h3 {
  font-family: Poppins;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .project-single .project-sidebar .service-single-category h3 {
    margin-bottom: 10px;
  }
}

.project-single .project-sidebar .service-single-category ul li+li {
  margin-top: 20px;
}

.project-single .project-sidebar .service-single-category ul li a {
  display: block;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #636363;
  padding: 12px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding-left: 50px;
  position: relative;
}

@media (max-width: 1199px) {
  .project-single .project-sidebar .service-single-category ul li a {
    font-size: 14px;
    padding-left: 40px;
  }
}

.project-single .project-sidebar .service-single-category ul li a::before {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  line-height: 24px;
  background: #005289;
  border-radius: 50%;
  content: "\e649";
  font-family: "themify";
  text-align: center;
  font-size: 10px;
  color: #fff;
  transition: all 0.3s;
}

.project-single .project-sidebar .service-single-category ul li a:hover {
  background-color: #ff0000;
  color: #fff;
}

.project-single .project-sidebar .service-single-category ul li a:hover::before {
  background-color: #fff;
  color: #005289;
}

/*--------------------------------------------------------------
25.	team single page
--------------------------------------------------------------*/
.team-page .team-area {
  padding-bottom: 30px;
}

.team-page .team-area .team-item {
  margin-bottom: 30px;
}

.team-page .team-area .team-item .team-img img {
  width: 100%;
}

.team-single-section .single-img {
  padding-right: 40px;
}

@media (max-width: 991px) {
  .team-single-section .single-img {
    padding-right: 0;
    margin-bottom: 30px;
  }
}

.team-single-section .single-img img {
  width: 100%;
}

.team-single-section .single-content h2 {
  color: #222;
  font-family: Poppins;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.team-single-section .single-content span {
  color: #636363;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: block;
  margin-bottom: 20px;
}

.team-single-section .single-info-items {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #ddd;
  margin-top: 20px;
}

.team-single-section .single-info-items .single-info-item {
  flex-basis: 50%;
  padding: 20px;
  border: 1px solid #ddd;
  margin-bottom: -1px;
  margin-right: -1px;
  display: flex;
}

@media (max-width: 575px) {
  .team-single-section .single-info-items .single-info-item {
    flex-basis: 100%;
  }
}

.team-single-section .single-info-items .single-info-item i {
  font-size: 20px;
  margin-right: 20px;
  color: #005289;
  position: relative;
  top: 5px;
}

.team-single-section .single-info-items .single-info-item h3 {
  color: #333;
  font-family: Poppins;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.team-single-section .single-info-items .single-info-item span {
  margin-bottom: 0;
}

.team-single-section .team-single-text {
  margin-top: 50px;
}

.team-single-section .team-single-list {
  margin-top: 50px;
}

.team-single-section .team-single-list .list ul li {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  padding-left: 20px;
}

.team-single-section .team-single-list .list ul li+li {
  margin-top: 20px;
}

.team-single-section .team-single-list .list ul li:before {
  position: absolute;
  left: 0;
  top: 5px;
  width: 7px;
  height: 7px;
  content: "";
  background: #005289;
  border-radius: 50%;
}

@media (max-width: 991px) {
  .team-single-section .progress-area {
    margin-top: 40px;
  }
}

.team-single-section .progress-area .progress-single {
  margin-bottom: 20px;
  position: relative;
}

.team-single-section .progress-area .progress-single h5 {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}

.team-single-section .progress-area .progress-single .progress {
  background: #fff;
  height: 8px;
  position: relative;
  border: 1px solid #ff0000;
}

.team-single-section .progress-area .progress-single .progress .progress-bar {
  background-color: #ff0000;
  height: 4px;
  position: relative;
  top: 1px;
  left: 2px;
  border-radius: 5px;
}

.team-single-section .progress-area .progress-number {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: #1B1A1A;
  margin-bottom: 5px;
}

@media (max-width: 767px) {
  .team-single-section .progress-area .progress-number {
    font-size: 18px;
  }
}

/* ===============================
26. Blog Page
 =================================*/
/* blog-page */
.blog-grid-page .blog-section-s2 .blog-item {
  margin-bottom: 30px;
}

/* blog-page-area */
.blog-page-area .blog-item {
  margin-bottom: 60px;
  border-radius: 5px;
  border-radius: 5px;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
  position: relative;
}

.blog-page-area .blog-item:last-child {
  margin-bottom: 0;
}

.blog-page-area .blog-item .blog-img {
  position: relative;
}

.blog-page-area .blog-item .blog-img img {
  width: 100%;
}

.blog-page-area .blog-item .blog-img ul {
  display: flex;
  align-items: center;
  padding: 15px 40px;
  background-color: #ff0000;
  max-width: 363px;
  position: relative;
  border-radius: 0px 5px 0px 0px;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 575px) {
  .blog-page-area .blog-item .blog-img ul {
    padding: 10px 10px;
  }
}

.blog-page-area .blog-item .blog-img ul li {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #fff;
}

.blog-page-area .blog-item .blog-img ul li i {
  margin-right: 5px;
}

.blog-page-area .blog-item .blog-img ul li+li {
  margin-left: 20px;
}

.blog-page-area .blog-item .blog-img ul li strong {
  color: #1B1A1A;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}

.blog-page-area .blog-item .blog-content {
  padding: 40px;
}

@media (max-width: 575px) {
  .blog-page-area .blog-item .blog-content {
    padding: 20px;
  }
}

.blog-page-area .blog-item .blog-content h2 {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .blog-page-area .blog-item .blog-content h2 {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 15px;
  }
}

.blog-page-area .blog-item .blog-content h2 a {
  color: #1B1A1A;
}

.blog-page-area .blog-item .blog-content h2 a:hover {
  color: #050209;
}

.blog-page-area .blog-item .blog-content p {
  margin-bottom: 20px;
}

.blog-page-full .blog-img img {
  width: 100%;
}

/* blog-right-sidebar */
.blog-sidebar {
  /*** search-widget ***/
}

@media (max-width: 991px) {
  .blog-sidebar {
    margin-top: 50px;
  }
}

.blog-sidebar .widget {
  margin-top: 50px;
  padding: 40px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

@media (max-width: 1399px) {
  .blog-sidebar .widget {
    padding: 20px;
  }
}

@media (max-width: 1199px) {
  .blog-sidebar .widget {
    padding: 15px;
  }
}

@media (max-width: 1199px) {
  .blog-sidebar .widget {
    margin-top: 30px;
  }
}

.blog-sidebar .widget h3 {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.blog-sidebar .widget h3:before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 67px;
  height: 3px;
  background: #005289;
}

@media (max-width: 1199px) {
  .blog-sidebar .widget h3 {
    font-size: 30px;
    line-height: 40px;
  }
}

@media (max-width: 575px) {
  .blog-sidebar .widget h3 {
    font-size: 22px;
    line-height: 27px;
  }
}

.blog-sidebar .search-widget {
  padding: 0px;
}

.blog-sidebar .search-widget form div {
  position: relative;
}

.blog-sidebar .search-widget input {
  background: none;
  border: 1px solid rgba(31, 33, 45, 0.15);
  height: 55px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  padding: 6px 50px 6px 20px;
  border-radius: 0;
  box-shadow: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.blog-sidebar .search-widget input:focus {
  background-color: #fff;
}

.blog-sidebar .search-widget form button {
  background: transparent;
  width: 55px;
  height: 55px;
  line-height: 50px;
  font-size: 20px;
  font-size: calc-rem-value(20);
  color: #fff;
  border: 0;
  outline: 0;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
  background: #ff0000;
  border-radius: 0px 5px 5px 0px;
}

.blog-sidebar .search-widget form button i {
  font-size: 14px;
}

.blog-sidebar .blog-right-info p {
  margin-bottom: 0;
}

.blog-sidebar .recent-post .post {
  display: flex;
  margin-bottom: 30px;
  align-items: center;
}

.blog-sidebar .recent-post .post:last-child {
  margin-bottom: 0;
}

.blog-sidebar .recent-post .post .post-img {
  flex-basis: 30%;
  margin-right: 10px;
}

.blog-sidebar .recent-post .post .post-content {
  flex-basis: 70%;
}

.blog-sidebar .recent-post .post .post-content span {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.blog-sidebar .recent-post .post .post-content ul {
  display: flex;
  align-items: center;
}

.blog-sidebar .recent-post .post .post-content ul li {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1199px) {
  .blog-sidebar .recent-post .post .post-content ul li {
    font-size: 11px;
  }
}

.blog-sidebar .recent-post .post .post-content ul li+li {
  margin-left: 10px;
}

@media (max-width: 1199px) {
  .blog-sidebar .recent-post .post .post-content ul li+li {
    margin-left: 5px;
  }
}

.blog-sidebar .recent-post .post .post-content ul li i {
  color: #050209;
}

.blog-sidebar .recent-post .post .post-content ul li strong {
  color: #1B1A1A;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}

.blog-sidebar .recent-post .post .post-content h4 {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  margin-top: 6px;
}

.blog-sidebar .recent-post .post .post-content h4 a {
  color: #1B1A1A;
}

.blog-sidebar .recent-post .post .post-content h4 a:hover {
  color: #050209;
}

.blog-sidebar .category-widget ul li+li {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #ddd;
}

.blog-sidebar .category-widget ul li a {
  color: #1B1A1A;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  justify-content: space-between;
  padding-left: 30px;
  position: relative;
}

.blog-sidebar .category-widget ul li a::before {
  position: absolute;
  left: 0;
  top: 5px;
  content: "\e912";
  font-family: "icomoon";
}

@media (max-width: 1199px) {
  .blog-sidebar .category-widget ul li a {
    font-size: 16px;
    line-height: 25px;
  }
}

.blog-sidebar .category-widget ul li a i {
  margin-right: 10px;
  color: #050209;
  font-size: 10px;
}

.blog-sidebar .category-widget ul li a:hover {
  color: #050209;
}

.blog-sidebar .tag-widget ul {
  display: flex;
  flex-wrap: wrap;
}

.blog-sidebar .tag-widget ul li {
  margin-right: 10px;
  margin-bottom: 15px;
  display: block;
}

.blog-sidebar .tag-widget ul li a {
  color: #1B1A1A;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  padding: 8px 18px;
  position: relative;
  border-radius: 5px;
  border: 1px solid #ddd;
  display: block;
}

.blog-sidebar .tag-widget ul li a:hover {
  color: #050209;
  background: #ff0000;
}

/* =======================
27. Blog Single Page
 ========================*/
/* blog-single-page-area  */
.blog-single-page-area .blog-single-wrap {
  /*** more-posts ***/
  /*** tag-share ***/
  /*** comments area ***/
  /*** comment-respond ***/
}

.blog-single-page-area .blog-single-wrap h2 {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.blog-single-page-area .blog-single-wrap .blog-img {
  position: relative;
}

.blog-single-page-area .blog-single-wrap .blog-img img {
  width: 100%;
}

.blog-single-page-area .blog-single-wrap .blog-img ul {
  display: flex;
  align-items: center;
  max-width: 505px;
  position: relative;
  margin-top: 30px;
}

@media (max-width: 575px) {
  .blog-single-page-area .blog-single-wrap .blog-img ul {
    padding: 0;
    flex-wrap: wrap;
  }
}

.blog-single-page-area .blog-single-wrap .blog-img ul li {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 575px) {
  .blog-single-page-area .blog-single-wrap .blog-img ul li {
    margin: 5px 0;
    font-size: 14px;
  }
}

.blog-single-page-area .blog-single-wrap .blog-img ul li i {
  margin-right: 5px;
}

.blog-single-page-area .blog-single-wrap .blog-img ul li:first-child {
  padding: 10px 20px;
  background: #ff0000;
  color: #fff;
  border-radius: 20px;
}

@media (max-width: 575px) {
  .blog-single-page-area .blog-single-wrap .blog-img ul li:first-child {
    padding: 10px 10px;
  }
}

.blog-single-page-area .blog-single-wrap .blog-img ul li+li {
  margin-left: 20px;
}

@media (max-width: 575px) {
  .blog-single-page-area .blog-single-wrap .blog-img ul li+li {
    margin-left: 10px;
  }
}

.blog-single-page-area .blog-single-wrap .blog-img ul li strong {
  color: #1B1A1A;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}

.blog-single-page-area .blog-single-wrap .blog-single-text-wrap {
  margin-top: 30px;
  margin-bottom: 40px;
}

.blog-single-page-area .blog-single-wrap .blog-single-text-wrap h2 {
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .blog-single-page-area .blog-single-wrap .blog-single-text-wrap h2 {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 20px;
  }
}

.blog-single-page-area .blog-single-wrap .blog-single-text-wrap p {
  margin-bottom: 30px;
}

.blog-single-page-area .blog-single-wrap .blog-single-text-wrap ul li {
  padding-bottom: 15px;
}

.blog-single-page-area .blog-single-wrap blockquote {
  border-radius: 5px;
  border: 2px solid #E3E3E3;
  padding: 30px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 27px;
  color: #636363;
  margin-bottom: 40px;
}

@media (max-width: 575px) {
  .blog-single-page-area .blog-single-wrap blockquote {
    padding: 15px;
    font-size: 14px;
    line-height: 27px;
  }
}

.blog-single-page-area .blog-single-wrap blockquote span {
  display: block;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 27px;
  font-family: "Rubik", sans-serif;
  color: #050209;
  margin-top: 15px;
}

.blog-single-page-area .blog-single-wrap .service-area-2 {
  background: #fff;
}

.blog-single-page-area .blog-single-wrap .service-area-2 .service-item {
  border: 1px solid #ddd;
}

.blog-single-page-area .blog-single-wrap .detail-img {
  margin-top: 40px;
  margin-bottom: 30px;
}

.blog-single-page-area .blog-single-wrap .detail-img img {
  width: 100%;
}

.blog-single-page-area .blog-single-wrap .more-posts {
  overflow: hidden;
}

.blog-single-page-area .blog-single-wrap .more-posts>div {
  width: 50%;
  float: left;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .more-posts>div {
    width: 100%;
    float: none;
  }
}

.blog-single-page-area .blog-single-wrap .more-posts>div>a {
  display: inline-block;
}

.blog-single-page-area .blog-single-wrap .more-posts .previous-post,
.blog-single-page-area .blog-single-wrap .more-posts .next-post {
  padding: 0px 0;
  margin-top: 30px;
}

.blog-single-page-area .blog-single-wrap .more-posts .next-post {
  text-align: right;
  position: relative;
}

.blog-single-page-area .blog-single-wrap .more-posts .next-post a {
  padding-right: 70px;
}

.blog-single-page-area .blog-single-wrap .more-posts .next-post a:before {
  font-family: "themify";
  content: "\e628";
  position: absolute;
  right: 0;
  top: 5px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #ff0000;
  border-radius: 50%;
  text-align: center;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .more-posts .next-post a:before {
    display: none;
  }
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .more-posts .next-post a {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .more-posts .next-post {
    border-left: 0;
    text-align: left;
  }
}

.blog-single-page-area .blog-single-wrap .more-posts .next-post .post-control-link {
  position: relative;
}

.blog-single-page-area .blog-single-wrap .more-posts .previous-post {
  padding-right: 15px;
  padding-left: 5px;
  position: relative;
  text-align: left;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .more-posts .previous-post {
    padding-left: 0;
  }
}

.blog-single-page-area .blog-single-wrap .more-posts .previous-post a {
  padding-left: 70px;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .more-posts .previous-post a {
    padding-left: 0;
  }
}

.blog-single-page-area .blog-single-wrap .more-posts .previous-post a:before {
  font-family: "themify";
  content: "\e629";
  position: absolute;
  left: 0;
  top: 5px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #ff0000;
  border-radius: 50%;
  text-align: center;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .more-posts .previous-post a:before {
    display: none;
  }
}

.blog-single-page-area .blog-single-wrap .more-posts .previous-post .post-control-link {
  position: relative;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .more-posts .previous-post .post-control-link {
    padding-left: 0;
  }
}

.blog-single-page-area .blog-single-wrap .more-posts .previous-post>a>span,
.blog-single-page-area .blog-single-wrap .more-posts .next-post>a>span {
  display: block;
}

.blog-single-page-area .blog-single-wrap .more-posts .post-control-link {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  color: #636363;
}

.blog-single-page-area .blog-single-wrap .more-posts .post-name {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 27px;
  margin: 0;
  color: #1B1A1A;
}

@media (max-width: 991px) {
  .blog-single-page-area .blog-single-wrap .more-posts .post-name {
    font-size: 16px;
  }
}

.blog-single-page-area .blog-single-wrap .more-posts a:hover .post-control-link {
  color: #1B1A1A;
}

.blog-single-page-area .blog-single-wrap .tag-share {
  border-top: 1px solid #f4f4f4;
  border-bottom: 1px solid #f4f4f4;
  margin: 75px 0 0;
  padding: 30px 0;
  color: #1B1A1A;
}

.blog-single-page-area .blog-single-wrap .tag-share ul {
  list-style: none;
  display: inline-block;
  overflow: hidden;
}

.blog-single-page-area .blog-single-wrap .tag-share ul li {
  float: left;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .tag-share ul li {
    margin: 2px;
  }
}

.blog-single-page-area .blog-single-wrap .tag-share ul>li+li {
  margin-left: 10px;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .tag-share ul>li+li {
    margin: 2px;
  }
}

.blog-single-page-area .blog-single-wrap .tag-share .tag {
  float: left;
}

@media (max-width: 600px) {
  .blog-single-page-area .blog-single-wrap .tag-share .tag {
    float: none;
  }
}

.blog-single-page-area .blog-single-wrap .tag-share .tag>span {
  color: #1B1A1A;
  font-weight: bold;
  display: inline-block;
  padding-right: 8px;
}

.blog-single-page-area .blog-single-wrap .tag-share .tag ul {
  list-style: none;
  position: relative;
  top: 5px;
}

.blog-single-page-area .blog-single-wrap .tag-share .tag li {
  position: relative;
}

.blog-single-page-area .blog-single-wrap .tag-share .tag ul>li+li {
  margin-left: 10px;
}

.blog-single-page-area .blog-single-wrap .tag-share .tag a {
  font-size: 16px;
  font-size: calc-rem-value(16);
  color: #636363;
  display: inline-block;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .tag-share .tag a {
    font-size: 14px;
  }
}

.blog-single-page-area .blog-single-wrap .tag-share .share {
  float: right;
  position: relative;
  top: -15px;
}

@media (max-width: 600px) {
  .blog-single-page-area .blog-single-wrap .tag-share .share {
    float: none;
    margin-top: 15px;
  }
}

.blog-single-page-area .blog-single-wrap .tag-share .share>span {
  color: #1B1A1A;
  font-weight: 600;
  display: inline-block;
  padding-right: 8px;
}

.blog-single-page-area .blog-single-wrap .tag-share .share ul {
  position: relative;
  top: 15px;
}

.blog-single-page-area .blog-single-wrap .tag-share .share ul>li+li {
  margin-left: 10px;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .tag-share .share ul>li+li {
    margin-left: 8px;
  }
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .tag-share .share ul>li {
    margin: 5px;
  }
}

.blog-single-page-area .blog-single-wrap .tag-share .share a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border: 1px solid #eae6e6;
  border-radius: 5px;
  display: inline-block;
  font-size: 14px;
  font-size: calc-rem-value(14);
  color: #627381;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .tag-share .share a {
    font-size: 13px;
    font-size: calc-rem-value(13);
  }
}

.blog-single-page-area .blog-single-wrap .tag-share .share a:hover {
  background: #1B1A1A;
  border-color: #1B1A1A;
  color: #fff !important;
}

.blog-single-page-area .blog-single-wrap .tag-share .share ul>li:first-child a {
  color: #3c5ba4;
}

.blog-single-page-area .blog-single-wrap .tag-share .share ul>li:nth-child(2) a {
  color: #47a0d9;
}

.blog-single-page-area .blog-single-wrap .tag-share .share ul>li:nth-child(3) a {
  color: #0073b1;
}

.blog-single-page-area .blog-single-wrap .tag-share .share ul>li:nth-child(4) a {
  color: #933f94;
}

.blog-single-page-area .blog-single-wrap .comments-area {
  margin-top: 70px;
}

.blog-single-page-area .blog-single-wrap .comments-area .comments .comment+.comment {
  margin-left: 30px;
}

.blog-single-page-area .blog-single-wrap .comments-area li>div {
  border-bottom: 1px solid #DDDDDD;
  padding: 35px;
}

@media (max-width: 991px) {
  .blog-single-page-area .blog-single-wrap .comments-area li>div {
    padding: 35px 25px;
  }
}

.blog-single-page-area .blog-single-wrap .comments-area ol {
  list-style-type: none;
  padding-left: 0;
}

.blog-single-page-area .blog-single-wrap .comments-area ol ul {
  padding-left: 30px;
  list-style-type: none;
}

.blog-single-page-area .blog-single-wrap .comments-area ol+li {
  margin-left: 30px;
}

.blog-single-page-area .blog-single-wrap .comments-area .comments-title {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  text-transform: capitalize;
  margin: 0 0 1.5em;
}

@media (max-width: 991px) {
  .blog-single-page-area .blog-single-wrap .comments-area .comments-title {
    font-size: 20px;
    font-size: calc-rem-value(20);
  }
}

.blog-single-page-area .blog-single-wrap .comments-area li>div {
  position: relative;
}

.blog-single-page-area .blog-single-wrap .comments-area .comment-theme {
  position: absolute;
  left: 35px;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .comments-area .comment-theme {
    position: static;
  }
}

.blog-single-page-area .blog-single-wrap .comments-area .comment-theme img {
  border-radius: 50%;
}

.blog-single-page-area .blog-single-wrap .comments-area .comment-main-area {
  padding-left: 120px;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .comments-area .comment-main-area {
    padding-left: 0;
    margin-top: 25px;
  }
}

.blog-single-page-area .blog-single-wrap .comments-area .comment-main-area p {
  margin-bottom: 10px;
}

.blog-single-page-area .blog-single-wrap .comments-area .comments-meta h4 {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 27px;
  color: #1B1A1A;
  margin: 0 0 1em;
}

.blog-single-page-area .blog-single-wrap .comments-area .comments-meta h4 span {
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-size: calc-rem-value(13);
  color: #636363;
  font-weight: normal;
  font-style: italic;
  text-transform: none;
  display: inline-block;
  padding-left: 5px;
}

@media (max-width: 767px) {
  .blog-single-page-area .blog-single-wrap .comments-area .comments-meta h4 span {
    padding-left: 0;
  }
}

.blog-single-page-area .blog-single-wrap .comments-area .comment-reply-link {
  font-size: 13px;
  font-size: calc-rem-value(13);
  line-height: 25px;
  font-weight: 600;
  color: #1B1A1A;
  text-align: center;
  display: inline-block;
}

.blog-single-page-area .blog-single-wrap .comment-respond {
  margin-top: 70px;
  background: #EFF4F9;
}

.blog-single-page-area .blog-single-wrap .comment-respond .comment-respond-inner {
  background: #fff;
  padding: 70px;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .blog-single-page-area .blog-single-wrap .comment-respond .comment-respond-inner {
    padding: 40px;
  }
}

@media (max-width: 575px) {
  .blog-single-page-area .blog-single-wrap .comment-respond .comment-respond-inner {
    padding: 15px;
  }
}

.blog-single-page-area .blog-single-wrap .comment-respond .comment-reply-title {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  text-transform: capitalize;
}

.blog-single-page-area .blog-single-wrap .comment-respond p {
  margin-bottom: 50px;
}

.blog-single-page-area .blog-single-wrap .comment-respond form input,
.blog-single-page-area .blog-single-wrap .comment-respond form textarea {
  color: #A5A5A5;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background: none;
  width: 100%;
  height: 55px;
  border: 0;
  padding: 6px 15px;
  margin-bottom: 15px;
  outline: 0;
  border-radius: 0px;
  box-shadow: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid rgba(31, 33, 45, 0.15);
}

.blog-single-page-area .blog-single-wrap .comment-respond form input:focus,
.blog-single-page-area .blog-single-wrap .comment-respond form textarea:focus {
  box-shadow: none;
  border-color: #ff0000;
}

@media (max-width: 991px) {

  .blog-single-page-area .blog-single-wrap .comment-respond form input,
  .blog-single-page-area .blog-single-wrap .comment-respond form textarea {
    height: 50px;
  }
}

.blog-single-page-area .blog-single-wrap .comment-respond form textarea {
  height: 220px;
  padding: 15px;
}

@media (max-width: 991px) {
  .blog-single-page-area .blog-single-wrap .comment-respond form textarea {
    height: 150px;
  }
}

.blog-single-page-area .blog-single-wrap .comment-respond .form-inputs,
.blog-single-page-area .blog-single-wrap .comment-respond .form-textarea {
  overflow: hidden;
}

.blog-single-page-area .blog-single-wrap .comment-respond .form-inputs label,
.blog-single-page-area .blog-single-wrap .comment-respond .form-textarea label {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 10px;
}

.blog-single-page-area .blog-single-wrap .comment-respond .form-submit input {
  max-width: 100%;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 1.28px;
  text-transform: uppercase;
  margin-bottom: 0;
  border: 0;
  outline: 0;
  background: #ff0000;
  border-radius: 0;
  margin-top: 30px;
  color: #fff;
  width: 100%;
}

.blog-single-page-area .blog-single-wrap .comment-respond .form-submit input:hover {
  background-color: #005289;
}

.blog-single-page-area.full-width .blog-img img {
  width: 100%;
}

.blog-single-page-area.full-width .detail-img img {
  width: 100%;
}

/*--------------------------------------------------------------
28. contact-page
--------------------------------------------------------------*/
.contact-page {
  background: #F5F5F5;
  padding-top: 100px;
}

@media (max-width: 991px) {
  .contact-page {
    padding-top: 90px;
  }
}

@media (max-width: 767px) {
  .contact-page {
    padding-top: 80px;
  }
}

.contact-page .contact-img img {
  min-height: 800px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .contact-page .contact-img {
    display: none;
  }
}

.contact-page .contact-section {
  padding-bottom: 0;
}

.contact-page .contact-section .row {
  align-items: flex-end;
}

.contact-page .contact-section .contact-form-area {
  margin-top: 0;
  max-width: 770px;
  margin-left: -150px;
}

@media (max-width: 991px) {
  .contact-page .contact-section .contact-form-area {
    margin-left: 0;
  }
}

@media (min-width: 991px) {
  .contact-page .contact-section .col {
    padding: 0;
  }
}

.contact-page .contact-section .map {
  position: relative;
}

@media (max-width: 767px) {
  .contact-page .contact-section .map {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .contact-page .contact-section .map iframe {
    height: 400px;
  }
}

/* =============================
29. 404 page
 ===============================*/
/* 404-section */
.opps-404-section {
  text-align: center;
  padding-top: 50px;
}

.opps-404-section .opps-message {
  margin-top: 70px;
  padding: 0 200px;
}

@media (max-width: 991px) {
  .opps-404-section .opps-message {
    margin-top: 50px;
    padding: 0 100px;
  }
}

@media (max-width: 767px) {
  .opps-404-section .opps-message {
    padding: 0;
  }
}

.opps-404-section .opps-message h3 {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 0.5em;
}

@media (max-width: 575px) {
  .opps-404-section .opps-message h3 {
    font-size: 25px;
  }
}

.opps-404-section .opps-message p {
  margin-bottom: 1.8em;
}

.opps-404-section .opps-message .ch-btn-style-1 {
  border-radius: 40px;
}

/*--------------------------------------------------------------
24. preview-page
--------------------------------------------------------------*/
.preview-page .cp-header-style-5.header-fixed {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 55;
  background: #fff;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
}

.preview-page .preview-hero {
  position: relative;
  overflow: hidden;
}

.preview-page .preview-hero:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(352deg, #005289 -17.24%, #000 117.24%);
  opacity: 0.9;
}

.preview-page .preview-hero .ch-main-hero-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 150px;
}

@media (max-width: 575px) {
  .preview-page .preview-hero .ch-main-hero-text {
    padding-bottom: 80px;
  }
}

.preview-page .preview-hero .ch-main-hero-text p {
  margin: 0 auto;
  justify-content: center;
}

.preview-page .preview-hero .ch-main-hero-text .top-text {
  justify-content: center;
}

.preview-page .preview-hero .preview-image-wrap {
  max-width: 1800px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.preview-page .preview-hero .preview-image-wrap .preview-image-item {
  margin: 10px;
  position: relative;
  max-height: 460px;
}

@media (max-width: 991px) {
  .preview-page .preview-hero .preview-image-wrap .preview-image-item {
    max-height: 300px;
  }
}

@media (max-width: 575px) {
  .preview-page .preview-hero .preview-image-wrap .preview-image-item {
    margin: 3px;
  }
}

.preview-page .preview-hero .preview-image-wrap .preview-image-item img {
  border-radius: 10px;
  border: 5px solid #fff;
  width: 100%;
}

.preview-page .preview-hero .preview-image-wrap .preview-image-item:nth-child(2) {
  top: -60px;
}

.preview-page .preview-hero .preview-image-wrap .preview-image-item:nth-child(4) {
  top: -60px;
}

.preview-page .preview-hero .plug-shape {
  position: absolute;
  left: 85px;
  top: 75px;
}

@media (max-width: 991px) {
  .preview-page .preview-hero .plug-shape {
    display: none;
  }
}

.preview-page .preview-hero .plug-shape img {
  animation: bounceLeftToRight 4s infinite;
}

.preview-page .preview-hero .rotate-text-wrap {
  position: absolute;
  right: 120px;
  top: 80px;
  width: 200px;
  height: 200px;
  line-height: 200px;
  border-radius: 50%;
  z-index: 11;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 1500px) {
  .preview-page .preview-hero .rotate-text-wrap {
    right: 100px;
  }
}

@media (max-width: 1400px) {
  .preview-page .preview-hero .rotate-text-wrap {
    right: 40px;
  }
}

@media (max-width: 991px) {
  .preview-page .preview-hero .rotate-text-wrap {
    display: none;
  }
}

.preview-page .preview-hero .rotate-text-wrap .rotate-text {
  position: relative;
  top: 0px;
  animation: circle 30s linear infinite;
  max-width: 200px;
}

.preview-page .preview-hero .rotate-text-wrap .rotate-text svg path {
  fill: transparent;
}

.preview-page .preview-hero .rotate-text-wrap .rotate-text text {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  letter-spacing: 15px;
}

.preview-page .preview-hero .rotate-text-wrap .icon {
  position: absolute;
  left: 20%;
  top: 15px;
}

.preview-page .preview-hero .rotate-text-wrap .icon i {
  display: inline-block;
  font-size: 50px;
  color: #ff0000;
  width: 120px;
  height: 120px;
  line-height: 120px;
  text-align: center;
  border-radius: 50%;
}

.preview-page .demo-section,
.preview-page .demo-section-s2 {
  padding-left: 80px;
  padding-right: 80px;
}

@media (max-width: 1199px) {

  .preview-page .demo-section,
  .preview-page .demo-section-s2 {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 991px) {

  .preview-page .demo-section,
  .preview-page .demo-section-s2 {
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 60px;
  }
}

.preview-page .demo-section .demo-item,
.preview-page .demo-section-s2 .demo-item {
  padding: 20px;
  border: 1px solid #FAF2EE;
  max-height: 550px;
  overflow: hidden;
  position: relative;
}

@media (max-width: 991px) {

  .preview-page .demo-section .demo-item,
  .preview-page .demo-section-s2 .demo-item {
    margin-bottom: 30px;
  }
}

.preview-page .demo-section .demo-item a,
.preview-page .demo-section-s2 .demo-item a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}

.preview-page .demo-section .demo-item a img,
.preview-page .demo-section-s2 .demo-item a img {
  max-height: 550px;
  object-fit: cover;
  width: 100%;
  object-position: top;
}

.preview-page .demo-section .demo-item a span,
.preview-page .demo-section-s2 .demo-item a span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 177, 98, 0.8);
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  transform: scale(0);
  transition: all 0.5s;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.preview-page .demo-section .demo-item a:hover span,
.preview-page .demo-section-s2 .demo-item a:hover span {
  transform: scale(1);
}

.preview-page .preview-features-area {
  padding-bottom: 90px;
}

@media (max-width: 991px) {
  .preview-page .preview-features-area {
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .preview-page .preview-features-area {
    padding-bottom: 50px;
  }
}

.preview-page .preview-features-area .features-wrap .features-item {
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.preview-page .preview-features-area .features-wrap .features-item .icon {
  width: 110px;
  height: 110px;
  line-height: 110px;
  border: 1px solid #005289;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 30px;
}

.preview-page .preview-features-area .features-wrap .features-item .icon img {
  max-width: 50px;
}

.preview-page .preview-features-area .features-wrap .features-item h3 {
  color: #181B1D;
  font-family: Poppins;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.preview-page .preview-features-area .features-wrap .features-item h3 a {
  color: #181B1D;
}

.preview-page .preview-features-area .features-wrap .features-item h3 a:hover {
  color: #005289;
}

.preview-page .demo-section-s2 {
  border-top: 1px solid #FAF2EE;
}

.preview-page .demo-section-s2 .owl-nav {
  display: none;
}

.preview-page .demo-section-s2 .owl-dots {
  text-align: center;
  bottom: 0px;
  position: absolute;
  width: 100%;
}

.preview-page .demo-section-s2 .owl-dots button {
  border: none;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  border-radius: 10px;
  background: #E2E9F0;
}

@media (max-width: 575px) {
  .preview-page .demo-section-s2 .owl-dots button {
    width: 8px;
    height: 13px;
  }
}

.preview-page .demo-section-s2 .owl-dots button.active {
  background: #ff0000;
  width: 20px;
  height: 20px;
}

@media (max-width: 575px) {
  .preview-page .demo-section-s2 .owl-dots button.active {
    width: 12px;
    height: 12px;
  }
}

.preview-page .demo-section-s2 .inner-active {
  padding-bottom: 60px;
}

@media (max-width: 991px) {
  .preview-page .demo-section-s2 .inner-active {
    padding-bottom: 30px;
  }
}

.preview-page .footer-section .footer-inner {
  text-align: center;
  max-width: 950px;
  margin: 0 auto;
}

.preview-page .footer-section .footer-inner h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .preview-page .footer-section .footer-inner h2 {
    font-size: 40px;
    line-height: 50px;
  }
}

@media (max-width: 991px) {
  .preview-page .footer-section .footer-inner h2 {
    font-size: 35px;
    line-height: 40px;
  }
}

@media (max-width: 575px) {
  .preview-page .footer-section .footer-inner h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

@media (max-width: 450px) {
  .preview-page .footer-section .footer-inner h2 {
    font-size: 22px;
    line-height: 35px;
  }
}

.preview-page .footer-section .footer-inner h2 span {
  color: #ff0000;
}

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

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #ff0000;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #005289;
}

.gr-bg {
  background-image: linear-gradient(to right, rgba(186, 67, 167, 1), rgba(6, 106, 87, 1));
}

.gr-bg-2 {
  background-image: linear-gradient(to right, rgba(6, 106, 87, .3), rgba(186, 67, 167, .3));
  background-color: #000;
}

.gr-bg-3 {
  background-image: linear-gradient(to right, rgba(6, 106, 87, .3), rgba(186, 67, 167, .3));
  background-color: #fff;
}

.bg-2 {
  background-color: #EFF4F9 !important;
}

@media (max-width: 768px) {
  .search-toggle-btn {
    display: none;
  }
}