@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Rajdhani:wght@300;400;500;600;700&display=swap");

:root {
  --white: #fff;
  --black: #000;
  --primary: #ff2042;
  --secondary: #333333;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: "DM Sans";
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  color: #111111;
  margin: 0;
  font-family: "DM Sans";
}

h1,
h2,
h3 {
  color: #222d35;
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
}

.subHead {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.8px;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.img {
  perspective: none;
  overflow: hidden;
  transform-style: preserve-3d;
}

.img img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow;
  display: block;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

body.loading {
  overflow: hidden;
  height: 100vh;
}

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: start;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 11113;
}

.preLoader .counter {
  color: var(--white);
  font-size: 15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  position: absolute;
  bottom: 0rem;
  right: 5rem;
}

.preLoader .bar {
  height: 20%;
  width: 100vw;
  background-color: var(--primary);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background-color: var(--primary);
  font-size: 0.875rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  padding: 1rem 1.688rem;
  line-height: normal;
  font-family: "DM Sans";
  box-shadow: 0 -2px 0 rgba(0 0 0 / 15%);
}

/* NAV HEADER CSS */

header {
  background-color: #fff;
  margin: 0 auto;
  width: 100%;
  padding: 0.5rem 0;
  transition: 0.3s ease-in-out;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-nav {
  align-items: center;
  justify-content: space-between;
  gap: 39px;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1.125rem;
  color: #333333;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0 0;
  display: inline-block;
  font-family: "Barlow Condensed";
  position: relative;
}

.navbar-nav .nav-item .nav-link::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 0;
  background: var(--primary);
  bottom: 1px;
}

.navbar-nav .nav-item .nav-link:hover::before {
  width: 100%;
  transition: 0.6s ease;
}

/* !NAV HEADER CSS */

/* MAIN HERO SLIDER CSS */

.main-slider {
  height: 910px;
}

.homeSlider.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
  overflow: hidden;
}

.homeSlider .swiper-pagination {
  bottom: 8rem;
  width: fit-content;
  left: 18rem;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
  width: 4.35rem;
  height: 4.35rem;
  font-size: 1rem;
  color: #fff;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.28);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.homeSlider .swiper-button-next {
  right: 1rem;
}

.homeSlider .swiper-button-prev {
  left: 1rem;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
  background: var(--white);
  color: var(--black);
}

.homeSlider .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  display: inline-block;
  margin: 0 0.5rem !important;
  opacity: 1;
  border: 1px solid var(--white);
  background: transparent;
}

.homeSlider .swiper-pagination-bullet-active {
  background: var(--white);
  position: relative;
}

.homeSlider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.main-slider h1 {
  margin: 0;
  color: var(--white);
  font-size: 5.625rem;
  line-height: 1;
  font-weight: 600;
  text-transform: capitalize;
}

.main-slider p {
  color: var(--white);
  font-weight: 500;
  line-height: 1.5;
  margin: 1.063rem 0 2.313rem;
  font-size: 1.5rem;
  width: 80%;
}

/* !MAIN HERO SLIDER CSS */
.collapse .form-inline {
  gap: 20px;
}

.collapse .form-inline .search {
  color: #333333;
}

/* pagination */
.main-slider .swiper-pagination {
  position: absolute;
  left: 50px;
  top: 40%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: 2;
  width: fit-content;
  height: fit-content;
}

.main-slider .swiper-pagination span {
  all: unset;
  display: flex;
  align-items: center;
  color: #ffffff80;
  font-size: 14px;
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 10px;
}

.main-slider .swiper-pagination span::after {
  content: "";
  height: 1px;
}

.main-slider .swiper-pagination .swiper-pagination-bullet-active {
  color: #ffffff;
  font-weight: 500;
}

.main-slider .swiper-pagination .swiper-pagination-bullet-active::after {
  background-color: #ffffff;
  width: 58px;
}

/* About section */
.about_content h2 {
  font-size: 3rem;
  font-weight: 600;
  color: var(--black);
  margin: 0.625rem 0 0.725rem;
}

.about_content p + p {
  margin-top: 22px;
}

.about_content .themeBtn {
  margin-top: 25px;
  padding: 1rem 2.188rem;
}

.about_content p {
  width: 95%;
}

.about_img {
  display: flex;
  position: relative;
  align-items: end;
}

.about_img img:last-child {
  margin-left: auto;
  margin-bottom: 30px;
}

.aboutimg1 {
  position: absolute;
}

/* life section */
.life {
  padding: 7.5rem 0;
  background: url(../images/life.webp) no-repeat center / cover fixed;
  height: 930px;
}

.life_head {
  text-align: center;
  margin-bottom: 22px;
}

.life_head h4 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.7625rem;
  color: #fc9e2d;
  text-transform: uppercase;
}

.life_head h3 {
  font-weight: 600;
  font-size: 3.625rem;
  color: var(--white);
}

.life_box figure .life_content {
  position: absolute;
  bottom: 32px;
  left: 30px;
}

.life_content h3 {
  font-weight: 600;
  color: var(--white);
  font-size: 1.875rem;
  text-transform: uppercase;
  line-height: 1;
}

.life_box figure .life_content p {
  color: var(--white);
  margin-top: 9px;
  line-height: 1.5;
}

/* life box hover effect */
.life_box {
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.life_box figure {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.life_box img {
  transition: transform 0.5s ease;
  display: block;
}

.life_box .life_content {
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.life_box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.life_box:hover img {
  transform: scale(1.08);
}

.life_box:hover .life_content {
  transform: translateY(-5px);
  opacity: 1;
}

/* Watch Now Section */

figure.waxcthfig {
  position: relative;
  /* z-index: 11; */
}

.wacthicon {
  position: absolute;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.875rem;
  display: flex;
  top: 119px;
  left: 0;
  right: 0;
}

figure.waxcthfig video {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.watchhead {
  text-align: center;
  margin-bottom: 2rem;
}

.watchhead h3 {
  font-size: 42px;
  font-weight: 600;
  color: #222d35;
  letter-spacing: -0.5px;
  font-family: "Rajdhani";
}

.watchhead h4 {
  font-size: 15px;
  font-weight: 600;
  color: #c3002f;
  text-transform: uppercase;
  position: relative;
}

.watchhead h4::before {
  position: absolute;
  content: "";
  background: #c3002f;
  width: 40px;
  height: 1px;
  left: 43%;
  top: 50%;
}

.wacthicon a {
  background: #fff;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c3002f;
  font-size: 1.25rem;
  z-index: 0;
}

/* News Section */
.news {
  background-color: #f9f9f9;
  padding: 6.875rem 0 6.25rem;
  font-family: "Rajdhani", sans-serif;
}

.news_head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 50px;
}

.happy_head h3,
.news_head h4 {
  color: #c3002f;
  text-transform: uppercase;
  position: relative;
  padding-left: 50px;
  font-size: 0.938rem;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 9px;
}

.news_head h4::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  background-color: #c3002f;
  left: 0;
  top: 45%;
}

.news_head h3 {
  color: #222d35;
  text-transform: none;
  letter-spacing: -0.5px;
  font-size: 2.625rem;
  font-weight: 600;
  font-family: "Rajdhani";
}

.news_head a {
  padding: 15px 37px 15px 68px;
  background: linear-gradient(to right, #fea832, #f51639);
  color: var(--white);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
  position: relative;
}

.news_head a::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 1px;
  background-color: #fff;
  left: 40px;
  top: 45%;
}

.news_img {
  overflow: hidden;
  position: relative;
}

.news_img .date {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #c3002f;
  padding: 8px 15px;
}

.news_img .date h4 {
  font-size: 2.125rem;
  letter-spacing: 1.5px;
  color: var(--white);
  font-weight: 500;
  line-height: 1;
  margin: 0;
}

.news_img .date h5 {
  font-size: 1.125rem;
  letter-spacing: 1.5px;
  color: var(--white);
  font-weight: 500;
  margin: 0;
}

.admin {
  background-color: #fff;
  width: 318px;
  padding: 26px 25px 20px;
  margin-left: auto;
  position: relative;
  margin-top: -50px;
}

.admin h6 {
  color: #606060;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.admin h6 i {
  color: #c3002f;
}

.admin h3 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin: 13px 0 17px;
}

.admin .blog {
  position: relative;
  padding-left: 50px;
  font-size: 0.938rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c3002f;
  overflow: hidden;
  display: inline-block;
  transition: all 0.3s ease;
}

.admin .blog::before {
  content: "";
  position: absolute;
  top: 42%;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: #c3002f;
  transform: translateY(-50%);
  transition: width 0.3s ease;
}

/* new box hover effect */
.news_box {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.news_box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.news_box .news_img img {
  transition: transform 0.5s ease;
  display: block;
}

.news_box:hover .news_img img {
  transform: scale(1.05);
}

/* Happy section */
.happy {
  font-family: "Rajdhani", sans-serif;
  position: relative;
}

.happy .eagle {
  position: absolute;
  left: 0;
  top: -3%;
  z-index: -1;
}

.happy_head {
  margin-bottom: 45px;
}

.happy_head h3::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  background-color: #c3002f;
  left: 0;
  top: 45%;
}

.happy .content {
  width: 310px;
  height: 180px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0 0 0 / 1%);
  position: relative;
  margin-bottom: 30px;
}

.happy .content p {
  line-height: 1.3;
  color: #222d35;
  font-family: "Rajdhani";
  font-size: 0.9rem;
}

.happy .content img {
  position: absolute;
  right: 24px;
  bottom: 25px;
}

.happy_client {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 30px;
}

.happy_client h5 {
  color: #f51639;
  font-size: 1.125rem;
  font-weight: 600;
  position: relative;
  padding-left: 15px;
  margin-bottom: 4px;
}

.happy_client h5::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background-color: #f51639;
  left: 0;
  top: 45%;
}

.happy_client h6 {
  letter-spacing: 1px;
  color: #606060;
  font-size: 0.813rem;
  margin: 0;
  text-transform: uppercase;
}

.happy::before {
  position: absolute;
  content: "";
  width: 910px;
  height: 100%;
  right: 0;
  top: 0;
  background: linear-gradient(to right, #fea832, #f51639);
}

.happy_form h3 {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.happy_form p {
  font-size: 1.063rem;
  color: #fff;
  margin: 8px 0 17px;
}

.happy_form .form-group {
  margin-bottom: 25px;
}

.happy_form .form-control {
  border-radius: unset;
  border: 1px solid rgba(255 255 255 / 30%);
  padding: 17px;
  background-color: transparent;
  box-shadow: unset;
  color: rgba(255 255 255 / 70%);
}

.happy_form .form-control::placeholder {
  color: rgba(255 255 255 / 70%);
}

.happy_form textarea {
  height: 120px;
}

.happy_form button {
  border: unset;
  outline: unset;
  padding: 18px 0;
  width: 100%;
  color: #222d35;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 600;
  position: relative;
  background-color: #ffffff;
}

.happy_form button::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 1px;
  background-color: #222d35;
  left: 30%;
  top: 47%;
}

/* footer section */
footer {
  background: #111111;
  padding-top: 5rem;
  position: relative;
  z-index: 11;
}

footer h3 {
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 1.375rem;
  letter-spacing: 1px;
  font-weight: 600;
}

.content_about p {
  font-size: 1.125rem;
  color: #fff;
  font-weight: 500;
}

.useful {
  margin-left: 30px;
}

.quicklist li + li {
  margin-top: 12px;
}

.quicklist li a {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.quicklist li a:hover {
  color: #fc9e2d;
  letter-spacing: 0.5px;
  text-shadow: 0 0 5px rgba(252, 158, 45, 0.3);
}

.contact_info li + li {
  margin-top: 12px;
}

.contact_info li a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  transition: all 0.3s ease;
}

.contact_info li a i {
  color: #fc9e2d;
  transition: transform 0.3s ease;
}

.contact_info li a:hover {
  color: #fc9e2d;
  letter-spacing: 0.5px;
  text-shadow: 0 0 5px rgba(252, 158, 45, 0.3);
}

.contact_info li a:hover i {
  transform: scale(1.2) rotate(8deg);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.social-links li a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background-color: #fc9e2d;
  color: var(--white);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.social-links li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #fff6cc 0%, #fc9e2d 100%);
  opacity: 0.3;
  transition: all 0.4s ease;
  z-index: -1;
}

.social-links li a:hover::before {
  left: 0;
}

.social-links li a:hover {
  color: #000;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(252, 158, 45, 0.4);
}

.copyRight {
  border-top: 1px solid #fff;
  margin-top: 80px;
  padding: 24px 20px;
}

.copyRight p {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}

.copyRight ul {
  display: flex;
  align-items: center;
  justify-content: end;
}

.copyRight ul li a {
  color: var(--white);
  font-weight: 500;
  font-size: 1rem;
}

.themeBtn:hover {
  background-color: var(--black);
  color: var(--white);
}

section.news .headingani {
  font-family: "Rajdhani";
}

.happy_head .headingani {
  font-family: "Rajdhani";
}

/* innerpages Start */

.innerBan .overlay {
  position: absolute;
  text-align: left;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
}

.innerBan h2 {
  font-size: 90px;
  color: var(--white);
  text-transform: capitalize;
  font-weight: 600;
}

.innerBan {
  position: relative;
}

section.whybehind {
  background: rgb(0 0 0 / 10%);
}

.behindwrap h3 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 60px;
  text-align: center;
}

.behindwrap p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.behindwrap img {
  margin-bottom: 80px;
}

.behindwrap p + p {
  margin-top: 2rem;
}

.life-caoshingsec {
  background: url(../images/livingimg1.png) center/cover no-repeat;
  margin-bottom: 4rem;
}

.missionwrap h3 {
  font-size: 48px;
  font-weight: 600;
  color: #000;
  margin-bottom: 1rem;
}

.missionwrap p {
  font-size: 18px;
  line-height: 1.6;
  color: #111111;
  width: 80%;
}

.lifewrps {
  text-align: center;
}

.lifewrps h3 {
  font-size: 58px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 50px;
}

.lifewrps p {
  font-size: 1.125rem;
  font-weight: 400;
  color: rgb(255 255 255 / 74%);
  line-height: 1.6;
  width: 91%;
  margin: auto;
}

.form_content > p {
  color: #222d35;
  font-size: 1.125rem;
  line-height: 1.5;
  width: 85%;
  margin-top: 1.875rem;
}

.form_content .mainHead {
  font-size: 5.625rem;
  color: #171717;
  font-weight: 600;
  line-height: 1;
  width: 80%;
}

.contact_info {
  margin-top: 2rem;
}

.contact_info li a {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.625rem;
}

.contact_info li a span {
  color: #fc9e2d;
}

.contact_info li a p {
  color: #222d35;
  font-size: 1.125rem;
  font-weight: 400;
}

.contact_form .col-md-6:not(:last-child) {
  margin-bottom: 2.125rem;
}

.contact_form .form-group .form-control {
  border-radius: unset;
  box-shadow: unset;
  border: 1px solid rgba(166 166 166 / 45%);
  padding: 15px 20px;
  color: rgba(12 12 12 / 55%);
  font-weight: 500;
  font-size: 1rem;
}

.contact_form .form-group input {
  height: 49px;
}

.contact_form .form-group textarea {
  height: 180px;
}

.contact_form button {
  border: unset;
  outline: unset;
  margin-top: 12px;
}

section.life-section h2 {
  font-size: 58px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}

.lifewraps h3 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.lifewraps p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 1rem;
}

section.approch-section h2 {
  font-size: 58px;
  font-weight: 600;
  color: #222d35;
  text-align: center;
  margin-bottom: 3rem;
}

section.life-section {
  padding-bottom: 0;
}

.pprochwraps h3 {
  font-size: 30px;
  font-weight: 600;
  color: #222d35;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pprochwraps ul li {
  font-size: 1.125rem;
  color: #222d35;
  list-style: disc;
}

.pprochwraps ul li + li {
  margin-top: 1rem;
}

.pprochwraps p {
  font-size: 1.125rem;
  font-weight: 500;
  margin: 1rem 0 2rem 0;
  width: 82%;
}

.life-caoshingsec.coachinglife2 {
  margin: 0;
}

section.blogpage-sec h2 {
  font-size: 42px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 5rem;
}

.blgcntnt h3 {
  font-size: 30px;
  font-weight: 600;
  color: #222d35;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.blgcntnt {
  margin-top: 33px;
}

.blgcntnt p {
  font-size: 1.125rem;
  font-weight: 400;
  color: #222d35;
  margin-bottom: 1rem;
}

.blgcntnt h5 {
  font-size: 1.125rem;
  color: #222d35;
}

.blgcntnt.blogcntnt11 p {
  width: 78%;
}

.blgcntnt.blogcntnt22 p {
  width: 90%;
}

.identityblog .blgcntnt.blogcntnt22 p {
  width: 100%;
}
.ssdsd {
  font-size: 50px;
}
.mein-points {
  margin-top: 10px;
}
.mein-points li {
  font-size: 22px;
  width: 75%;
  margin-bottom: 15px;
}

.navbar-brand img {
  width: 200px;
}
