@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");
body {
  margin: 0;
  font-size: 1rem;
  line-height: 24px;
  overflow-x: hidden !important;
  overflow-y: scroll;
  font-family: "Inter", sans-serif;
  background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  position: relative;
}

p {
  margin: 5px 0 0 0;
  color: #000;
  line-height: 24px;
}

a {
  text-decoration: none;
  transition: all 0.5s;
}
a:hover {
  text-decoration: none;
}

#scrl::-webkit-scrollbar {
  width: 6px;
  background-color: #DB291C;
}

#scrl::-webkit-scrollbar-thumb {
  background-color: #F5F5F5;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

ul {
  padding: 0;
  margin: 0;
}

section {
  padding: 60px 0px;
}
@media (max-width: 991px) {
  section {
    padding: 50px 0px;
  }
}
@media (max-width: 480px) {
  section {
    padding: 40px 0px;
  }
}

.p-m-20 {
  height: 15px;
}

h2 {
  transition: all 0.4s ease-in-out;
  color: #000;
  line-height: 48px;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  text-align: center;
}
h2 span {
  font-weight: 400;
  display: block;
  font-size: 1.5rem;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  h2 {
    font-size: 1.8rem;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  h2 {
    font-size: 1.6rem;
  }
}

.scrollup {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 30px;
  right: 20px;
  display: none;
  text-indent: -9999px;
  z-index: 99999;
  background: url(../images/up-arrow.svg) no-repeat;
}
@media (max-width: 767px) {
  .scrollup {
    width: 40px;
    height: 40px;
  }
}
.scrollup img {
  width: 50px;
  height: 50px;
}
@media (max-width: 767px) {
  .scrollup img {
    width: 40px;
    height: 40px;
  }
}

.form-group,
.form-floating {
  position: relative;
}
.form-group input,
.form-group .form-select,
.form-floating input,
.form-floating .form-select {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  height: 45px;
  padding: 0 20px;
  width: 100%;
  font-size: 1rem;
  transition: all 0.4s ease;
  color: #5a5a59;
  border: 1px solid #ced4da;
}
@media (max-width: 767px) {
  .form-group input,
  .form-group .form-select,
  .form-floating input,
  .form-floating .form-select {
    padding: 0 10px;
    height: 40px;
    font-size: 0.875rem;
  }
}
.form-group input:focus,
.form-group textarea:focus,
.form-group .form-select:focus,
.form-group select:focus,
.form-floating input:focus,
.form-floating textarea:focus,
.form-floating .form-select:focus,
.form-floating select:focus {
  color: #5a5a59;
  outline: 0;
  box-shadow: none;
  border-color: #DB291C;
  transition: all 0.6s ease-in-out;
}
.form-group input:disabled,
.form-group input[readonly],
.form-floating input:disabled,
.form-floating input[readonly] {
  background-color: #DB291C;
}
.form-group textarea,
.form-floating textarea {
  height: 100px;
  padding: 10px 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  resize: none;
  width: 100%;
  font-size: 1rem;
  border: 1px solid #ced4da;
  transition: all 0.4s ease;
}
@media (max-width: 767px) {
  .form-group textarea,
  .form-floating textarea {
    padding: 0 10px;
    font-size: 0.875rem;
  }
}
.form-group ::-moz-placeholder, .form-floating ::-moz-placeholder {
  color: #9c9c99;
  font-weight: 500;
  opacity: 1;
  /* Firefox */
}
.form-group ::placeholder,
.form-floating ::placeholder {
  color: #9c9c99;
  font-weight: 500;
  opacity: 1;
  /* Firefox */
}
.form-group :-ms-input-placeholder,
.form-floating :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #9c9c99;
  font-weight: 500;
}
.form-group ::-ms-input-placeholder,
.form-floating ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #9c9c99;
  font-weight: 500;
}

.modal-content {
  border: 5px solid rgba(253, 238, 238, 0.2);
  background: #fff;
}
.modal-content .close-enquiry .close {
  color: #fff;
}
.modal-content .close {
  background: none;
  border: none;
  font-size: 24px;
  color: #DB291C;
  position: absolute;
  right: 0;
  z-index: 999;
}

.top__nav {
  width: 100%;
  background: #DB291C;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .top__nav {
    display: none;
  }
}
.top__nav .left__side {
  padding: 15px 5px;
  display: flex;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .top__nav .left__side {
    padding: 9px 5px;
  }
}
.top__nav .left__side ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.top__nav .left__side ul li {
  color: #fadcda;
  padding: 0px 10px;
  list-style: none;
  font-size: 0.875rem;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .top__nav .left__side ul li {
    font-size: 0.75rem;
  }
}
.top__nav .left__side ul li a {
  color: #fadcda;
}
.top__nav .left__side ul li::before {
  content: "";
  position: absolute;
  width: 1px;
  background: #ee8181;
  height: 100%;
  left: 0;
}
.top__nav .left__side ul li:first-child::before {
  display: none;
}
.top__nav .left__side ul li img {
  width: 26px;
}
.top__nav .right__side {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.top__nav .right__side ul {
  display: flex;
  flex-wrap: wrap;
}
.top__nav .right__side ul li {
  padding: 0px 8px;
  list-style: none;
  color: #fadcda;
  font-size: 0.875rem;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .top__nav .right__side ul li {
    font-size: 0.75rem;
  }
}
.top__nav .right__side ul li a {
  color: #fadcda;
}
.top__nav .right__side .login {
  background: #87292D;
  padding: 16px 10px;
  color: #fff;
  height: 100%;
  display: flex;
  font-size: 0.875rem;
  align-items: center;
  margin-left: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .top__nav .right__side .login {
    font-size: 0.75rem;
    padding: 16px 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .top__nav .right__side .login {
    padding: 10px 10px;
  }
}

header {
  background: #fff;
  padding: 5px;
  width: 100%;
  position: fixed;
  z-index: 99;
  top: 57px;
  height: 72px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  header {
    height: 64px;
  }
}
@media (max-width: 992px) {
  header {
    height: 55px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  header {
    padding: 10px 20px;
    top: 46px;
  }
}
@media (max-width: 767px) {
  header {
    padding: 10px;
    top: 0;
  }
}
@media (max-width: 992px) {
  header .nav-brand {
    padding: 0px;
  }
}
header .logo {
  background: url(../images/logo.svg);
  display: inline-block;
  width: 260px;
  height: 50px;
  top: 5px;
  position: absolute;
  transition: all 0.4s ease-in-out;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 1400px) and (max-width: 1550px) {
  header .logo {
    width: 230px;
    height: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  header .logo {
    width: 210px;
    height: 48px;
  }
}
@media only screen and (min-width: 991px) and (max-width: 1200px) {
  header .logo {
    width: 256px;
    height: 38px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  header .logo {
    width: 250px;
    height: 38px;
    top: 0;
  }
}
@media (max-width: 767px) {
  header .logo {
    width: 230px;
    height: 38px;
    top: 0;
  }
}
@media (max-width: 480px) {
  header .logo {
    width: 165px;
    height: 32px;
    top: 0px;
  }
}
header .login {
  display: none;
}
@media (max-width: 767px) {
  header .login {
    position: absolute;
    right: 54px;
    top: 0;
    background: #87292D;
    padding: 16px 10px;
    color: #fff;
    display: flex;
    height: 100%;
    font-size: 0.875rem;
    align-items: center;
    margin-top: 6px;
  }
}
@media (max-width: 767px) and (max-width: 480px) {
  header .login {
    font-size: 12px;
    right: 46px;
    padding: 16px 5px;
  }
}

.cbp-af-header.cbp-af-header-shrink {
  background: #DB291C;
  padding: 5px;
  width: 100%;
  position: fixed;
  z-index: 99;
  height: 72px;
  top: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .cbp-af-header.cbp-af-header-shrink {
    height: 64px;
  }
}
@media (max-width: 992px) {
  .cbp-af-header.cbp-af-header-shrink {
    height: 55px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .cbp-af-header.cbp-af-header-shrink {
    padding: 10px 20px;
  }
}
@media (max-width: 767px) {
  .cbp-af-header.cbp-af-header-shrink {
    padding: 10px;
    top: 0;
  }
}
.cbp-af-header.cbp-af-header-shrink .login {
  margin-top: 5px;
  height: auto;
  padding: 5px;
}
.cbp-af-header.cbp-af-header-shrink .nav-toggle:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0.5em 0 0 #fff, 0 1em 0 0 #fff;
}
.cbp-af-header.cbp-af-header-shrink .nav-menu {
  margin-top: 5px;
}
.cbp-af-header.cbp-af-header-shrink .nav-toggle {
  margin-top: -5px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .cbp-af-header.cbp-af-header-shrink .nav-toggle {
    margin-top: -15px;
  }
}
@media (max-width: 480px) {
  .cbp-af-header.cbp-af-header-shrink .nav-toggle {
    right: 0;
    margin-top: -15px;
  }
}
.cbp-af-header.cbp-af-header-shrink .logo {
  background: url(../images/white-logo.svg);
  display: inline-block;
  width: 260px;
  height: 50px;
  top: 5px;
  position: absolute;
  transition: all 0.4s ease-in-out;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 1400px) and (max-width: 1550px) {
  .cbp-af-header.cbp-af-header-shrink .logo {
    width: 230px;
    height: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .cbp-af-header.cbp-af-header-shrink .logo {
    width: 210px;
    height: 48px;
  }
}
@media only screen and (min-width: 991px) and (max-width: 1200px) {
  .cbp-af-header.cbp-af-header-shrink .logo {
    width: 270px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cbp-af-header.cbp-af-header-shrink .logo {
    width: 250px;
    height: 38px;
    top: 0;
  }
}
@media (max-width: 767px) {
  .cbp-af-header.cbp-af-header-shrink .logo {
    width: 230px;
    height: 38px;
    top: 0;
  }
}
@media (max-width: 480px) {
  .cbp-af-header.cbp-af-header-shrink .logo {
    width: 165px;
    height: 32px;
    top: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .cbp-af-header.cbp-af-header-shrink .nav-toggle {
    margin-top: 2px;
  }
}
@media (max-width: 767px) {
  .cbp-af-header.cbp-af-header-shrink .nav-toggle {
    margin-top: 8px;
  }
}
.cbp-af-header.cbp-af-header-shrink .nav-menu > li > a {
  color: #fff;
  padding: 14px 10px;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .cbp-af-header.cbp-af-header-shrink .nav-menu li a {
    padding: 14px 7px;
    font-size: 13px;
  }
}
.cbp-af-header.cbp-af-header-shrink .nav-menu > li.active > a {
  color: #f1b6b2;
}
.cbp-af-header.cbp-af-header-shrink .nav-menu > li.active > a .submenu-indicator-chevron {
  border-color: transparent #afcef2 #afcef2 transparent;
}
.cbp-af-header.cbp-af-header-shrink .submenu-indicator-chevron {
  border-color: transparent #fff #fff transparent;
}
.cbp-af-header.cbp-af-header-shrink:hover .submenu-indicator-chevron {
  border-color: transparent #fff #fff transparent;
}
.cbp-af-header.cbp-af-header-shrink:hover .navigation-portrait .submenu-indicator-chevron {
  border-color: transparent #fff #fff transparent;
}
.cbp-af-header.cbp-af-header-shrink .navigation-portrait .nav-button .search__ico {
  margin-bottom: 5px;
  color: #fff;
}
.cbp-af-header.cbp-af-header-shrink .navigation-portrait .nav-button .box {
  color: #000;
}
.cbp-af-header.cbp-af-header-shrink .navigation-portrait .nav-button .box i {
  color: #DB291C;
}
.cbp-af-header.cbp-af-header-shrink .navigation-portrait .nav-menu > li.active > a {
  color: #DB291C;
}
.cbp-af-header.cbp-af-header-shrink .navigation-portrait .search__icon {
  display: none;
}
.cbp-af-header.cbp-af-header-shrink .navigation-portrait .nav-menu > li.active > a {
  color: #DB291C;
}
.cbp-af-header.cbp-af-header-shrink .navigation-portrait .nav-menu > li.active > a .submenu-indicator-chevron {
  border-color: transparent #FFEDED #FFEDED transparent;
}
.cbp-af-header.cbp-af-header-shrink .navigation-portrait .nav-menu > .focus > a .submenu-indicator-chevron {
  border-color: transparent #DB291C #DB291C transparent;
}
.cbp-af-header.cbp-af-header-shrink .navigation-portrait .nav-dropdown .submenu-indicator .submenu-indicator-chevron {
  border-color: transparent #FFEDED #FFEDED transparent;
}
.cbp-af-header.cbp-af-header-shrink .navigation-portrait .submenu-indicator-chevron {
  border-color: transparent #DB291C #DB291C transparent;
}
.cbp-af-header.cbp-af-header-shrink .navigation-portrait:hover .submenu-indicator-chevron {
  border-color: transparent #DB291C #DB291C transparent;
}
.cbp-af-header.cbp-af-header-shrink .navigation-portrait:hover .navigation-portrait .submenu-indicator-chevron {
  border-color: transparent #DB291C #DB291C transparent;
}
.cbp-af-header.cbp-af-header-shrink .navigation-portrait .nav-menu > li > a {
  color: #000;
  padding: 12px 15px 12px 26px;
}

.desktop_screen {
  display: block;
}
@media (max-width: 992px) {
  .desktop_screen {
    display: none;
  }
}

.mob_screen {
  display: none;
}
@media (max-width: 992px) {
  .mob_screen {
    display: block;
  }
}

.intro {
  height: auto;
  background: #fff;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 75px;
}
.intro .slider__desk {
  display: block;
}
@media (max-width: 540px) {
  .intro .slider__desk {
    display: none;
  }
}
.intro .slider__mob {
  display: none;
}
@media (max-width: 540px) {
  .intro .slider__mob {
    display: block;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .intro {
    margin-top: 70px;
  }
}
@media (max-width: 1200px) {
  .intro {
    height: auto;
    margin-top: 65px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .intro {
    margin-top: 65px;
  }
}
@media (max-width: 767px) {
  .intro {
    margin-top: 64px;
  }
}
@media (max-width: 480px) {
  .intro {
    margin-top: 56px;
  }
}
.intro .slider-caption {
  position: absolute;
  display: flex;
  top: 0;
  left: 5%;
  width: 45%;
  height: 100%;
  justify-content: center;
  flex-direction: column;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .intro .slider-caption {
    width: 40%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .intro .slider-caption {
    width: 50%;
  }
}
@media only screen and (min-width: 480px) and (max-width: 768px) {
  .intro .slider-caption {
    width: 50%;
  }
}
@media (max-width: 540px) {
  .intro .slider-caption {
    width: 85%;
    left: 7%;
  }
}
@media (max-width: 540px) {
  .intro .slider-caption .btn_1 {
    background: #DB291C;
    color: #fff;
  }
}
.intro .slider-caption h2 {
  text-align: left;
  color: #DB291C;
  line-height: 42px;
  font-weight: 800;
  font-size: 2.8rem;
}
@media (max-width: 767px) {
  .intro .slider-caption h2 {
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 540px) and (max-width: 768px) {
  .intro .slider-caption h2 {
    line-height: 26px;
    margin-bottom: 5px;
  }
}
@media (max-width: 540px) {
  .intro .slider-caption h2 {
    line-height: 32px;
    color: #fff;
  }
}
.intro .slider-caption p {
  color: #000;
  font-weight: 500;
  font-size: 1.2rem;
}
@media only screen and (min-width: 540px) and (max-width: 768px) {
  .intro .slider-caption p {
    line-height: 26px;
    margin-bottom: 0px;
  }
}
@media (max-width: 540px) {
  .intro .slider-caption p {
    color: #fff;
  }
}
.intro .owl-carousel {
  margin: 0px;
}
.intro .owl-pagination {
  display: none;
}
.intro .owl-theme .owl-controls .owl-buttons div {
  display: flex;
  align-items: center;
  justify-content: center;
  zoom: 1;
  background: #DB291C;
  margin: 0 5px;
  width: 40px;
  height: 40px;
  padding: 0px;
  text-align: center;
  line-height: 40px;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 480px) {
  .intro .owl-theme .owl-controls .owl-buttons div {
    width: 30px;
    height: 30px;
  }
}
.intro .owl-prev {
  position: absolute;
  right: 86px;
  left: auto;
}
@media (max-width: 767px) {
  .intro .owl-prev {
    right: 53px;
  }
}
.intro .owl-next {
  position: absolute;
  right: 45px;
  left: auto;
}
@media (max-width: 767px) {
  .intro .owl-next {
    right: 20px;
  }
}
.intro .owl-theme .owl-controls,
.intro .products .owl-theme .owl-controls {
  position: absolute;
  width: 100%;
  bottom: 40px;
  margin: 0;
}
.intro .owl-prev::before {
  content: "\f284";
  position: absolute;
  font-family: bootstrap-icons !important;
  font-size: 20px;
  color: #fff;
}
@media (max-width: 480px) {
  .intro .owl-prev::before {
    color: #fff;
  }
}
.intro .owl-next::before {
  content: "\f285";
  position: absolute;
  font-family: bootstrap-icons !important;
  font-size: 20px;
  color: #fff;
}
@media (max-width: 480px) {
  .intro .owl-next::before {
    color: #fff;
  }
}

.services {
  background: #fff;
  width: 100%;
  position: relative;
}
.services .shape__14 {
  position: absolute;
  right: 0;
  bottom: 10%;
}
.services h2 {
  text-align: center;
}
.services .service__bg {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  transition: all 0.4s ease-in-out;
  position: relative;
  background: #f4f4f4;
  padding: 30px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}
.services .service__bg h3 {
  font-size: 1.4rem;
  color: #000;
  font-weight: 700;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .services .service__bg h3 {
    font-size: 1.1rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .services .service__bg h3 {
    font-size: 1.1rem;
  }
}
@media (max-width: 767px) {
  .services .service__bg h3 {
    font-size: 1rem;
  }
}
.services .service__bg .counts {
  transition: all 0.4s ease-in-out;
  position: absolute;
  top: 30px;
  right: 25px;
  color: #ebe3e3;
  font-weight: 800;
  font-size: 3rem;
}
.services .service__bg .icons {
  margin-bottom: 10px;
}
.services .service__bg .icons img {
  width: 60px;
}
.services .service__bg p {
  transition: all 0.4s ease-in-out;
  text-align: left;
  color: #000;
  display: -webkit-box;
  height: 50px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .services .service__bg p {
    height: 38px;
    min-height: 48px;
  }
}
.services .service__bg svg {
  transition: all 0.4s ease-in-out;
  fill: #DB291C;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .services .service__bg svg {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 767px) {
  .services .service__bg svg {
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 480px) {
  .services .service__bg svg {
    width: 45px;
    height: 45px;
  }
}
.services .service__bg:hover {
  background: #DB291C;
}
.services .service__bg:hover .icons img {
  filter: brightness(0) invert(1);
}
.services .service__bg:hover svg {
  fill: #fff;
}
.services .service__bg:hover p {
  color: #fff;
}
.services .service__bg:hover h3 {
  color: #fff;
}
.services .service__bg:hover .btn_2 {
  color: #fff;
}
.services .service__bg:hover .btn_2 span {
  background: #fff;
  margin-right: 10px;
}

.statistics {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background: rgb(255, 237, 237);
  background: linear-gradient(180deg, rgb(255, 237, 237) 0%, rgb(255, 204, 204) 100%);
  padding: 60px 50px 0px 50px;
  margin: 0px 50px;
  position: relative;
}
@media (max-width: 767px) {
  .statistics {
    padding: 40px 15px;
    margin: 0px 20px;
  }
}
.statistics .shape__13 {
  position: absolute;
  left: 3%;
  top: 0;
}
.statistics h2 {
  text-align: left;
}
@media (max-width: 767px) {
  .statistics h2 {
    line-height: 32px;
  }
}
.statistics .statistics_bg {
  display: flex;
  flex-wrap: wrap;
}
.statistics .statistics_bg .boxes {
  transition: all 0.4s ease-in-out;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  width: 50%;
  padding: 20px;
  display: flex;
  align-items: center;
  background: none;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .statistics .statistics_bg .boxes {
    padding: 10px;
  }
}
@media (max-width: 1200px) {
  .statistics .statistics_bg .boxes {
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .statistics .statistics_bg .boxes {
    width: 100%;
  }
}
.statistics .statistics_bg .boxes .icons {
  width: 30%;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .statistics .statistics_bg .boxes .icons {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .statistics .statistics_bg .boxes .icons {
    width: auto;
  }
}
.statistics .statistics_bg .boxes .icons .icon_round {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: #fff;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .statistics .statistics_bg .boxes .icons .icon_round {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 1200px) {
  .statistics .statistics_bg .boxes .icons .icon_round {
    width: 50px;
    height: 50px;
  }
}
.statistics .statistics_bg .boxes .icons .icon_round img {
  width: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .statistics .statistics_bg .boxes .icons .icon_round img {
    width: 30px;
  }
}
@media (max-width: 1200px) {
  .statistics .statistics_bg .boxes .icons .icon_round img {
    width: 30px;
  }
}
.statistics .statistics_bg .boxes .texts {
  width: 70%;
  padding-left: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .statistics .statistics_bg .boxes .texts {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .statistics .statistics_bg .boxes .texts {
    width: auto;
    margin-left: 20px;
  }
}
.statistics .statistics_bg .boxes .texts h2 {
  color: #DB291C;
  font-weight: 800;
  line-height: 30px;
}
@media (max-width: 1200px) {
  .statistics .statistics_bg .boxes .texts h2 {
    font-size: 1.5rem;
  }
}
.statistics .statistics_bg .boxes .texts h5 {
  color: #000;
  font-size: 0.875rem;
  font-weight: 500;
}
.statistics .statistics_bg .boxes:hover {
  background: rgba(255, 255, 255, 0.3294117647);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.achievement {
  width: 100%;
  background: url(../images/shape-2.png) no-repeat left bottom #fff;
  position: relative;
}
.achievement .shape3 {
  position: absolute;
  right: 0;
  bottom: 0;
}
.achievement .outer__boxes {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .achievement .outer__boxes {
    flex-direction: column;
  }
}
.achievement .outer__boxes .certificate_img {
  width: 50%;
}
@media (max-width: 767px) {
  .achievement .outer__boxes .certificate_img {
    width: 100%;
  }
}
.achievement .outer__boxes .certificate {
  border-radius: 0px 20px 20px 0px;
  -webkit-border-radius: 0px 20px 20px 0px;
  -moz-border-radius: 0px 20px 20px 0px;
  -ms-border-radius: 0px 20px 20px 0px;
  -o-border-radius: 0px 20px 20px 0px;
  width: 50%;
  background: url(../images/shape-1.png) no-repeat right bottom #f7f7f7;
  padding: 60px 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
  border: 1px solid #e1d7d7;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .achievement .outer__boxes .certificate {
    padding: 30px 20px;
  }
}
@media (max-width: 767px) {
  .achievement .outer__boxes .certificate {
    width: 100%;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    padding: 30px 20px;
  }
}
.achievement .outer__boxes .certificate h3 {
  font-weight: 700;
  font-size: 1.4rem;
  color: #000;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .achievement .outer__boxes .certificate h3 {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .achievement .outer__boxes .certificate h3 {
    font-size: 1rem;
  }
}
.achievement .owl-carousel {
  margin: 0px;
}
.achievement .owl-pagination {
  display: none;
}
.achievement .owl-theme .owl-controls .owl-buttons div {
  display: inline-block;
  zoom: 1;
  background: none;
  margin: 0 5px;
  width: 40px;
  border-radius: 50%;
  height: 40px;
  padding: 0px;
  text-align: center;
  line-height: 40px;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 580px) {
  .achievement .owl-theme .owl-controls .owl-buttons div {
    background: #F5F5F5;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
.achievement .owl-prev {
  position: absolute;
  right: auto;
  left: -60px;
}
@media (max-width: 580px) {
  .achievement .owl-prev {
    left: 0px;
  }
}
.achievement .owl-next {
  position: absolute;
  right: -60px;
  left: auto;
}
@media (max-width: 580px) {
  .achievement .owl-next {
    right: 0px;
  }
}
.achievement .owl-theme .owl-controls {
  position: absolute;
  width: 100%;
  top: 50%;
  margin: 0;
}
@media (max-width: 480px) {
  .achievement .owl-theme .owl-controls {
    top: 42%;
  }
}
.achievement .owl-prev::before {
  content: "\f284";
  position: absolute;
  font-family: bootstrap-icons !important;
  font-size: 40px;
  left: 9px;
  color: #b9b9b9;
}
@media (max-width: 580px) {
  .achievement .owl-prev::before {
    font-size: 26px;
    left: 1px;
  }
}
.achievement .owl-next::before {
  content: "\f285";
  position: absolute;
  font-family: bootstrap-icons !important;
  font-size: 40px;
  right: 9px;
  color: #b9b9b9;
}
@media (max-width: 580px) {
  .achievement .owl-next::before {
    font-size: 26px;
    right: 1px;
  }
}

.imgnone {
  background-image: none;
}

.testimonials {
  background: url(../images/shape-4.png) repeat-X bottom #f4f4f4;
  position: relative;
}
.testimonials .shape_6 {
  position: absolute;
  right: 0;
  top: 15px;
}
.testimonials .youtube {
  display: flex;
  justify-content: flex-end;
}
.testimonials .youtube p {
  font-size: 1rem;
  color: #000;
}
.testimonials .youtube p i {
  color: #DB291C;
  font-size: 1.4rem;
}
.testimonials .testiboxes_video {
  position: relative;
  margin: 0px 10px;
  background: #e5e3e3;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.testimonials .testiboxes_video img {
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.testimonials .testiboxes_video .video_icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(219, 41, 28, 0.7411764706);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonials .testiboxes_video .video_icon img {
  width: 25px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.testimonials .testiboxes_video .names {
  position: absolute;
  bottom: 0;
  padding: 10px;
  left: 0;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 600;
}
@media (max-width: 767px) {
  .testimonials .testiboxes_video .names {
    font-size: 1rem;
  }
}
.testimonials .testiboxes_video::before {
  border-radius: 0px 0px 15px 15px;
  -webkit-border-radius: 0px 0px 15px 15px;
  -moz-border-radius: 0px 0px 15px 15px;
  -ms-border-radius: 0px 0px 15px 15px;
  -o-border-radius: 0px 0px 15px 15px;
  position: absolute;
  left: 0;
  content: "";
  bottom: 0;
  background: rgb(5, 5, 5);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgb(0, 0, 0) 100%);
  height: 40%;
  width: 100%;
}
.testimonials .testiboxes_text {
  position: relative;
  margin: 0px 10px;
  background: url(../images/shape-5.png) no-repeat left top #e5e3e3;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  padding: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .testimonials .testiboxes_text {
    background-position-x: -25px;
    background-position-y: -20px;
  }
}
@media (max-width: 767px) {
  .testimonials .testiboxes_text {
    background-image: none;
  }
}
.testimonials .testiboxes_text .top_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
@media (max-width: 1400px) {
  .testimonials .testiboxes_text .top_box {
    margin-bottom: 5px;
  }
}
.testimonials .testiboxes_text .top_box .colum_1 {
  width: 20%;
}
.testimonials .testiboxes_text .top_box .colum_1 img {
  width: 80px;
}
@media (max-width: 767px) {
  .testimonials .testiboxes_text .top_box .colum_1 {
    display: none;
  }
}
.testimonials .testiboxes_text .top_box .colum_2 {
  width: 20%;
}
@media (max-width: 767px) {
  .testimonials .testiboxes_text .top_box .colum_2 {
    width: 25%;
  }
}
.testimonials .testiboxes_text .top_box .colum_2 .pic {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.testimonials .testiboxes_text .top_box .colum_2 .pic img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.testimonials .testiboxes_text .top_box .colum_3 {
  width: 60%;
  font-size: 1rem;
  color: #000;
  font-weight: 600;
  padding-left: 5px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .testimonials .testiboxes_text .top_box .colum_3 {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .testimonials .testiboxes_text .top_box .colum_3 {
    width: 75%;
    font-size: 0.875rem;
  }
}
.testimonials .testiboxes_text .para {
  padding: 20px 30px;
  height: 245px;
}
@media (max-width: 1400px) {
  .testimonials .testiboxes_text .para {
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .testimonials .testiboxes_text .para {
    padding: 0px;
    height: auto;
  }
}
.testimonials .owl-carousel {
  margin: 0px;
}
.testimonials .owl-pagination {
  display: none;
}
.testimonials .owl-theme .owl-controls .owl-buttons div {
  display: inline-block;
  zoom: 1;
  background: none;
  margin: 0 5px;
  width: 40px;
  border-radius: 50%;
  height: 40px;
  padding: 0px;
  text-align: center;
  line-height: 40px;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 580px) {
  .testimonials .owl-theme .owl-controls .owl-buttons div {
    background: #F5F5F5;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
.testimonials .owl-prev {
  position: absolute;
  right: auto;
  left: -60px;
}
@media (max-width: 580px) {
  .testimonials .owl-prev {
    left: 0px;
  }
}
.testimonials .owl-next {
  position: absolute;
  right: -60px;
  left: auto;
}
@media (max-width: 580px) {
  .testimonials .owl-next {
    right: 0px;
  }
}
.testimonials .owl-theme .owl-controls {
  position: absolute;
  width: 100%;
  top: 50%;
  margin: 0;
}
@media (max-width: 480px) {
  .testimonials .owl-theme .owl-controls {
    top: 42%;
  }
}
.testimonials .owl-prev::before {
  content: "\f284";
  position: absolute;
  font-family: bootstrap-icons !important;
  font-size: 40px;
  left: 9px;
  color: #b9b9b9;
}
@media (max-width: 580px) {
  .testimonials .owl-prev::before {
    font-size: 26px;
    left: 1px;
  }
}
.testimonials .owl-next::before {
  content: "\f285";
  position: absolute;
  font-family: bootstrap-icons !important;
  font-size: 40px;
  right: 9px;
  color: #b9b9b9;
}
@media (max-width: 580px) {
  .testimonials .owl-next::before {
    font-size: 26px;
    right: 1px;
  }
}

.imgnone {
  background-image: none;
}

.settlement {
  background: url(../images/shape-7.png) no-repeat left bottom #FFEDED;
}
@media (max-width: 480px) {
  .settlement h2 {
    text-align: left;
  }
}
.settlement .resources {
  width: 100%;
}
.settlement .resources ul {
  display: flex;
  flex-wrap: wrap;
}
.settlement .resources ul li {
  list-style: none;
  position: relative;
  padding: 12px 20px 10px 0px;
  width: 33.3333333333%;
  padding-left: 25px;
  height: 70px;
}
@media only screen and (min-width: 767px) and (max-width: 1200px) {
  .settlement .resources ul li {
    width: 50%;
    height: 65px;
  }
}
@media (max-width: 767px) {
  .settlement .resources ul li {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .settlement .resources ul li {
    width: 100%;
    height: auto;
  }
}
.settlement .resources ul li::before {
  content: " \f270";
  position: absolute;
  color: #DB291C;
  left: 0;
  font-family: bootstrap-icons !important;
}
.settlement .resources ul li::after {
  content: "";
  bottom: 0;
  left: 0;
  position: absolute;
  width: 96%;
  border-bottom: 1px solid #cbcbcb;
}

.latest_news {
  background: url(../images/shape-8.svg) no-repeat left bottom #fff;
  padding-bottom: 60px;
  position: relative;
}
.latest_news .shape__9 {
  position: absolute;
  right: 10px;
  top: 0px;
}
.latest_news .newsbtn {
  display: flex;
  justify-content: center;
}
.latest_news .newsbtn .btn_1 {
  color: #000;
}
.latest_news .news__box {
  position: relative;
  width: 100%;
}
.latest_news .news__box .newsimg {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: all 0.4s ease-in-out;
  background: #DB291C;
  position: relative;
  width: 100%;
}
.latest_news .news__box .newsimg img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: all 0.4s ease-in-out;
}
.latest_news .news__box .news_content {
  width: 96%;
  transform: translateY(-30px);
  background: #fff;
  padding: 15px;
  margin-left: 4%;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.latest_news .news__box .news_content p {
  transition: all 0.4s ease-in-out;
  text-align: left;
  color: #000;
  display: -webkit-box;
  height: 50px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
  font-weight: 700;
  color: #000;
}
@media (max-width: 480px) {
  .latest_news .news__box .news_content p {
    height: 38px;
    min-height: 48px;
  }
}
.latest_news .news__box .news_content .date {
  color: #DB291C;
  font-size: 0.875rem;
}
.latest_news .news__box:hover .newsimg img {
  opacity: 0.5;
}

.newsletter {
  background: url(../images/flags.png) no-repeat right center #DB291C;
}
@media (max-width: 767px) {
  .newsletter {
    background-image: none;
  }
}
.newsletter .about {
  padding-left: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .newsletter .about {
    padding-left: 20px;
  }
}
@media (max-width: 992px) {
  .newsletter .about {
    padding-left: 0px;
  }
}
.newsletter .about h2 {
  text-align: left;
  color: #fff;
  line-height: 34px;
}
.newsletter .about p {
  color: #fff;
}
.newsletter .about .large_font {
  padding-left: 20px;
  margin: 20px 0px;
  position: relative;
}
.newsletter .about .large_font p {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
}
.newsletter .about .large_font::before {
  position: absolute;
  height: 100%;
  content: "";
  left: 0;
  width: 3px;
  background: #fff;
}
.newsletter .about .btn_1 {
  border: 3px solid #fff;
  color: #fff;
  margin-top: 15px;
}
.newsletter .about .btn_1 i {
  transition: all 0.4s ease-in-out;
  margin-left: 10px;
}
.newsletter .about .btn_1:hover i {
  margin-left: 15px;
}

.form_bg {
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  background: #fff;
  padding: 30px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .form_bg {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .form_bg {
    padding: 20px;
  }
}
.form_bg h2 {
  text-align: left;
  color: #DB291C;
  line-height: 34px;
}
@media (max-width: 480px) {
  .form_bg h2 {
    font-size: 1.6rem;
    line-height: 28px;
  }
}
.form_bg h2 span {
  color: #000;
}
@media (max-width: 480px) {
  .form_bg h2 span {
    font-size: 1.6rem;
  }
}
.form_bg .btn_1 {
  color: #fff;
  background: #DB291C;
}
.form_bg .btn_1 i {
  transition: all 0.4s ease-in-out;
  margin-left: 10px;
}
.form_bg .btn_1:hover i {
  margin-left: 15px;
}

.eligibility {
  background: url(../images/shape-10.png) no-repeat bottom left, url(../images/shape-11.png) no-repeat right bottom #f1ebeb;
  position: relative;
  padding: 40px 0px;
}
.eligibility h2 {
  text-align: left;
  line-height: 36px;
}
@media (max-width: 767px) {
  .eligibility h2 {
    font-size: 1.2rem;
  }
}
.eligibility h2 span {
  display: inline-block;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .eligibility h2 span {
    font-size: 1.2rem;
  }
}
.eligibility h5 {
  color: #000;
  font-size: 0.875rem;
  margin-top: 10px;
}
.eligibility h5 span {
  font-weight: 700;
  color: #DB291C;
}
.eligibility .btn_box {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .eligibility .btn_box {
    justify-content: flex-start;
  }
}
.eligibility .btn_box .btn_1 {
  color: #fff;
  background: #DB291C;
  border: 2px solid #DB291C;
}
@media (max-width: 767px) {
  .eligibility .btn_box .btn_1 {
    margin-top: 0px;
  }
}
.eligibility .btn_box .btn_1:hover {
  background: #fff;
  color: #DB291C;
}

.footer {
  position: relative;
  background: url(../images/shape-12.png) no-repeat left bottom;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .footer {
    font-size: 0.875rem;
  }
}
@media (max-width: 480px) {
  .footer {
    background-size: 200px;
  }
}
@media (max-width: 480px) {
  .footer p {
    font-size: 0.875rem;
  }
}
.footer .protect {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .footer .protect {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer .protect .logo {
  position: relative;
  margin-right: 15px;
}
@media (max-width: 767px) {
  .footer .protect .logo {
    margin-right: 0px;
    margin-bottom: 20px;
  }
}
.footer .protect .logo img {
  width: 60px;
}
.footer .protect .content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .footer .protect .content h4 {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .footer .protect .content h4 {
    font-size: 0.875rem;
  }
}
.footer .protect .content p {
  margin-top: 0px;
}
.footer h4 {
  font-weight: 700;
  font-size: 1rem;
  color: #000;
  position: relative;
}
@media (max-width: 767px) {
  .footer h4 {
    margin-top: 15px;
  }
}
.footer h4::before {
  position: absolute;
  content: "";
  left: 0;
  top: -10px;
  width: 30px;
  height: 4px;
  background: #DB291C;
}
.footer p a {
  color: #000;
}
.footer p i {
  color: #DB291C;
}
.footer .line {
  width: 100%;
  height: 1px;
  margin: 40px 0px;
  background: #d4d1d1;
}
@media (max-width: 767px) {
  .footer .line {
    margin: 15px 0px;
  }
}
.footer .social_icons {
  margin: 20px 0px;
  display: flex;
  justify-content: center;
  display: flex;
}
@media (max-width: 767px) {
  .footer .social_icons {
    justify-content: center;
  }
}
.footer .social_icons li {
  padding: 0px 14px;
  list-style: none;
  font-size: 26px;
}
.footer .social_icons li a {
  color: #8C8C8C;
}
.footer .social_icons li a:hover {
  color: #DB291C;
}
.footer .social_icons li:first-child {
  padding-left: 0px;
}
.footer .ftr__nav {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footer .ftr__nav li {
  list-style: none;
  padding: 5px 15px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .footer .ftr__nav li {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .footer .ftr__nav li {
    font-size: 0.875rem;
    padding: 2px 10px;
  }
}
.footer .ftr__nav li a {
  color: #000;
}
.footer .ftr__nav li a:hover {
  color: #DB291C;
}
.footer .ftr__nav li:last-child::before {
  display: none;
}
.footer .ftr__nav li::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  right: -5px;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #DB291C;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.footer .powered {
  margin: 30px 0px;
  color: #000;
}
@media (max-width: 480px) {
  .footer .powered {
    font-size: 0.875rem;
  }
}
.footer .powered a {
  color: #DB291C;
}
@media (max-width: 480px) {
  .footer .powered a {
    font-size: 0.875rem;
  }
}

.btn-whatsapp-pulse {
  background: #25d366;
  color: white;
  position: fixed;
  left: 20px;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 30px;
  z-index: 99;
  width: 50px;
  height: 50px;
  padding: 35px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
@media (max-width: 767px) {
  .btn-whatsapp-pulse {
    width: 40px;
    height: 40px;
    padding: 15px;
    font-size: 20px;
  }
}
.btn-whatsapp-pulse:hover {
  color: white;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}
.btn-whatsapp-pulse-border {
  bottom: 120px;
  right: 20px;
  animation-play-state: paused;
}
.btn-whatsapp-pulse-border::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 25px;
  border: 5px solid #25d366;
  opacity: 0.75;
  animation-name: pulse-border;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

@keyframes pulse-border {
  0% {
    padding: 25px;
    opacity: 0.75;
  }
  75% {
    padding: 50px;
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.payonline {
  border-radius: 5px 5px 0px 0px;
  -webkit-border-radius: 5px 5px 0px 0px;
  -moz-border-radius: 5px 5px 0px 0px;
  -ms-border-radius: 5px 5px 0px 0px;
  -o-border-radius: 5px 5px 0px 0px;
  display: block;
  position: fixed;
  z-index: 10;
  background: #FFEDED;
  color: #DB291C;
  font-weight: 500;
  padding: 5px 15px;
  bottom: 36%;
  transform: rotate(-90deg);
  right: -46px;
  font-size: 1rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.inner__banner {
  padding: 80px 0px;
  background: url(../images/inner-banner.png) no-repeat center center;
  margin-top: 75px;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .inner__banner {
    margin-top: 70px;
  }
}
@media (max-width: 1200px) {
  .inner__banner {
    height: auto;
    margin-top: 65px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .inner__banner {
    margin-top: 65px;
  }
}
@media (max-width: 767px) {
  .inner__banner {
    padding: 50px 0px;
    margin-top: 64px;
  }
}
@media (max-width: 480px) {
  .inner__banner {
    margin-top: 56px;
  }
}
.inner__banner h3 {
  font-weight: 700;
  color: #DB291C;
  text-align: left;
  background: rgba(255, 255, 255, 0.64);
  padding: 10px 20px;
  display: inline-block;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  position: relative;
}
@media (max-width: 480px) {
  .inner__banner h3 {
    font-size: 1.5rem;
    padding: 8px 10px;
  }
}
.inner__banner h3::before {
  position: absolute;
  right: -10px;
  bottom: -10px;
  content: "";
  width: 20px;
  height: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  background: #DB291C;
}

.service__banner {
  padding: 80px 0px;
  height: 50vh;
  margin-top: 75px;
  width: 100%;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: 1;
}
.service__banner::before {
  background: rgba(0, 0, 0, 0.168627451);
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media (max-width: 767px) {
  .service__banner .logo img {
    width: 150px;
  }
}
@media (max-width: 480px) {
  .service__banner .logo img {
    width: 80px;
  }
}
.service__banner .right_box {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .service__banner .right_box {
    justify-content: flex-start;
    margin-top: 5px;
  }
}
.service__banner .right_box ul {
  display: flex;
  flex-direction: column;
}
.service__banner .right_box ul li {
  transition: all 0.4s ease-in-out;
  list-style: none;
  background: #DB291C;
  padding: 10px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin: 5px 0px;
}
@media (max-width: 1200px) {
  .service__banner .right_box ul li {
    font-size: 0.875rem;
    font-weight: 500;
    margin: 3px 0px;
  }
}
@media (max-width: 480px) {
  .service__banner .right_box ul li {
    padding: 5px 10px;
  }
}
.service__banner .right_box ul li:hover {
  background: #fff;
  color: #DB291C;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .service__banner {
    margin-top: 70px;
  }
}
@media (max-width: 1200px) {
  .service__banner {
    height: auto;
    margin-top: 65px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service__banner {
    margin-top: 65px;
  }
}
@media (max-width: 767px) {
  .service__banner {
    padding: 50px 0px;
    margin-top: 64px;
  }
}
@media (max-width: 480px) {
  .service__banner {
    margin-top: 56px;
  }
}
.service__banner h3 {
  font-weight: 700;
  color: #fff;
  text-align: left;
  display: inline-block;
  position: relative;
}
@media (max-width: 480px) {
  .service__banner h3 {
    font-size: 1.5rem;
    padding: 8px 10px;
  }
}

.nav {
  background: #F5F5F5;
  padding: 5px 0px;
}
.nav ul {
  display: flex;
  flex-wrap: wrap;
}
.nav ul li {
  padding: 5px 14px;
  list-style: none;
  color: #000;
  position: relative;
}
@media (max-width: 767px) {
  .nav ul li {
    line-height: 12px;
  }
}
@media (max-width: 1200px) {
  .nav ul li {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .nav ul li {
    font-size: 0.75rem;
  }
}
.nav ul li a {
  color: #000;
}
.nav ul li::after {
  position: absolute;
  content: "\f285";
  font-family: bootstrap-icons !important;
  color: #DB291C;
  padding: 0px 6px;
}
.nav ul li:last-child::after {
  display: none;
}

.inner__container {
  position: relative;
  /* Tab button styles */
}
.inner__container .pagination li {
  color: #525050;
}
.inner__container .pagination li a {
  color: #525050;
}
.inner__container .pagination .active > .page-link,
.inner__container .pagination .page-link.active {
  z-index: 3;
  color: var(--bs-pagination-active-color);
  background-color: #DB291C;
  border-color: #DB291C;
}
.inner__container table tr td {
  padding: 0.5rem 0.5rem;
}
.inner__container table tr:first-child {
  background: #f1d8d6;
}
.inner__container table tr {
  padding: 0.5rem 0.5rem;
  border-bottom: 1px solid #dee2e6;
}
.inner__container table tr td {
  padding: 0.5rem 0.5rem;
}
.inner__container table tr {
  padding: 0.5rem 0.5rem;
  border-bottom: 1px solid #dee2e6;
}
.inner__container table {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  margin: 15px 0px;
}
.inner__container .lists ul {
  margin: 10px 0px;
}
.inner__container .lists ul li {
  transition: all 0.4s ease-in-out;
  padding: 2px 0px;
  list-style: none;
  color: #000;
  font-weight: 400;
  position: relative;
  padding-left: 25px;
}
.inner__container .lists ul li::before {
  content: "\f134";
  position: absolute;
  color: #DB291C;
  left: 0;
  font-family: bootstrap-icons !important;
}
.inner__container .full_width {
  display: flex;
  align-items: center;
}
.inner__container .full_width .author {
  min-width: 100px;
  padding-right: 30px;
}
.inner__container .full_width .author img {
  border: 2px solid #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  width: 100px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.inner__container .full_width .name h4 {
  color: #000;
  font-size: 2rem;
  font-weight: 600;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner__container .full_width .name h4 {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .inner__container .full_width .name h4 {
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  .inner__container .full_width .name h4 {
    font-size: 1.2rem;
  }
}
.inner__container .tabs {
  margin: 2rem 0;
}
.inner__container .tablink {
  background: none;
  color: black;
  padding: 5px 20px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
.inner__container .tablink.active {
  border-bottom: 1px solid #DB291C;
}
.inner__container .tabcontent h4 {
  color: #000;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .inner__container .tabcontent h4 {
    font-size: 1.2rem;
  }
}
.inner__container .published {
  display: flex;
  width: 100%;
  margin-top: 10px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .inner__container .published {
    flex-direction: column;
    align-items: flex-start;
  }
}
.inner__container .published .left_side {
  display: flex;
}
@media (max-width: 992px) {
  .inner__container .published .left_side {
    margin-bottom: 1.2rem;
  }
}
.inner__container .published .left_side .pulisher {
  width: 75px;
}
@media (max-width: 480px) {
  .inner__container .published .left_side .pulisher {
    width: 50px;
  }
}
.inner__container .published .left_side .pulisher img {
  width: 60px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
@media (max-width: 480px) {
  .inner__container .published .left_side .pulisher img {
    width: 40px;
  }
}
.inner__container .published .left_side .content h5 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 20px;
  margin: 0;
  color: #101010;
}
@media (max-width: 480px) {
  .inner__container .published .left_side .content h5 {
    line-height: 18px;
    font-size: 0.875rem;
  }
}
.inner__container .published .left_side .content h5 span {
  color: #7f7b7b;
  display: block;
  font-weight: 500;
  font-size: 0.813rem;
}
.inner__container .published .left_side .content h5 span .year {
  color: #1C2A3A;
  display: inline-block;
}
.inner__container .published .shareon {
  display: flex;
}
.inner__container .published .shareon .share__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 60px;
  border: 1px solid #E6E6E6;
  margin-left: 8px;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.inner__container .published .shareon .share__icon:first-child {
  margin-left: 0;
}
.inner__container .published .shareon .share__icon i {
  color: #000;
}
.inner__container .published .shareon .share__icon:hover {
  background: #DB291C;
  border-color: #DB291C;
}
.inner__container .published .shareon .share__icon:hover i {
  color: #fff;
}
.inner__container .published .shareon .share__total {
  color: #A4A4A4;
  font-size: 12px;
  line-height: 120%;
  letter-spacing: -0.36px;
  margin-left: 13px;
}
.inner__container .published .shareon .share__total span {
  display: block;
  color: #030542;
  font-size: 15px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.45px;
}
.inner__container ul {
  margin: 10px 0px;
}
.inner__container ul li {
  transition: all 0.4s ease-in-out;
  padding: 2px 0px;
  list-style: none;
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  position: relative;
  padding-left: 25px;
}
.inner__container ul li::before {
  content: "\f134";
  position: absolute;
  color: #DB291C;
  left: 0;
  top: 1px !important;
  font-family: bootstrap-icons !important;
}
.inner__container .ticklist {
  width: 100% !important;
}
.inner__container .ticklist ul {
  margin: 10px 0px;
}
.inner__container .ticklist ul li {
  transition: all 0.4s ease-in-out;
  padding: 2px 0px;
  list-style: none;
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  position: relative;
  padding-left: 25px;
}
.inner__container .ticklist ul li::before {
  content: "\f272" !important;
  position: absolute;
  color: #DB291C;
  left: 0;
  top: 1px !important;
  font-family: bootstrap-icons !important;
}
.inner__container .diamond {
  width: 100% !important;
}
.inner__container .diamond ul {
  margin: 10px 0px;
}
.inner__container .diamond ul li {
  transition: all 0.4s ease-in-out;
  padding: 2px 0px;
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  position: relative;
  padding-left: 25px;
}
.inner__container .diamond ul li::before {
  content: "\f3e6" !important;
  position: absolute;
  color: #DB291C;
  left: 0;
  top: 1 !important;
  font-family: bootstrap-icons !important;
}
.inner__container .flower2 {
  width: 100% !important;
}
.inner__container .flower2 ul {
  margin: 10px 0px;
}
.inner__container .flower2 ul li {
  transition: all 0.4s ease-in-out;
  padding: 2px 0px;
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  position: relative;
  padding-left: 25px;
}
.inner__container .flower2 ul li::before {
  content: "\f3ce" !important;
  position: absolute;
  color: #DB291C;
  left: 0;
  top: 1px !important;
  font-family: bootstrap-icons !important;
}
.inner__container .diamond-half {
  width: 100% !important;
}
.inner__container .diamond-half ul {
  margin: 10px 0px;
}
.inner__container .diamond-half ul li {
  transition: all 0.4s ease-in-out;
  padding: 2px 0px;
  list-style: none;
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  position: relative;
  padding-left: 25px;
}
.inner__container .diamond-half ul li::before {
  content: "\f2f0" !important;
  position: absolute;
  color: #DB291C;
  left: 0;
  top: 1px !important;
  font-family: bootstrap-icons !important;
}
.inner__container h1 {
  text-align: left;
  color: #DB291C;
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .inner__container h1 {
    font-size: 1.4rem;
  }
}
@media (max-width: 992px) {
  .inner__container h1 {
    font-size: 1.3rem;
  }
}
@media (max-width: 767px) {
  .inner__container h1 {
    font-size: 1.4rem;
  }
}
.inner__container h1 span {
  font-weight: 400;
  color: #000;
  display: block;
}
@media (max-width: 767px) {
  .inner__container h1 span {
    font-size: 1.3rem;
  }
}
.inner__container h2 {
  text-align: left;
  color: #DB291C;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .inner__container h2 {
    font-size: 1.4rem;
  }
}
@media (max-width: 992px) {
  .inner__container h2 {
    font-size: 1.3rem;
  }
}
@media (max-width: 767px) {
  .inner__container h2 {
    font-size: 1.2rem;
  }
}
.inner__container h1 span {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .inner__container h1 span {
    font-size: 1.3rem;
  }
}
.inner__container h3 {
  font-size: 1.8rem;
  color: #000;
  font-weight: 700;
  line-height: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner__container h3 {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .inner__container h3 {
    font-size: 1.2rem;
  }
}
.inner__container h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: 10px 0px 5px 0px;
  color: #101010;
}
.inner__container h5 span {
  color: #000;
}
@media (max-width: 767px) {
  .inner__container h5 {
    font-size: 1rem;
  }
}
.inner__container h6 {
  font-size: 1rem;
  font-weight: 500;
  margin: 10px 0px 5px 0px;
  line-height: 25px;
}
@media (max-width: 767px) {
  .inner__container h6 {
    font-size: 1rem;
  }
}
.inner__container .image_box {
  width: 100%;
  display: flex;
  margin: 15px 0px;
  justify-content: center;
}
.inner__container .search_boxes {
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  background: #fff;
  padding: 20px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-bottom: 20px;
}
.inner__container .search_boxes p {
  transition: all 0.4s ease-in-out;
  text-align: left;
  color: #000;
  display: -webkit-box;
  height: 50px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .inner__container .search_boxes p {
    height: 38px;
    min-height: 48px;
  }
}
.inner__container .noresult {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.inner__container .noresult img {
  width: 350px;
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .inner__container .noresult img {
    width: 200px;
  }
}
.inner__container .gallery-box {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  background: #FFEDED;
  border: 3px solid #fff;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}
.inner__container .gallery-box img {
  transition: all 0.4s ease-in-out;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.inner__container .gallery-box .heading {
  position: absolute;
  width: 100%;
  padding: 10px;
  z-index: 9;
  bottom: 0;
  background: #DB291C;
  color: #fff;
}
.inner__container .gallery-box a i {
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  position: absolute;
  bottom: 35px;
  right: 20px;
  font-size: 30px;
  color: #DB291C;
  z-index: 9;
  text-align: center;
  width: 50px;
  height: 50px;
  background: #FFEDED;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner__container .gallery-box:hover {
  background: #000;
}
.inner__container .gallery-box:hover img {
  opacity: 0.8;
}
.inner__container .service__bg {
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  transition: all 0.4s ease-in-out;
  padding: 20px;
  border: 1px solid #f4c0bc;
  background: #FFEDED;
}
.inner__container .service__bg h3 {
  color: #DB291C;
  font-weight: 700;
  font-size: 1rem;
}
.inner__container .service__bg p {
  transition: all 0.4s ease-in-out;
  text-align: left;
  color: #000;
  display: -webkit-box;
  height: 50px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
@media (max-width: 480px) {
  .inner__container .service__bg p {
    height: 38px;
    min-height: 48px;
  }
}
.inner__container .service__bg .btn_3 {
  font-weight: 500;
}
.inner__container .service__bg:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
.inner__container .contact__bg {
  background: #F5F5F5;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid #dfdfdf;
  padding: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner__container .contact__bg {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .inner__container .contact__bg {
    padding: 20px;
  }
}
.inner__container .contact__bg h5 {
  text-align: center;
}
.inner__container .contact__bg p {
  text-align: center;
}
.inner__container .address {
  width: 100%;
  padding: 0px 20px;
}
@media (max-width: 767px) {
  .inner__container .address {
    padding: 0px;
  }
}
.inner__container .address .colums {
  background: #fff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  min-height: 220px;
}
@media (max-width: 1200px) {
  .inner__container .address .colums {
    min-height: auto;
  }
}
.inner__container .address .colums h5 span {
  color: #DB291C;
}
.inner__container .call_mail {
  display: flex;
  margin: 20px 0px;
  justify-content: space-around;
}
@media (max-width: 992px) {
  .inner__container .call_mail {
    flex-direction: column;
  }
}
.inner__container .call_mail li {
  padding: 10px;
  list-style: none;
  font-weight: 600;
  font-size: 1.2rem;
  border: 1px solid #e1e1e1;
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .inner__container .call_mail li {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .inner__container .call_mail li {
    font-size: 1rem;
  }
}
.inner__container .call_mail li a {
  color: #000;
}
.inner__container .call_mail li span {
  display: block;
  font-weight: 400;
  font-size: 0.875rem;
  margin-bottom: 10px;
}
.inner__container .call_mail li span img {
  width: 35px;
}
@media (max-width: 480px) {
  .inner__container .call_mail li span img {
    width: 25px;
    margin-bottom: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1400px) {
  .inner__container .call_mail li span {
    font-size: 0.75rem;
  }
}
.inner__container .about_bg {
  background: #F5F5F5;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid #dfdfdf;
  padding: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner__container .about_bg {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .inner__container .about_bg {
    padding: 20px;
  }
}
.inner__container .legal {
  background: #FFEDED;
}
.inner__container .owl_img img {
  border: 2px solid #dddddd;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.inner__container .lists {
  width: 100%;
  margin-top: 10px;
}
.inner__container .lists ul {
  display: flex;
  flex-wrap: wrap;
}
.inner__container .lists ul li {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  display: flex;
  background: #eff7fd;
  list-style: none;
  padding: 0;
  margin: 5px 5px;
  padding-left: 0px;
  border: 2px solid #e5dbdb;
}
.inner__container .lists ul li a {
  padding: 10px 15px;
  color: #000;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner__container .lists ul li a {
    padding: 5px 10px;
  }
}
@media (max-width: 767px) {
  .inner__container .lists ul li a {
    font-size: 0.875rem;
    padding: 5px 10px;
  }
}
.inner__container .lists ul li a:hover {
  background: #DB291C;
  color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner__container .lists ul li {
    margin: 3px 3px;
  }
}
@media (max-width: 767px) {
  .inner__container .lists ul li {
    margin: 2px 5px;
  }
}
.inner__container .lists ul li::before {
  display: none;
}
.inner__container .side_lists {
  margin-bottom: 20px;
}
.inner__container .side_lists ul {
  display: flex;
  width: 100%;
  flex-direction: column;
  margin: 0px;
}
.inner__container .side_lists ul li {
  transition: all 0.4s ease-in-out;
  list-style: none;
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
  background: #F5F5F5;
  padding-left: 0px;
  border-bottom: 1px solid #e7e4e4;
}
.inner__container .side_lists ul li a {
  transition: all 0.4s ease-in-out;
  padding: 10px;
  color: #000;
}
.inner__container .side_lists ul li a:hover {
  background: #7f7e7e;
  color: #fff;
}
.inner__container .side_lists ul li::before {
  display: none;
}
.inner__container .side_lists2 {
  margin-bottom: 20px;
}
.inner__container .side_lists2 ul {
  display: flex;
  width: 100%;
  flex-direction: column;
  margin: 0px;
}
.inner__container .side_lists2 ul li {
  transition: all 0.4s ease-in-out;
  list-style: none;
  display: flex;
  line-height: 20px;
  font-size: 0.875rem;
  background: #F5F5F5;
  padding: 10px;
  border-bottom: 1px solid #e7e4e4;
}
.inner__container .side_lists2 ul li .img_box {
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  width: 60px;
}
.inner__container .side_lists2 ul li .img_box img {
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  width: 60px;
  border: 3px solid #fff;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}
.inner__container .side_lists2 ul li .content {
  padding-left: 8px;
  position: relative;
}
.inner__container .side_lists2 ul li .content a {
  transition: all 0.4s ease-in-out;
  font-size: 0.875rem;
  color: #000;
  line-height: 20px;
  display: -webkit-box;
  height: 60px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inner__container .side_lists2 ul li .content2 {
  padding-right: 8px;
  position: relative;
}
.inner__container .side_lists2 ul li .content2 a {
  transition: all 0.4s ease-in-out;
  font-size: 0.875rem;
  color: #000;
  line-height: 20px;
  display: -webkit-box;
  height: 60px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inner__container .side_lists2 ul li::before {
  display: none;
}
.inner__container .side_lists2 ul li:hover {
  background: #7f7e7e;
  color: #fff;
}
.inner__container .side_lists2 ul li:hover a {
  color: #fff;
}
.inner__container .side_lists3 {
  margin-bottom: 20px;
}
.inner__container .side_lists3 ul {
  display: flex;
  width: 100%;
  flex-direction: column;
  margin: 0px;
}
.inner__container .side_lists3 ul li {
  transition: all 0.4s ease-in-out;
  list-style: none;
  display: flex;
  line-height: 20px;
  font-size: 0.875rem;
  background: none;
  padding: 1.5rem 0;
  background: none;
  border-bottom: 1px solid #e7e4e4;
}
@media (max-width: 767px) {
  .inner__container .side_lists3 ul li {
    padding: 1rem 0;
  }
}
@media (max-width: 480px) {
  .inner__container .side_lists3 ul li {
    flex-direction: column;
  }
}
.inner__container .side_lists3 ul li .img_box {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  width: 200px;
}
@media (max-width: 767px) {
  .inner__container .side_lists3 ul li .img_box {
    width: 120px;
  }
}
@media (max-width: 480px) {
  .inner__container .side_lists3 ul li .img_box {
    margin-bottom: 1rem;
  }
}
.inner__container .side_lists3 ul li .img_box img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  width: 200px;
}
@media (max-width: 767px) {
  .inner__container .side_lists3 ul li .img_box img {
    width: 120px;
  }
}
.inner__container .side_lists3 ul li .content {
  padding-left: 1.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .inner__container .side_lists3 ul li .content {
    padding-left: 1rem;
  }
}
@media (max-width: 480px) {
  .inner__container .side_lists3 ul li .content {
    padding-left: 0;
  }
}
.inner__container .side_lists3 ul li .content p {
  transition: all 0.4s ease-in-out;
  font-size: 1rem;
  color: #000;
  line-height: 24px;
  display: -webkit-box;
  height: 95px;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0;
}
@media (max-width: 767px) {
  .inner__container .side_lists3 ul li .content p {
    font-size: 0.875rem;
    height: 75px;
    -webkit-line-clamp: 3;
  }
}
.inner__container .side_lists3 ul li .content .btn_4 {
  margin-top: 0.5rem;
  background: #DB291C;
  padding: 0.5rem 1rem;
}
.inner__container .side_lists3 ul li::before {
  display: none;
}
.inner__container .headindgs {
  background: #FFEDED;
  padding: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  border-left: 4px solid #DB291C;
}
.inner__container .eligibility {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background: #F5F5F5 url(../images/shade1.png) no-repeat right bottom;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #dfdfdf;
}
.inner__container .eligibility .btn_1 {
  font-size: 0.813rem;
}
.inner__container .eligibility .btn_1 i {
  padding-left: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner__container .eligibility .btn_1 {
    font-size: 0.75rem;
  }
}
.inner__container .eligibility .logo img {
  width: 200px;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .inner__container .eligibility .logo img {
    width: 150px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .inner__container .eligibility .logo img {
    width: 120px;
  }
}
.inner__container .eligibility h5 {
  color: #868686;
  font-size: 0.813rem;
  margin: 20px 0px;
  font-weight: 400;
}
.inner__container .eligibility h5 span {
  font-weight: 600;
  font-size: 1.4rem;
  color: #DB291C;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .inner__container .eligibility h5 span {
    font-size: 1.2rem;
  }
}
.inner__container .listing ul {
  margin: 10px 0px;
}
.inner__container .listing ul li {
  transition: all 0.4s ease-in-out;
  padding: 2px 0px;
  list-style: none;
  color: #000;
  font-weight: 400;
  position: relative;
  padding-left: 25px;
}
.inner__container .listing ul li::before {
  content: "\f134";
  position: absolute;
  color: #DB291C;
  left: 0;
  font-family: bootstrap-icons !important;
}
.inner__container .video_bg {
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  padding: 20px;
  border: 1px solid #F5F5F5;
  background: #f4f0f0;
}
.inner__container .news__box {
  position: relative;
  width: 100%;
}
.inner__container .news__box .newsimg {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: all 0.4s ease-in-out;
  background: #DB291C;
  position: relative;
  width: 100%;
}
.inner__container .news__box .newsimg img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: all 0.4s ease-in-out;
}
.inner__container .news__box .news_content {
  width: 96%;
  transform: translateY(-30px);
  background: #fff;
  padding: 15px;
  margin-left: 4%;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}
.inner__container .news__box .news_content p {
  transition: all 0.4s ease-in-out;
  text-align: left;
  color: #000;
  display: -webkit-box;
  height: 50px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
  font-weight: 700;
  color: #000;
}
@media (max-width: 480px) {
  .inner__container .news__box .news_content p {
    height: 38px;
    min-height: 48px;
  }
}
.inner__container .news__box .news_content .date {
  color: #DB291C;
  font-size: 0.875rem;
}
.inner__container .news__box:hover .newsimg img {
  opacity: 0.5;
}
.inner__container .calender {
  background: #FFEDED;
  padding: 5px 10px;
  display: inline-block;
  margin-bottom: 10px;
}
.inner__container .calender i {
  color: #DB291C;
}
.inner__container .message__form {
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  background: #F5F5F5;
  padding: 30px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .inner__container .message__form {
    padding: 15px;
  }
}
.inner__container .message__form h5 {
  text-align: center;
}
.inner__container .message__form .btn_1 {
  color: #fff;
  background: #DB291C;
}
.inner__container .message__form .btn_1 i {
  transition: all 0.4s ease-in-out;
  margin-left: 10px;
}
.inner__container .message__form .btn_1:hover i {
  margin-left: 15px;
}

.assesment {
  width: 100%;
  display: flex;
  align-items: center;
  height: 100vh;
  margin-top: 75px;
  padding: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .assesment {
    margin-top: 70px;
  }
}
@media (max-width: 1200px) {
  .assesment {
    margin-top: 65px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .assesment {
    margin-top: 65px;
  }
}
@media (max-width: 767px) {
  .assesment {
    margin-top: 64px;
  }
}
@media (max-width: 480px) {
  .assesment {
    margin-top: 56px;
  }
}
@media (max-width: 767px) {
  .assesment {
    flex-direction: column;
    height: auto;
  }
}
.assesment .left_side {
  display: flex;
  padding: 30px;
  width: 50%;
  height: 100%;
  justify-content: center;
  flex-direction: column;
  -o-object-fit: cover;
     object-fit: cover;
  background: url(../images/migrate_img.jpg) no-repeat;
  background-size: cover;
}
.assesment .left_side h2 {
  text-align: left;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 500;
  text-shadow: -1px 2px 2px rgba(0, 0, 0, 0.46);
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .assesment .left_side h2 {
    font-size: 2rem;
    line-height: 42px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .assesment .left_side h2 {
    font-size: 1.8rem;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  .assesment .left_side h2 {
    font-size: 1.5rem;
    line-height: 26px;
  }
}
.assesment .left_side h2 span {
  font-weight: 800;
  font-size: 2.5rem;
  display: inline-block;
  text-shadow: -1px 2px 2px rgba(0, 0, 0, 0.46);
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .assesment .left_side h2 span {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .assesment .left_side h2 span {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .assesment .left_side h2 span {
    font-size: 1.5rem;
  }
}
.assesment .left_side h3 {
  text-align: left;
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
  margin-top: 20px;
  text-shadow: -1px 2px 2px rgba(0, 0, 0, 0.46);
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .assesment .left_side h3 {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .assesment .left_side h3 {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .assesment .left_side h3 {
    font-size: 1.3rem;
  }
}
.assesment .left_side .logos {
  position: absolute;
  left: 20px;
  top: 20px;
}
.assesment .left_side .logos img {
  width: 220px;
}
@media (max-width: 480px) {
  .assesment .left_side .logos img {
    width: 180px;
  }
}
@media (max-width: 767px) {
  .assesment .left_side {
    width: 100%;
    height: 80vh;
    padding: 100px 20px 50px 20px;
  }
}
@media (max-width: 480px) {
  .assesment .left_side {
    width: 100%;
    height: auto;
    padding: 100px 20px 50px 20px;
  }
}
.assesment .right_side {
  width: 50%;
  padding: 20px;
  height: 100%;
  background: url(../images/shape-14.png) no-repeat right bottom #FFEDED;
  display: flex;
  align-items: center;
  justify-content: center;
}
.assesment .right_side .formbg {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background-color: #fff;
  padding: 30px;
  width: 80%;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .assesment .right_side .formbg {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .assesment .right_side .formbg {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .assesment .right_side .formbg {
    padding: 20px;
  }
}
.assesment .right_side .formbg .form-groups {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 767px) {
  .assesment .right_side .formbg .display_block {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .assesment .right_side .formbg .mb3 {
    margin-bottom: 10px;
  }
}
.assesment .right_side .formbg label {
  white-space: nowrap;
  font-weight: 600;
  padding: 0 8px 0 8px;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .assesment .right_side .formbg label {
    font-size: 14px;
  }
}
.assesment .right_side .formbg .form-check-label {
  font-size: 0.813rem;
  font-weight: 400;
}
.assesment .right_side .formbg .Inputcoaching {
  border: none !important;
  border-bottom: 1px solid #000 !important;
  border-radius: 0 !important;
  cursor: pointer;
  padding: 0 5px !important;
  font-size: 16px;
  height: 17px !important;
  min-width: none;
  max-width: none;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .assesment .right_side .formbg .Inputcoaching {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .assesment .right_side .formbg .Inputcoaching {
    font-size: 14px;
  }
}
.assesment .right_side .formbg .Inputcoaching:focus, .assesment .right_side .formbg .form-select:focus {
  outline: 0 !important;
}
.assesment .right_side .formbg .form-select:focus {
  box-shadow: none !important;
  border: none !important;
}
.assesment .right_side .formbg .form-select {
  min-width: 70px;
  max-width: 250px !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  padding: 0 5px !important;
  outline: none;
  cursor: pointer;
  background-color: transparent;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .assesment .right_side .formbg .form-select {
    font-size: 0.875rem;
  }
  .assesment .right_side .formbg .form-select .Inputcoaching {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .assesment .right_side .formbg .form-select {
    font-size: 0.875rem;
  }
}
.assesment .right_side .formbg h3 {
  font-size: 1.5rem;
  color: #000;
  font-weight: 700;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .assesment .right_side .formbg h3 {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .assesment .right_side .formbg h3 {
    font-size: 1rem;
  }
}
.assesment .right_side .formbg .btn_1 {
  color: #fff;
  background: #DB291C;
  width: 100%;
  justify-content: center;
}
.assesment .right_side .formbg .btn_1 i {
  transition: all 0.4s ease-in-out;
  margin-left: 10px;
}
.assesment .right_side .formbg .btn_1:hover i {
  margin-left: 15px;
}
.assesment .right_side .formbg .freeconsult img {
  width: 50px;
}
.assesment .right_side .formbg .freeconsult .content {
  padding-left: 1.5rem;
}
.assesment .right_side .formbg .freeconsult .content h4 {
  font-size: 1.25rem;
  color: #000;
  font-weight: 600;
}
.assesment .right_side .formbg .freeconsult .content h4 span {
  display: block;
  color: #DB291C !important;
  font-weight: 400;
  font-size: 1.05rem;
}
.assesment .right_side .formbg .freeconsult .content h4 span a {
  color: #DB291C !important;
}
@media (max-width: 767px) {
  .assesment .right_side {
    width: 100%;
    height: auto;
    padding: 50px 20px;
  }
}

.copy-message {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  font-size: 14px;
  z-index: 9999;
}

.copy-message.visible {
  opacity: 1;
  visibility: visible;
}

.trigger-div {
  display: inline-block;
  background-color: #fff;
  color: white;
  cursor: pointer;
  position: relative;
}

.popup {
  display: none;
  /* Hidden by default */
  position: absolute;
  background-color: white;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #ddd;
  padding: 10px;
  z-index: 100;
  width: 228px;
  padding: 15PX;
  top: calc(100% + 15px);
  left: calc(50% - 110px);
  border: 1px solid #E6E6E6;
  border-radius: 10px;
  box-shadow: 5px 15px 20px 0px rgba(11, 12, 22, 0.07);
  z-index: 1;
  transition: all 0.2s;
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.popup .share__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.64px;
  margin-bottom: 16px;
}
.popup .copylink {
  width: 100%;
  display: flex;
  align-items: center;
  border-top: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
  color: #4A4A4A;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.56px;
  text-decoration: none;
  cursor: pointer;
  padding: 12px 0px;
}
.popup .copylink i {
  padding-right: 0.2rem;
}
.popup .shares {
  display: flex;
  padding: 12px 0px;
  flex-wrap: wrap;
}
.popup .shares .share__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 60px;
  border: 1px solid #E6E6E6;
  margin: 2px;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.popup .shares .share__icon i {
  color: #000;
}
.popup .shares .share__icon:hover {
  background: #DB291C;
  border-color: #DB291C;
}
.popup .shares .share__icon:hover i {
  color: #fff;
}
.popup::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: #fff;
  border-top: 1px solid #E6E6E6;
  border-right: 1px solid #E6E6E6;
  transform: rotate(-45deg);
  position: absolute;
  top: -7px;
  left: 107px;
}

.btn_1 {
  transition: all 0.4s ease-in-out;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  background: none;
  padding: 8px 15px;
  align-self: flex-start;
  display: flex;
  border: 3px solid #DB291C;
  cursor: pointer;
  font-weight: 500;
  align-items: center;
  color: #000;
  margin-top: 10px;
}
@media (max-width: 992px) {
  .btn_1 {
    padding: 5px 10px;
  }
}
@media (max-width: 767px) {
  .btn_1 {
    font-size: 0.938rem;
  }
}
.btn_1 svg {
  transition: all 0.4s ease-in-out;
  padding-left: 8px;
  width: 50px;
  height: 17px;
}
.btn_1:hover {
  border: 3px solid #DB291C;
}
.btn_1:hover svg {
  padding-left: 12px;
}

.btn_2 {
  transition: all 0.4s ease-in-out;
  color: #000;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0;
  background: none;
  display: flex;
  border: none;
  align-items: center;
  justify-content: center;
}
.btn_2 span {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #FFEDED;
  margin-right: 5px;
}

.btn_3 {
  transition: all 0.4s ease-in-out;
  border: none;
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  padding: 0px;
  background: none;
}
.btn_3 i {
  transition: all 0.4s ease-in-out;
  color: #DB291C;
}
.btn_3:hover i {
  padding-left: 10px;
}

.btn_4 {
  transition: all 0.4s ease-in-out;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border: none;
  color: #fff;
  padding: 3px 10px;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 5px;
  background: #000;
}
.btn_4:hover {
  letter-spacing: 0.5px;
}

/*owl theme start */
.carousel-control-prev {
  left: 0;
  font-size: 0px;
}

.carousel-control-next {
  right: 0;
  font-size: 0px;
}

.owl-item {
  display: flex;
  height: auto !important;
}

.owl-carousel {
  position: relative;
  width: 100%;
  float: left;
  margin: 30px 0 0;
}
.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight {
  transition: height 0.5s ease-in-out;
}
.owl-carousel .owl-item {
  float: left;
  padding: 0;
  transform: translate3d(0, 0, 0);
}

.owl-controls {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.owl-controls .owl-buttons div {
  cursor: pointer;
  display: none;
}
.owl-controls .owl-page {
  cursor: pointer;
  display: none;
}

.owl-theme .owl-controls {
  margin-top: 35px;
  text-align: center;
  margin: 0 0 0;
  width: 100%;
  float: left;
}
.owl-theme .owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
}
.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 15px;
  height: 15px;
  margin: 5px 2px;
  background: #d4d2d2;
  border: #fff 1px solid;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.owl-theme .owl-controls .owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #fff;
  padding: 2px 10px;
  font-size: 12px;
  border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.owl-theme .owl-controls .owl-page.active span {
  background: #959597;
  border: #959597 1px solid;
}
.owl-theme .owl-controls.clickable .owl-page:hover span {
  background: #959597;
  border: #959597 1px solid;
}
.owl-theme .owl-page.active span {
  background: #a4a1a1;
  border: #a4a1a1 1px solid;
}

.owl-goDown-out {
  animation: scaleToFade 0.7s ease both;
}

.owl-goDown-in {
  transition: all 0.4s ease-in-out;
  animation: goDown 0.6s ease both;
}

.owl-fade-out {
  z-index: 10;
  transition: all 0.4s ease-in-out;
  animation: fadeOut 0.7s both ease;
}

.owl-fade-in {
  transition: all 0.4s ease-in-out;
  animation: fadeIn 0.7s both ease;
}
@keyframes empty {
  0% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes scaleToFade {
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}
@keyframes goDown {
  from {
    transform: translateY(-100%);
  }
}
.navigation {
  width: 100%;
  position: relative;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navigation * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.align-to-right-mob {
  float: right;
  display: none !important;
}
@media (max-width: 1006px) {
  .align-to-right-mob {
    display: block !important;
  }
}

.navigation-portrait .nav-menu > li span {
  font-size: 0;
}
.navigation-portrait .nav-toggle {
  display: block;
}
.navigation-portrait .align-to-left .nav-menu > li span {
  display: none;
}
.navigation-portrait .dropdown {
  width: 100% !important;
}
.navigation-portrait .btn1 {
  padding: 4px 15px;
}
.navigation-portrait .nav-menus-wrapper {
  width: 340px;
  height: 100%;
  top: 0;
  left: -400px;
  position: fixed;
  background-color: #fff;
  z-index: 20000;
  overflow: scroll;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition-duration: 0.8s;
  transition-timing-function: ease;
}
.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-right {
  left: auto;
  right: -400px;
}
.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-open {
  left: 0;
}
.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-right.nav-menus-wrapper-open {
  left: auto;
  right: 0;
}
.navigation-portrait .nav-menus-wrapper-close-button {
  display: block;
}
.navigation-portrait .nav-menu {
  width: 100%;
}
.navigation-portrait .nav-menu > li {
  width: 100%;
  position: relative;
  border-top: solid 1px #f0f0f0;
}
.navigation-portrait .nav-menu > li:last-child {
  border-bottom: solid 1px #f0f0f0;
}
.navigation-portrait .nav-menu > li > a {
  width: 100%;
  height: auto;
  padding: 12px 15px 12px 20px;
  color: #000;
}
.navigation-portrait .nav-menu.nav-menu-social {
  width: 100%;
  text-align: center;
}
.navigation-portrait .nav-menu.nav-menu-social > li {
  width: auto;
}
.navigation-portrait .nav-menu.nav-menu-social > li > a {
  padding: 15px;
}
.navigation-portrait .submenu-indicator {
  width: 54px;
  height: 44px;
  margin-top: 0;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  z-index: 20000;
}
.navigation-portrait .submenu-indicator-chevron {
  position: absolute;
  top: 18px;
  left: 24px;
}
.navigation-portrait .submenu-indicator.submenu-indicator-up {
  transform: rotate(-180deg);
}
.navigation-portrait .nav-search {
  height: 48px;
  padding: 0 10px;
  margin-right: 52px;
  margin-bottom: 10px;
}
.navigation-portrait .nav-search-button {
  width: 50px;
  height: 48px;
  line-height: 46px;
  font-size: 22px;
}
.navigation-portrait .nav-search-inner {
  height: 48px;
}
.navigation-portrait .nav-search-inner input[type=text] {
  height: 48px;
  font-size: 18px;
  line-height: 48px;
}
.navigation-portrait .nav-search-inner input[type=search] {
  height: 48px;
  font-size: 18px;
  line-height: 48px;
}
.navigation-portrait .nav-search-close-button {
  top: 10px;
  right: 14px;
}
.navigation-portrait .nav-button {
  margin: 0px 10px;
  width: calc(100% - 12px);
  flex-wrap: wrap;
}
.navigation-portrait .nav-button .search__icon,
.navigation-portrait .nav-button .box {
  width: 100%;
  margin-bottom: 5px;
}
.navigation-portrait .nav-text {
  width: calc(100% - 52px);
  margin: 12px 26px 0;
}
.navigation-portrait .nav-text + ul {
  margin-top: 15px;
}
.navigation-portrait .nav-dropdown {
  width: 100%;
  position: static;
  left: 0;
}
.navigation-portrait .nav-dropdown > li > a {
  font-size: 0.875rem;
  padding: 12px 20px 12px 20px;
}
.navigation-portrait .nav-dropdown > li > ul > li > a {
  background: #ac1e15;
  padding-left: 26px;
  font-size: 0.813rem;
}
.navigation-portrait .nav-dropdown > li > ul > li > ul > li > a {
  background: #8f180f;
  padding-left: 32px;
  font-size: 0.75rem;
}
.navigation-portrait .nav-dropdown > li > ul > li > ul > li > ul > li > a {
  background: #6f110a;
  padding-left: 38px;
  font-size: 0.688rem;
}
.navigation-portrait .nav-dropdown > li > ul > li > ul > li > ul > li > ul > li > a {
  background: #550c07;
  padding-left: 110px;
}
.navigation-portrait .nav-dropdown .submenu-indicator {
  right: 0;
  top: 0;
}
.navigation-portrait .nav-dropdown .submenu-indicator .submenu-indicator-chevron {
  transform: rotate(45deg);
}
.navigation-portrait .nav-dropdown-horizontal .nav-dropdown-horizontal {
  border-top: none;
}
.navigation-portrait .nav-dropdown-horizontal > li {
  width: 100%;
}
.navigation-portrait .nav-dropdown-horizontal .submenu-indicator {
  height: 42px;
  top: 0;
  transform: rotate(0deg);
}
.navigation-portrait .nav-dropdown-horizontal .submenu-indicator.submenu-indicator-up {
  transform: rotate(-180deg);
}

.navigation-fixed-wrapper {
  width: 100%;
  left: 0;
  z-index: 19998;
  will-change: opacity;
}
.navigation-fixed-wrapper .navigation {
  margin-right: auto;
  margin-left: auto;
}

.navigation-fixed-wrapper.fixed {
  position: fixed !important;
  animation: fade 0.5s;
}

.navigation-fixed-placeholder {
  width: 100%;
  display: none;
}

.navigation-fixed-placeholder.navigation-fixed-placeholder.visible {
  display: block;
}

.navigation-hidden {
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  position: absolute;
  top: -9999px;
}
.navigation-hidden .nav-header {
  display: none;
}
.navigation-hidden .nav-search {
  display: none;
}

.align-to-right {
  float: right;
}

.nav-header {
  float: left;
}

.nav-brand {
  padding: 0 10px;
  text-decoration: none !important;
}

.nav-logo > img {
  height: 48px;
  margin: 11px auto;
  padding: 0 15px;
  float: left;
}
.nav-logo:focus > img {
  outline: initial;
}

.nav-toggle {
  width: 30px;
  height: 30px;
  padding: 6px 2px 0;
  position: absolute;
  top: 50%;
  margin-top: 0px;
  right: 15px;
  display: none;
  cursor: pointer;
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .nav-toggle {
    margin-top: 4px;
  }
}
@media (max-width: 767px) {
  .nav-toggle {
    margin-top: 8px;
  }
}
@media (max-width: 480px) {
  .nav-toggle {
    right: 0px;
  }
}
.nav-toggle:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #DB291C;
  border-radius: 10px;
  box-shadow: 0 0.5em 0 0 #DB291C, 0 1em 0 0 #DB291C;
}

.nav-menus-wrapper-close-button {
  width: 30px;
  height: 40px;
  margin: 10px 7px;
  display: none;
  float: right;
  color: #70798b;
  font-size: 26px;
  cursor: pointer;
}

.nav-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: normal;
  font-size: 0;
  transition: all 0.4s ease-in-out;
}
.nav-menu > li {
  text-align: left;
  float: left;
  transition: all 0.4s ease-in-out;
}
.nav-menu > li > a {
  transition: all 0.4s ease-in-out;
  padding: 20px 10px;
  display: inline-block;
  position: relative;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: #000;
  transition: color 0.3s, background 0.3s;
}
.nav-menu > li > a > i {
  width: 18px;
  height: 16px;
  line-height: 16px;
  transform: scale(1.4);
}
.nav-menu > li > a > [class*=ion-] {
  width: 18px;
  height: 16px;
  line-height: 16px;
  transform: scale(1.4);
  width: 16px;
  display: inline-block;
  transform: scale(1.8);
}
.nav-menu > li:hover {
  transition: all 0.4s ease-in-out;
}
.nav-menu > li:hover > a {
  color: #DB291C;
  transition: all 0.4s ease-in-out;
}
.nav-menu > li:hover > a .submenu-indicator-chevron {
  border-color: transparent #DB291C #DB291C transparent;
}
.nav-menu > li.active {
  transition: all 0.4s ease-in-out;
}
.nav-menu > li.active > a {
  transition: all 0.4s ease-in-out;
  color: #DB291C;
}
.nav-menu > li.focus {
  transition: all 0.4s ease-in-out;
}
.nav-menu > li.focus > a {
  color: #DB291C;
  transition: all 0.4s ease-in-out;
}
.nav-menu > .active > a .submenu-indicator-chevron {
  border-color: transparent #DB291C #DB291C transparent;
}
.nav-menu > .focus > a .submenu-indicator-chevron {
  border-color: transparent #DB291C #DB291C transparent;
}

.nav-menu.nav-menu-centered {
  text-align: center;
}
.nav-menu.nav-menu-centered > li {
  float: none;
}

.nav-menu.nav-menu-left {
  text-align: left;
}
.nav-menu.nav-menu-left > li {
  float: none;
}

.nav-menu + .nav-menu > li:first-child {
  border-top: none;
}

.nav-menu.nav-menu-social > li {
  text-align: center;
  float: none;
  border: none !important;
}
.nav-menu.nav-menu-social > li > a > [class*=ion-] {
  font-size: 12px;
}
.nav-menu.nav-menu-social > li > a > .fa {
  font-size: 14px;
}

.submenu-indicator {
  margin-left: 6px;
  margin-top: 6px;
  float: right;
  transition: all 0.3s;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .submenu-indicator {
    margin-top: 5px;
  }
}

.submenu-indicator-chevron {
  height: 6px;
  width: 6px;
  display: block;
  border-style: solid;
  border-width: 0 2px 2px 0;
  border-color: transparent #DB291C #DB291C transparent;
  transform: rotate(45deg);
  transition: border 0.3s;
}

.nav-overlay-panel {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  display: none;
  z-index: 19999;
}

.no-scroll {
  touch-action: none;
  overflow-x: hidden;
}

.nav-search {
  width: 100%;
}
.nav-search > form {
  width: 100%;
  height: 100%;
  padding: 0 auto;
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
  z-index: 99;
}

.nav-search-button {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  width: 50px;
  height: 50px;
  margin-right: 15px;
  display: flex;
  background: #FFEDED;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid #FFEDED;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .nav-search-button {
    width: 30px;
    height: 30px;
    margin-right: 5px;
  }
  .nav-search-button i {
    font-size: 20px;
  }
}

.nav-search-icon {
  width: 14px;
  height: 14px;
  margin: 2px 8px 8px 4px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  color: #70798b;
  text-align: left;
  text-indent: -9999px;
  border: 2px solid;
  border-radius: 50%;
  transform: rotate(-45deg);
  transition: color 0.3s;
}
.nav-search-icon:after {
  content: "";
  pointer-events: none;
}
.nav-search-icon:before {
  content: "";
  pointer-events: none;
  width: 2px;
  height: 11px;
  top: 11px;
  position: absolute;
  left: 50%;
  border-radius: 0 0 1px 1px;
  box-shadow: inset 0 0 0 32px;
  transform: translateX(-50%);
}

.nav-search-inner {
  width: 70%;
  height: 70px;
  margin: auto;
  display: table;
}
.nav-search-inner input[type=text] {
  height: 70px;
  width: 100%;
  margin: 0;
  padding: 0 12px;
  font-size: 26px;
  text-align: center;
  color: #70798b;
  outline: none;
  line-height: 70px;
  border: none;
  background-color: transparent;
  transition: all 0.3s;
}
.nav-search-inner input[type=search] {
  height: 70px;
  width: 100%;
  margin: 0;
  padding: 0 12px;
  font-size: 26px;
  text-align: center;
  color: #70798b;
  outline: none;
  line-height: 70px;
  border: none;
  background-color: transparent;
  transition: all 0.3s;
}

.nav-search-close-button {
  width: 28px;
  height: 28px;
  display: block;
  position: absolute;
  right: 20px;
  top: 20px;
  line-height: normal;
  color: #70798b;
  font-size: 20px;
  cursor: pointer;
  text-align: center;
}

.nav-button {
  margin: 0;
  padding: 0px 14px;
  align-items: center;
  display: flex;
  color: #DB291C;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: opacity 0.3s;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .nav-button {
    padding: 14px 5px;
  }
}
.nav-button .box {
  padding: 3px;
  margin-left: 5px;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .nav-button .box {
    padding: 0px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .nav-button .box img {
    width: 30px;
  }
}
.nav-button .search__icon {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  width: 50px;
  height: 50px;
  margin-right: 15px;
  display: flex;
  background: #FFEDED;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid #FFEDED;
}
.nav-button .search__icon i {
  color: #000;
}

.nav-text {
  margin: 25px 15px;
  display: inline-block;
  color: #70798b;
  font-size: 14px;
}

.nav-dropdown {
  min-width: 180px;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  list-style: none;
  z-index: 98;
  white-space: nowrap;
}
.nav-dropdown .nav-dropdown {
  left: 100%;
}
.nav-dropdown > li {
  width: 100%;
  float: left;
  clear: both;
  position: relative;
  text-align: left;
}
.nav-dropdown > li > a {
  width: 100%;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2784313725);
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  color: #fff;
  float: left;
  background: #DB291C;
  transition: color 0.3s, background 0.3s;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .nav-dropdown > li > a {
    padding: 8px 20px !important;
  }
}
@media only screen and (min-width: 900px) and (max-width: 1200px) {
  .nav-dropdown > li > a {
    padding: 8px 20px !important;
  }
}
.nav-dropdown > li:hover > a {
  background: #c42116;
  color: #fff;
}
.nav-dropdown > li:hover > a .submenu-indicator-chevron {
  border-color: transparent #fff #fff transparent;
}
.nav-dropdown > li > .nav-dropdown-left {
  left: auto;
  right: 100%;
}
.nav-dropdown > li.focus > a {
  color: #fff;
}
.nav-dropdown .submenu-indicator {
  right: 15px;
  top: 14px;
  position: absolute;
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .nav-dropdown .submenu-indicator {
    top: 10px;
  }
}
.nav-dropdown .submenu-indicator .submenu-indicator-chevron {
  transform: rotate(-45deg);
  border-color: transparent #FFEDED #FFEDED transparent;
}
.nav-dropdown > .focus > a .submenu-indicator-chevron {
  border-color: transparent #FFEDED #FFEDED transparent;
}

.nav-dropdown.nav-dropdown-left {
  right: 0;
}

.navigation-landscape .nav-dropdown.nav-dropdown-left > li > a {
  text-align: right;
}
.navigation-landscape .nav-dropdown.nav-dropdown-left .submenu-indicator {
  left: 10px;
}
.navigation-landscape .nav-dropdown.nav-dropdown-left .submenu-indicator .submenu-indicator-chevron {
  transform: rotate(135deg);
}

.nav-dropdown-horizontal {
  width: 100%;
  left: 0;
  background-color: #fdfdfd;
  border-top: solid 1px #f0f0f0;
}
.nav-dropdown-horizontal .nav-dropdown-horizontal {
  width: 100%;
  top: 100%;
  left: 0;
}
.nav-dropdown-horizontal > li {
  width: auto;
  clear: none;
  position: static;
}
.nav-dropdown-horizontal > li > a {
  position: relative;
}
.nav-dropdown-horizontal .submenu-indicator {
  height: 18px;
  top: 11px;
  transform: rotate(90deg);
}

@media only screen and (min-width: 1400px) and (max-width: 1500px) {
  .nav-menu li a {
    font-size: 13px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .nav-menu li a {
    padding: 20px 10px;
    font-size: 13px;
  }
}
@media only screen and (min-width: 900px) and (max-width: 1200px) {
  .nav-menu li a {
    padding: 10px 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .nav-menu li a {
    padding: 8px 15px;
  }
}/*# sourceMappingURL=main.css.map */