@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif !important;
}

.orange-btn {
  background-color: #ff8261;
  border: 0;
  outline: none;
  border-radius: 8px;
  color: #ffffff;
  transition: 0.4s all;
  text-decoration: none;
  padding-top: 13px;
  padding-bottom: 13px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight: 600;
}
.orange-btn::before {
  position: absolute;
  content: "";
  width: 0px;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100px;
  transition: 0.4s all;
  z-index: -1;
}
.orange-btn:hover {
  color: #ffffff;
}
.orange-btn:hover::before {
  background-color: #000954;
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.blue-btn {
  background-color: #000954;
  border: 0;
  outline: none;
  border-radius: 8px;
  color: #ffffff;
  transition: 0.4s all;
  text-decoration: none;
  padding-top: 13px;
  padding-bottom: 13px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight: 600;
}
.blue-btn::before {
  position: absolute;
  content: "";
  width: 0px;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100px;
  transition: 0.4s all;
  z-index: -1;
}
.blue-btn:hover {
  color: #ffffff;
}
.blue-btn:hover::before {
  background-color: #ff8261;
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.orange-text {
  color: #ff8261 !important;
}

.blue-text {
  color: #000954 !important;
}

.bg-orange {
  background-color: #ff8261 !important;
}

.bg-blue {
  background-color: #000954 !important;
}

header {
  position: relative;
  z-index: 9;
  background-color: rgba(252, 242, 239, 0.5843137255);
}
header .header-top-shape {
  position: absolute;
  top: 0;
  left: 0;
  height: 92px;
  z-index: -1;
}
header .header-top-shape img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
header .navbar {
  width: 100%;
}
header .navbar .nav-item {
  position: relative;
}
header .navbar .nav-item:hover::before {
  width: 50%;
}
header .navbar .nav-item:hover .nav-link {
  color: #ff8261;
}
header .navbar .nav-item .nav-link {
  padding: 0;
  color: #000000;
  font-weight: 500;
  transition: 0.4s all;
}
header .navbar .nav-item::before {
  position: absolute;
  content: "";
  height: 4px;
  width: 0%;
  background-color: #ff8261;
  bottom: -5px;
  left: 0;
  transition: 0.4s all;
}
header .dropdown {
  width: 65px;
}
header .dropdown button::after {
  display: none;
}
header .dropdown .dropdown-menu {
  min-width: auto;
}

.hero-sec {
  background-color: rgba(252, 242, 239, 0.5843137255);
}
.hero-sec .hero-text h1 {
  font-weight: 700;
}
.hero-sec .hero-img {
  position: relative;
  position: relative;
  max-width: 556px;
  -webkit-mask: url("../image/about-shape.svg");
          mask: url("../image/about-shape.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: cover;
          mask-size: cover;
  transform: scaleX(-1);
}
.hero-sec .left {
  position: absolute;
  right: 0;
  bottom: 50px;
  transform: rotate(180deg);
}

/* Keyframes for 360 degree rotation */
@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.about .about-image-items .about-image {
  position: relative;
  max-width: 556px;
  -webkit-mask: url("../image/about-shape.svg");
          mask: url("../image/about-shape.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: cover;
          mask-size: cover;
}
.about .about-image-items .about-image-2 {
  max-width: 288px;
  position: absolute;
  bottom: -15%;
  right: 0;
}
.about .about-image-items .border-shape-1 {
  position: absolute;
  z-index: -1;
  top: 47%;
  left: 44%;
  transform: translate(-50%, -50%);
}
.about .about-text .icon {
  box-shadow: 0px 0px 0px 4px white, 0px 0px 0px 6px #ff8261;
}

.pulse-btn {
  position: absolute;
  padding: 15px 23px;
  font-size: 18px;
  color: #fff;
  background-color: #000954;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pulse-btn::before,
.pulse-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: #000954;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  animation: pulse 3s infinite ease-in-out;
  z-index: -1;
}

.pulse-btn::before {
  width: 160%;
  height: 160%;
  animation-delay: 1s;
}

.pulse-btn::after {
  width: 200%;
  height: 200%;
  animation-delay: 2s;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}
.modal {
  background-color: rgba(0, 8, 84, 0.3568627451);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.modal .modal-dialog {
  max-width: 800px !important;
}

.projects {
  background-color: #e9ebff;
  position: relative;
}
.projects .bottom-shape {
  transform: scaleY(-1);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.projects .project-box {
  border-radius: 20px;
  transition: 0.4s all;
  z-index: 1;
}
.projects .project-box:hover {
  box-shadow: 0px 5px 20px rgb(209, 209, 209);
}
.projects .project-box::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 90%;
  width: 95%;
  border: 2px dashed rgb(230, 230, 230);
  border-radius: 17px;
  z-index: -1;
}
.projects .project-box img {
  width: 100%;
}

.course .course-text .box {
  background-color: #e9ebff;
  border-radius: 10px;
  box-shadow: 0px 2px 10px rgba(233, 233, 233, 0.203);
}
.course .course-box .box {
  border-radius: 10px;
  box-shadow: 0px 3px 10px rgba(235, 235, 235, 0.476);
  border: 1px solid rgba(221, 221, 221, 0.469);
  height: 100%;
}

.counter {
  background-color: #e9ebff;
}
.counter .counter-box {
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
.counter .counter-box::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 90%;
  width: 95%;
  border: 2px dashed rgb(230, 230, 230);
  border-radius: 17px;
  z-index: -1;
}

.testmonials .testimonial-items {
  position: relative;
  z-index: 9;
  max-width: 420px;
  padding: 50px 60px;
  text-align: center;
  margin: 30px auto;
}
.testmonials .testimonial-items .icon {
  position: absolute;
  top: -30px;
  right: 30px;
}
.testmonials .testimonial-items .icon i {
  color: #000954;
  -webkit-text-stroke: 5px rgb(255, 255, 255);
  font-size: 4rem;
}
.testmonials .testimonial-items .testimonial-bg {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #e9ebff;
  transition: all 500ms ease;
  -webkit-mask: url("../image/testmonial.svg");
          mask: url("../image/testmonial.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}

footer {
  background-color: rgba(252, 242, 239, 0.5843137255);
}
footer .footerContact-info {
  border-bottom: 1px solid rgb(234, 234, 234);
}
footer .footerContact-info .icon {
  box-shadow: 0px 0px 0px 10px rgba(252, 242, 239, 0.5843137255), 0px 0px 0px 12px #ff8261;
}
footer .media a {
  color: #000954;
  transition: 0.4s all;
}
footer .media a:hover {
  color: #ff8261;
}
footer .navigation .links a {
  display: inline-block;
  text-decoration: none;
  font-size: 1.2rem;
  color: #000954;
  font-weight: 600;
  position: relative;
  transition: 0.4s all;
}
footer .navigation .links a::before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  background-color: #000954;
  top: 50%;
  left: -18px;
  transform: translate(0%, -50%);
  border-radius: 100px;
  box-shadow: 0px 0px 0px 3px #ffffff, 0px 0px 0px 4px #000954;
  transition: 0.4s all;
}
footer .navigation .links a:hover {
  color: #ff8261;
}
footer .navigation .links a:hover::before {
  background-color: #ff8261;
  box-shadow: 0px 0px 0px 3px #ffffff, 0px 0px 0px 4px #ff8261;
}
footer .footer-bottom p {
  z-index: 99;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0%);
}
footer .footer-bottom img {
  transform: scaleY(-1);
  height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-title {
  position: relative;
  z-index: 1;
  background-image: linear-gradient(to bottom, rgba(252, 242, 239, 0.5843137255), #ff8261);
}
.page-title::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../image/page-title-bg.png);
  z-index: -1;
  opacity: 0.2;
}
.page-title .breadcrumb-item::before {
  color: #000954 !important;
}

.founder {
  background-color: #e9ebff;
}
.founder .founder-top-img {
  top: -1px;
}
.founder .feature-value-items .value-icon-items {
  gap: 20px;
}
.founder .feature-value-items .value-icon-items .icon {
  width: 90px;
  height: 100px;
  line-height: 120px;
  text-align: center;
  background: rgba(252, 242, 239, 0.5843137255);
  color: #ff8261;
  flex-basis: 25%;
}
.founder .feature-value-items .value-icon-items .color-2 {
  background-color: rgba(88, 102, 235, 0.15);
  color: rgb(88, 103, 235);
}
.founder .feature-value-items .value-icon-items .color-3 {
  background-color: rgba(88, 235, 144, 0.15);
  color: rgb(0, 198, 76);
}
.founder .feature-value-items .value-icon-items .color-4 {
  background-color: rgba(235, 88, 88, 0.15);
  color: rgb(235, 88, 88);
}
.founder .feature-value-items .value-icon-items .content {
  flex-basis: 75%;
}

.contact-sec .contact-info {
  border-radius: 20px;
}
.contact-sec .contact-info .icon {
  width: 72px;
}
.contact-sec .contact-info .map {
  padding: 50px;
  position: relative;
  height: 250px;
  width: 100%;
  border: 0;
}
.contact-sec .contact-info .map iframe {
  border: 0;
  line-height: 0;
  padding: 0;
  margin: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  display: block;
  left: 0;
  top: 0;
}
.contact-sec form label {
  transition: 0.4s all;
}
.contact-sec form input {
  transition: 0.4s all;
}
.contact-sec form input:focus {
  box-shadow: 0px 5px 10px rgba(252, 242, 239, 0.5843137255);
  border-color: #ff8261;
}
.contact-sec form textarea {
  transition: 0.4s all;
}
.contact-sec form textarea:focus {
  box-shadow: 0px 5px 10px rgba(252, 242, 239, 0.5843137255);
  border-color: #ff8261;
}

.demo-sec .demo-box {
  border: 1px solid rgb(212, 212, 212);
  transition: 0.4s all;
}
.demo-sec .demo-box:hover {
  box-shadow: 0px 5px 15px #e9ebff;
  border: 1px solid #e9ebff;
}

.projects-pg .box1 {
  background-color: #2c007e;
}
.projects-pg .box2 {
  background-color: #6112ec;
}
.projects-pg .box3 {
  background-color: #007b33;
}
.projects-pg .box4 {
  background-color: #121712;
}
.projects-pg .box5 {
  background-color: #253c53;
}
.projects-pg .box6 {
  background-color: #0095b5;
}
.projects-pg .projects-pg-box {
  border-radius: 15px;
  position: relative;
  height: 300px;
}
.projects-pg .projects-pg-box .box-img {
  border-radius: 0px 15px 15px 0px;
  overflow: hidden;
  width: -moz-max-content;
  width: max-content;
  transform: rotate(-90deg);
  position: absolute;
  right: -25px;
  bottom: 76px;
}
.projects-pg .projects-pg-box .box-img img {
  max-width: 250px;
}
.projects-pg .projects-pg-box .project-text {
  max-width: 400px;
  z-index: 10;
}

.project-about .mission {
  border-radius: 10px;
}

.features .card img {
  -o-object-fit: cover;
     object-fit: cover;
}

.Content {
  background-color: #e9ebff;
}
.Content .content-box {
  border-radius: 10px;
  z-index: 1;
  transition: 0.4s all;
}
.Content .content-box:hover {
  background-color: #000954 !important;
  color: #ffffff !important;
}
.Content .content-box:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 90%;
  width: 95%;
  border: 2px dashed rgb(230, 230, 230);
  border-radius: 10px;
  z-index: -1;
}

.posts figure {
  border-radius: 20px;
  overflow: hidden;
}
.posts figure img {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.posts .post-text a {
  transition: 0.4s all;
}
.posts .post-text a:hover {
  color: #ff8261 !important;
}

.blogs .blog-box {
  border-radius: 15px;
  transition: 0.4s all;
}
.blogs .blog-box:hover {
  box-shadow: none !important;
}
.blogs .blog-box figure img {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-detail .blog-detail-box figure {
  border-radius: 20px;
  overflow: hidden;
}
.blog-detail .blog-detail-box figure img {
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-detail .blog-detail-box .blog-detail-text figure {
  background-color: rgba(252, 242, 239, 0.5843137255);
  border-radius: 10px;
}
.blog-detail .side-box {
  background-color: #e9ebff;
  border-radius: 10px;
}
.blog-detail .category a {
  border: 1px solid rgb(211, 217, 255);
  border-radius: 7px;
  color: #000954;
  transition: 0.4s all;
}
.blog-detail .category a:hover {
  color: #ff8261;
  background-color: rgba(252, 242, 239, 0.5843137255);
}
.blog-detail .recent img {
  width: 100px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px !important;
}
.blog-detail .tags a {
  background-color: #ffffff;
  color: #000954;
  border-radius: 5px;
  transition: 0.4s all;
  display: inline-block;
}
.blog-detail .tags a:hover {
  background-color: #ff8261;
  color: #ffffff;
}

.steps .work-process-items .icon {
  background: url("../image/icon-bg.png");
  width: 100px;
  height: 100px;
}

.project-logo {
  border-radius: 15px;
  overflow: hidden;
  width: 250px;
}

@media (max-width: 575px) {
  .about .about-image-items .about-image-2 {
    max-width: 220px;
  }
  .media h5 {
    width: 100% !important;
  }
  .projects-pg .projects-pg-box {
    height: auto;
  }
  .projects-pg .projects-pg-box .box-img {
    border-radius: 15px;
    position: relative;
    transform: rotate(0deg);
    right: auto;
    bottom: auto;
  }
}
[dir=rtl] .box-img {
  left: 25px;
  right: inherit !important;
  z-index: 1;
}

@media (max-width: 1200px) {
  .testmonials .testimonial-items {
    padding: 40px 20px;
  }
}
@media (min-width: 991px) and (max-width: 1200px) {
  .projects-pg .projects-pg-box {
    height: 100%;
  }
  .projects-pg .projects-pg-box .project-text {
    max-width: 255px;
  }
}
@media (min-width: 1201px) and (max-width: 1400px) {
  .projects-pg .projects-pg-box {
    height: 100%;
  }
  .projects-pg .projects-pg-box .project-text {
    max-width: 355px;
  }
}/*# sourceMappingURL=style.css.map */