/* *{
    margin: 0;
    padding: 0;
} */

body {
  /* overflow: hidden; */
}

nav {
  background-color: rgb(255, 253, 253);
  height: 70px;
  width: 100%;
  position: fixed;
  z-index: 99;
}

nav ul {
  width: 100%;
  height: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

nav li {
  height: 50px;
}

nav a {
  height: 100%;
  padding: 0 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: rgb(0, 0, 0);
  font-family: "Lexend Mega", sans-serif;
  font-weight: 600;
}
@media (max-width: 800px) {
  nav {
    background-color: rgb(255, 253, 253);
    height: 50px;
    width: 100%;
    position: fixed;
    z-index: 99;
  }
  .logo {
    height: auto;
    width: 130px;
  }
}

@media (max-width: 570px) {
  nav {
    background-color: rgb(255, 253, 253);
    height: 60px;
    width: 100%;
    position: fixed;
    /* z-index: 99; */
  }

  .logo {
    height: auto;
    width: 120px;
  }
}

.main-slider {
  margin-top: 10px !important;
}

nav a:hover {
  background-color: #ee8051;
  color: #e4eafd;
}

nav li:first-child {
  margin-right: auto;
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.sidebar li {
  width: 100%;
}

.sidebar a {
  width: 100%;
}

.menu-button {
  display: none;
}

@media (max-width: 800px) {
  .hideOnMobile {
    display: none;
  }

  .menu-button {
    display: block;
  }
}

@media (max-width: 500px) {
  .sidebar {
    width: 100%;
    z-index: 2;
  }
}
@media (max-width: 900px) {
  .sidebar {
    width: 50%;
    z-index: 2;
  }
}

.card-btn button {
  color: #ffffff;
}

.card-btn button a {
  text-decoration: none;
  color: #b63e3e;
  font-weight: 500;
}

.card-btn button:hover {
  color: #000000;
  background-color: #ffffff;
}

@media screen and(max-width: 900px) {
  .card-btn button {
    color: #ad1616;
    height: 32px;
    width: 100%;
  }
}

.main {
  /* background-image: url(../assets/home/bg-gif.gif); */
  /* background-color: #9c4b4b; */
  padding: 0 !important;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.container-fluid {
  /* max-width: 100%; */
}

.heroContent {
  position: absolute;
  top: 30%;
  left: 10%;
}

.carousel-inner {
  /* color: rgb(186, 94, 94); */
}

.carousel-inner h2 {
  font-size: 5vw;
  color: white;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  /* letter-spacing: 2px; */
}

.carousel-inner p {
  font-size: 2vw;
  background: linear-gradient(to right, #ff4d29 0%, #f6bc4e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.carousel-inner .contact p .btn {
  color: #b63e3e;
}

.flip-card {
  background-color: transparent;
  height: 300px;
  /* border: 1px solid #ffffff; */
  padding-left: 50px;
}

.flip-card-inner {
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
  color: rgb(147, 54, 54);
}

/* Style the back side */
.flip-card-back {
  background-color: rgb(255, 255, 255);
  color: white;
  transform: rotateY(180deg);
  width: 100%;
}

.flip-card-back h1 {
  color: #ff6547;
  font-size: 25px;
}

.flip-card-back p {
  color: black;
  text-align: start;
}

.flip-card-back a {
  color: #ff6547;
}

@media screen and (min-width: 767px) and (max-width: 990px) {
  .flip-card {
    background-color: transparent;
    height: 200px;
    border: 1px solid #ffffff;
  }

  .flip-card-inner {
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }

  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }

  .flip-card-front,
  .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .flip-card-front {
    color: rgb(147, 54, 54);
  }

  /* Style the back side */
  .flip-card-back {
    background-color: rgb(255, 255, 255);
    color: white;
    transform: rotateY(180deg);
  }

  .flip-card-back h1 {
    color: #000000;
    font-size: 19px;
  }

  .flip-card-back p {
    color: black;
    font-size: 10px;
    /* text-align:justify; */
  }

  .flip-card-back a {
    color: #ff6547;
  }
}

.midas {
  background-image: url(../assets/home/bg2.jpg);
  text-align: center;
  font-family: "Lexend Mega", sans-serif;
  color: #686868;
  padding-top: 5px;
  z-index: 55;
}

.midas h2 {
  font-size: 32px;
  color: #ff6547;
}

.midas p {
  font-size: 13px;
}

.about {
  /* border: 1px solid; */
  display: flex;
  width: 100%;
}

.about-img-2 {
  padding-top: 10%;
}

.about-astro {
  /* border: 1px solid yellow; */
}

#Philosophy {
  width: 80;
  overflow: hidden;
  text-align: center;
  height: fit-content;
  overflow: hidden;
  margin-top: 55px;
}

#Philosophy h2 {
  font-size: 36px;
  font-family: "Lexend Mega", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  color: #ff6547;
}

#Philosophy p {
  width: 40%;
  text-align: justify;
  font-size: 22px;
}

.Philosophy-div {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background-color: #fdf3ed;
  width: 80%;
  height: 500px;
  margin-left: 10%;
  margin-top: 20px;
  padding-bottom: 30px;
}

@media screen and (min-width: 200px) and (max-width: 567px) {
  #Philosophy {
    width: 100%;
    text-align: center;
    height: fit-content;
    overflow: hidden;
    margin-top: 15px;
  }

  #Philosophy h2 {
    font-size: 36px;
    font-family: "Lexend Mega", sans-serif;
    text-transform: capitalize;
    font-weight: 500;
    color: #686868;
  }

  #Philosophy p {
    width: 100%;
    text-align: justify;
    font-size: 1rem;
  }

  .Philosophy-div {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    background-color: #fdf3ed;
    width: 80%;
    height: fit-content;
    margin-left: 10%;
    margin-top: 20px;
    padding-bottom: 30px;
  }
}

@media screen and (min-width: 569px) and (max-width: 1000px) {
  #Philosophy {
    width: 100%;
    text-align: center;
    height: fit-content;
    overflow: hidden;
    margin-top: 15px;
  }

  #Philosophy h2 {
    font-size: 36px;
    font-family: "Lexend Mega", sans-serif;
    text-transform: capitalize;
    font-weight: 500;
    color: #686868;
  }

  #Philosophy p {
    width: 100%;
    text-align: justify;
    font-size: 1rem;
  }

  .Philosophy-div {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    background-color: #fdf3ed;
    width: 80%;
    height: fit-content;
    margin-left: 10%;
    margin-top: 20px;
    padding-bottom: 30px;
  }
}

.why_choose_us_main {
  background-image: url(../assets/home/Frame\ 161.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 5%;
}

.why_choose_us_main_boxes {
  margin-top: 5%;
}

.why_choose_us_main_boxes h3 {
  color: #ff6547;
}
.why_choose_us_main_text h2 {
  padding-top: 100px;
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Lexend Mega", sans-serif;
}
.box-1 {
  /* margin-top: 90px; */
  background-color: #f3f3f3;
  /* width: 200px; */
  /* border-radius: 5%; */
  height: 280px;
  text-align: center;
}

.container-footer {
  width: 100%;
  margin-top: 5%;

  font-family: "Lexend Mega", sans-serif;
}

#Quick-Links {
  list-style-position: inside;
  font-family: "Lexend Mega", sans-serif;
}

#Quick-Links h6 {
  font-weight: 700;
  text-decoration: underline;
  font-family: "Lexend Mega", sans-serif;
  color: #ff6547;
}

.Quick {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

#Quick-Links p a {
  color: #000;
  text-decoration: none;
  font-family: "Lexend Mega", sans-serif;
}
.Contact-INFO h6 {
  text-decoration: underline;
  font-family: "Lexend Mega", sans-serif;
  font-weight: 700;
  color: #ff6547;
}

.Contact-INFO p a {
  color: #000;
}
@media (max-width: 500px) {
  .main {
    height: 200px;
    width: 100%;
    background-size: cover;
  }

  .main-home {
    overflow: hidden;
  }
}

/*//////////////////////////////// about ///////////////////////////// */
.bg-all {
  overflow: hidden;
}

.bg-about {
  background-image: url(../assets/home/bg-all1.png);
  background-repeat: no-repeats;
  background-size: cover;
  object-fit: cover;
  height: 300px;
  width: 100%;
}

.Welcome {
  text-align: center;
  line-height: 30px;
  margin-top: 3.2vh;
}

.Welcome h2 {
  font-size: 26px;
  font-family: "Lexend Mega", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 50px;
  color: #696969;
}

.Welcome span {
  font-size: 36px;
  font-family: "Lexend Mega", sans-serif;
  font-weight: 600;
  color: #ff6547;
  text-transform: uppercase;
}

.bg-about h2 {
  /* padding-top: 10%; */
  position: absolute;
  /* top: 30%; */
  /* left: 50%; */
  /* transform: translate(-50%, -50%); */

  color: white;
}

.inner-banner ul.breadcumb li {
  display: inline-block;
  vertical-align: middle;
}

.inner-banner ul.breadcumb a,
.inner-banner ul.breadcumb span {
  color: #ff7800;
  font-size: 18px;
}

.inner-banner ul.breadcumb span.sep {
  margin-left: 10px;
  margin-right: 10px;
  color: #ff7800;
}

.inner-banner ul.breadcumb span {
  color: #fff;
}

@media screen and (min-width: 200px) and (max-width: 4000px) {
  .bg-about h2 {
    position: absolute;
    top: 13%;
    left: 50%;
    transform: translate(-50%, -50%);

    color: white;
  }
}
.about-text {
  margin-top: 5%;
  /* margin-left: 15%; */
  display: flex;
  justify-content: space-evenly;
  /* gap: 10%; */
}

.text {
  height: 500px;
  width: 400px;
}

.text p {
  font-size: 1.2rem;
  text-align: justify;
  font-family: "Lexend Mega", sans-serif;
  font-weight: 500;
  text-transform: capitalize;
}

@media screen and (min-width: 200px) and (max-width: 567px) {
  .about-text {
    margin-top: 5%;
    /* margin-left: 15%; */
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }

  .text {
    margin-left: 6%;
    /* border: 2px solid rgb(45, 29, 192); */
    height: 400px;
    width: 300px;
    margin-top: 5%;
  }

  .text p {
    font-size: 1rem;
    text-align: justify;
    font-family: "Lexend Mega", sans-serif;
    font-weight: 500;
    text-transform: capitalize;
  }
}

@media screen and (min-width: 567px) and (max-width: 825px) {
  .about-text {
    margin-top: 5%;
    /* margin-left: 15%; */
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }

  .text {
    margin-left: 6%;
    /* border: 2px solid rgb(45, 29, 192); */
    height: 160px;
    width: 90%;
    margin-top: 5%;
  }

  .text p {
    font-size: 1rem;
    text-align: justify;
    font-family: "Lexend Mega", sans-serif;
    font-weight: 500;
    text-transform: capitalize;
  }
}

.founder {
  margin: auto;
  margin-top: 5%;
}

.our-founder h2 {
  font-size: 2.2rem;
  font-family: "Lexend Mega", sans-serif;
  font-weight: 600;
  color: #ff6547;
  padding-top: 25px;
}

.line {
  height: 0.3rem;
  width: 10rem;
  background-color: #282828;
  margin-left: 2%;
}

.founder-text p {
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  padding-left: 7%;
  padding-top: 5%;
  text-align: justify;
  text-transform: capitalize;
}

.clearfix {
  height: 100%;
  width: 100%;
  padding-top: 5%;
}

/* /////////////////////////////////////services-main ////////////////////////////// */

.services-main {
  background-image: url(../assets/home/bg-for-service.png);
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
}

.cont-div {
  background-color: #ffffff;
  border-radius: 0px 150px 150px 0px;
}

.cont-div img {
  width: 231px;
}

.cont-div-2 {
  background-color: #ffffff;
  border-radius: 150px 0px 0px 150px;
}

.cont-div-2 h2 {
  color: #ff6547;
}

.cont-div-2 img {
  width: 231px;
}

.services-text h2 {
  font-family: "Lexend Mega", sans-serif;
  font-weight: 500;
}

.services-text p {
  font-family: "Lexend", sans-serif;
  font-size: 20px;
}

.services-text a {
  font-family: "Lexend Mega", sans-serif;
  color: #ff6547;
  font-weight: 600;
}

.cont-div-2 h2 {
  font-family: "Lexend Mega", sans-serif;
  font-weight: 500;
  /* font-size: 50px; */
}

.cont-div-2 p {
  font-family: "Lexend", sans-serif;
  font-size: 20px;
}

.cont-div-2 a {
  font-family: "Lexend Mega", sans-serif;
  color: #ff6547;
  font-weight: 600;
}

.service-box-image {
  margin-top: 12px !important;
}

.service-box-image-left {
  margin-top: 7px !important;
  margin-left: -14px !important;
}

.box-content {
  height: 240px;
}
.container-data {
}

@media screen and (max-width: 540px) {
  .cont-div-2 img {
    width: 95px;
  }

  .cont-div-2 h2 {
    font-size: 20px;
    color: #ff6547;
  }

  .cont-div-2 p {
    font-size: 15px;
    text-align: start;
  }

  .cont-div img {
    width: 95px;
  }

  .cont-div h2 {
    font-size: 20px;
    color: #ff6547;
  }

  .cont-div p {
    font-size: 15px;
    text-align: start;
  }
}

@media screen and (max-width: 992px) {
  .box-content {
    width: 100% !important;
  }

  .container-data {
    width: 100% !important;
  }

  .right-box > img {
  }

  .right-box {
    flex-direction: flex;
  }
}

/*/////////////////////////////////////////// astrology ////////////////////// */
.astro-bg img {
  margin-top: 5%;
}

.astro-main {
  background-image: url(../assets/home/bg-for-service.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.astro-text {
  margin-top: 2%;
  text-align: center;
  margin-bottom: 2%;
}

.astro-text h2 {
  font-family: "Lexend Mega", sans-serif;
  font-size: 32px;
  color: #ff6547;
}

.astro-text p {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 22px;
  text-align: justify;
  color: #000;
}

.services-text {
  text-align: center;
  /* padding-top: 2%; */
}

.services-text-1 {
  color: #ffffff;
  text-align: center;
  padding-top: 2%;
  font-family: "Lexend Mega", sans-serif;
  font-size: 32px;
}

.services-text h2 {
  font-size: 29px;
  font-weight: 600;
  color: #ff6547;
}

/* //////////////////////////////////astro /////////////////////// */

.astro-main-cont {
  margin-top: 5%;
  /* margin-bottom: 5%; */
}

.astro-main-cont h3 {
  color: #fbad65;
  font-weight: 700;
  text-transform: uppercase;
}

.astro-main-cont p {
  color: #ffffff;
  letter-spacing: 1px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 135%;
  font-size: 20px;
}

.single-team-style-one .img-box {
  position: relative;
}

.single-team-style-one .img-box > img {
  position: relative;
  z-index: 3;
}

.single-team-style-one .img-box .name-box {
  width: 90%;
  position: absolute;
  bottom: 65px;
}

.single-team-style-one .img-box .name-box .inner {
  background: #ff7800;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.2em;
  font-weight: 600;
  font-family: "Poppins";
  padding: 17px 0;
  z-index: 4;
  position: relative;
}

.single-team-style-one .img-box .name-box:after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  width: 58px;
  height: 51px;
  /* background: transparent url(../img/team-tri-shape.png) 0 0 no-repeat; */
  margin-top: -2px;
  z-index: 1;
}

.single-team-style-one .text-box p {
  color: #888888;
  font-size: 5px;
  margin-top: px;
}

.single-team-style-one .text-box .social {
  margin-top: 5px;
}

.single-team-style-one .text-box .social a {
  color: #262626;
  font-size: 16px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.single-team-style-one .text-box .social a:hover {
  color: #ff7800;
}

.single-team-style-one .text-box .social a + a {
  margin-left: 11px;
}

.team-style-one .sec-title {
  margin-bottom: 85px;
}

.team-page {
  padding-bottom: 75px;
}

.team-page .single-team-style-one {
  margin-bottom: 50px;
}

.single-team-style-two {
  text-align: center;
}

.single-team-style-two .img-box {
  width: 185px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  position: relative;
  border-radius: 50%;
}

.single-team-style-two .img-box .social {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(254, 90, 14, 0.75);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.single-team-style-two .img-box .social .inner {
  text-align: center;
  width: 100%;
}

.single-team-style-two .img-box .social a {
  font-size: 16px;
  color: #fff;
}

.single-team-style-two .img-box .social a + a {
  margin-left: 10px;
}

.single-team-style-two .img-box > img {
  border-radius: 50%;
  width: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.single-team-style-two .img-box:hover > img {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.single-team-style-two .img-box:hover .social {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.single-team-style-two .text-box h3,
.single-team-style-two .text-box p {
  margin: 0;
}

.single-team-style-two .text-box h3 {
  color: #262626;
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 600;
  margin-top: 30px;
}

.single-team-style-two .text-box p {
  font-size: 16px;
  color: #888888;
  margin-top: 5px;
}

.team-style-two .sec-title {
  margin-bottom: 75px;
}

.team-style-two-carousel .owl-nav [class*="owl-"] {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #dddddd;
  color: #888888;
  font-size: 15px;
  margin: 0;
  padding: 0;
  text-align: center;
  line-height: 28px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.team-style-two-carousel .owl-nav [class*="owl-"]:hover {
  background: #ff7800;
}

.team-style-two-carousel .owl-nav .owl-prev {
  left: -14px;
}

.team-style-two-carousel .owl-nav .owl-next {
  right: -14px;
}

/************************** 
* 15. features styles 
***************************/
.feature-style-one [class*="col-md"]:nth-child(1) {
  background: #f6f6f6;
  padding: 0;
}

.feature-style-one [class*="col-md"]:nth-child(2) {
  background: #f6f6f6;
  padding: 0;
}

.feature-style-one [class*="col-md"]:nth-child(3) {
  background: #f6f6f6;
  padding: 0;
}

.feature-style-one.overlapped-top {
  margin-top: -85.5px;
  position: relative;
  z-index: 20;
}

.feature-style-one.overlapped-bottom {
  margin-bottom: -85.5px;
  position: relative;
  z-index: 20;
}

.feature-style-one .single-feature-style-one {
  padding: 41px 25px;
}

.feature-style-one .single-feature-style-one .icon-box,
.feature-style-one .single-feature-style-one .text-box {
  display: table-cell;
  vertical-align: middle;
}

.feature-style-one .single-feature-style-one .icon-box {
  width: 60px;
}

.feature-style-one .single-feature-style-one .icon-box i {
  color: #000000;
  font-size: 60px;
}

.feature-style-one .single-feature-style-one .text-box {
  padding-left: 20px;
}

.feature-style-one .single-feature-style-one .text-box h3,
.feature-style-one .single-feature-style-one .text-box p {
  margin: 0;
}

.feature-style-one .single-feature-style-one .text-box h3 {
  font-size: 24px;
  font-family: "Poppins";
  font-weight: 600;
  color: #262626;
}

.feature-style-one .single-feature-style-one .text-box p {
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  margin-top: 15px;
  font-weight: 500;
  margin-top: 5px;
}

.feature-style-one .single-feature-style-one.light .icon-box i {
  color: #fff;
}

.feature-style-one .single-feature-style-one.light .text-box h3,
.feature-style-one .single-feature-style-one.light .text-box p {
  color: #fff;
}

.features-style-two {
  padding-bottom: 80px;
}

.single-features-style-two {
  border: 1px solid #e8e8e8;
  text-align: center;
  min-height: 306px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.single-features-style-two .inner {
  width: 100%;
}

.single-features-style-two i {
  font-size: 53px;
  color: #262626;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.single-features-style-two h3,
.single-features-style-two p {
  margin: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.single-features-style-two h3 {
  font-size: 22px;
  line-height: 27px;
  color: #252525;
  font-family: "Poppins";
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-top: 18px;
  margin-bottom: 10px;
}

.single-features-style-two p {
  font-size: 15px;
  line-height: 27px;
  color: #545454;
  width: 73%;
  margin-left: auto;
  margin-right: auto;
}

.single-features-style-two:before {
  background: #fd5912;
}

.single-features-style-two:hover h3,
.single-features-style-two:hover p,
.single-features-style-two:hover i {
  color: #fff;
}

.sec-pad {
  margin-top: 5%;
}

.info {
  margin-top: 10%;
}
.info h2 {
  font-family: "Lexend Mega", sans-serif;
  color: #ff6547;
}

.info-line {
  margin-bottom: 6px;
  height: 0.3vh;
  width: 20vw;
  background: #000;
}
.codeagile {
  text-align: center;
  padding-top: 5%;
}
.codeagile a {
  text-decoration: none;
  color: #000;
}
.codeagile :hover {
  color: #ff6547;
}
.Copyright a {
  text-decoration: none;
  color: #000;
}
.icon a i {
  font-size: 25px;
}

.link {
  /* background-color: #ffffff; */
  display: flex;
  padding-top: 230px;
  display: inline-block;
  vertical-align: middle;
}

.text-link {
  display: flex;
  text-decoration: none;
}
.text-link li a {
  list-style: none;
  text-decoration: none;
  color: #ad1616;
}
.text-link li span {
  color: #ad1616;
}
