@import url("https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap");
.text-primary {
  color: #007AFF;
}

.text-secondary {
  color: #FF5B00;
}

.text-dark {
  color: #000;
}

.text-gray {
  color: #555555;
}

.text-gray-dark {
  color: #333333;
}

.text-gray-md {
  color: #999;
}

.text-gray-light {
  color: #dbdbdb;
}

.text-white {
  color: #fff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Geist", sans-serif;
  font-size: 18px;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 1023px) {
  .container {
    padding: 0 30px;
  }
}

.container-fluid {
  max-width: inherit;
  padding: 0 50px;
}
@media (max-width: 767px) {
  .container-fluid {
    padding: 0 30px;
  }
}

section {
  padding: 75px 0;
}
@media (max-width: 767px) {
  section {
    padding: 60px 0;
  }
}

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

h1 {
  font-family: "DM Sans", sans-serif;
}

h1 {
  font-size: 70px;
  line-height: 90px;
  font-weight: 300;
}
@media (max-width: 1199px) {
  h1 {
    font-size: 50px;
    line-height: 70px;
  }
}
@media (max-width: 1023px) {
  h1 {
    font-size: 40px;
    line-height: 60px;
  }
}
@media (max-width: 1023px) {
  h1 {
    font-size: 28px;
    line-height: 35px;
  }
}

h2 {
  font-size: 50px;
  font-weight: 300;
}
@media (max-width: 1199px) {
  h2 {
    font-size: 50px;
  }
}
@media (max-width: 1023px) {
  h2 {
    font-size: 35px;
  }
}
@media (max-width: 1023px) {
  h2 {
    font-size: 28px;
  }
}

.anim_round {
  animation: roundanim 8s linear infinite;
}

@keyframes roundanim {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.lr_mv {
  animation: lr_mv 4s linear infinite;
}

@keyframes lr_mv {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-15px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
.social {
  display: flex;
  align-items: center;
  gap: 20px;
}
.social::before {
  position: relative;
  content: "";
  display: inline-flex;
  width: 50px;
  height: 1px;
  background: #000;
}
.social ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.social ul li {
  display: inline-flex;
}
.social ul li a {
  display: inline-flex;
}
.social ul li a svg {
  width: 24px;
  height: 24px;
  fill: #000;
  transition: 0.5s;
}
.social ul li a:hover svg {
  fill: #FF5B00;
}

.rategroup {
  width: 230px;
}
.rategroup .star {
  display: block;
}
.rategroup .rate {
  display: block;
  color: #999;
  margin: 0 0 10px;
}
.rategroup .rate b {
  font-weight: 400;
  color: #000;
  font-size: 30px;
}
.rategroup .starImgGrp {
  display: flex;
  align-items: center;
  margin: 0 0 15px;
}
.rategroup .starImgGrp span:nth-child(1) {
  left: 0px;
  transition: all 0.5s ease-in-out 0s;
}
.rategroup .starImgGrp span:nth-child(2) {
  left: -8px;
  transition: all 0.5s ease-in-out 0.8s;
}
.rategroup .starImgGrp span:nth-child(3) {
  left: -16px;
  transition: all 0.5s ease-in-out 1.6s;
}
.rategroup .starImgGrp span:nth-child(4) {
  left: -24px;
  transition: all 0.5s ease-in-out 2.4s;
}
.rategroup .starImgGrp span {
  border: 3px solid #fff;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-self: center;
  border-radius: 50%;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  position: relative;
}
.rategroup .starImgGrp span.plus {
  background: #000;
  padding: 10px;
}
.rategroup .starImgGrp span img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.rategroup p {
  margin: 0;
}

.nextDownBtn {
  width: 60px;
  height: 90px;
  border: 1px solid #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 80px;
  transition: 0.5s;
  transform: scale(1);
  overflow: hidden;
  position: relative;
}
.nextDownBtn:before {
  position: absolute;
  background: #333333;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: 0;
  border-radius: 80px;
  transition: all 0.5s ease-in-out 0s;
}
.nextDownBtn:after {
  position: absolute;
  background: #000;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: 0;
  border-radius: 80px;
  transition: all 0.5s ease-in-out 0.3s;
}
.nextDownBtn svg {
  position: relative;
  z-index: 1;
}
.nextDownBtn svg path {
  transition: 0.5s;
}
.nextDownBtn:hover {
  height: 95px;
  transform: scale(1.04);
}
.nextDownBtn:hover:before {
  height: 100%;
}
.nextDownBtn:hover:after {
  height: 100%;
}
.nextDownBtn:hover svg path {
  fill: #fff;
}

.mainbtn1 {
  padding: 18px 20px;
  gap: 8px;
  border: 1px solid #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 35px;
  transition: 0.5s;
  transform: scale(1);
  overflow: hidden;
  position: relative;
  color: #000;
}
.mainbtn1.mainbtn1v {
  padding: 30px 40px;
  border-radius: 50px;
}
.mainbtn1.mainbtn2v {
  background: #000;
  color: #fff;
}
.mainbtn1:before {
  position: absolute;
  background: #333333;
  content: "";
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 0;
  height: 100%;
  border-radius: 35px;
  transition: all 0.5s ease-in-out 0s;
}
.mainbtn1:after {
  position: absolute;
  background: #000;
  content: "";
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 0;
  height: 100%;
  border-radius: 35px;
  transition: all 0.5s ease-in-out 0.3s;
}
.mainbtn1 span {
  position: relative;
  z-index: 1;
}
.mainbtn1 span.ico {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #FF5B00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mainbtn1 span svg path {
  transition: 0.5s;
}
.mainbtn1:hover {
  transform: scale(1.04);
  color: #fff;
}
.mainbtn1:hover:before {
  width: 100%;
}
.mainbtn1:hover:after {
  width: 100%;
}
.mainbtn1.mainbtn1-v1 {
  background: #000;
  color: #fff;
}

.btnHolder {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.mainbtn2 {
  padding: 10px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  gap: 8px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  transform: scale(1);
  overflow: hidden;
  position: relative;
  color: #000;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
}
.mainbtn2:before {
  position: absolute;
  background: #333333;
  content: "";
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 0;
  height: 100%;
  border-radius: 35px;
  transition: all 0.5s ease-in-out 0s;
}
.mainbtn2:after {
  position: absolute;
  background: #000;
  content: "";
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 0;
  height: 100%;
  border-radius: 35px;
  transition: all 0.5s ease-in-out 0.3s;
}
.mainbtn2 span {
  position: relative;
  z-index: 1;
  transition: all 0.5s ease-in-out 0.15s;
}
.mainbtn2:hover {
  transform: scale(1.04);
  color: #fff;
}
.mainbtn2:hover:before {
  width: 100%;
}
.mainbtn2:hover:after {
  width: 100%;
}

.learn {
  color: #000;
  padding: 5px 0;
  position: relative;
}
.learn:after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #FF5B00;
  transition: 0.5s;
}
.learn:hover:after {
  width: 100%;
  left: 0;
  right: auto;
}
.learn span {
  display: inline-block;
  vertical-align: top;
}
.learn span svg {
  width: 12px;
}
.learn span svg path {
  transition: 0.5s;
}
.learn1 {
  line-height: 50px;
  padding-right: 30px;
  text-align: center;
  display: inline-block;
  transition: all 0.3s ease-out;
  position: relative;
  min-width: 180px;
  text-align: left;
}
.learn1 .ico1 {
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
}
.learn1:hover .text {
  padding-left: 20px;
}
.learn1:hover .ico1 {
  filter: invert(1) brightness(100);
}
.learn1 .text {
  visibility: hidden;
  width: 100%;
  transition: 0.5s;
}
.learn1 .flip-front,
.learn1 .flip-back {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform-style: flat;
  transition: transform 0.3s ease-out;
  padding-left: 0;
}
.learn1 .flip-front {
  color: #000;
  border: 2px solid transparent;
  background-color: transparent;
  transform: rotateX(0deg) translateZ(25px);
}
.learn1 .flip-back {
  color: #fff;
  background-color: #313131;
  border: 2px solid #313131;
  transform: rotateX(90deg) translateZ(25px);
}
.learn1:hover .flip-front {
  transform: rotateX(-90deg) translateZ(25px);
  padding-left: 20px;
}
.learn1:hover .flip-back {
  transform: rotateX(0deg) translateZ(25px);
  padding-left: 20px;
}

.tophd {
  margin: 0 0 50px;
  max-width: 70%;
}
@media (max-width: 767px) {
  .tophd {
    max-width: 100%;
    margin: 0 0 30px;
  }
}
.tophd.tophd-center {
  text-align: center;
  max-width: inherit;
}
.tophd .subtitle {
  display: inline-block;
  position: relative;
  padding: 0 0 0 20px;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.tophd .subtitle::before {
  position: absolute;
  content: "";
  left: 0;
  top: 10px;
  background: #FF5B00;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.tophd h2 {
  margin: 0 0 20px;
  text-transform: uppercase;
}
.tophd h3 {
  margin: 0 0 20px;
  font-size: 30px;
  line-height: 30px;
  font-weight: 300;
  text-align: center;
}
.tophd p {
  margin: 0 0 25px;
}

.two-divide {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 115px;
}
.two-divide.two-divide1 {
  gap: 40px;
}
.two-divide.two-divide1 .tdright1 {
  text-align: right;
}
@media (max-width: 1023px) {
  .two-divide.two-divide1 .tdright1 {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .two-divide.two-divide1 .tdright1 img {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .two-divide.two-divide1 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.two-divide.two-divide1 .commonlist {
  font-size: 20px;
}
.two-divide.two-divide1 .commonlist li {
  margin: 0 0 25px;
}
.two-divide.two-divide1 .commonlist li:hover {
  letter-spacing: 2px;
}
@media (max-width: 767px) {
  .two-divide {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}
.two-divide .tophd {
  max-width: inherit;
}

.commonlist {
  font-size: 24px;
  line-height: 30px;
}
@media (max-width: 1023px) {
  .commonlist {
    font-size: 20px;
    line-height: 26px;
  }
}
.commonlist li {
  position: relative;
  padding: 0 0 0 40px;
  margin: 0 0 35px;
  transition: 0.5s;
  letter-spacing: 0;
}
.commonlist li:hover {
  letter-spacing: 3px;
}
.commonlist li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 15px;
  background: #999;
  width: 30px;
  height: 2px;
}

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

.video_sec video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fullvideo img, .fullvideo video {
  width: 100%;
}

.customBtnSec {
  position: relative;
}
.customBtnSec .maintext {
  position: absolute;
  left: 0;
  bottom: 0;
  color: rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  font-size: 130px;
  font-weight: 900;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .customBtnSec .maintext {
    font-size: 90px;
  }
}
.customBtnSec .tophd {
  margin: 0;
}
.customBtnSec .tophd h2 {
  margin: 0;
}
@media (max-width: 479px) {
  .customBtnSec .tophd h2 {
    font-size: 20px;
  }
}
.customBtnSec .customBtnHolder {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .customBtnSec .customBtnHolder {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 479px) {
  .customBtnSec .customBtnHolder .mainbtn1 {
    padding: 10px 20px;
  }
}

.mb-150 {
  margin-bottom: 150px;
}

@media (max-width: 767px) {
  .animtdright {
    overflow: hidden;
    height: 300px;
  }
}

.circularanimation {
  width: 500px;
  height: 500px;
  position: relative;
}
@media (max-width: 1199px) {
  .circularanimation {
    transform: scale(0.8);
  }
}
@media (max-width: 767px) {
  .circularanimation {
    transform: scale(0.5);
    transform-origin: 0 0;
  }
}
.circularanimation > img {
  width: 100%;
  height: 100%;
}
.circularanimation .circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.circularanimation .circle.circle1 {
  width: 200px;
  height: 200px;
  left: calc((500px - 200px) / 2);
  top: calc((500px - 200px) / 2);
  animation: circularpath1 100s linear infinite;
}
.circularanimation .circle.circle1 .ico {
  animation: circularpath1 100s linear infinite;
}
.circularanimation .circle.circle1 .ico:nth-child(1) {
  left: 0;
  top: 0;
}
.circularanimation .circle.circle1 .ico:nth-child(2) {
  left: auto;
  bottom: 0px;
  right: 100px;
  top: auto;
}
.circularanimation .circle.circle2 {
  width: 250px;
  height: 250px;
  left: calc((500px - 250px) / 2);
  top: calc((500px - 250px) / 2);
  animation: circularpath1 100s linear infinite;
}
.circularanimation .circle.circle2 .ico {
  animation: circularpath1 100s linear infinite;
}
.circularanimation .circle.circle2 .ico:nth-child(1) {
  left: 250px;
  top: 0;
  transform: translate(-50%, 0);
}
.circularanimation .circle.circle2 .ico:nth-child(2) {
  left: auto;
  bottom: 0;
  right: 250px;
  top: auto;
  transform: translate(50%, 0);
}
.circularanimation .circle.circle3 {
  width: 333.3333333333px;
  height: 333.3333333333px;
  left: calc((500px - 333.3333333333px) / 2);
  top: calc((500px - 333.3333333333px) / 2);
  animation: circularpath1 100s linear infinite;
}
.circularanimation .circle.circle3 .ico {
  animation: circularpath1 100s linear infinite;
}
.circularanimation .circle.circle3 .ico:nth-child(1) {
  left: 166.6666666667px;
  top: 0;
  transform: translate(-50%, -100%);
}
.circularanimation .circle.circle3 .ico:nth-child(2) {
  left: auto;
  bottom: 130px;
  right: 30px;
  top: auto;
  transform: translate(100%, 100%);
}
.circularanimation .circle.circle4 {
  width: 500px;
  height: 500px;
  left: 0;
  top: 0;
  animation: circularpath1 100s linear infinite;
}
.circularanimation .circle.circle4 .ico {
  animation: circularpath1 100s linear infinite;
}
.circularanimation .circle.circle4 .ico:nth-child(1) {
  left: 250px;
  bottom: 0;
  right: auto;
  top: auto;
  transform: translate(50%, 50%);
}
.circularanimation .circle .ico {
  position: absolute;
}

@keyframes circularpath1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes circularpath2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.button {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #ccc;
  color: white;
}

.button-outline {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #fff;
  color: #000;
}

.button-primary {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #007AFF;
  color: #fff;
  outline: 1px solid #007AFF;
}
.button-primary:hover {
  background: #fff;
  color: #007AFF;
  outline: 1px solid #007AFF;
}

.button-outline-primary {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #fff;
  color: #007AFF;
  outline: 1px solid #007AFF;
}
.button-outline-primary:hover {
  background: #007AFF;
  color: #fff;
  outline: 1px solid #fff;
}

.button-secondary {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #FF5B00;
  color: #fff;
  outline: 1px solid #FF5B00;
}
.button-secondary:hover {
  background: #fff;
  color: #FF5B00;
  outline: 1px solid #FF5B00;
}

.button-outline-secondary {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #fff;
  color: #FF5B00;
  outline: 1px solid #FF5B00;
}
.button-outline-secondary:hover {
  background: #FF5B00;
  color: #fff;
  outline: 1px solid #fff;
}

.button-dark {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #000;
  color: #fff;
  outline: 1px solid #000;
}
.button-dark:hover {
  background: #fff;
  color: #000;
  outline: 1px solid #000;
}

.button-outline-dark {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #fff;
  color: #000;
  outline: 1px solid #000;
}
.button-outline-dark:hover {
  background: #000;
  color: #fff;
  outline: 1px solid #fff;
}

.button-gray {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #555555;
  color: #fff;
  outline: 1px solid #555555;
}
.button-gray:hover {
  background: #fff;
  color: #555555;
  outline: 1px solid #555555;
}

.button-outline-gray {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #fff;
  color: #555555;
  outline: 1px solid #555555;
}
.button-outline-gray:hover {
  background: #555555;
  color: #fff;
  outline: 1px solid #fff;
}

.button-gray-dark {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #333333;
  color: #fff;
  outline: 1px solid #333333;
}
.button-gray-dark:hover {
  background: #fff;
  color: #333333;
  outline: 1px solid #333333;
}

.button-outline-gray-dark {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #fff;
  color: #333333;
  outline: 1px solid #333333;
}
.button-outline-gray-dark:hover {
  background: #333333;
  color: #fff;
  outline: 1px solid #fff;
}

.button-gray-md {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #999;
  color: #fff;
  outline: 1px solid #999;
}
.button-gray-md:hover {
  background: #fff;
  color: #999;
  outline: 1px solid #999;
}

.button-outline-gray-md {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #fff;
  color: #999;
  outline: 1px solid #999;
}
.button-outline-gray-md:hover {
  background: #999;
  color: #fff;
  outline: 1px solid #fff;
}

.button-gray-light {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #dbdbdb;
  color: #fff;
  outline: 1px solid #dbdbdb;
}
.button-gray-light:hover {
  background: #fff;
  color: #dbdbdb;
  outline: 1px solid #dbdbdb;
}

.button-outline-gray-light {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #fff;
  color: #dbdbdb;
  outline: 1px solid #dbdbdb;
}
.button-outline-gray-light:hover {
  background: #dbdbdb;
  color: #fff;
  outline: 1px solid #fff;
}

.button-white {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #fff;
  color: #fff;
  outline: 1px solid #fff;
}
.button-white:hover {
  background: #fff;
  color: #fff;
  outline: 1px solid #fff;
}

.button-outline-white {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #fff;
  color: #fff;
  outline: 1px solid #fff;
}
.button-outline-white:hover {
  background: #fff;
  color: #fff;
  outline: 1px solid #fff;
}

.site-header {
  padding: 20px 0;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 12;
  width: 100%;
  transition: 0.5s;
}
.site-header .headerHold {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .headerHold .menubtn {
  display: inline-flex;
  text-transform: uppercase;
  width: 60px;
  height: 60px;
  border: 1px solid #000;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  color: #000;
}

.sidemenuholder {
  padding: 80px 50px;
  width: 100%;
  height: 100%;
  position: fixed;
  right: 0;
  transform: translate(100%, 0);
  transition: 0.5s;
  top: 0;
  z-index: 15;
}
.sidemenuholder:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  background: #000;
  width: 0;
  height: 0;
  border-radius: 100% 0 0 100%;
  transition: all 1s ease-in-out 0s;
}
.sidemenuholder.active {
  transform: translate(0, 0);
}
.sidemenuholder.active:after {
  width: 200%;
  height: 200%;
  top: -30%;
}
.sidemenuholder.active .sidemenu {
  opacity: 1;
  transform: translate(0, 0);
}
.sidemenuholder .cross {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 40px;
  height: 40px;
  z-index: 2;
}
.sidemenuholder .cross:hover {
  background: #fff;
  border-radius: 50%;
}
.sidemenuholder .cross:hover:before {
  background: #000;
}
.sidemenuholder .cross:hover:after {
  background: #000;
}
.sidemenuholder .cross:before {
  position: absolute;
  width: calc(100% - 10px);
  height: 3px;
  background: #fff;
  content: "";
  left: 10px;
  top: 9px;
  transform: rotate(45deg);
  transform-origin: left 0;
  transition: 0.5s;
}
.sidemenuholder .cross:after {
  position: absolute;
  width: calc(100% - 10px);
  height: 3px;
  background: #fff;
  content: "";
  left: 8px;
  bottom: 7px;
  transform: rotate(-45deg);
  transform-origin: left 0;
  transition: 0.5s;
}
.sidemenuholder .sidemenu {
  text-align: center;
  font-size: 36px;
  position: relative;
  z-index: 1;
  transform: translate(-100px, 0);
  opacity: 0;
  transition: all 0.5s ease-in-out 0.5s;
}
.sidemenuholder .sidemenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
}
.sidemenuholder .sidemenu ul li {
  margin: 0 0 35px;
  position: relative;
  display: inline-block;
}
.sidemenuholder .sidemenu ul li:after {
  position: absolute;
  content: "";
  right: 0;
  width: 0;
  height: 100%;
  background: #fff;
  transition: 0.5s;
}
.sidemenuholder .sidemenu ul li:hover:after {
  width: 100%;
  left: 0;
  right: auto;
}
.sidemenuholder .sidemenu ul li a {
  color: #fff;
  position: relative;
  z-index: 1;
  padding: 5px 25px;
}
.sidemenuholder .sidemenu ul li a:hover {
  color: #000;
}

.sticky .site-header {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

figure {
  margin: 0;
}

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

footer {
  background: #F9F9F9;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .footer-top {
    flex-wrap: wrap;
  }
}

.footer-left {
  padding: 80px 25px 50px 0;
  border-right: 2px solid #dbdbdb;
  width: 30%;
}
@media (max-width: 991px) {
  .footer-left {
    padding: 60px 0 40px;
    width: 100%;
    border-bottom: 2px solid #dbdbdb;
    border-right: none;
    text-align: center;
  }
}
@media (max-width: 574px) {
  .footer-left {
    border-bottom: 1px solid #dbdbdb;
    padding: 60px 0 30px;
  }
}
.footer-left .f-logo {
  width: 195px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .footer-left .f-logo {
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .footer-left .f-logo {
    margin-bottom: 20px;
  }
}
.footer-left .f-para {
  font-size: 18px;
  color: #000;
  line-height: 28px;
  margin: 0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .footer-left .f-para {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
  }
}
@media (max-width: 479px) {
  .footer-left .f-para {
    font-size: 16px;
    line-height: 26px;
  }
}

.footer-right {
  width: 70%;
}
@media (max-width: 991px) {
  .footer-right {
    width: 100%;
  }
}
.footer-right .footer-subs {
  padding: 90px 0 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #dbdbdb;
}
@media (max-width: 1199px) {
  .footer-right .footer-subs {
    padding: 90px 0 40px 40px;
  }
}
@media (max-width: 991px) {
  .footer-right .footer-subs {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .footer-right .footer-subs {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }
}
@media (max-width: 574px) {
  .footer-right .footer-subs {
    padding: 30px 0;
    border-bottom: 1px solid #dbdbdb;
  }
}
.footer-right .footer-subs .f-para {
  width: 30%;
  margin: 0;
}
@media (max-width: 1199px) {
  .footer-right .footer-subs .f-para {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .footer-right .footer-subs .f-para {
    width: 100%;
    text-align: center;
  }
}
.footer-right .footer-subs .footer-subs-frm {
  width: 65%;
  text-align: right;
}
.footer-right .footer-subs .footer-subs-frm form {
  display: flex;
}
@media (max-width: 767px) {
  .footer-right .footer-subs .footer-subs-frm form {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .footer-right .footer-subs .footer-subs-frm {
    width: 100%;
  }
}
.footer-right .footer-subs .footer-subs-frm input[type=text] {
  width: 55%;
  padding: 20px 25px;
  border: 1px solid #dbdbdb;
  border-radius: 30px 0 0 30px;
  border-right: none;
  background: #fff;
  height: 57px;
  outline: none;
  box-shadow: none;
  position: relative;
  left: 5px;
}
@media (max-width: 574px) {
  .footer-right .footer-subs .footer-subs-frm input[type=text] {
    width: 55%;
  }
}
@media (max-width: 479px) {
  .footer-right .footer-subs .footer-subs-frm input[type=text] {
    width: 100%;
    border-radius: 30px;
    margin-bottom: 10px;
  }
}
.footer-right .footer-subs .footer-subs-frm input[type=submit] {
  width: auto;
  padding: 15px 25px;
  border-radius: 0 30px 30px 0;
  background: #000;
  border: 1px solid #000;
  color: #fff;
  font-size: 18px;
  height: 57px;
  outline: none;
  box-shadow: none;
  transition: 0.5s;
  cursor: pointer;
}
.footer-right .footer-subs .footer-subs-frm input[type=submit]:hover {
  background: #FF5B00;
  border: 1px solid #FF5B00;
}
@media (max-width: 574px) {
  .footer-right .footer-subs .footer-subs-frm input[type=submit] {
    width: 43%;
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  .footer-right .footer-subs .footer-subs-frm input[type=submit] {
    width: 100%;
    border-radius: 30px;
  }
}
.footer-right .footer-menu {
  padding: 40px 0 40px 50px;
  border-bottom: 2px solid #dbdbdb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  list-style: none;
}
@media (max-width: 1199px) {
  .footer-right .footer-menu {
    padding: 40px 0 40px 40px;
  }
}
@media (max-width: 991px) {
  .footer-right .footer-menu {
    padding: 40px 0;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .footer-right .footer-menu {
    gap: initial;
    justify-content: space-between;
  }
}
@media (max-width: 574px) {
  .footer-right .footer-menu {
    gap: 15px;
    flex-wrap: wrap;
    padding: 30px 0;
    border-bottom: 1px solid #dbdbdb;
    justify-content: center;
  }
}
.footer-right .footer-menu li {
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  position: relative;
}
.footer-right .footer-menu li:after {
  position: absolute;
  content: "";
  right: 0;
  width: 0;
  height: 100%;
  background: #ccc;
  transition: 0.5s;
}
.footer-right .footer-menu li:hover:after {
  width: 100%;
  left: 0;
  right: auto;
}
@media (max-width: 479px) {
  .footer-right .footer-menu li {
    font-size: 17px;
    line-height: 20px;
  }
}
.footer-right .footer-menu li a {
  color: #000;
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 5px 10px;
}
.footer-right .footer-social {
  padding: 40px 0 40px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1199px) {
  .footer-right .footer-social {
    padding: 40px 0 40px 40px;
  }
}
@media (max-width: 991px) {
  .footer-right .footer-social {
    padding: 40px 0;
  }
}
@media (max-width: 574px) {
  .footer-right .footer-social {
    padding: 30px 0;
  }
}
.footer-right .footer-social span {
  font-size: 18px;
  line-height: 25px;
  color: #000;
  font-weight: 400;
  display: inline-block;
  margin-right: 15px;
  text-transform: uppercase;
}
@media (max-width: 479px) {
  .footer-right .footer-social span {
    font-size: 17px;
    line-height: 20px;
  }
}
@media (max-width: 374px) {
  .footer-right .footer-social span {
    font-size: 15px;
  }
}
.footer-right .footer-social .footer-social-ic {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-bottom {
  padding: 30px 0;
  border-top: 1px solid #dbdbdb;
}

.footer-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .footer-copy {
    flex-direction: column;
    gap: 5px;
  }
}
.footer-copy p {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  margin: 0;
  line-height: 28px;
}
@media (max-width: 991px) {
  .footer-copy p {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .footer-copy p {
    font-size: 17px;
    line-height: 27px;
  }
}
@media (max-width: 574px) {
  .footer-copy p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 479px) {
  .footer-copy p {
    font-size: 15px;
    line-height: 25px;
  }
}
@media (max-width: 479px) {
  .footer-copy p br {
    display: none;
  }
}
.footer-copy .footer-btm-menu {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 574px) {
  .footer-copy .footer-btm-menu {
    flex-wrap: wrap;
  }
}
.footer-copy .footer-btm-menu li {
  padding-right: 30px;
  margin-right: 30px;
  border-right: 1px solid #D0D1D5;
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  line-height: 12px;
  position: relative;
}
.footer-copy .footer-btm-menu li:after {
  position: absolute;
  content: "";
  right: 0;
  width: 0;
  height: 100%;
  background: #ccc;
  transition: 0.5s;
}
.footer-copy .footer-btm-menu li:hover:after {
  width: 100%;
  left: 0;
  right: auto;
}
.footer-copy .footer-btm-menu li a {
  position: relative;
  z-index: 1;
  padding: 5px 10px;
  display: inline-block;
}
@media (max-width: 574px) {
  .footer-copy .footer-btm-menu li {
    padding-right: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 479px) {
  .footer-copy .footer-btm-menu li {
    padding-right: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 424px) {
  .footer-copy .footer-btm-menu li {
    padding-right: 10px;
    margin-right: 10px;
  }
}
.footer-copy .footer-btm-menu li:last-child {
  padding-right: 0;
  margin-right: 0;
  border: none;
}
@media (max-width: 424px) {
  .footer-copy .footer-btm-menu li:nth-child(2) {
    border-right: none;
  }
}
@media (max-width: 374px) {
  .footer-copy .footer-btm-menu li:nth-child(2) {
    border-right: 1px solid #000;
  }
}
@media (max-width: 374px) {
  .footer-copy .footer-btm-menu li:first-child {
    border-right: none;
  }
}
.footer-copy .footer-btm-menu li a {
  color: #000;
}

.banner {
  background: url(../images/bannerbg.webp) repeat 0 0;
  background-size: 100%;
  height: 100%;
  padding: 120px 0;
  position: relative;
}
.banner:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgb(255, 255, 255) 50%, transparent 100%);
}
@media (max-width: 1199px) {
  .banner {
    padding: 130px 0;
  }
}
@media (max-width: 1023px) {
  .banner {
    padding: 100px 0;
  }
}
@media (max-width: 767px) {
  .banner {
    height: auto;
    background-size: cover;
    padding-bottom: 20px;
  }
}
.banner .bannerHold {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.banner .bannerHold .bannertext {
  width: 65%;
}
@media (max-width: 1023px) {
  .banner .bannerHold .bannertext {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .banner .bannerHold .bannertext {
    width: 90%;
  }
}
.banner .bannerHold .bannertext h1 {
  color: #000;
  text-transform: uppercase;
  font-weight: 200;
  letter-spacing: 3px;
}
.banner .bannerHold .bannertext h1 .vdo {
  display: inline-block;
  vertical-align: middle;
  width: 170px;
  height: 80px;
}
@media (max-width: 767px) {
  .banner .bannerHold .bannertext h1 .vdo {
    width: 130px;
    height: 60px;
  }
}
.banner .bannerHold .bannertext h1 .vdo video {
  width: 100%;
  height: 100%;
  border-radius: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .bannerHold .bannertext h1 .mikeholder {
  position: relative;
  display: inline-block;
}
.banner .bannerHold .bannertext h1 .mikeholder div {
  display: inline-block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #007AFF;
  position: relative;
}
@media (max-width: 767px) {
  .banner .bannerHold .bannertext h1 .mikeholder div {
    width: 40px;
    height: 40px;
  }
}
.banner .bannerHold .bannertext h1 .mikeholder div img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.banner .bannerHold .bannertext h1 .mikeholder div:nth-child(2n) {
  left: -40px;
}
@media (max-width: 767px) {
  .banner .bannerHold .bannertext h1 .mikeholder div:nth-child(2n) {
    left: -20px;
  }
}
.banner .bannerHold .bannertext h1 .mikeholder div.mike {
  position: absolute;
  right: 20px;
  top: -20px;
  background: none;
}
.banner .bannerHold .bannerImg {
  width: 35%;
  text-align: center;
}
.banner .bannerHold .bannerImg .bnrimg {
  display: inline-block;
}
.banner .bannerHold .bannerImg .bnrimg img {
  width: auto;
}
.banner .btnHolder {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: absolute;
  left: 0;
  width: 100%;
  top: calc(100% + 20px);
}
.banner .social {
  position: absolute;
  right: 80px;
  top: 30%;
  transform: translate(0, 0) rotate(-90deg);
  z-index: 1;
  transform-origin: right center;
}
@media (max-width: 1199px) {
  .banner .social {
    right: 75px;
  }
}
@media (max-width: 1023px) {
  .banner .social {
    right: 50px;
  }
}
@media (max-width: 767px) {
  .banner .social {
    gap: 8px;
  }
}
.banner .rategroup {
  position: absolute;
  bottom: 20px;
  right: 12%;
  z-index: 1;
}
@media (max-width: 1023px) {
  .banner .rategroup {
    right: 80px;
    width: 200px;
  }
}
@media (max-width: 1023px) {
  .banner .rategroup {
    right: auto;
    width: 200px;
    left: 0;
    bottom: auto;
    position: relative;
    padding-left: 30px;
    margin-top: 25px;
    width: auto;
  }
}
.banner .rategroup .starImgGrp {
  position: relative;
  height: 48px;
}
.banner .rategroup .starImgGrp span:nth-child(1) {
  left: 0;
  transition: all 1s ease-in-out 0s;
}
.banner .rategroup .starImgGrp span:nth-child(2) {
  left: 0;
  transition: all 1s ease-in-out 0s;
}
.banner .rategroup .starImgGrp span:nth-child(3) {
  left: 0;
  transition: all 1s ease-in-out 0s;
}
.banner .rategroup .starImgGrp span:nth-child(4) {
  left: 0;
  transition: all 1s ease-in-out 0s;
}
.banner .rategroup .starImgGrp span {
  position: absolute;
}
.banner .nextDownBtn {
  position: absolute;
  bottom: 20px;
  left: 30%;
}

#myHeading > *:nth-child(1) {
  position: relative;
  top: 50px;
  transition: all 0.5s ease-out 0.3s;
  opacity: 0;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
#myHeading > *:nth-child(2) {
  position: relative;
  top: 50px;
  transition: all 0.5s ease-out 0.6s;
  opacity: 0;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
#myHeading > *:nth-child(3) {
  position: relative;
  top: 50px;
  transition: all 0.5s ease-out 0.9s;
  opacity: 0;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
#myHeading > *:nth-child(4) {
  position: relative;
  top: 50px;
  transition: all 0.5s ease-out 1.2s;
  opacity: 0;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
#myHeading > *:nth-child(5) {
  position: relative;
  top: 50px;
  transition: all 0.5s ease-out 1.5s;
  opacity: 0;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
#myHeading > *:nth-child(6) {
  position: relative;
  top: 50px;
  transition: all 0.5s ease-out 1.8s;
  opacity: 0;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
#myHeading > *:nth-child(7) {
  position: relative;
  top: 50px;
  transition: all 0.5s ease-out 2.1s;
  opacity: 0;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
#myHeading > *:nth-child(8) {
  position: relative;
  top: 50px;
  transition: all 0.5s ease-out 2.4s;
  opacity: 0;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
#myHeading > *:nth-child(9) {
  position: relative;
  top: 50px;
  transition: all 0.5s ease-out 2.7s;
  opacity: 0;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
#myHeading > *:nth-child(10) {
  position: relative;
  top: 50px;
  transition: all 0.5s ease-out 3s;
  opacity: 0;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
#myHeading > *:nth-child(11) {
  position: relative;
  top: 50px;
  transition: all 0.5s ease-out 3.3s;
  opacity: 0;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
#myHeading > *:nth-child(12) {
  position: relative;
  top: 50px;
  transition: all 0.5s ease-out 3.6s;
  opacity: 0;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
#myHeading > *:nth-child(13) {
  position: relative;
  top: 50px;
  transition: all 0.5s ease-out 3.9s;
  opacity: 0;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
#myHeading > *:nth-child(14) {
  position: relative;
  top: 50px;
  transition: all 0.5s ease-out 4.2s;
  opacity: 0;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
#myHeading > *:nth-child(15) {
  position: relative;
  top: 50px;
  transition: all 0.5s ease-out 4.5s;
  opacity: 0;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
#myHeading > *:nth-child(16) {
  position: relative;
  top: 50px;
  transition: all 0.5s ease-out 4.8s;
  opacity: 0;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
#myHeading > *:nth-child(17) {
  position: relative;
  top: 50px;
  transition: all 0.5s ease-out 5.1s;
  opacity: 0;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
#myHeading > *:nth-child(18) {
  position: relative;
  top: 50px;
  transition: all 0.5s ease-out 5.4s;
  opacity: 0;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
#myHeading > *:nth-child(19) {
  position: relative;
  top: 50px;
  transition: all 0.5s ease-out 5.7s;
  opacity: 0;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
#myHeading > *:nth-child(20) {
  position: relative;
  top: 50px;
  transition: all 0.5s ease-out 6s;
  opacity: 0;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}

.loaded #myHeading > *:nth-child(1) {
  position: relative;
  top: 0;
  opacity: 1;
}
.loaded #myHeading > *:nth-child(2) {
  position: relative;
  top: 0;
  opacity: 1;
}
.loaded #myHeading > *:nth-child(3) {
  position: relative;
  top: 0;
  opacity: 1;
}
.loaded #myHeading > *:nth-child(4) {
  position: relative;
  top: 0;
  opacity: 1;
}
.loaded #myHeading > *:nth-child(5) {
  position: relative;
  top: 0;
  opacity: 1;
}
.loaded #myHeading > *:nth-child(6) {
  position: relative;
  top: 0;
  opacity: 1;
}
.loaded #myHeading > *:nth-child(7) {
  position: relative;
  top: 0;
  opacity: 1;
}
.loaded #myHeading > *:nth-child(8) {
  position: relative;
  top: 0;
  opacity: 1;
}
.loaded #myHeading > *:nth-child(9) {
  position: relative;
  top: 0;
  opacity: 1;
}
.loaded #myHeading > *:nth-child(10) {
  position: relative;
  top: 0;
  opacity: 1;
}
.loaded #myHeading > *:nth-child(11) {
  position: relative;
  top: 0;
  opacity: 1;
}
.loaded #myHeading > *:nth-child(12) {
  position: relative;
  top: 0;
  opacity: 1;
}
.loaded #myHeading > *:nth-child(13) {
  position: relative;
  top: 0;
  opacity: 1;
}
.loaded #myHeading > *:nth-child(14) {
  position: relative;
  top: 0;
  opacity: 1;
}
.loaded #myHeading > *:nth-child(15) {
  position: relative;
  top: 0;
  opacity: 1;
}
.loaded #myHeading > *:nth-child(16) {
  position: relative;
  top: 0;
  opacity: 1;
}
.loaded #myHeading > *:nth-child(17) {
  position: relative;
  top: 0;
  opacity: 1;
}
.loaded #myHeading > *:nth-child(18) {
  position: relative;
  top: 0;
  opacity: 1;
}
.loaded #myHeading > *:nth-child(19) {
  position: relative;
  top: 0;
  opacity: 1;
}
.loaded #myHeading > *:nth-child(20) {
  position: relative;
  top: 0;
  opacity: 1;
}

.loaded .banner .rategroup .starImgGrp span:nth-child(1) {
  left: 0px;
}
.loaded .banner .rategroup .starImgGrp span:nth-child(2) {
  left: 40px;
}
.loaded .banner .rategroup .starImgGrp span:nth-child(3) {
  left: 80px;
}
.loaded .banner .rategroup .starImgGrp span:nth-child(4) {
  left: 120px;
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 50px;
  overflow: hidden;
}
.partner-logo p {
  display: inline-block;
  white-space: nowrap;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.partner-logo .partner-main {
  display: inline-block;
  width: 95%;
}
@media (max-width: 991px) {
  .partner-logo .partner-main {
    width: 90%;
  }
}
@media (max-width: 574px) {
  .partner-logo .partner-main {
    width: 78%;
  }
}
@media (max-width: 374px) {
  .partner-logo .partner-main {
    width: 65%;
  }
}

.partner-slider {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}
.partner-slider .slider-arrow {
  display: none;
}
.partner-slider .partner-dots {
  display: none;
}
.partner-slider .partner-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.partner-slider .partner-wrapper .partner-item {
  flex-shrink: 0;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.partner-slider .partner-wrapper .partner-item:first-child {
  margin-left: 0;
}
.partner-slider .partner-wrapper .partner-item:last-child {
  margin-right: 0;
}

.video_sec video, .video_sec img {
  width: 100%;
}
.video_sec.video_sec1 {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.video_sec.video_sec1 img {
  opacity: 0;
}
.video_sec.video_sec1 .videoContent {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.accordianHolder {
  width: 100%;
  border-radius: 5px;
}
.accordianHolder .accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.accordianHolder .accordion-item .accordion-header {
  font-weight: 400;
  padding: 25px 40px 25px 25px;
  margin: 0;
  cursor: pointer;
  transition: 0.3s;
  font-size: 18px;
  font-family: "Geist", sans-serif;
  position: relative;
}
.accordianHolder .accordion-item .accordion-header:after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  background: url(../images/plus.svg) no-repeat 0 0;
  background-size: 40px;
  width: 40px;
  height: 40px;
}
.accordianHolder .accordion-item .accordion-content {
  padding: 0 40px 15px 25px;
  transition: 0.5s;
  font-size: 18px;
  line-height: 26px;
  font-weight: 300;
  display: none;
}
.accordianHolder .accordion-item.active .accordion-header:after {
  background: url(../images/minus.svg) no-repeat 0 0;
  background-size: 40px;
}
.accordianHolder .accordion-item.active .accordion-content {
  display: block;
}

.connectHolder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .connectHolder {
    grid-template-columns: repeat(1, 1fr);
  }
}
.connectHolder .connectDiv {
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0 50px;
  text-align: center;
  font-size: 22px;
  line-height: 34px;
}
.connectHolder .connectDiv > * {
  margin: 0 0 24px;
}
@media (max-width: 991px) {
  .connectHolder .connectDiv {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .connectHolder .connectDiv {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding: 30px;
  }
  .connectHolder .connectDiv:last-child {
    border-bottom: none;
  }
}
.connectHolder .connectDiv:last-child {
  border-right: none;
}
.connectHolder .connectDiv h6 {
  font-size: 24px;
  line-height: 24px;
  font-weight: 300;
  text-transform: uppercase;
}
.connectHolder .connectDiv address {
  font-style: normal;
}
.connectHolder .connectDiv span {
  display: block;
}
.connectHolder .connectDiv span a {
  display: inline-block;
  text-decoration: underline;
  color: #000;
}
.connectHolder .connectDiv span a:hover {
  color: #FF5B00;
}

.quote_sec {
  position: relative;
  background: url(../images/quote.webp) no-repeat 0 50px;
  background-size: 100%;
  background-attachment: fixed;
}
@media (max-width: 1023px) {
  .quote_sec {
    background-size: cover;
  }
}
@media (max-width: 767px) {
  .quote_sec {
    background: none;
  }
}
.quote_sec img {
  width: 100%;
  opacity: 0;
}
@media (max-width: 767px) {
  .quote_sec img {
    opacity: 1;
  }
}
.quote_sec .quote_content {
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  z-index: 1;
}
@media (max-width: 767px) {
  .quote_sec .quote_content {
    bottom: 0;
    position: relative;
  }
}
.quote_sec .quote_content .quote_holder {
  width: 600px;
  background: #fff;
  padding: 80px;
  box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .quote_sec .quote_content .quote_holder {
    width: 100%;
    padding: 25px 0;
  }
}

.testdiv .testdetails {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 28px;
  gap: 10px;
}
.testdiv .testdetails .testimg {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.1);
}
.testdiv .testdetails .testimg img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.testdiv .testdetails .testcontent {
  text-align: left;
}
.testdiv .testdetails .testcontent .name {
  display: block;
  font-size: 18px;
}
.testdiv .testdetails .testcontent .desig {
  display: block;
  font-size: 13px;
}

.testSlider {
  position: relative;
  overflow: hidden;
}
.testSlider .test-wrapper {
  display: flex;
}
.testSlider .test-wrapper .testitem {
  min-width: 100%;
  box-sizing: border-box;
  height: 335px;
  position: relative;
  flex-shrink: 0;
}
@media (max-width: 1199px) {
  .testSlider .test-wrapper .testitem {
    height: 375px;
  }
}
@media (max-width: 574px) {
  .testSlider .test-wrapper .testitem {
    height: 350px;
  }
}
@media (max-width: 479px) {
  .testSlider .test-wrapper .testitem {
    height: 380px;
  }
}
@media (max-width: 374px) {
  .testSlider .test-wrapper .testitem {
    height: 400px;
  }
}
.testSlider .test-wrapper .testitem .testdiv {
  position: absolute;
  text-align: center;
  font-size: 24px;
  line-height: 34px;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  padding: 0 100px 50px 100px;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .testSlider .test-wrapper .testitem .testdiv {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .testSlider .test-wrapper .testitem .testdiv {
    padding: 0 0 60px 0;
  }
}
@media (max-width: 574px) {
  .testSlider .test-wrapper .testitem .testdiv {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 574px) {
  .testSlider .test-wrapper .testitem .testdiv .invert svg {
    width: 90px !important;
  }
}
.testSlider .slider-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #dbdbdb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  position: absolute;
}
@media (max-width: 479px) {
  .testSlider .slider-arrow {
    width: 50px;
    height: 50px;
  }
}
.testSlider .slider-arrow:hover {
  border: 1px solid #000;
  background: #000;
  cursor: pointer;
}
.testSlider .slider-arrow img {
  filter: invert(0);
  transition: 0.5s;
}
.testSlider .slider-arrow:hover img {
  filter: invert(1);
}
.testSlider .slider-arrow.prev-arrow {
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
@media (max-width: 767px) {
  .testSlider .slider-arrow.prev-arrow {
    left: 0;
    top: auto;
    transform: translate(0, 0);
    bottom: 0;
  }
}
.testSlider .slider-arrow.next-arrow {
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
@media (max-width: 767px) {
  .testSlider .slider-arrow.next-arrow {
    right: 0;
    top: auto;
    transform: translate(0, 0);
    bottom: 0;
  }
}
.testSlider .slider-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
@media (max-width: 767px) {
  .testSlider .slider-dots {
    bottom: 20px;
  }
}
.testSlider .slider-dots .dot {
  width: 8px;
  height: 8px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.testSlider .slider-dots .dot.active {
  background-color: #000;
  width: 24px;
  border-radius: 5px;
}

.ideaHolder .ideaLeft {
  width: 40%;
  display: inline-block;
  vertical-align: top;
  position: sticky;
  top: 170px;
  padding-right: 40px;
}
@media (max-width: 1023px) {
  .ideaHolder .ideaLeft {
    padding-right: 20px;
    width: 35%;
  }
}
@media (max-width: 767px) {
  .ideaHolder .ideaLeft {
    padding-bottom: 20px;
    width: 100%;
    position: relative;
    top: 0;
  }
}
.ideaHolder .ideaLeft .tophd {
  max-width: 100%;
}
.ideaHolder .ideaRight {
  width: 58%;
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 1023px) {
  .ideaHolder .ideaRight {
    width: 63%;
  }
}
@media (max-width: 767px) {
  .ideaHolder .ideaRight {
    width: 100%;
  }
}
.ideaHolder .ideaRight .ideaItem {
  padding: 35px;
  display: inline-block;
  vertical-align: top;
  width: 48%;
}
@media (max-width: 1199px) {
  .ideaHolder .ideaRight .ideaItem {
    padding: 25px;
  }
}
@media (max-width: 1023px) {
  .ideaHolder .ideaRight .ideaItem {
    padding: 18px;
  }
}
@media (max-width: 767px) {
  .ideaHolder .ideaRight .ideaItem {
    width: 100%;
  }
}
.ideaHolder .ideaRight .ideaItem .subidea {
  display: block;
  color: #555555;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0 0 10px;
  text-transform: uppercase;
}
.ideaHolder .ideaRight .ideaItem .ico {
  display: inline-block;
  padding: 25px 0;
}
@media (max-width: 1023px) {
  .ideaHolder .ideaRight .ideaItem .ico {
    padding: 20px 0;
  }
}
.ideaHolder .ideaRight .ideaItem h3 {
  margin: 0 0 30px;
  font-size: 32px;
  font-weight: 400;
}
@media (max-width: 1199px) {
  .ideaHolder .ideaRight .ideaItem h3 {
    font-size: 25px;
  }
}
.ideaHolder .ideaRight .ideaItem p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.about_sec {
  position: relative;
  background: #f6f5f8;
}
.about_sec .aboutanim {
  position: absolute;
  right: 0;
  top: 0;
  width: 380px;
  height: 380px;
}
@media (max-width: 1023px) {
  .about_sec .aboutanim {
    width: 270px;
    height: 270px;
  }
}
@media (max-width: 767px) {
  .about_sec .aboutanim {
    width: 150px;
    height: 150px;
  }
}
.about_sec .aboutanim video {
  width: 100%;
}

.aboutHolder {
  display: flex;
}
@media (max-width: 767px) {
  .aboutHolder {
    flex-wrap: wrap;
  }
}
.aboutHolder .countHolder {
  width: 40%;
  padding-right: 50px;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}
@media (max-width: 767px) {
  .aboutHolder .countHolder {
    width: 100%;
    padding-right: 0;
    padding-bottom: 30px;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }
}
.aboutHolder .countHolder .countItem {
  margin-bottom: 50px;
}
.aboutHolder .countHolder .countItem:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .aboutHolder .countHolder .countItem {
    margin-bottom: 25px;
  }
}
.aboutHolder .countHolder .countItem h2 {
  margin: 0;
  display: inline-block;
}
.aboutHolder .countHolder .countItem h2 + span {
  display: inline-block;
  font-size: 50px;
}
@media (max-width: 1023px) {
  .aboutHolder .countHolder .countItem h2 + span {
    font-size: 35px;
  }
}
.aboutHolder .countHolder .countItem p {
  margin: 0;
}
.aboutHolder .aboutRight {
  padding-left: 80px;
  width: 60%;
}
@media (max-width: 767px) {
  .aboutHolder .aboutRight {
    width: 100%;
    padding-left: 0;
    padding-top: 30px;
  }
}
.aboutHolder .aboutRight p {
  margin: 0 0 50px;
}
@media (max-width: 767px) {
  .aboutHolder .aboutRight p {
    margin: 0 0 30px;
  }
}

.text-primary {
  color: #007AFF;
}

.text-secondary {
  color: #FF5B00;
}

.text-dark {
  color: #000;
}

.text-gray {
  color: #555555;
}

.text-gray-dark {
  color: #333333;
}

.text-gray-md {
  color: #999;
}

.text-gray-light {
  color: #dbdbdb;
}

.text-white {
  color: #fff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Geist", sans-serif;
  font-size: 18px;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 1023px) {
  .container {
    padding: 0 30px;
  }
}

.container-fluid {
  max-width: inherit;
  padding: 0 50px;
}
@media (max-width: 767px) {
  .container-fluid {
    padding: 0 30px;
  }
}

section {
  padding: 75px 0;
}
@media (max-width: 767px) {
  section {
    padding: 60px 0;
  }
}

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

h1 {
  font-family: "DM Sans", sans-serif;
}

h1 {
  font-size: 70px;
  line-height: 90px;
  font-weight: 300;
}
@media (max-width: 1199px) {
  h1 {
    font-size: 50px;
    line-height: 70px;
  }
}
@media (max-width: 1023px) {
  h1 {
    font-size: 40px;
    line-height: 60px;
  }
}
@media (max-width: 1023px) {
  h1 {
    font-size: 28px;
    line-height: 35px;
  }
}

h2 {
  font-size: 50px;
  font-weight: 300;
}
@media (max-width: 1199px) {
  h2 {
    font-size: 50px;
  }
}
@media (max-width: 1023px) {
  h2 {
    font-size: 35px;
  }
}
@media (max-width: 1023px) {
  h2 {
    font-size: 28px;
  }
}

.anim_round {
  animation: roundanim 8s linear infinite;
}

@keyframes roundanim {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.lr_mv {
  animation: lr_mv 4s linear infinite;
}

@keyframes lr_mv {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-15px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
.social {
  display: flex;
  align-items: center;
  gap: 20px;
}
.social::before {
  position: relative;
  content: "";
  display: inline-flex;
  width: 50px;
  height: 1px;
  background: #000;
}
.social ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.social ul li {
  display: inline-flex;
}
.social ul li a {
  display: inline-flex;
}
.social ul li a svg {
  width: 24px;
  height: 24px;
  fill: #000;
  transition: 0.5s;
}
.social ul li a:hover svg {
  fill: #FF5B00;
}

.rategroup {
  width: 230px;
}
.rategroup .star {
  display: block;
}
.rategroup .rate {
  display: block;
  color: #999;
  margin: 0 0 10px;
}
.rategroup .rate b {
  font-weight: 400;
  color: #000;
  font-size: 30px;
}
.rategroup .starImgGrp {
  display: flex;
  align-items: center;
  margin: 0 0 15px;
}
.rategroup .starImgGrp span:nth-child(1) {
  left: 0px;
  transition: all 0.5s ease-in-out 0s;
}
.rategroup .starImgGrp span:nth-child(2) {
  left: -8px;
  transition: all 0.5s ease-in-out 0.8s;
}
.rategroup .starImgGrp span:nth-child(3) {
  left: -16px;
  transition: all 0.5s ease-in-out 1.6s;
}
.rategroup .starImgGrp span:nth-child(4) {
  left: -24px;
  transition: all 0.5s ease-in-out 2.4s;
}
.rategroup .starImgGrp span {
  border: 3px solid #fff;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-self: center;
  border-radius: 50%;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  position: relative;
}
.rategroup .starImgGrp span.plus {
  background: #000;
  padding: 10px;
}
.rategroup .starImgGrp span img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.rategroup p {
  margin: 0;
}

.nextDownBtn {
  width: 60px;
  height: 90px;
  border: 1px solid #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 80px;
  transition: 0.5s;
  transform: scale(1);
  overflow: hidden;
  position: relative;
}
.nextDownBtn:before {
  position: absolute;
  background: #333333;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: 0;
  border-radius: 80px;
  transition: all 0.5s ease-in-out 0s;
}
.nextDownBtn:after {
  position: absolute;
  background: #000;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  height: 0;
  border-radius: 80px;
  transition: all 0.5s ease-in-out 0.3s;
}
.nextDownBtn svg {
  position: relative;
  z-index: 1;
}
.nextDownBtn svg path {
  transition: 0.5s;
}
.nextDownBtn:hover {
  height: 95px;
  transform: scale(1.04);
}
.nextDownBtn:hover:before {
  height: 100%;
}
.nextDownBtn:hover:after {
  height: 100%;
}
.nextDownBtn:hover svg path {
  fill: #fff;
}

.mainbtn1 {
  padding: 18px 20px;
  gap: 8px;
  border: 1px solid #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 35px;
  transition: 0.5s;
  transform: scale(1);
  overflow: hidden;
  position: relative;
  color: #000;
}
.mainbtn1.mainbtn1v {
  padding: 30px 40px;
  border-radius: 50px;
}
.mainbtn1.mainbtn2v {
  background: #000;
  color: #fff;
}
.mainbtn1:before {
  position: absolute;
  background: #333333;
  content: "";
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 0;
  height: 100%;
  border-radius: 35px;
  transition: all 0.5s ease-in-out 0s;
}
.mainbtn1:after {
  position: absolute;
  background: #000;
  content: "";
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 0;
  height: 100%;
  border-radius: 35px;
  transition: all 0.5s ease-in-out 0.3s;
}
.mainbtn1 span {
  position: relative;
  z-index: 1;
}
.mainbtn1 span.ico {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #FF5B00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mainbtn1 span svg path {
  transition: 0.5s;
}
.mainbtn1:hover {
  transform: scale(1.04);
  color: #fff;
}
.mainbtn1:hover:before {
  width: 100%;
}
.mainbtn1:hover:after {
  width: 100%;
}
.mainbtn1.mainbtn1-v1 {
  background: #000;
  color: #fff;
}

.btnHolder {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.mainbtn2 {
  padding: 10px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  gap: 8px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  transform: scale(1);
  overflow: hidden;
  position: relative;
  color: #000;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
}
.mainbtn2:before {
  position: absolute;
  background: #333333;
  content: "";
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 0;
  height: 100%;
  border-radius: 35px;
  transition: all 0.5s ease-in-out 0s;
}
.mainbtn2:after {
  position: absolute;
  background: #000;
  content: "";
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 0;
  height: 100%;
  border-radius: 35px;
  transition: all 0.5s ease-in-out 0.3s;
}
.mainbtn2 span {
  position: relative;
  z-index: 1;
  transition: all 0.5s ease-in-out 0.15s;
}
.mainbtn2:hover {
  transform: scale(1.04);
  color: #fff;
}
.mainbtn2:hover:before {
  width: 100%;
}
.mainbtn2:hover:after {
  width: 100%;
}

.learn {
  color: #000;
  padding: 5px 0;
  position: relative;
}
.learn:after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #FF5B00;
  transition: 0.5s;
}
.learn:hover:after {
  width: 100%;
  left: 0;
  right: auto;
}
.learn span {
  display: inline-block;
  vertical-align: top;
}
.learn span svg {
  width: 12px;
}
.learn span svg path {
  transition: 0.5s;
}
.learn1 {
  line-height: 50px;
  padding-right: 30px;
  text-align: center;
  display: inline-block;
  transition: all 0.3s ease-out;
  position: relative;
  min-width: 180px;
  text-align: left;
}
.learn1 .ico1 {
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
}
.learn1:hover .text {
  padding-left: 20px;
}
.learn1:hover .ico1 {
  filter: invert(1) brightness(100);
}
.learn1 .text {
  visibility: hidden;
  width: 100%;
  transition: 0.5s;
}
.learn1 .flip-front,
.learn1 .flip-back {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform-style: flat;
  transition: transform 0.3s ease-out;
  padding-left: 0;
}
.learn1 .flip-front {
  color: #000;
  border: 2px solid transparent;
  background-color: transparent;
  transform: rotateX(0deg) translateZ(25px);
}
.learn1 .flip-back {
  color: #fff;
  background-color: #313131;
  border: 2px solid #313131;
  transform: rotateX(90deg) translateZ(25px);
}
.learn1:hover .flip-front {
  transform: rotateX(-90deg) translateZ(25px);
  padding-left: 20px;
}
.learn1:hover .flip-back {
  transform: rotateX(0deg) translateZ(25px);
  padding-left: 20px;
}

.tophd {
  margin: 0 0 50px;
  max-width: 70%;
}
@media (max-width: 767px) {
  .tophd {
    max-width: 100%;
    margin: 0 0 30px;
  }
}
.tophd.tophd-center {
  text-align: center;
  max-width: inherit;
}
.tophd .subtitle {
  display: inline-block;
  position: relative;
  padding: 0 0 0 20px;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.tophd .subtitle::before {
  position: absolute;
  content: "";
  left: 0;
  top: 10px;
  background: #FF5B00;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.tophd h2 {
  margin: 0 0 20px;
  text-transform: uppercase;
}
.tophd h3 {
  margin: 0 0 20px;
  font-size: 30px;
  line-height: 30px;
  font-weight: 300;
  text-align: center;
}
.tophd p {
  margin: 0 0 25px;
}

.two-divide {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 115px;
}
.two-divide.two-divide1 {
  gap: 40px;
}
.two-divide.two-divide1 .tdright1 {
  text-align: right;
}
@media (max-width: 1023px) {
  .two-divide.two-divide1 .tdright1 {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .two-divide.two-divide1 .tdright1 img {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .two-divide.two-divide1 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.two-divide.two-divide1 .commonlist {
  font-size: 20px;
}
.two-divide.two-divide1 .commonlist li {
  margin: 0 0 25px;
}
.two-divide.two-divide1 .commonlist li:hover {
  letter-spacing: 2px;
}
@media (max-width: 767px) {
  .two-divide {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}
.two-divide .tophd {
  max-width: inherit;
}

.commonlist {
  font-size: 24px;
  line-height: 30px;
}
@media (max-width: 1023px) {
  .commonlist {
    font-size: 20px;
    line-height: 26px;
  }
}
.commonlist li {
  position: relative;
  padding: 0 0 0 40px;
  margin: 0 0 35px;
  transition: 0.5s;
  letter-spacing: 0;
}
.commonlist li:hover {
  letter-spacing: 3px;
}
.commonlist li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 15px;
  background: #999;
  width: 30px;
  height: 2px;
}

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

.video_sec video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fullvideo img, .fullvideo video {
  width: 100%;
}

.customBtnSec {
  position: relative;
}
.customBtnSec .maintext {
  position: absolute;
  left: 0;
  bottom: 0;
  color: rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  font-size: 130px;
  font-weight: 900;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .customBtnSec .maintext {
    font-size: 90px;
  }
}
.customBtnSec .tophd {
  margin: 0;
}
.customBtnSec .tophd h2 {
  margin: 0;
}
@media (max-width: 479px) {
  .customBtnSec .tophd h2 {
    font-size: 20px;
  }
}
.customBtnSec .customBtnHolder {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .customBtnSec .customBtnHolder {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 479px) {
  .customBtnSec .customBtnHolder .mainbtn1 {
    padding: 10px 20px;
  }
}

.mb-150 {
  margin-bottom: 150px;
}

@media (max-width: 767px) {
  .animtdright {
    overflow: hidden;
    height: 300px;
  }
}

.circularanimation {
  width: 500px;
  height: 500px;
  position: relative;
}
@media (max-width: 1199px) {
  .circularanimation {
    transform: scale(0.8);
  }
}
@media (max-width: 767px) {
  .circularanimation {
    transform: scale(0.5);
    transform-origin: 0 0;
  }
}
.circularanimation > img {
  width: 100%;
  height: 100%;
}
.circularanimation .circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.circularanimation .circle.circle1 {
  width: 200px;
  height: 200px;
  left: calc((500px - 200px) / 2);
  top: calc((500px - 200px) / 2);
  animation: circularpath1 100s linear infinite;
}
.circularanimation .circle.circle1 .ico {
  animation: circularpath1 100s linear infinite;
}
.circularanimation .circle.circle1 .ico:nth-child(1) {
  left: 0;
  top: 0;
}
.circularanimation .circle.circle1 .ico:nth-child(2) {
  left: auto;
  bottom: 0px;
  right: 100px;
  top: auto;
}
.circularanimation .circle.circle2 {
  width: 250px;
  height: 250px;
  left: calc((500px - 250px) / 2);
  top: calc((500px - 250px) / 2);
  animation: circularpath1 100s linear infinite;
}
.circularanimation .circle.circle2 .ico {
  animation: circularpath1 100s linear infinite;
}
.circularanimation .circle.circle2 .ico:nth-child(1) {
  left: 250px;
  top: 0;
  transform: translate(-50%, 0);
}
.circularanimation .circle.circle2 .ico:nth-child(2) {
  left: auto;
  bottom: 0;
  right: 250px;
  top: auto;
  transform: translate(50%, 0);
}
.circularanimation .circle.circle3 {
  width: 333.3333333333px;
  height: 333.3333333333px;
  left: calc((500px - 333.3333333333px) / 2);
  top: calc((500px - 333.3333333333px) / 2);
  animation: circularpath1 100s linear infinite;
}
.circularanimation .circle.circle3 .ico {
  animation: circularpath1 100s linear infinite;
}
.circularanimation .circle.circle3 .ico:nth-child(1) {
  left: 166.6666666667px;
  top: 0;
  transform: translate(-50%, -100%);
}
.circularanimation .circle.circle3 .ico:nth-child(2) {
  left: auto;
  bottom: 130px;
  right: 30px;
  top: auto;
  transform: translate(100%, 100%);
}
.circularanimation .circle.circle4 {
  width: 500px;
  height: 500px;
  left: 0;
  top: 0;
  animation: circularpath1 100s linear infinite;
}
.circularanimation .circle.circle4 .ico {
  animation: circularpath1 100s linear infinite;
}
.circularanimation .circle.circle4 .ico:nth-child(1) {
  left: 250px;
  bottom: 0;
  right: auto;
  top: auto;
  transform: translate(50%, 50%);
}
.circularanimation .circle .ico {
  position: absolute;
}

@keyframes circularpath1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes circularpath2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.button {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #ccc;
  color: white;
}

.button-outline {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #fff;
  color: #000;
}

.button-primary {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #007AFF;
  color: #fff;
  outline: 1px solid #007AFF;
}
.button-primary:hover {
  background: #fff;
  color: #007AFF;
  outline: 1px solid #007AFF;
}

.button-outline-primary {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #fff;
  color: #007AFF;
  outline: 1px solid #007AFF;
}
.button-outline-primary:hover {
  background: #007AFF;
  color: #fff;
  outline: 1px solid #fff;
}

.button-secondary {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #FF5B00;
  color: #fff;
  outline: 1px solid #FF5B00;
}
.button-secondary:hover {
  background: #fff;
  color: #FF5B00;
  outline: 1px solid #FF5B00;
}

.button-outline-secondary {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #fff;
  color: #FF5B00;
  outline: 1px solid #FF5B00;
}
.button-outline-secondary:hover {
  background: #FF5B00;
  color: #fff;
  outline: 1px solid #fff;
}

.button-dark {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #000;
  color: #fff;
  outline: 1px solid #000;
}
.button-dark:hover {
  background: #fff;
  color: #000;
  outline: 1px solid #000;
}

.button-outline-dark {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #fff;
  color: #000;
  outline: 1px solid #000;
}
.button-outline-dark:hover {
  background: #000;
  color: #fff;
  outline: 1px solid #fff;
}

.button-gray {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #555555;
  color: #fff;
  outline: 1px solid #555555;
}
.button-gray:hover {
  background: #fff;
  color: #555555;
  outline: 1px solid #555555;
}

.button-outline-gray {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #fff;
  color: #555555;
  outline: 1px solid #555555;
}
.button-outline-gray:hover {
  background: #555555;
  color: #fff;
  outline: 1px solid #fff;
}

.button-gray-dark {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #333333;
  color: #fff;
  outline: 1px solid #333333;
}
.button-gray-dark:hover {
  background: #fff;
  color: #333333;
  outline: 1px solid #333333;
}

.button-outline-gray-dark {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #fff;
  color: #333333;
  outline: 1px solid #333333;
}
.button-outline-gray-dark:hover {
  background: #333333;
  color: #fff;
  outline: 1px solid #fff;
}

.button-gray-md {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #999;
  color: #fff;
  outline: 1px solid #999;
}
.button-gray-md:hover {
  background: #fff;
  color: #999;
  outline: 1px solid #999;
}

.button-outline-gray-md {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #fff;
  color: #999;
  outline: 1px solid #999;
}
.button-outline-gray-md:hover {
  background: #999;
  color: #fff;
  outline: 1px solid #fff;
}

.button-gray-light {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #dbdbdb;
  color: #fff;
  outline: 1px solid #dbdbdb;
}
.button-gray-light:hover {
  background: #fff;
  color: #dbdbdb;
  outline: 1px solid #dbdbdb;
}

.button-outline-gray-light {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #fff;
  color: #dbdbdb;
  outline: 1px solid #dbdbdb;
}
.button-outline-gray-light:hover {
  background: #dbdbdb;
  color: #fff;
  outline: 1px solid #fff;
}

.button-white {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #fff;
  color: #fff;
  outline: 1px solid #fff;
}
.button-white:hover {
  background: #fff;
  color: #fff;
  outline: 1px solid #fff;
}

.button-outline-white {
  padding: 10px 20px;
  border: 1px solid;
  display: inline-block;
  cursor: pointer;
  border-radius: 20px;
  background-color: #fff;
  color: #fff;
  outline: 1px solid #fff;
}
.button-outline-white:hover {
  background: #fff;
  color: #fff;
  outline: 1px solid #fff;
}

.site-header {
  padding: 20px 0;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 12;
  width: 100%;
  transition: 0.5s;
}
.site-header .headerHold {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .headerHold .menubtn {
  display: inline-flex;
  text-transform: uppercase;
  width: 60px;
  height: 60px;
  border: 1px solid #000;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  color: #000;
}

.sidemenuholder {
  padding: 80px 50px;
  width: 100%;
  height: 100%;
  position: fixed;
  right: 0;
  transform: translate(100%, 0);
  transition: 0.5s;
  top: 0;
  z-index: 15;
}
.sidemenuholder:after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  background: #000;
  width: 0;
  height: 0;
  border-radius: 100% 0 0 100%;
  transition: all 1s ease-in-out 0s;
}
.sidemenuholder.active {
  transform: translate(0, 0);
}
.sidemenuholder.active:after {
  width: 200%;
  height: 200%;
  top: -30%;
}
.sidemenuholder.active .sidemenu {
  opacity: 1;
  transform: translate(0, 0);
}
.sidemenuholder .cross {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 40px;
  height: 40px;
  z-index: 2;
}
.sidemenuholder .cross:hover {
  background: #fff;
  border-radius: 50%;
}
.sidemenuholder .cross:hover:before {
  background: #000;
}
.sidemenuholder .cross:hover:after {
  background: #000;
}
.sidemenuholder .cross:before {
  position: absolute;
  width: calc(100% - 10px);
  height: 3px;
  background: #fff;
  content: "";
  left: 10px;
  top: 9px;
  transform: rotate(45deg);
  transform-origin: left 0;
  transition: 0.5s;
}
.sidemenuholder .cross:after {
  position: absolute;
  width: calc(100% - 10px);
  height: 3px;
  background: #fff;
  content: "";
  left: 8px;
  bottom: 7px;
  transform: rotate(-45deg);
  transform-origin: left 0;
  transition: 0.5s;
}
.sidemenuholder .sidemenu {
  text-align: center;
  font-size: 36px;
  position: relative;
  z-index: 1;
  transform: translate(-100px, 0);
  opacity: 0;
  transition: all 0.5s ease-in-out 0.5s;
}
.sidemenuholder .sidemenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
}
.sidemenuholder .sidemenu ul li {
  margin: 0 0 35px;
  position: relative;
  display: inline-block;
}
.sidemenuholder .sidemenu ul li:after {
  position: absolute;
  content: "";
  right: 0;
  width: 0;
  height: 100%;
  background: #fff;
  transition: 0.5s;
}
.sidemenuholder .sidemenu ul li:hover:after {
  width: 100%;
  left: 0;
  right: auto;
}
.sidemenuholder .sidemenu ul li a {
  color: #fff;
  position: relative;
  z-index: 1;
  padding: 5px 25px;
}
.sidemenuholder .sidemenu ul li a:hover {
  color: #000;
}

.sticky .site-header {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

figure {
  margin: 0;
}

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

footer {
  background: #F9F9F9;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .footer-top {
    flex-wrap: wrap;
  }
}

.footer-left {
  padding: 80px 25px 50px 0;
  border-right: 2px solid #dbdbdb;
  width: 30%;
}
@media (max-width: 991px) {
  .footer-left {
    padding: 60px 0 40px;
    width: 100%;
    border-bottom: 2px solid #dbdbdb;
    border-right: none;
    text-align: center;
  }
}
@media (max-width: 574px) {
  .footer-left {
    border-bottom: 1px solid #dbdbdb;
    padding: 60px 0 30px;
  }
}
.footer-left .f-logo {
  width: 195px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .footer-left .f-logo {
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .footer-left .f-logo {
    margin-bottom: 20px;
  }
}
.footer-left .f-para {
  font-size: 18px;
  color: #000;
  line-height: 28px;
  margin: 0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .footer-left .f-para {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
  }
}
@media (max-width: 479px) {
  .footer-left .f-para {
    font-size: 16px;
    line-height: 26px;
  }
}

.footer-right {
  width: 70%;
}
@media (max-width: 991px) {
  .footer-right {
    width: 100%;
  }
}
.footer-right .footer-subs {
  padding: 90px 0 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #dbdbdb;
}
@media (max-width: 1199px) {
  .footer-right .footer-subs {
    padding: 90px 0 40px 40px;
  }
}
@media (max-width: 991px) {
  .footer-right .footer-subs {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .footer-right .footer-subs {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }
}
@media (max-width: 574px) {
  .footer-right .footer-subs {
    padding: 30px 0;
    border-bottom: 1px solid #dbdbdb;
  }
}
.footer-right .footer-subs .f-para {
  width: 30%;
  margin: 0;
}
@media (max-width: 1199px) {
  .footer-right .footer-subs .f-para {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .footer-right .footer-subs .f-para {
    width: 100%;
    text-align: center;
  }
}
.footer-right .footer-subs .footer-subs-frm {
  width: 65%;
  text-align: right;
}
.footer-right .footer-subs .footer-subs-frm form {
  display: flex;
}
@media (max-width: 767px) {
  .footer-right .footer-subs .footer-subs-frm form {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .footer-right .footer-subs .footer-subs-frm {
    width: 100%;
  }
}
.footer-right .footer-subs .footer-subs-frm input[type=text] {
  width: 55%;
  padding: 20px 25px;
  border: 1px solid #dbdbdb;
  border-radius: 30px 0 0 30px;
  border-right: none;
  background: #fff;
  height: 57px;
  outline: none;
  box-shadow: none;
  position: relative;
  left: 5px;
}
@media (max-width: 574px) {
  .footer-right .footer-subs .footer-subs-frm input[type=text] {
    width: 55%;
  }
}
@media (max-width: 479px) {
  .footer-right .footer-subs .footer-subs-frm input[type=text] {
    width: 100%;
    border-radius: 30px;
    margin-bottom: 10px;
  }
}
.footer-right .footer-subs .footer-subs-frm input[type=submit] {
  width: auto;
  padding: 15px 25px;
  border-radius: 0 30px 30px 0;
  background: #000;
  border: 1px solid #000;
  color: #fff;
  font-size: 18px;
  height: 57px;
  outline: none;
  box-shadow: none;
  transition: 0.5s;
  cursor: pointer;
}
.footer-right .footer-subs .footer-subs-frm input[type=submit]:hover {
  background: #FF5B00;
  border: 1px solid #FF5B00;
}
@media (max-width: 574px) {
  .footer-right .footer-subs .footer-subs-frm input[type=submit] {
    width: 43%;
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  .footer-right .footer-subs .footer-subs-frm input[type=submit] {
    width: 100%;
    border-radius: 30px;
  }
}
.footer-right .footer-menu {
  padding: 40px 0 40px 50px;
  border-bottom: 2px solid #dbdbdb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  list-style: none;
}
@media (max-width: 1199px) {
  .footer-right .footer-menu {
    padding: 40px 0 40px 40px;
  }
}
@media (max-width: 991px) {
  .footer-right .footer-menu {
    padding: 40px 0;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .footer-right .footer-menu {
    gap: initial;
    justify-content: space-between;
  }
}
@media (max-width: 574px) {
  .footer-right .footer-menu {
    gap: 15px;
    flex-wrap: wrap;
    padding: 30px 0;
    border-bottom: 1px solid #dbdbdb;
    justify-content: center;
  }
}
.footer-right .footer-menu li {
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  position: relative;
}
.footer-right .footer-menu li:after {
  position: absolute;
  content: "";
  right: 0;
  width: 0;
  height: 100%;
  background: #ccc;
  transition: 0.5s;
}
.footer-right .footer-menu li:hover:after {
  width: 100%;
  left: 0;
  right: auto;
}
@media (max-width: 479px) {
  .footer-right .footer-menu li {
    font-size: 17px;
    line-height: 20px;
  }
}
.footer-right .footer-menu li a {
  color: #000;
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 5px 10px;
}
.footer-right .footer-social {
  padding: 40px 0 40px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1199px) {
  .footer-right .footer-social {
    padding: 40px 0 40px 40px;
  }
}
@media (max-width: 991px) {
  .footer-right .footer-social {
    padding: 40px 0;
  }
}
@media (max-width: 574px) {
  .footer-right .footer-social {
    padding: 30px 0;
  }
}
.footer-right .footer-social span {
  font-size: 18px;
  line-height: 25px;
  color: #000;
  font-weight: 400;
  display: inline-block;
  margin-right: 15px;
  text-transform: uppercase;
}
@media (max-width: 479px) {
  .footer-right .footer-social span {
    font-size: 17px;
    line-height: 20px;
  }
}
@media (max-width: 374px) {
  .footer-right .footer-social span {
    font-size: 15px;
  }
}
.footer-right .footer-social .footer-social-ic {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-bottom {
  padding: 30px 0;
  border-top: 1px solid #dbdbdb;
}

.footer-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .footer-copy {
    flex-direction: column;
    gap: 5px;
  }
}
.footer-copy p {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  margin: 0;
  line-height: 28px;
}
@media (max-width: 991px) {
  .footer-copy p {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .footer-copy p {
    font-size: 17px;
    line-height: 27px;
  }
}
@media (max-width: 574px) {
  .footer-copy p {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 479px) {
  .footer-copy p {
    font-size: 15px;
    line-height: 25px;
  }
}
@media (max-width: 479px) {
  .footer-copy p br {
    display: none;
  }
}
.footer-copy .footer-btm-menu {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 574px) {
  .footer-copy .footer-btm-menu {
    flex-wrap: wrap;
  }
}
.footer-copy .footer-btm-menu li {
  padding-right: 30px;
  margin-right: 30px;
  border-right: 1px solid #D0D1D5;
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  line-height: 12px;
  position: relative;
}
.footer-copy .footer-btm-menu li:after {
  position: absolute;
  content: "";
  right: 0;
  width: 0;
  height: 100%;
  background: #ccc;
  transition: 0.5s;
}
.footer-copy .footer-btm-menu li:hover:after {
  width: 100%;
  left: 0;
  right: auto;
}
.footer-copy .footer-btm-menu li a {
  position: relative;
  z-index: 1;
  padding: 5px 10px;
  display: inline-block;
}
@media (max-width: 574px) {
  .footer-copy .footer-btm-menu li {
    padding-right: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 479px) {
  .footer-copy .footer-btm-menu li {
    padding-right: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 424px) {
  .footer-copy .footer-btm-menu li {
    padding-right: 10px;
    margin-right: 10px;
  }
}
.footer-copy .footer-btm-menu li:last-child {
  padding-right: 0;
  margin-right: 0;
  border: none;
}
@media (max-width: 424px) {
  .footer-copy .footer-btm-menu li:nth-child(2) {
    border-right: none;
  }
}
@media (max-width: 374px) {
  .footer-copy .footer-btm-menu li:nth-child(2) {
    border-right: 1px solid #000;
  }
}
@media (max-width: 374px) {
  .footer-copy .footer-btm-menu li:first-child {
    border-right: none;
  }
}
.footer-copy .footer-btm-menu li a {
  color: #000;
}

@keyframes automove {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-30px, -30px);
  }
  40% {
    transform: translate(10px, 10px);
  }
  60% {
    transform: translate(30px, -30px);
  }
  80% {
    transform: translate(-20px, 20px);
  }
  100% {
    transform: translate(0, 0);
  }
}
.innerbanner {
  background: url(../images/bannerbg1.webp) repeat 0 0;
  background-size: 100%;
  height: 650px;
  padding: 0 0;
  position: relative;
}
@media (max-width: 767px) {
  .innerbanner {
    height: 450px;
  }
}
.innerbanner video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.innerbanner .innerbannercnt {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  transform: translate(0, -50%);
}
.innerbanner h1 {
  margin: 0;
  text-transform: uppercase;
}
.innerbanner.innerbanner1 {
  background: none;
}
.innerbanner.innerbanner1:after {
  display: none;
}
.innerbanner.innerbanner1 video {
  width: 40%;
  float: right;
}
.innerbanner.innerbanner1 .bannerHold {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
  z-index: 1;
}
@media (max-width: 767px) {
  .innerbanner.innerbanner1 .bannerHold {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.innerbanner.innerbanner1 .bannerHold .bannerimg {
  max-width: 40%;
}
@media (max-width: 767px) {
  .innerbanner.innerbanner1 .bannerHold .bannerimg {
    max-width: inherit;
  }
}
.innerbanner.innerbanner1 .bannerHold .bannerimg img {
  width: 100%;
}
.innerbanner.innerbanner1 .bannerHold .bannerimg.bannerimganim:hover {
  animation: automove 25s linear infinite;
}
.innerbanner > div {
  position: relative;
  z-index: 1;
}
.innerbanner .bannertext {
  width: 50%;
}
@media (max-width: 767px) {
  .innerbanner .bannertext {
    width: 100%;
  }
}
.innerbanner .bannertext h1 {
  margin: 0 0 15px;
}
.innerbanner .bannertext p {
  margin: 0;
  color: #000;
}
.innerbanner:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgb(255, 255, 255) 30%, transparent 100%);
  pointer-events: none;
}

.sp_video_sec {
  position: relative;
  padding: 0;
}
.sp_video_sec video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .sp_video_sec video {
    height: 400px;
  }
}
.sp_video_sec .sp_video_content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 50px;
  z-index: 1;
}
.sp_video_sec .sp_video_content h3 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
  width: 100px;
  margin: 0;
}
@media (max-width: 767px) {
  .sp_video_sec .sp_video_content h3 {
    width: 120px;
  }
}
.sp_video_sec .sp_video_content .lets_talk {
  padding: 30px 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
@media (max-width: 767px) {
  .sp_video_sec .sp_video_content .lets_talk {
    top: auto;
    transform: translate(0, 0);
    bottom: 50px;
    left: 0;
  }
}
.sp_video_sec .sp_video_content .lets_talk .plus {
  display: inline-block;
  position: absolute;
}
.sp_video_sec .sp_video_content .lets_talk .plus:nth-child(1) {
  left: 0;
  top: 30px;
}
.sp_video_sec .sp_video_content .lets_talk .plus:nth-child(2) {
  right: 0;
  top: 30px;
}
.sp_video_sec .sp_video_content .lets_talk .plus:nth-child(3) {
  left: 0;
  bottom: 0;
}
.sp_video_sec .sp_video_content .lets_talk .plus:nth-child(4) {
  right: 0;
  bottom: 0;
}
.sp_video_sec .sp_video_content .lets_talk h4 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
  margin: 0 0 20px;
  text-transform: uppercase;
  display: block;
}
.sp_video_sec .sp_video_content .lets_talk a {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding: 30px 60px;
  gap: 20px;
  color: #000;
  font-size: 35px;
  line-height: 40px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
}
@media (max-width: 767px) {
  .sp_video_sec .sp_video_content .lets_talk a {
    font-size: 20px;
    line-height: 30px;
    padding: 20px 35px;
  }
}
@media (max-width: 479px) {
  .sp_video_sec .sp_video_content .lets_talk a {
    font-size: 13px;
    line-height: 25px;
    padding: 10px 20px;
  }
  .sp_video_sec .sp_video_content .lets_talk a img {
    width: 20px;
  }
}

.lets_talk .plus,
.lets_talk h4,
.lets_talk .mail {
  display: inline-block;
  transition: transform 0.3s ease;
  will-change: transform;
}

.ctoholder {
  background: #F2F3F8;
  border-radius: 200px;
  padding: 70px 100px;
  text-align: center;
  font-size: 30px;
  line-height: 40px;
  font-weight: 300;
}
@media (max-width: 1023px) {
  .ctoholder {
    font-size: 22px;
    line-height: 35px;
    padding: 50px 80px;
    border-radius: 100px;
  }
}
@media (max-width: 1023px) {
  .ctoholder {
    font-size: 20px;
    line-height: 30px;
    padding: 30px 20px;
    border-radius: 50px;
  }
}
.ctoholder h2 {
  text-transform: uppercase;
  font-size: 40px;
  line-height: 50px;
  font-weight: 300;
  margin: 0 0 30px;
}
@media (max-width: 1023px) {
  .ctoholder h2 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .ctoholder h2 {
    font-size: 25px;
    line-height: 30px;
    margin: 0 0 20px;
  }
}
.ctoholder p {
  margin: 0 0 30px;
}
@media (max-width: 767px) {
  .ctoholder p {
    margin: 0 0 20px;
  }
}
.ctoholder span {
  display: inline-block;
  font-style: italic;
}

.tablist {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0 0 150px;
}
@media (max-width: 767px) {
  .tablist {
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 0 80px;
  }
}
.tablist li {
  padding: 10px 20px;
  background: #F2F3F8;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
@media (max-width: 767px) {
  .tablist li {
    font-size: 16px;
  }
}
.tablist li.ac1 {
  background: #000;
  color: #fff;
}

.tabContentHolder .tab-holder {
  display: none;
}
.tabContentHolder .tab-holder.show {
  display: block;
}

.projectrowholder .projectrow {
  display: flex;
  -moz-column-gap: 90px;
       column-gap: 90px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
@media (max-width: 1023px) {
  .projectrowholder .projectrow {
    -moz-column-gap: 50px;
         column-gap: 50px;
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .projectrowholder .projectrow {
    -moz-column-gap: 20px;
         column-gap: 20px;
    margin-bottom: 30px;
  }
}
.projectrowholder .projectrow:last-child {
  margin-bottom: 0;
}
.projectrowholder .projectrow .project-column {
  width: 45%;
  position: relative;
  margin-bottom: 50px;
  transform: scale(0.7);
  opacity: 0;
  transition: all 0.5s ease-in-out 0.5s;
}
@media (max-width: 1023px) {
  .projectrowholder .projectrow .project-column {
    margin-bottom: 25px;
  }
}
@media (max-width: 479px) {
  .projectrowholder .projectrow .project-column {
    width: 100%;
  }
}
.projectrowholder .projectrow .project-column.active {
  transform: scale(1);
  opacity: 1;
}
.projectrowholder .projectrow .project-column:nth-child(2n) {
  margin-top: -100px;
}
@media (max-width: 1023px) {
  .projectrowholder .projectrow .project-column:nth-child(2n) {
    margin-top: -60px;
  }
}
@media (max-width: 767px) {
  .projectrowholder .projectrow .project-column:nth-child(2n) {
    margin-top: -30px;
  }
}
@media (max-width: 479px) {
  .projectrowholder .projectrow .project-column:nth-child(2n) {
    margin-top: 0;
  }
}
.projectrowholder .projectrow .project-column:nth-child(3n) {
  width: 75%;
}
@media (max-width: 479px) {
  .projectrowholder .projectrow .project-column:nth-child(3n) {
    width: 100%;
  }
}
.projectrowholder .projectrow .project-column .project-img {
  height: 500px;
}
@media (max-width: 767px) {
  .projectrowholder .projectrow .project-column .project-img {
    height: 300px;
  }
}
.projectrowholder .projectrow .project-column .project-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.projectrowholder .projectrow .project-column .project-content {
  padding: 20px 0;
}
.projectrowholder .projectrow .project-column .project-content h4 {
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
  margin: 0 0 5px;
}
@media (max-width: 767px) {
  .projectrowholder .projectrow .project-column .project-content h4 {
    font-size: 20px;
  }
}
.projectrowholder .projectrow .project-column .project-content span {
  display: block;
  color: #555555;
}
.projectrowholder .projectrow:nth-child(2n) .project-column:nth-child(3n) {
  margin-left: auto;
}

.blog_sec {
  position: relative;
  background: #fff url(../images/blogs.svg) no-repeat 0 center;
  background-attachment: fixed;
  padding-top: 180px;
}
.blog_sec .aboutanim {
  position: absolute;
  right: 0;
  top: 0;
  width: 380px;
  height: 380px;
}
@media (max-width: 1023px) {
  .blog_sec .aboutanim {
    width: 270px;
    height: 270px;
  }
}
@media (max-width: 767px) {
  .blog_sec .aboutanim {
    width: 150px;
    height: 150px;
  }
}
.blog_sec .aboutanim video {
  width: 100%;
}

.blogHolder {
  display: flex;
  justify-content: flex-end;
}
.blogHolder .blogleft {
  width: 20%;
  position: sticky;
  top: 100px;
  display: inline-block;
  vertical-align: top;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translate(0, -50%);
}
@media (max-width: 767px) {
  .blogHolder .blogleft {
    left: 0;
  }
}
.blogHolder .blogleft h2 {
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.15);
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-weight: 800;
  font-size: 200px;
  writing-mode: sideways-lr;
}
@media (max-width: 767px) {
  .blogHolder .blogleft h2 img {
    height: 200px;
  }
}
.blogHolder .blogRight {
  width: 70%;
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 767px) {
  .blogHolder .blogRight {
    width: 100%;
  }
}
.blogHolder .blogRight .blogItem {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 70px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  position: relative;
}
.blogHolder .blogRight .blogItem:hover .blogImg {
  opacity: 1;
}
.blogHolder .blogRight .blogItem .blogImg {
  position: absolute;
  opacity: 0;
  left: 50%;
  transform: translate(-50%, 0);
  top: 50%;
  transition: 0.5s;
  border: 10px solid #fff;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 767px) {
  .blogHolder .blogRight .blogItem {
    flex-wrap: wrap;
  }
}
.blogHolder .blogRight .blogItem .testdetails {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 28px;
  gap: 10px;
}
.blogHolder .blogRight .blogItem .testdetails .testimg {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.1);
}
.blogHolder .blogRight .blogItem .testdetails .testimg img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
.blogHolder .blogRight .blogItem .testdetails .testcontent {
  text-align: left;
}
.blogHolder .blogRight .blogItem .testdetails .testcontent .name {
  display: block;
  font-size: 18px;
}
.blogHolder .blogRight .blogItem .testdetails .testcontent .desig {
  display: block;
  font-size: 13px;
}
@media (max-width: 767px) {
  .blogHolder .blogRight .blogItem .testdetails {
    margin-bottom: 40px;
  }
}
.blogHolder .blogRight .blogItem .blogDetails {
  width: 65%;
  position: relative;
}
@media (max-width: 767px) {
  .blogHolder .blogRight .blogItem .blogDetails {
    width: 100%;
  }
}
.blogHolder .blogRight .blogItem .blogDetails .date {
  display: block;
  position: relative;
  margin: 0 0 20px;
  padding: 0 0 0 60px;
}
.blogHolder .blogRight .blogItem .blogDetails .date:before {
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  background: #000;
  left: 0;
  top: 15px;
}
.blogHolder .blogRight .blogItem .blogDetails h3 {
  font-size: 40px;
  line-height: 50px;
  margin: 0 0 20px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .blogHolder .blogRight .blogItem .blogDetails h3 {
    font-size: 30px;
    line-height: 40px;
  }
}
.blogHolder .blogRight .blogItem .blogDetails p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blogHolder.blogpage {
  flex-wrap: wrap;
}
.blogHolder.blogpage .blogRight .blogItem:last-child {
  border-bottom: none;
}
.blogHolder.blogpage .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.blogHolder.blogpage .pagination li {
  display: block;
}
.blogHolder.blogpage .pagination li .page-item {
  display: block;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #000;
  font-family: "DM Sans", sans-serif;
  position: relative;
}
.blogHolder.blogpage .pagination li .page-item::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: #000;
  opacity: 0;
  transition: 0.5s;
}
.blogHolder.blogpage .pagination li .page-item.active::before {
  opacity: 1;
}

html, body {
  height: 100%;
}
@media (max-width: 767px) {
  html, body {
    height: auto;
  }
}/*# sourceMappingURL=home.css.map */