/*
/*================================================
Default CSS
=================================================*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat: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&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&amp;display=swap");

:root {
  --mainfontFamily: arial;
  --optionalfontFamily: arial;
  --mainColor: #860e0f;
  --optionalColor: #6b6b84;
  --whiteColor: #ffffff;
  --blackColor: #031521;
  --fontSize: 14px;
  --transition: 0.5s;
}

body {
  padding: 0;
  margin: 0;
  color: var(--optionalColor);
  font-family: arial;
  font-size: var(--fontSize);
}

a {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: var(--blackColor);
}

a:hover,
a:focus {
  text-decoration: none;
  color: var(--mainColor);
  outline: 0;
}

button:focus,
input:focus {
  outline: 0;
}

p {
  color: white;
  line-height: 1.5;
  margin-bottom: 14px;
  font-size: var(--fontSize);
  font-family: var(--optionalfontFamily);
}

p:last-child {
  margin-bottom: 0;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h6 {
  font-weight: bold;
  text-transform: capitalize;
}
h5 {
  font-weight: bold;
  text-transform: capitalize;
  color: #004c82;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-70 {
  padding-bottom: 70px;
}

.default-btn {
  border: none;
  position: relative;
  display: inline-block;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  background-color: var(--mainColor);
  color: var(--whiteColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-radius: 30px;
  opacity: 1;
  font-family: var(--optionalfontFamily);
  font-weight: 500;
  padding-left: 35px;
  padding-right: 35px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.default-btn span {
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #000080;
  color: var(--whiteColor);
  -webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 30px;
  opacity: 1;
}

.default-btn:hover {
  color: var(--whiteColor) !important;
}

.default-btn:hover span {
  width: 225%;
  height: 562.5px;
}

.default-btn i {
  font-size: 12px;
  position: relative;
  top: -1px;
  margin-left: 10px;
}

.section-title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 45px;
}

.section-title h2 {
  font-size: 45px;
  margin-bottom: 14px;
}

.section-title p {
  line-height: 1.5;
}

.btn-primary {
  color: #fff !important;
  background-color: rgb(175, 13, 13);
  border-color: rgb(175, 13, 13);
}

.btn-primary:hover {
  color: #fff !important;
  background-color: rgb(146, 7, 7);
  border-color: rgb(146, 7, 7);
}

.btn-brocure {
  padding: 7px !important;
}

/*================================================
Navbar Area CSS
=================================================*/
.navbar {
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  background-color: var(--whiteColor) !important;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.navbar-collapse {
  flex-grow: 0;
}

.navbar-light {
  background-color: transparent !important;
}

.navbar-light .logo h3 {
  font-size: 35px;
  margin-bottom: 0;
}

.navbar-light .navbar-nav {
  margin: auto;
}

.navbar-light .navbar-nav .nav-item {
  position: relative;
  padding: 0;
}

.navbar-light .navbar-nav .nav-item a {
  font-size: var(--fontSize);
  color: var(--blackColor);
  text-transform: capitalize;
  position: relative;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 600;
  margin-left: 14px;
  margin-right: 14px;
}

.navbar-light .navbar-nav .nav-item a:hover,
.navbar-light .navbar-nav .nav-item a:focus,
.navbar-light .navbar-nav .nav-item a.active {
  color: var(--mainColor);
  position: relative;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.navbar-light .navbar-nav .nav-item a i {
  font-size: 16px;
  position: relative;
  top: 2px;
  display: inline-block;
  margin-left: -4px;
  margin-right: -4px;
}

.navbar-light .navbar-nav .nav-item:last-child a {
  margin-right: 0;
}

.navbar-light .navbar-nav .nav-item:first-child a {
  margin-left: 0;
}

.navbar-light .navbar-nav .nav-item:hover a,
.navbar-light .navbar-nav .nav-item.active a {
  color: var(--mainColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.navbar-light .others-option .option-item .social-icon {
  padding-left: 0;
  margin-bottom: 0;
}

.navbar-light .others-option .option-item .social-icon li {
  display: inline-block;
  list-style-type: none;
  margin-right: 5px;
}

.navbar-light .others-option .option-item .social-icon li:last-child {
  margin-right: 0;
}

.navbar-light .others-option .option-item .social-icon li i {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #dddddd;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 600;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: var(--blackColor);
}

.navbar-light .others-option .option-item .social-icon li i:hover {
  background-color: var(--mainColor);
  border: 1px solid var(--mainColor);
  color: var(--whiteColor);
}

.main-banner-content {
  position: relative;
  z-index: 1;
}

.main-banner-content span {
  font-size: 18px;
  color: var(--mainColor);
  font-weight: 500;
}

.main-banner-content h1 {
  font-size: 80px;
  margin-top: 15px;
  margin-bottom: 10px;
}

.main-banner-content p {
  margin-bottom: 0;
}

.main-banner-content .banner-btn {
  margin-top: 30px;
}

.main-banner-content .text {
  margin-top: 10px;
}

.main-banner-content .text p {
  margin-bottom: 0;
}

.main-banner-content .banner-holder {
  margin-top: 30px;
}

.main-banner-content .banner-holder a {
  margin-right: 10px;
}

.main-banner-content .banner-holder a:last-child {
  margin-right: 0;
}

/*================================================
about Area CSS
=================================================*/
.about-section .row {
  background-color: #fafafa;
}

.about-section .row .col-lg-4 {
  padding-right: 0;
}

.about-content {
  padding: 10px;
}

.about-content p {
  font-size: 17px;
  /* margin-bottom: 5px; */
}

.about-content .social-icon {
  padding-left: 0;
  margin-top: 2px;
  margin-bottom: 0;
}

.about-content .social-icon li {
  display: inline-block;
  list-style-type: none;
  margin-right: 5px;
}

.about-content .social-icon li:last-child {
  margin-right: 0;
}

.about-content .social-icon li i {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #dddddd;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 600;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: var(--blackColor);
}

.about-content .social-icon li i:hover {
  background-color: var(--mainColor);
  border: 1px solid var(--mainColor);
  color: var(--whiteColor);
}

/*================================================
Contact Area CSS
=================================================*/
.contact-section {
  background-color: #fafafa;
}

.contact-form form .form-group {
  margin-bottom: 10px;
}

.contact-form form .form-control {
  height: 35px;
  padding: 0 10px;
  line-height: initial;
  color: var(--blackColor);
  background-color: transparent;
  border: 1px solid #0011ff77;
  border-radius: 2px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-box-shadow: unset !important;
  box-shadow: unset !important;
  font-weight: 500;
  font-size: 12px;
}

.contact-form form .form-control:focus {
  border: 1px solid var(--mainColor);
}

.contact-form form .form-control::-webkit-input-placeholder {
  color: var(--optionalColor);
}

.contact-form form .form-control:-ms-input-placeholder {
  color: var(--optionalColor);
}

.contact-form form .form-control::-ms-input-placeholder {
  color: var(--optionalColor);
}

.contact-form form .form-control::placeholder {
  color: var(--optionalColor);
}

.contact-form form textarea.form-control {
  height: auto !important;
  padding-top: 15px;
}

.contact-form .send-btn {
  margin-top: 7px;
}

.contact-form .with-errors ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 5px;
  margin-bottom: 0;
}

.contact-form .with-errors ul li {
  color: red;
  font-weight: 500;
  font-size: 14px;
}

.contact-form #msgSubmit {
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 500;
  margin-top: 20px !important;
}

.contact-form #msgSubmit.text-danger {
  margin-top: 20px !important;
}

/*================================================
Banner Section
=================================================*/
.banner-section {
  position: relative;
  /* z-index: 1;
  background-color: #fafafa; */
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url(../img/banner/01.jpg);
}

.main-banner-content {
  background-color: rgb(175, 13, 13);
  color: white;
  padding: 50px;
}

.banner-section .tech-image {
  margin-top: -120px;
  margin-right: 10px;
  width: 50%;
}

/*================================================
Feature Area
=================================================*/
.believe-section-box {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  text-align: left;
  padding: 35px;
  background-color: #fafafa;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-radius: 5px;
  border: 1px solid rgba(170, 18, 18, 0.411);
  box-shadow: 5px 20px 20px rgba(119, 119, 119, 0.281);
}

.believe-section-box .icon i {
  display: inline-block;
  height: 70px;
  width: 70px;
  line-height: 70px;
  background-color: #f3f3f3;
  color: var(--mainColor);
  font-size: 45px;
  border-radius: 50px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-align: center;
}

.believe-section-box h3 {
  font-size: 25px;
  margin-top: 25px;
  margin-bottom: 15px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.believe-section-box p {
  color: var(--blackColor);
  margin-bottom: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 15px;
}

.believe-section-box::before {
  top: 50%;
  left: 50%;
  width: 0%;
  z-index: -1;
  height: 100%;
  content: "";
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: var(--mainColor);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 5px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.believe-section-box:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.believe-section-box:hover::before {
  width: 100%;
}

.believe-section-box:hover .icon i {
  background-color: var(--whiteColor);
  color: var(--mainColor);
}

.believe-section-box:hover h3 {
  color: var(--whiteColor);
}

.believe-section-box:hover p {
  color: var(--whiteColor);
}

/*================================================
Copy Right CSS
=================================================*/
.footer {
  background-color: #020229;
  padding-top: 30px;
  padding-bottom: 30px;
}

.footer-div {
  text-align: center;
}

.footer-div p {
  margin-bottom: 0;
  color: #fff;
  font-weight: 600;
}

.footer-div p a {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.footer-div p a:hover {
  color: yellow;
}

/*================================================
Go Top CSS
=================================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -100px;
  right: 20px;
  color: var(--whiteColor);
  background-color: var(--blackColor);
  z-index: 4;
  width: 45px;
  text-align: center;
  height: 45px;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  font-size: 22px;
  -webkit-transition: 0.9s;
  transition: 0.9s;
  overflow: hidden;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

.go-top i {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  font-size: 30px;
  margin-left: auto;
  margin-right: auto;
}

.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}

.go-top:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11),
    0 1px 3px rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.firstbox {
  padding: 50px;
  background-color: rgb(134, 1, 1);
  color: white;
  border: 1px solid white;
}

.secondbox {
  padding: 50px;
  background-color: rgb(0, 1, 66);
  color: white;
  border: 1px solid white;
}

.thirdbox {
  padding: 50px;
  background-color: rgb(192, 192, 238);
  color: white;
  border: 1px solid white;
}

/*

Responsive CSS
============================*/
@media only screen and (max-width: 767px) {
  .ptb-100 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .pt-100 {
    padding-top: 50px;
  }

  .pb-100 {
    padding-bottom: 50px;
  }

  .pb-70 {
    padding-bottom: 20px;
  }

  p {
    font-size: 15px;
  }

  .section-title {
    margin: 0 auto 30px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .section-title p {
    font-size: 15px;
  }

  .navbar-light .navbar-nav .nav-item a {
    margin-left: 0;
    margin-right: 0;
    margin-top: 15px;
  }

  .navbar-light .others-option .option-item .social-icon {
    margin-top: 20px;
  }

  .book-banner-area {
    height: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .main-banner-content {
    padding: 20px;
  }

  .banner-section .text-sm-center {
    text-align: center;
  }

  .banner-section .tech-image {
    margin-top: 25px;
    width: 80%;
  }

  .main-banner-content {
    text-align: center;
    max-width: 100%;
  }

  .main-banner-content span {
    font-size: 15px;
  }

  .main-banner-content h1 {
    font-size: 30px;
  }

  .main-banner-content .banner-btn {
    margin-top: 20px;
  }

  .banner-image {
    margin-top: 35px;
  }

  .reviews-area {
    overflow: hidden;
  }

  .reviews-slides .reviews-feedback .single-feedback p {
    font-size: 20px;
  }

  .newsletter-form-content .newsletter-content {
    margin-top: 35px;
  }

  .newsletter-form-content .newsletter-content h2 {
    font-size: 25px;
  }

  .newsletter-form-content .newsletter-form button {
    position: relative;
    right: 0;
    top: 0;
    margin-top: 15px;
  }

  .single-pricing-box .pricing-header h3 {
    font-size: 20px;
  }

  .single-pricing-box .price {
    font-size: 30px;
  }

  .about-content {
    padding: 20px;
  }

  .about-content h3 {
    font-size: 25px;
    margin-bottom: 15px;
  }

  .about-content .social-icon {
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .about-section .row .col-lg-4 {
    padding-right: 15px;
  }

  .about-image {
    text-align: center;
  }

  .single-blog-post .post-content {
    padding: 16px;
  }

  .single-blog-post .post-content h3 {
    font-size: 20px;
  }

  .contact-image {
    margin-bottom: 35px;
    text-align: center;
  }

  .banner-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .banner-section .main-banner-content h1 {
    font-size: 30px;
  }

  .banner-form {
    margin-top: 30px;
  }

  .service-section-box h3 {
    font-size: 20px;
  }

  .vision-item {
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 1px solid #f3f3f3;
  }

  .vision-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }

  .overview-content {
    margin-bottom: 30px;
  }

  .overview-content.text-color {
    padding-left: 0;
  }

  .overview-content h3 {
    font-size: 24px;
  }

  .jumbotron {
    padding: 50px 0px;
  }

  .secondbox {
    padding: 20px;
  }

  .firstbox {
    padding: 20px;
  }

  :nth-child(3) .overview-content {
    margin-bottom: 0;
  }

  :nth-child(3) .overview-left-img {
    margin-bottom: 30px;
  }

  .page-title-area {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .page-title-content h2 {
    font-size: 25px;
  }

  .page-title-content ul {
    margin-top: 12px;
  }

  .blog-details-desc .article-content h3 {
    font-size: 20px;
    line-height: 1.4;
  }

  .blog-details-desc .article-content .features-list li {
    font-size: 15px;
  }

  blockquote,
  .blockquote {
    padding: 30px !important;
  }

  blockquote p,
  .blockquote p {
    font-size: 18px !important;
  }

  .comments-area .comment-body {
    padding-left: 70px;
  }

  .comments-area .comment-about .avatar {
    height: 55px;
    width: 55px;
    left: -70px;
  }

  .comments-area .comment-metadata {
    font-size: 12px;
  }

  .comments-area .children {
    margin-left: 0;
  }

  .comments-area .comments-title {
    font-size: 20px;
  }

  .comments-area .comment-respond .comment-reply-title {
    font-size: 20px;
  }

  .widget-area .widget:first-child {
    margin-top: 30px;
  }

  .product-details-image {
    height: 500px;
  }

  .product-details-desc {
    padding: 0;
    margin-top: 25px;
  }

  .product-details-desc .buy-checkbox-btn .cbx span:last-child {
    font-size: 14px;
  }

  .products-details-tab .tabs li a {
    font-size: 15px;
  }

  .products-details-tab .tab_content {
    padding: 20px;
  }

  .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    h3 {
    font-size: 20px;
  }

  .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    .product-review-form
    .review-title
    .default-btn {
    display: none;
  }

  .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    .product-review-form
    .review-comments
    .review-item {
    padding-right: 0;
  }

  .products-details-tab
    .tab_content
    .tabs_item
    .products-details-tab-content
    .product-review-form
    .review-comments
    .review-item
    .review-report-link {
    position: relative;
    top: 10px;
  }

  .products-banner-area.two {
    height: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .products-banner-area.two .banner-image {
    margin-top: 0;
    margin-bottom: 35px;
    text-align: center;
  }

  .products-banner-area.two .main-banner-content.two h1 {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .specification-image {
    margin-bottom: 35px;
    text-align: center;
  }

  .users-content h3 {
    font-size: 25px;
  }

  .faq-image {
    margin-bottom: 35px;
    text-align: center;
  }

  .newsletter-image {
    text-align: center;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ptb-100 {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .pt-100 {
    padding-top: 70px;
  }

  .pb-100 {
    padding-bottom: 70px;
  }

  .pb-70 {
    padding-bottom: 40px;
  }

  .section-title {
    margin: 0 auto 30px;
  }

  .section-title h2 {
    font-size: 45px;
  }

  .navbar-light .navbar-nav .nav-item a {
    margin-left: 0;
    margin-right: 0;
    margin-top: 15px;
  }

  .navbar-light .others-option .option-item .social-icon {
    margin-top: 20px;
  }

  .main-banner-content {
    text-align: center;
    max-width: 100%;
  }

  .main-banner-content span {
    font-size: 15px;
  }

  .main-banner-content h1 {
    font-size: 50px;
  }

  .main-banner-content .banner-btn {
    margin-top: 20px;
  }

  .banner-image {
    margin-top: 35px;
  }

  .about-content {
    padding: 20px;
  }

  .about-content h3 {
    font-size: 35px;
    margin-bottom: 15px;
  }

  .about-content .social-icon {
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .about-section .row .col-lg-4 {
    padding-right: 15px;
  }

  .about-image {
    text-align: center;
  }

  .contact-image {
    margin-bottom: 35px;
    text-align: center;
  }

  .why-choose-image {
    margin-bottom: 20px;
  }

  .banner-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .banner-section .main-banner-content h1 {
    font-size: 50px;
  }

  .banner-form {
    margin-top: 30px;
  }

  .vision-item {
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 1px solid #f3f3f3;
  }

  .vision-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }

  .page-title-content h2 {
    font-size: 40px;
  }

  .faq-image {
    margin-bottom: 35px;
    text-align: center;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-banner-content h1 {
    font-size: 60px;
  }

  .service-section-box h3 {
    font-size: 22px;
  }
}

/* ------------------------ */
.hoverr:hover {
  transform: scale(1.01);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(128, 128, 128, 0.582);
}

/* -------------------------------- */
#carousel3d .carousel-3d-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  /* background-color: #fff; */
  background-image: url(../img/banner/07.jpg);

  padding: 10px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
#carousel3d .carousel-3d-slide.current {
  background-color: #333;
  color: #fff;
}
#carousel3d .carousel-3d-slide.current span {
  font-size: 25px;
  font-weight: 500;
}

/* -----------------------------asssisment new design---------------> */
section {
  padding-top: 4rem;
  /* padding-bottom: 5rem; */
  background-color: #f1f4fa;
}
.wrap {
  display: flex;
  background: white;
  padding: 1rem 1rem 1rem 1rem;
  border-radius: 0.5rem;
  box-shadow: 7px 7px 30px -5px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.wrap:hover {
  background: linear-gradient(135deg, #6394ff 0%, #0a193b 100%);
  color: white;
}

.ico-wrap {
  margin: auto;
}

.mbr-iconfont {
  font-size: 4.5rem !important;
  color: #313131;
  margin: 1rem;
  padding-right: 1rem;
}
.vcenter {
  margin: auto;
}

.mbr-section-title3 {
  text-align: left;
}
h2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.display-5 {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.4rem;
}
.mbr-bold {
  font-weight: 700;
}

p {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  line-height: 25px;
}
.display-6 {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1re;
}

hr {
  background-color: #0e0e41;
  padding: 1px;
  margin-top: 10px;
  width: 12%;
}
p {
  font-size: 16px;
}

/* ?--------------------------------? */
.ml4 {
  position: relative;
  font-weight: 900;
  font-size: 4.5em;
}
.ml4 .letters {
  position: absolute;
  margin: auto;
  left: 0;
  top: 0.3em;
  right: 0;
  color: white;
  opacity: 0;
  font-size: 28px;
  font-weight: 700;
}

/* ----------------------------Heading red and Blue color-------------- */

.darkred {
  color: #af0d0d;
}

.darkblue {
  color: #0e0e41;
}

/* -------------future goals 3d .carousel-3d-slide----------------- */

.slider {
  width: 100%;
}

.slider input {
  display: none;
}

.testimonials {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 350px;
  perspective: 1000px;
  overflow: hidden;
}

.testimonials .item {
  top: 0;
  position: absolute;
  box-sizing: border-box;
  background-color: #0a0220;
  padding: 30px;
  width: 450px;
  text-align: center;
  transition: transform 0.4s;
  -webkit-transform-style: preserve-3d;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  user-select: none;
  cursor: pointer;
}

.testimonials .item img {
  width: 100px;
  border-radius: 50%;
  border: 1px solid #eeeafa;
}

.testimonials .item p {
  color: #ddd;
}

.testimonials .item h2 {
  font-size: 14px;
}

.dots {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dots label {
  display: block;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  cursor: pointer;
  background-color: #413b52;
  margin: 7px;
  transition: transform 0.2s, color 0.2s;
}

/* First */

#t-1:checked ~ .dots label[for="t-1"] {
  transform: scale(2);
  background-color: #fff;
}

#t-1:checked ~ .dots label[for="t-2"] {
  transform: scale(1.5);
}

#t-1:checked ~ .testimonials label[for="t-1"] {
  z-index: 4;
}

#t-1:checked ~ .testimonials label[for="t-2"] {
  transform: translateX(300px) translateZ(-90px) rotateY(-15deg);
  z-index: 3;
}

#t-1:checked ~ .testimonials label[for="t-3"] {
  transform: translateX(600px) translateZ(-180px) rotateY(-25deg);
  z-index: 2;
}

#t-1:checked ~ .testimonials label[for="t-4"] {
  transform: translateX(900px) translateZ(-270px) rotateY(-35deg);
  z-index: 1;
}

#t-1:checked ~ .testimonials label[for="t-5"] {
  transform: translateX(1200px) translateZ(-360px) rotateY(-45deg);
}

/* Second */

#t-2:checked ~ .dots label[for="t-1"] {
  transform: scale(1.5);
}

#t-2:checked ~ .dots label[for="t-2"] {
  transform: scale(2);
  background-color: #fff;
}

#t-2:checked ~ .dots label[for="t-3"] {
  transform: scale(1.5);
}

#t-2:checked ~ .testimonials label[for="t-1"] {
  transform: translateX(-300px) translateZ(-90px) rotateY(15deg);
}

#t-2:checked ~ .testimonials label[for="t-2"] {
  z-index: 3;
}

#t-2:checked ~ .testimonials label[for="t-3"] {
  transform: translateX(300px) translateZ(-90px) rotateY(-15deg);
  z-index: 2;
}

#t-2:checked ~ .testimonials label[for="t-4"] {
  transform: translateX(600px) translateZ(-180px) rotateY(-25deg);
  z-index: 1;
}

#t-2:checked ~ .testimonials label[for="t-5"] {
  transform: translateX(900px) translateZ(-270px) rotateY(-35deg);
}

/* T hird */

#t-3:checked ~ .dots label[for="t-2"] {
  transform: scale(1.5);
}

#t-3:checked ~ .dots label[for="t-3"] {
  transform: scale(2);
  background-color: #fff;
}

#t-3:checked ~ .dots label[for="t-4"] {
  transform: scale(1.5);
}

#t-3:checked ~ .testimonials label[for="t-1"] {
  transform: translateX(-600px) translateZ(-180px) rotateY(25deg);
}

#t-3:checked ~ .testimonials label[for="t-2"] {
  transform: translateX(-300px) translateZ(-90px) rotateY(15deg);
}

#t-3:checked ~ .testimonials label[for="t-3"] {
  z-index: 3;
}

#t-3:checked ~ .testimonials label[for="t-4"] {
  transform: translateX(300px) translateZ(-90px) rotateY(-15deg);
  z-index: 2;
}

#t-3:checked ~ .testimonials label[for="t-5"] {
  transform: translateX(600px) translateZ(-180px) rotateY(-25deg);
}

/* Fourth

#t-4:checked~.dots label[for="t-3"] {
    transform: scale(1.5);
}

#t-4:checked~.dots label[for="t-4"] {
    transform: scale(2);
    background-color: #fff;
}

#t-4:checked~.dots label[for="t-5"] {
    transform: scale(1.5);
}

#t-4:checked~.testimonials label[for="t-1"] {
    transform: translateX(-900px) translateZ(-270px) rotateY(35deg);
}

#t-4:checked~.testimonials label[for="t-2"] {
    transform: translateX(-600px) translateZ(-180px) rotateY(25deg);
}

#t-4:checked~.testimonials label[for="t-3"] {
    transform: translateX(-300px) translateZ(-90px) rotateY(15deg);
    z-index: 2;
}

#t-4:checked~.testimonials label[for="t-4"] {
    z-index: 3;
}

#t-4:checked~.testimonials label[for="t-5"] {
    transform: translateX(300px) translateZ(-90px) rotateY(-15deg);
}


/* Fifth */

/* 
#t-5:checked~.dots label[for="t-4"] {
    transform: scale(1.5);
}

#t-5:checked~.dots label[for="t-5"] {
    transform: scale(2);
    background-color: #fff;
}

#t-5:checked~.testimonials label[for="t-1"] {
    transform: translateX(-1200px) translateZ(-360px) rotateY(45deg);
}

#t-5:checked~.testimonials label[for="t-2"] {
    transform: translateX(-900px) translateZ(-270px) rotateY(35deg);
    z-index: 1;
}

#t-5:checked~.testimonials label[for="t-3"] {
    transform: translateX(-600px) translateZ(-180px) rotateY(25deg);
    z-index: 2;
}

#t-5:checked~.testimonials label[for="t-4"] {
    transform: translateX(-300px) translateZ(-90px) rotateY(15deg);
    z-index: 3;
}

#t-5:checked~.testimonials label[for="t-5"] {
    z-index: 4;
} */

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin-right: 15px;
}

.nav-link {
  text-decoration: none;
  color: #333;
}

/* Styles for the dropdown menu */
@media only screen and (max-width: 768px) {
  .navbar-nav {
    flex-direction: column;
  }

  .nav-item {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .dropdown {
    position: relative;
    display: inline-block;
  }

  .dropdown-content {
    display: block;
    position: sticky;
    background-color: #fff;
    min-width: 160px;
    box-shadow: none;
    z-index: 1;
    margin-left: 15px;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }
}

/* Additional styles for the dropdown links */
.dropdown-content a {
  color: #333;
  /* padding: 12px 16px; */
  text-decoration: none;
  display: block;
  margin: 0 !important;
  padding: 5px 10px !important;
}

/* Style for the button in the dropdown menu */
.btn-brocure {
  display: block;
  margin-top: 10px;
}

/* Media query for mobile responsiveness */
@media only screen and (max-width: 600px) {
  .btn-brocure {
    margin-top: 10px;
  }
}
