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


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 1px solid red; */
}

/* h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: jost;
} */

p,
button,
li,
td,
select,
input,
span {
  font-family: "Poppins", sans-serif;
}

nav {
  height: 135px;
  width: 100vw;
  background-color: #1C191A;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  position: fixed;
  z-index: 10;
  padding: 0px 65px;
}

/*Styling logo*/
.logo {
  text-align: center;
}

.logo img {
  height: 8rem;
  width: 9rem;
}

.button-sec {
	margin-top: 16px;
}

/*Styling Links*/
.nav-links {
  display: flex;
  list-style: none;
  width: 70%;
  padding: 0px 0px 0px 100px;
  justify-content: space-evenly;
  align-items: center;
  text-transform: uppercase;
}

.nav-links {
  margin-bottom: 0px;
}

.nav-links li a {
  text-decoration: none;
  margin: 0 0.7vw;
}

.nav-links li a:hover {
  color: #E8C57A;
}

.nav-links li {
  position: relative;
}

.nav-links li a::before {
  content: "";
  display: block;
  height: 3px;
  width: 0%;
  background-color: #E8C57A;
  position: absolute;
  bottom: 0;
  transition: all ease-in-out 250ms;
  margin: 0 0 0 10%;
}

.nav-links li a:hover::before {
  width: 80%;
}

.nav-links li a {
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
}

nav button {
  --color: #000000;
  /* font-family: inherit; */
  display: inline-block;
  padding: 14px 30px;
  line-height: 2.5em;
  overflow: hidden;
  cursor: pointer;
  font-size: 17px;
  z-index: 1;
  color: var(--color);
  border: none;
  position: relative;
  background-color: #E8C57A;
  font-weight: 500;
  letter-spacing: 0.1rem;
  border: 2px solid #E8C57A;
  margin-top: 15px;
}

nav button::before {
  position: absolute;
  content: "";
  background: var(--color);
  width: 300px;
  height: 350px;
  z-index: -1;
  border-radius: 50%;
}

nav button:hover {
  color: #E8C57A;
  /* background-color: #000000; */
  border: 2px solid #E8C57A;
}

nav button:before {
  top: 100%;
  left: 0;
  transition: 0.3s all;
}

nav button:hover::before {
  top: -100px;
  left: -20px;
}

/*Styling Buttons*/
.login-button {
  background-color: transparent;
  border: 1.5px solid #f2f5f7;
  border-radius: 2em;
  padding: 0.6rem 0.8rem;
  margin-left: 2vw;
  font-size: 1rem;
  cursor: pointer;
}

.login-button:hover {
  color: #131418;
  background-color: #f2f5f7;
  border: 1.5px solid #f2f5f7;
  transition: all ease-in-out 350ms;
}

.join-button {
  color: #131418;
  background-color: #E8C57A;
  border: 1.5px solid #E8C57A;
  border-radius: 2em;
  padding: 0.6rem 0.8rem;
  font-size: 1rem;
  cursor: pointer;
}

.join-button:hover {
  color: #f2f5f7;
  background-color: transparent;
  border: 1.5px solid #f2f5f7;
  transition: all ease-in-out 350ms;
}

/*Styling Hamburger Icon*/
.hamburger div {
  width: 30px;
  height: 3px;
  background: #f2f5f7;
  margin: 5px;
  transition: all 0.3s ease;
}

.hamburger {
  display: none;
}

/*Stying for small screens*/
@media screen and (max-width: 800px) {
  nav {
    position: fixed;
    z-index: 3;
    padding: 0px;
  }

  .hamburger {
    display: block;
    position: absolute;
    cursor: pointer;
    right: 5%;
    top: 50%;
    transform: translate(-5%, -50%);
    z-index: 2;
    transition: all 0.7s ease;
  }

  .nav-links {
    position: fixed;
    background: #131418;
    height: 70vh;
    width: 100%;
    flex-direction: column;
    clip-path: circle(50px at 90% -20%);
    -webkit-clip-path: circle(50px at 90% -10%);
    transition: all 1s ease-out;
    pointer-events: none;
    float: left;
    padding: 0px;
  }

  .nav-links.open {
    clip-path: circle(1000px at 90% -10%);
    -webkit-clip-path: circle(1000px at 90% -10%);
    pointer-events: all;
  }

  .nav-links li {
    opacity: 5 !important;
  }

  .nav-links li:nth-child(1) {
    transition: all 0.5s ease 0.2s;
  }

  .nav-links li:nth-child(2) {
    transition: all 0.5s ease 0.4s;
  }

  .nav-links li:nth-child(3) {
    transition: all 0.5s ease 0.6s;
  }

  .nav-links li:nth-child(4) {
    transition: all 0.5s ease 0.7s;
  }

  .nav-links li:nth-child(5) {
    transition: all 0.5s ease 0.8s;
  }

  .nav-links li:nth-child(6) {
    transition: all 0.5s ease 0.9s;
    margin: 0;
  }

  .nav-links li:nth-child(7) {
    transition: all 0.5s ease 1s;
    margin: 0;
  }

  li.fade {
    opacity: 1;
  }
}

/*Animating Hamburger Icon on Click*/
.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  transition: all 0.7s ease;
  width: 0;
}

.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}






.carousel-caption button {
  --color: #E8C57A;
  /* font-family: inherit; */
  display: inline-block;
  padding: 14px 30px;
  line-height: 2.5em;
  overflow: hidden;
  cursor: pointer;
  margin: 20px;
  font-size: 17px;
  z-index: 1;
  color: var(--color);
  border: 2px solid #E8C57A;
  position: relative;
  background-color: rgba(255, 0, 0, 0);
  font-weight: 500;
  letter-spacing: 0.1rem;
}

.carousel-caption button::before {
  position: absolute;
  content: "";
  background: var(--color);
  width: 300px;
  height: 250px;
  z-index: -1;
  border-radius: 50%;
}

.carousel-caption button:hover {
  color: rgb(0, 0, 0);
}

.carousel-caption button:before {
  top: 100%;
  left: 100%;
  transition: 0.3s all;
}

.carousel-caption button:hover::before {
  top: -80px;
  left: -20px;
}

.carousel-caption {
  top: 30%;
}

.carousel-caption h1 {
  font-size: 65px;
  font-weight: bold;
  font-family: 'poppins';
  width: 65%;
  margin: auto;
}

.carousel-caption p {
  padding: 30px 0px;
  margin: auto;
  width: 60%;
}




.home-about {
  padding: 100px 0px;
}

.home-about h4 {
  font-size: 36px;
  font-family: "Russo One", sans-serif;
}

.home-about p {

  line-height: 2.1rem;
  color: #555555;
}

.abtcont button {
  --color: #000000;
  /* font-family: inherit; */
  display: inline-block;
  padding: 14px 30px;
  line-height: 2.5em;
  overflow: hidden;
  cursor: pointer;
  font-size: 17px;
  z-index: 1;
  color: var(--color);
  position: relative;
  background-color: #E8C57A;
  font-weight: 500;
  letter-spacing: 0.1rem;
  border: none;
  border: 2px solid #E8C57A;
}

.abtcont button::before {
  position: absolute;
  content: "";
  background: var(--color);
  --color: #ffffff;
  width: 300px;
  height: 250px;
  z-index: -1;
  border-radius: 50%;
}

.abtcont button:hover {
  color: ;
  border: 2px solid #E8C57A;
}

.abtcont button:before {
  top: 100%;
  left: 100%;
  transition: 0.3s all;
}

.abtcont button:hover::before {
  top: -60px;
  left: -30px;
}

.imgsec {
  position: relative;

}

.imgsec img {
  width: 100%;
}

.imgsec::after {
  position: absolute;
  content: '';
  right: 0;
  background-color: #E8C57A;
  top: 0;
  height: 200px;
  z-index: 1;
  width: 40%;
  /* border: 5px solid rgb(255, 255, 255); */
  clip-path: polygon(100% 100%, 0 0, 100% 0);
  margin: auto;
}

.imgsec::before {
  position: absolute;
  content: '';
  left: 0;
  background-color: #000000;
  bottom: 0;
  height: 200px;
  z-index: 1;
  width: 40%;
  /* border: 5px solid rgb(255, 255, 255); */
  clip-path: polygon(100% 100%, 0 0, 0 100%);
  margin: auto;
}

.mainabout .home-about .col-md-5 {
  position: relative;
}

.point h5 {
  font-size: 22px;
  font-weight: bold;
  margin-top: 50px;
}

.point ol li {
  line-height: 2.8rem;
  font-weight: 600;
}

.consultant {
  text-align: center;
  background: url(../images/consult.png);
  padding: 100px 0px;
  background-size: cover;
  background-attachment: fixed;
}


.consultant h4 {
  font-size: 36px;
  font-family: "Russo One", sans-serif;
  color: #E8C57A;
}

.consultant P {
  color: #f2f5f7;
  padding: 20PX 0px;
}


.consultant button {
  --color: #000000;
  /* font-family: inherit; */
  display: inline-block;
  padding: 14px 30px;
  line-height: 2.5em;
  overflow: hidden;
  cursor: pointer;
  font-size: 17px;
  z-index: 1;
  color: var(--color);
  position: relative;
  background-color: #E8C57A;
  font-weight: 500;
  letter-spacing: 0.1rem;
  border: none;
}

.consultant button::before {
  position: absolute;
  content: "";
  background: var(--color);
  --color: #ffffff;
  width: 300px;
  height: 250px;
  z-index: -1;
  border-radius: 50%;
}

.consultant button:hover {
  color: rgb(0, 0, 0);
  /* border: 2px solid #E8C57A; */
}

.consultant button:before {
  top: 100%;
  left: 100%;
  transition: 0.3s all;
}

.consultant button:hover::before {
  top: -60px;
  left: -30px;
}

.processbox img {
  width: 80px;
}

.processwork {
  padding: 100px 0px;
}

.processbox {
  text-align: center;
  padding: 20px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 10px;
}

.processbox h5 {
  padding: 15px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.1rem;
}

.processbox p {
  color: #555555;
  line-height: 2.1rem;
}

.processwork h4 {
  text-align: center;
  font-size: 36px;
  font-family: "Russo One", sans-serif;
  padding-bottom: 20px;
}

.heading h4 {
  font-size: 36px;
  font-family: "Russo One", sans-serif;
  font-weight: 800;
}

.pbusiness img {
  width: 100%;
}

.pbusiness p {
  line-height: 2.1rem;
  color: #555555;
}

.bpoint h5 {
  background-color: #E8C57A;
  padding: 5px;
  font-weight: 600;
  display: inline-block;
  font-size: 20px;
}

.bpoint li {
  line-height: 2.1rem;
  display: inline-block;
}

.bpoint span {
  font-size: 17px;
  font-weight: 700;
}

.bpoint ol {
  list-style-type: none;
  padding-left: 0px;
}

.bpoint ol i {
  font-size: 25px;
  font-weight: bold;
  padding: 25px;
  font-weight: 700;
  color: #E8C57A;
  width: 10%;
  float: left;
  display: inline;
  height: 50px;
}

.workshap img {
  width: 100%;
}

.brandv {
  height: 300px;
}

.brandv video {
  width: 100%;
  height: 500px;
}

.bpoint ol li {
  width: 85%;
}

.workprocess {
  padding: 100px 0px;
}

.workprocess .heading {
  text-align: center;
}

.slider-wrapper {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 50px 0px;
}

.card-list .card-item {
  height: auto;
  color: #eeeeee;
  user-select: none;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 10px;
  backdrop-filter: blur(30px);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.card-list .card-item .user-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 3px solid #E8C57A;
  padding: 4px;
}

.card-list .card-item .user-profession {
  font-size: 18px;
  color: #6d6d6d;
  font-weight: 500;
  margin: 14px 0 40px;
}

.slider-wrapper .swiper-pagination-bullet {
  background: #25252500;
  height: 13px;
  width: 13px;
  opacity: 0.5;
}

.slider-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
}

.slider-wrapper .swiper-slide-button {
  color: #686868;
  margin-top: 0px;
  transition: 0.2s ease;
}

.slider-wrapper .swiper-slide-button:hover {
  color: #4658ff;
}

@media (max-width: 768px) {
  .slider-wrapper {
    margin: 0 50px 0px;
  }

  .slider-wrapper .swiper-slide-button {
    display: none;
  }
}


.testomonial {
  padding: 100px 0px;
  background: url(../images/testaimg.png);
  background-size: cover;
  margin-top: 100px;
}

.testomonial .heading {
  text-align: center;
  padding-bottom: 40px;
  color: #e2e2e2;
}

.namearea {
  display: inline-block;
  padding-left: 15px;
}

.testimg {
  display: inline;
}

.namearea h2 {
  font-size: 22px;
  font-weight: bold;
}

.testbox {
  width: 100%;
}

.allstar i {
  display: inline;
  float: left;
  font-size: 16px;
  margin-bottom: 10px;
  padding: 5px;
  color: #E8C57A;
}

.testomonial img {
  width: 100%;
  height: 350px;
}

/* .swiper{
  margin-top: -200px;   
} */

.home-blog {
  padding: 100px 0px;
}

.mainblog img {
  width: 100%;
}

.mainblog h5 {
  font-size: 16px;
  color: #979797;
  padding: 10px 0px;
  margin-bottom: 0px;
}

.mainblog h4 {
  font-size: 22px;
  color: #181818;
  font-weight: 600;
  font-family: "Poppins";
}

.mainblog p {
  font-size: 16px;
  color: #888888;
  line-height: 1.8rem;
  margin-top: 10px;
}

.mainblog {
  padding: 0px;
  background-color: #ffffff;
  cursor: pointer;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.rightblog {
  background-color: #ffffff;
  padding: 20px;
  cursor: pointer;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.rightblog h4 {
  font-size: 20px;
  padding: 5px 0px;
  font-family: 'poppins';
  font-weight: 600;
  color: black;
}

.rightblog h5 {
  font-size: 15px;
  color: #6d6d6d;
}

.rightblog p {
  margin-bottom: 0;
  color: #686868;
}

.imgbox {
  position: relative;
}

.blogdate {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #E8C57A;
  color: #000000;
  padding: 8px 15px;
}

.blogdate h5 {
  color: #000000;
}

.blogcont {
  color: #e2e2e2;
}

.home-blog .heading {
  text-align: center;
  padding-bottom: 30px;
}

.processbox:hover {
  color: #f3cd00;
  transition: 0.5s;
}

.banner {
  height: 850px;
}

.carousel-indicators [data-bs-target] {
  background-color: rgba(255, 0, 0, 0) !important;
}

.carousel-inner {
  height: 850px;
}

.carousel-control-next {
  background-color: #f3cd00;
  height: 80px;
  width: 80px;
  top: 50%;
  border-radius: 50%;
}

.carousel-control-prev {
  background-color: #f3cf00b6;
  height: 80px;
  width: 80px;
  top: 50%;
  border-radius: 50%;
}

.about2 {
  background: url(../images/12300592_4940019.jpeg);
  background-size: cover;
}

footer {
  padding: 100px 0px 50px 0px;
  background: url(../images/footerimage.png);
  background-size: cover;
}

.linkarea ul {
  margin-bottom: 0px;
}

.linkarea li {
  color: #e2e2e2;
  padding: 15px 0px;
  list-style-type: none;
  cursor: pointer;
}

footer h5 {
  color: #E8C57A;
  font-family: 'poppins';
  font-weight: 600;
}

.contactarea p {
  color: #ffffff;
}

footer img {
  width: 250px;
	mix-blend-mode: lighten;
}

.linkarea li:hover {
  left: 5px;
}




.our-team {
  text-align: center;
  position: relative;
  color: #fff;
  margin-top: 30px;
}

.our-team:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease 0s;
  opacity: 0;
}

.our-team:hover:before {
  opacity: 1;
}

.our-team img {
  width: 100%;
  height: auto;
}

.our-team .team-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 0;
  background-color: #E8C57A;
  transition: all 0.3s ease 0s;
  color: #000000;
}

.our-team:hover .team-content {
  bottom: 20%;
}

.our-team .team-content .name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 7px;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}

.our-team:hover .team-content .name {
  transform: translateY(30px);
  transition-delay: 0.3s;
}

.our-team .team-content .post {
  font-size: 17px;
  display: block;
  transition: all 0.3s ease 0s;
  text-transform: capitalize;
}

.our-team:hover .team-content .post {
  transform: translateY(-30px);
  transition-delay: 0.3s;
}

@media screen and (max-width:990px) {
  .our-team {
    margin-bottom: 30px !important;
  }
}





/* ///// inputs /////*/

input:focus~label,
textarea:focus~label,
input:valid~label,
textarea:valid~label {
  font-size: 0.75em;
  color: #999;
  top: -5px;
  -webkit-transition: all 0.225s ease;
  transition: all 0.225s ease;
}

.styled-input {
  float: left;
  width: 293px;
  margin: 7px 0px;
  position: relative;
  border-radius: 4px;
}

@media only screen and (max-width: 768px) {
  .styled-input {
    width: 100%;
  }
}

.styled-input label {
  color: #999;
  padding: 1.3rem 30px 1rem 30px;
  position: absolute;
  top: 5px;
  left: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  pointer-events: none;
}

.styled-input.wide {
  width: 650px;
  max-width: 100%;
}

.inner-contact input,
textarea {
  padding: 25px;
  border: 0;
  width: 100%;
  font-size: 1rem;
  background-color: #2d2d2d;
  color: white;
  border-radius: 4px;
}

.inner-contact input:focus,
textarea:focus {
  outline: 0;
}

.inner-contact input:focus~span,
textarea:focus~span {
  width: 100%;
  -webkit-transition: all 0.075s ease;
  transition: all 0.075s ease;
}

.inner-contact textarea {
  width: 100%;
  min-height: 14em;
}

.input-container {
  width: 650px;
  max-width: 100%;
  margin: 20px auto 25px auto;
}

.submit-btn {
  float: right;
  padding: 7px 35px;
  border-radius: 60px;
  display: inline-block;
  background-color: #4b8cfb;
  color: white;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.06), 0 2px 10px 0 rgba(0, 0, 0, 0.07);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.submit-btn:hover {
  transform: translateY(1px);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 1px 1px 0 rgba(0, 0, 0, 0.09);
}

@media (max-width: 768px) {
  .submit-btn {
    width: 100%;
    float: none;
    text-align: center;
  }
}

input[type="checkbox"]+label {
  color: #ccc;
  font-style: italic;
}

input[type="checkbox"]:checked+label {
  color: #f00;
  font-style: normal;
}














div#timeline_container>ul {
  position: relative;
  width: 4px;
  background: #cdc9c6;
  border-right: 1px solid white;
  margin: 0 auto;
  padding: 6em 0 0;
  list-style: none;
}

div#timeline_container>ul:after {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #cdc9c6;
  box-shadow: 1px 1px 1px white;
  position: absolute;
  bottom: 0;
  left: -6px;
}

div#timeline_container>ul>li {
  position: relative;
  padding: .3em 0;
  min-height: 230px;
  cursor: pointer;

  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

div#timeline_container>ul>li.hidden {
  position: absolute;
  top: -500px;
}

div#timeline_container>ul>li div {
  position: absolute;
}

div#timeline_container>ul li>div.event_icn {
  padding: 0.3em;
  font-size: 1.7em;
  border-radius: 50%;
  background: #ebe7e4;
  border: 3px solid #cdc9c6;
  margin-left: -22px;
  color: rgba(85, 86, 86, 0.3);
  box-shadow: 1px 1px 1px white;

  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

div#timeline_container>ul>li:hover div.event_icn,
div#timeline_container>ul li.active div.event_icn {
  color: white;
}

div#timeline_container>ul>li.life_event div.event_icn {
  background: #bde3e7;
}

div#timeline_container>ul li.life_event:hover div.event_icn,
div#timeline_container>ul li.life_event.active div.event_icn {
  background: #0ED1E7
}

div#timeline_container>ul>li.education_event div.event_icn {
  background: #eb98c5
}

div#timeline_container>ul>li.education_event:hover div.event_icn,
div#timeline_container>ul li.education_event.active div.event_icn {
  background: #EB2690
}

div#timeline_container>ul>li.work_event div.event_icn {
  background: #e7b793
}

div#timeline_container>ul>li.work_event:hover div.event_icn,
div#timeline_container>ul li.work_event.active div.event_icn {
  background: #E76B0E
}

div#timeline_container>ul>li.user_event div.event_icn {
  background: #A2A2A2
}

div#timeline_container>ul>li.user_event:hover div.event_icn,
div#timeline_container>ul li.user_event.active div.event_icn {
  background: #454545
}

div#timeline_container>ul>li.portfolio_event div.event_icn {
  background: #5E6297
}

div#timeline_container>ul>li.portfolio_event:hover div.event_icn,
div#timeline_container>ul li.portfolio_event.active div.event_icn {
  background: #5E6297
}


div#timeline_container>ul>li div.event_content {
  width: 400px;
  padding: 1em 2em 1.3em;
  border: 1px solid #DDDBDA;
  border-radius: 10px;
  top: -2em;
  opacity: 0.3;
  background: white;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

div#timeline_container>ul>li div.event_content a {
  color: #999;
}

div#timeline_container>ul>li:hover div.event_content,
div#timeline_container>ul li.active div.event_content {
  opacity: 1;
}

div#timeline_container>ul>li:nth-child(odd) div.event_content {
  right: -470px;
}

div#timeline_container>ul>li:nth-child(even) div.event_content {
  left: -470px;
  text-align: right
}

div#timeline_container>ul>li div.event_content:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-bottom: 1px solid #DDDBDA;
  border-left: 1px solid #DDDBDA;
  top: 3em;
  background: #ebe7e4;
  margin-top: 8px;
  background: white;
}


div#timeline_container>ul>li:nth-child(odd) div.event_content:before {
  left: -11px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

div#timeline_container>ul>li:nth-child(even) div.event_content:before {
  right: -11px;
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
  transform: rotate(225deg);
}

div#timeline_container>ul>li div.event_content h2 {
  margin: 0.3em 0;
  padding: 0;
  text-transform: capitalize;
  font-size: 1.4em;
}

div#timeline_container>ul>li div.event_content p {
  margin: 0;
  padding: 0;
  line-height: 1.5em;
}

div#timeline_container>ul>li div.event_content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1.5em;
}

div#timeline_container>ul>li div.event_date {
  top: 1em;
  width: 180px;
  text-align: right;
  font-size: 1.2em;
  text-shadow: 1px 1px 1px white;
  opacity: 0.3;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

div#timeline_container>ul>li:nth-child(even) div.event_date {
  text-align: left;
}

div#timeline_container>ul>li:hover div.event_date,
div#timeline_container>ul li.active div.event_date {
  opacity: 0.9;
}

div#timeline_container>ul>li:nth-child(odd) div.event_date {
  right: 60px;
}

div#timeline_container>ul>li:nth-child(even) div.event_date {
  left: 60px;
}

div#instructions_container {
  position: fixed;
  padding: 2em;
  width: 300px;
  bottom: 2em;
  right: 2em;
  line-height: 1.4em;
  background: #FDFDBD;
  border-radius: 10px;
  border: 1px solid #DDDBDA;
  z-index: 40;
  font-size: 0.9em;
  color: black;
  line-height: 1.6em;
}

div#info_container {
  position: fixed;
  bottom: 2em;
  right: 2em;
  border-radius: 50%;
  color: #ebe7e4;
  background: #6d6b6a;
  opacity: 0.3;
  cursor: pointer;
  width: 22px;
  font-size: 14px;
  height: 22px;
  padding-top: 2px;
  text-align: center;
  font-family: 'lobster', 'cursive';
  display: none;
}

div#info_container:hover {
  opacity: 0.9;
}


.ourteam {
  padding: 100px 0px;
}

.ourteam .heading {
  text-align: center;
  /* padding-bottom: 30px; */
}

.inner-contact {
  padding: 100PX 0px;
}

.call i {
  font-size: 26px;
  background-color: #E8C57A;
  padding: 20px;
}

.call P {
  margin-top: 10px;
  font-weight: 400;
}

/* hsdbj */

.icontbutton button {
  --color: #000000;
  font-family: inherit;
  display: inline-block;
  padding: 14px 30px;
  line-height: 2.5em;
  overflow: hidden;
  cursor: pointer;
  font-size: 17px;
  z-index: 1;
  color: var(--color);
  border: none;
  position: relative;
  background-color: #E8C57A;
  font-weight: 500;
  letter-spacing: 0.1rem;
  border: 2px solid #f3cd00;
}

.icontbutton button::before {
  position: absolute;
  content: "";
  background: var(--color);
  width: 300px;
  height: 350px;
  z-index: -1;
  border-radius: 50%;
}

.icontbutton button:hover {
  color: #E8C57A;
  /* background-color: #000000; */
  border: 2px solid #000000;
}

.icontbutton button:before {
  top: 100%;
  left: 0;
  transition: 0.3s all;
}

.icontbutton button:hover::before {
  top: -100px;
  left: -20px;
}

/* kjghdj */

.copyright {
  border-top: 1px solid rgba(255, 230, 0, 0.37);
}

.copyright p {
  padding-top: 30px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 0px;
}

.copyright p a {
  text-decoration: none;
}

.linkarea i {
  font-size: 14px;
  padding-right: 10px;
  justify-content: center;
}

.goals-innerpage {
  padding: 80px 0px;
}

.goals-innerpage p {
  line-height: 2.2rem;
  color: #555555;
}

.field {
  display: inline;
  margin: auto;
}

.field input[type="number"],
.field button {
  width: 12%;
  display: inline;
  padding: 20px;
  margin: 0px 10px;
}

.field select {
  width: 21%;
  display: inline;
  padding: 20px;
  margin: 0px 10px;
}

.field option {
  padding: 10px;
  padding: 20px;
}

.allfield {
  text-align: center;
  padding: 30px;
  background-color: #E8C57A;
}

.fieldsection {
  padding: 100px 0px;
}

.field button {
  --color: #E8C57A;
  /* font-family: inherit; */
  display: inline-block;
  padding: 10px 30px;
  line-height: 2.5em;
  overflow: hidden;
  cursor: pointer;
  font-size: 17px;
  z-index: 1;
  color: var(--color);
  border: none;
  position: relative;
  background-color: #000000;
  font-weight: 500;
  letter-spacing: 0.1rem;
  border: 2px solid #000000;
}

.field button::before {
  position: absolute;
  content: "";
  background: var(--color);
  width: 300px;
  height: 350px;
  z-index: -1;
  border-radius: 50%;
}

.field button:hover {
  color: #000000;
  /* background-color: #000000; */
  border: 2px solid #000000;
}

.field button:before {
  top: 100%;
  left: 0;
  transition: 0.3s all;
}

.field button:hover::before {
  top: -120px;
  left: -10px;
}

.brandbox {
  border: 2px solid rgb(230, 230, 230);
  padding: 20px;
  margin-top: 50px;
  height: 625px;
  overflow: hidden;
}

.brandbox img {
  text-align: center;
}

.Categoryheading {
  display: inline;
}

.Categoryname {
  display: inline;
  float: right;
}

.headingamount {
  display: inline;

}

.Categoryprice {
  display: inline-block;
  float: right;
}

.brandbox h4 {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  padding-bottom: 20px;
}

.workbox {
  text-align: center;
  padding: 20px;
  /* border: 1px solid rgb(243, 243, 243); */
  margin: 100px 0px 50px 0px;
  background-color: #ffffff;
  box-shadow: 0 4px 8px 0 rgba(240, 240, 240, 0.068), 0 6px 20px 0 rgba(0, 0, 0, 0.027);
  position: relative;
/*   border: 2px dashed #E8C57A;
  border-radius: 50%; */
  text-decoration: none;
	height: 405px;
}

.workbox img {
  margin: 20px 0px;
}

.workbox .worknumber {
  position: absolute;
  /* background: url(images/arrow2.png); */
  width: 50px;
  height: 50px;
  left: 43%;
  top: -40px;
  content: '01';
  background-color: rgba(0, 0, 0, 0.288);
  padding: 10px;
  border-radius: 50%;
  color: #000000;
}

.workprocess img {
  width: 60px;
  height: 60px;
  text-align: center;
}

.workprocess {
  background-color: #f6f9fc59;
}

.innerpage img {
  height: 550px;
  width: 100%;
}

.innerheading {
  top: 40% !important;
}

.workbox h4 {
  font-weight: 700;
  font-size: 20px;
}

@media only screen and (min-width: 1024px) {
  .carousel-item img {
    width: 100%;
  }
}

@media only screen and (max-width: 480px) {
  .home-about {
    padding: 50px 20px;
  }

  .heading h4 {
    font-size: 24px;
    margin-top: 20px;
  }

  .consultant {
    padding: 65px 0px;
  }

  .processwork {
    padding: 50px 20px;
  }

  .processwork h4 {
    font-size: 24px;
  }

  .processbox {
    margin: 10px 0px 10px 0px;
  }

  .pbusiness {
    padding: 50px 30px;
  }

  .testomonial {
    padding: 50px 0px;
  }

  .swiper .heading h4 {
    color: #E8C57A;
  }
	
	.mainblog img {
		object-fit: cover;
	}

  .home-blog {
    padding: 50px 30px;
  }

  .mainblog {
    margin: 30px 0px;
  }

  footer {
    padding: 50px 30px;
  }

  .imgsec::before {
    display: none;
  }

  .imgsec::after {
    display: none;
  }

  .testomonial {
    margin-top: 0px;
  }

  .brandv {
    margin-top: 50px;
  }

  .brandv img {
    width: 100%;
  }

  .bpoint ol i {
    width: 15%;
    display: none;
  }

  .carousel-caption h1 {
    font-size: 46px;
  }

  .carousel-caption {
    top: 8%;
  }

  .carousel-caption h1 {
    width: 100%;
  }

  .carousel-caption {
    right: 0;
    left: 0;
  }

  .innerpage img {
    height: 350px;
    width: 100%;
  }

  .innerheading {
    top: 40% !important;
  }

  .fieldsection {
    padding: 50px 30px;
  }

  .workbox {
    border: none;
	  height: 470px !important;
  }

  .goals-innerpage {
    padding: 50px 30px;
  }

  .ourteam {
    padding: 50px 30px;
  }

  .box12 {
    display: none;
  }

  .brandv video {
    height: 300px;
  }

  .button-sec {
    display: none;
  }

  .s-industry {
    padding-top: 105px !important;
    margin-bottom: -20px !important;
  }

  .s-industry .col-md-5 {
    margin-top: 50px;
  }

  .franchise-numbers .col-md-4 {
    width: 95% !important;
  }

  .s-page img {
    height: 300px !important;
  }

  .s-page .col-md-8 {
    margin-top: 50px;
  }

  .logo img {
    padding: 10px;
  }

  .field select,
  .field input[type="number"] {
    width: 95% !important;
    margin-bottom: 20px;
  }

  .field button {
    width: 95% !important;
  }

  .col-md-4 .brandbox {
    height: auto !important;
  }
	.brandbox .button-area .btn1,
	.brandbox .button-area .btn2 {
		font-size: 13px;
	}
	.brand-overview {
		margin-top: 80px !important;
	}
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
	.brandbox .button-area .btn1,
	.brandbox .button-area .btn2 {
		font-size: 13px;
	}
	.brand-overview {
		margin-top: 80px !important;
	}
	.mainblog img {
		object-fit: cover;
	}
  .col-md-4 .brandbox {
    height: auto !important;
  }

  .field select,
  .field input[type="number"] {
    width: 95% !important;
    margin-bottom: 20px;
  }

  .field button {
    width: 95% !important;
  }

  .logo img {
    padding: 10px;
  }

  .s-page img {
    height: 300px !important;
  }

  .s-page .col-md-8 {
    margin-top: 50px;
  }

  .franchise-numbers .col-md-4 {
    width: 95% !important;
  }

  .s-industry .col-md-5 {
    margin-top: 50px;
  }

  .s-industry {
    padding-top: 105px !important;
    margin-bottom: -20px !important;
  }

  .button-sec {
    display: none;
  }

  .home-about {
    padding: 50px 20px;
  }

  .heading h4 {
    font-size: 24px;
    margin-top: 20px;
  }

  .consultant {
    padding: 65px 0px;
  }

  .processwork {
    padding: 50px 20px;
  }

  .processwork h4 {
    font-size: 24px;
  }

  .processbox {
    margin: 10px 0px 10px 0px;
  }

  .pbusiness {
    padding: 50px 30px;
  }

  .testomonial {
    padding: 50px 0px;
  }

  .swiper .heading h4 {
    color: #f3cd00;
  }

  .home-blog {
    padding: 50px 30px;
  }

  .mainblog {
    margin: 30px 0px;
  }

  footer {
    padding: 50px 30px;
  }

  .imgsec::before {
    display: none;
  }

  .imgsec::after {
    display: none;
  }

  .testomonial {
    margin-top: 0px;
  }

  .brandv {
    margin-top: 50px;
  }

  .brandv img {
    width: 100%;
  }

  .bpoint ol i {
    width: 15%;
  }

  .carousel-caption h1 {
    font-size: 46px;
  }

  .carousel-caption {
    top: 10%;
  }

  .carousel-caption h1 {
    width: 100%;
  }

  .carousel-caption {
    right: 0;
    left: 0;
  }

  .logo img {
    margin-left: 25px;
  }

  .innerpage img {
    height: 350px;
    width: 100%;
  }

  .innerheading {
    top: 40% !important;
  }

  .fieldsection {
    padding: 50px 30px;
  }

  .workbox {
    border: none;
	  height: 360px !important;
  }

  .goals-innerpage {
    padding: 50px 30px;
  }

  .ourteam {
    padding: 50px 30px;
  }

  .box12 {
    display: none;
  }

  .brandv video {
    height: 300px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .brandbox {
    height: 625px;
    overflow: hidden;
  }

  .fieldsection .col-md-4 {
    width: 50%;
  }

  .field input[type="number"],
  .field button {
    width: 28% !important;
    margin-top: 20px;
  }

  .field select {
    width: 28% !important;
  }

  .logo img {
    padding: 10px;
  }

  .s-industry .col-md-7,
  .s-page .col-md-4,
  .s-page .col-md-8 {
    width: 100%;
  }

  .s-page .col-md-8 {
    margin-top: 50px;
  }

  .s-industry .col-md-5 {
    margin-top: 40px;
    width: 100%;
  }

  .button-sec,
  .col-md-2-none {
    display: none;
  }

  .franchise-numbers .col-md-4 {
    width: 47% !important;
  }

  footer img {
    width: 100% !important;
  }

  .col-md-2-w {
    width: 24%;
  }

  nav {
    position: fixed;
    z-index: 3;
    padding: 0px;
  }

  .hamburger {
    display: block;
    position: absolute;
    cursor: pointer;
    right: 5%;
    top: 50%;
    transform: translate(-5%, -50%);
    z-index: 2;
    transition: all 0.7s ease;
  }

  .nav-links {
    position: fixed;
    background: #131418;
    height: 70vh;
    width: 100%;
    flex-direction: column;
    clip-path: circle(50px at 90% -20%);
    -webkit-clip-path: circle(50px at 90% -10%);
    transition: all 1s ease-out;
    pointer-events: none;
    float: left;
    padding: 0px;
  }

  .nav-links.open {
    clip-path: circle(1000px at 90% 35%);
    -webkit-clip-path: circle(1000px at 90% 35%);
    pointer-events: all;
  }

  .nav-links li {
    opacity: 5 !important;
  }

  .nav-links li:nth-child(1) {
    transition: all 0.5s ease 0.2s;
  }

  .nav-links li:nth-child(2) {
    transition: all 0.5s ease 0.4s;
  }

  .nav-links li:nth-child(3) {
    transition: all 0.5s ease 0.6s;
  }

  .nav-links li:nth-child(4) {
    transition: all 0.5s ease 0.7s;
  }

  .nav-links li:nth-child(5) {
    transition: all 0.5s ease 0.8s;
  }

  .nav-links li:nth-child(6) {
    transition: all 0.5s ease 0.9s;
    margin: 0;
  }

  .nav-links li:nth-child(7) {
    transition: all 0.5s ease 1s;
    margin: 0;
  }

  li.fade {
    opacity: 1;
  }

  .home-about {
    padding: 50px 20px;
  }

  .heading h4 {
    font-size: 24px;
    margin-top: 20px;
  }

  .consultant {
    padding: 65px 0px;
  }

  .processwork {
    padding: 50px 20px;
  }

  .processwork h4 {
    font-size: 24px;
  }

  .processbox {
    margin: 10px 0px 10px 0px;
  }

  .pbusiness {
    padding: 50px 30px;
  }

  .testomonial {
    padding: 50px 0px;
  }

  .swiper .heading h4 {
    color: #f3cd00;
  }

  .home-blog {
    padding: 50px 30px;
  }

  .mainblog {
    margin: 30px 0px;
  }

  footer {
    padding: 50px 30px;
  }

  .imgsec::before {
    display: none;
  }

  .imgsec::after {
    display: none;
  }

  .testomonial {
    margin-top: 0px;
  }

  .brandv {
    margin-top: 50px;
  }

  .brandv img {
    width: 100%;
  }

  .bpoint ol i {
    width: 15%;
  }

  .innerpage img {
    height: 350px;
    width: 100%;
  }

  .innerheading {
    top: 40% !important;
  }

  .box12 {
    display: none;
  }
}






.kenburns-bottom {
  -webkit-animation: kenburns-bottom 5s ease-out both;
  animation: kenburns-bottom 5s ease-out both;
}

/* ----------------------------------------------
 * Generated by Animista on 2024-8-5 17:1:15
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation kenburns-bottom
 * ----------------------------------------
 */
@-webkit-keyframes kenburns-bottom {
  0% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 84%;
    transform-origin: 50% 84%;
  }

  100% {
    -webkit-transform: scale(1.25) translateY(15px);
    transform: scale(1.25) translateY(15px);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
}

@keyframes kenburns-bottom {
  0% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    -webkit-transform-origin: 50% 84%;
    transform-origin: 50% 84%;
  }

  100% {
    -webkit-transform: scale(1.25) translateY(15px);
    transform: scale(1.25) translateY(15px);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
}




.rotate-in-2-fwd-ccw {
  -webkit-animation: rotate-in-2-fwd-ccw 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: rotate-in-2-fwd-ccw 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2024-8-5 17:7:12
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation rotate-in-2-fwd-ccw
 * ----------------------------------------
 */
@-webkit-keyframes rotate-in-2-fwd-ccw {
  0% {
    -webkit-transform: translateZ(-200px) rotate(45deg);
    transform: translateZ(-200px) rotate(45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateZ(0) rotate(0);
    transform: translateZ(0) rotate(0);
    opacity: 1;
  }
}

@keyframes rotate-in-2-fwd-ccw {
  0% {
    -webkit-transform: translateZ(-200px) rotate(45deg);
    transform: translateZ(-200px) rotate(45deg);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateZ(0) rotate(0);
    transform: translateZ(0) rotate(0);
    opacity: 1;
  }
}

.box12 {
  left: 0;
  top: 20%;
  z-index: 1 !important;
  left: -100px;
  top: 25%;
}

.box12 img {
  position: absolute;
  left: -100px;
  z-index: 1 !important;
  bottom: 25%;
}

.up-down {
  animation: up-down linear 4s;
  animation-iteration-count: infinite;
  transform-origin: 50% 50%;
  -webkit-animation: up-down linear 4s;
  -webkit-animation-iteration-count: infinite;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: up-down linear 4s;
  -moz-animation-iteration-count: infinite;
  -moz-transform-origin: 50% 50%;
  -o-animation: up-down linear 4s;
  -o-animation-iteration-count: infinite;
  -o-transform-origin: 50% 50%;
  -ms-animation: up-down linear 4s;
  -ms-animation-iteration-count: infinite;
  -ms-transform-origin: 50% 50%;
}

@keyframes up-down {
  0% {
    transform: translate(1px, 20px);
  }

  24% {
    transform: translate(1px, 30px);
  }

  50% {
    transform: translate(1px, 12px);
  }

  74% {
    transform: translate(1px, 22px);
  }

  100% {
    transform: translate(1px, 22px);
  }
}

@-moz-keyframes up-down {
  0% {
    -moz-transform: translate(1px, 20px);
  }

  24% {
    -moz-transform: translate(1px, 30px);
  }

  50% {
    -moz-transform: translate(1px, 12px);
  }

  74% {
    -moz-transform: translate(1px, 22px);
  }

  100% {
    -moz-transform: translate(1px, 22px);
  }
}

@-webkit-keyframes up-down {
  0% {
    -webkit-transform: translate(1px, 20px);
  }

  24% {
    -webkit-transform: translate(1px, 30px);
  }

  50% {
    -webkit-transform: translate(1px, 12px);
  }

  74% {
    -webkit-transform: translate(1px, 22px);
  }

  100% {
    -webkit-transform: translate(1px, 22px);
  }
}

@-o-keyframes up-down {
  0% {
    -o-transform: translate(1px, 20px);
  }

  24% {
    -o-transform: translate(1px, 30px);
  }

  50% {
    -o-transform: translate(1px, 12px);
  }

  74% {
    -o-transform: translate(1px, 22px);
  }

  100% {
    -o-transform: translate(1px, 22px);
  }
}

@-ms-keyframes up-down {
  0% {
    -ms-transform: translate(1px, 20px);
  }

  24% {
    -ms-transform: translate(1px, 30px);
  }

  50% {
    -ms-transform: translate(1px, 12px);
  }

  74% {
    -ms-transform: translate(1px, 22px);
  }

  100% {
    -ms-transform: translate(1px, 22px);
  }
}





/****************** after wordpress intregration  *****************************/


.linkarea a {
  color: #e2e2e2;
  padding: 15px 0px;
  list-style-type: none;
  cursor: pointer;
  text-decoration: none;
}

.col-md-6 .rightblog:nth-child(2),
.col-md-6 .rightblog:nth-child(3) {
  margin-top: 30px;
}

#menu-footer-1 li::before,
#menu-footer-2 li::before {
  content: '>';
  font-size: 20px;
  margin-left: -30px;
  margin-right: 15px;
}

.mainblog a,
.rightblog a {
  text-decoration: none;
}

#menu-top-menu .current_page_item a {
  color: #E8C57A;
}

.innerheading a {
  text-decoration: none;
}

.call a {
  text-decoration: none;
  color: black;
}

.icontbutton .submit {
  --color: #000000;
  font-family: inherit;
  width: 150px;
  display: inline-block;
  padding: 14px 30px;
  line-height: 2.5em;
  overflow: hidden;
  cursor: pointer;
  font-size: 17px;
  z-index: 1;
  color: var(--color);
  border: none;
  position: relative;
  background-color: #E8C57A;
  font-weight: 500;
  letter-spacing: 0.1rem;
  border: 2px solid #E8C57A;
}

.icontbutton .submit::before {
  position: absolute;
  top: 100%;
  left: 0;
  content: "";
  background: var(--color);
  width: 300px;
  height: 350px;
  z-index: -1;
  border-radius: 50%;
  transition: 0.3s all;
}

.icontbutton .submit:hover {
  color: #E8C57A;
  border: 2px solid #000000;
  background: var(--color);
  transition: 0.3s all;
}

/* .icontbutton .submit:hover::before {
  top: -100px !important;
  left: -20px !important;
  z-index: 999;
  background: red !important;
} */

#popmake-15 {
  border: none;
}

#popmake-15 input[type="text"],
#popmake-15 input[type="email"],
#popmake-15 input[type="tel"] {
  padding: 25px;
  border: 0;
  width: 100%;
  font-size: 1rem;
  background-color: #2d2d2d;
  color: white;
  border-radius: 4px;
}


.form-sec input[type="text"],
.form-sec input[type="email"],
.form-sec input[type="tel"],
.form-sec textarea {
  padding: 18px;
  border: 0;
  width: 100%;
  font-size: 1rem;
  border: 1px solid #2d2d2d;
  background-color: #ffff;
  color: white;
  border-radius: 4px;
  height: auto !important;
}

#popmake-15 .styled-input,
.form-sec .styled-input {
  width: 100%;
}

#popmake-15 textarea,
.form-sec textarea {
  height: 150px;
}

#pum_popup_title_15 {
  margin: 20px 0px;
  text-align: center;
  font-size: 36px;
  font-family: "Russo One", sans-serif;
  font-weight: 500;
}

.image-area {
  text-align: center;
}

.image-area img {
  width: 80%;
  height: 130px;
  object-fit: contain;
}

.image-area {
  margin-bottom: 40px;
}

.certified {
  background-color: #E8C57A;
  color: #000000;
  padding: 15px;
}

.franchise {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  padding-bottom: 10px;
}

.button-area {
  display: flex;
  width: 100%;
}

.brandbox .button-area .btn1 {
  padding: 12px 15px;
  border: none;
  background-color: #000000;
  color: #E8C57A;
  margin-top: 20px;
}

.brandbox .button-area .btn2 {
  padding: 12px 15px;
  border: none;
  color: black;
  background-color: #E8C57A;
  margin-top: 20px;
}

.button-area .btn2 {
  margin-left: 15px;
}

.search-result {
  margin-top: 50px;
}

.search-result .heading-area {
  text-align: center;
}

.heading-area p {
  font-size: 18px;
}

.franchice-search {
  margin-top: -100px;
  margin-bottom: 80px;
}

.heading-area span {
  color: #F6602D;
}

.s-page {
  margin-top: 30px;
  margin-bottom: 50px;
}

.s-page img {
  height: 500px;
  width: 100%;
  object-fit: cover;
}

.s-industry {
  padding-top: 180px;
  margin-bottom: 30px;
}

.s-industry h1,
.franchise-numbers h4,
.franchise-delails h4,
.location-avilable h4 {
  font-size: 36px;
  color: #242424;
  font-weight: 600;
  padding-bottom: 20px;
  font-family: 'jost';
}

.franchiser-details h4,
.franchiser-cost h4,
.values h4,
.industry-per h4,
.training h4,
.ideal-candidate h4,
.purchasing h4 {
  font-family: 'Poppins', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: #242424 !important;
  line-height: 150%;
  margin: 30px 0px;
}

.franchiser-details td,
.franchiser-cost td {
  border-bottom: none !important;
}

.s-industry .col-md-5 {
  text-align: center;
}

.form-sec {
  padding: 25px 0px;
}

.s-industry .col-md-4 img {
  height: 180px;
  width: 100%;
  object-fit: contain;
}

.form-sec .icontbutton .submit {
  width: 100%;
}

.content p:last-child {
  border: 1px solid red;
  padding: 20px;
  display: none;
}

.brand-overview {
  margin-top: 40px;
}

.brand-overview p,
.brand-overview ul li,
.location-avilable p {
  line-height: 28px;
}

.brand-overview h4 {
  font-family: 'Poppins', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 600;
  font-size: 24px;
  margin: 26px 0px;
}

.franchise-numbers,
.franchise-delails,
.location-avilable {
  margin-bottom: 50px;
}

.franchise-numbers p {
  font-size: 18px;
}

.franchise-numbers,
.location-avilable {
  background-color: #e8eef4;
  padding: 40px 0px;
}

.common-p {
  color: #F6602D;
  font-size: 2rem !important;
  margin-bottom: 10px;
  font-weight: 700;
}

.franchise-numbers .col-md-4 {
  background-color: #fff;
  box-shadow: 0 .875rem 1.875rem rgba(0, 0, 0, .1), 0 .1875rem 1rem rgba(0, 0, 0, .07);
  text-align: center;
  margin: 15px 10px;
  width: 31%;
  padding: 30px 0px;
}

.franchise-delails td {
  border-bottom: none !important;
}

.s-industry .col-md-5 h5 {
  font-family: 'jost';
  padding: 20px 0px;
  font-size: 25px;
}

/* pasenation start */
.pasenation {
  margin-top: 60px;
  text-align: center;
}

/* pasenation end */

#scrollToTopBtn {
  display: none;
}

.container #scrollToTopBtn img {
  height: 50px;
  width: 50px !important;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
}

.s-page h4 {
  font-size: 36px;
  color: #242424;
  font-weight: 600;
  padding-bottom: 20px;
  font-family: 'jost';
}

.contactarea a {
  text-decoration: none;
  color: #ffff;
}

.inner-conditions,
.inner-privacy {
  padding: 70px 0px;
}

.cbox input, .cbox p {
	width: unset !important;
    display: inline;
}

.contact-from .icontbutton {
	margin-top: 30px;
}

#popmake-15 .wpcf7-list-item-label {
	    font-weight: 300;
}

#popmake-15 .mt-3 {
	margin-bottom: 20px;
}

.form-sec .mt-3 {
	margin-bottom: 20px;
}

body {
	    position: relative;
    z-index: 9;
}


/****************** after wordpress intregration  *****************************/