@charset "UTF-8";

@media screen and (min-width: 1400px) {
  .container {
    width: 1140px;
  }
}

@media screen and (min-width: 1920px) {
  .container {
    width: 1400px;
  }
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
}

.menu-section {
  border-top: 2px solid #7f7fa1;
}

.navbar {
  padding: 0;
}

/* Hide the navbar toggler on medium and large devices */
@media (min-width: 768px) {
  .navbar-toggler {
    display: none;
  }

  .menu-section.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
  }

  /* .navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  } */
}

/* .nav-link {
}
.navbar-nav li {
} */

.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
  border-top: 4px solid #2a2962;
}

.group_menu .dropdown-menu {
  top: 20px !important;
}
.group_menu .dropdown-menu.show {
  transition: all 1s ease 0s;
}
.group_menu .dropdown-menu .dropdown-item {
  font-size: 0.9rem;
  line-height: 2.5;
}
/* Section 1 START */
.section1 {
  padding: 100px 0px;
}

.section1-head {
  font-size: 80px;
  font-weight: 100;
  letter-spacing: 16px;
  color: #000;
  text-transform: uppercase;
  text-shadow: 0px 3px 1px #ccc;
}
.section1-head2 {
  font-size: 80px;
  font-weight: 100;
  letter-spacing: 0px;
  color: #000;
  text-transform: uppercase;
  text-shadow: 0px 3px 1px #ccc;
}
.section1-title {
  font-size: 40px;
  font-weight: 300;
  text-transform: uppercase;
  text-shadow: 0px 3px 1px #ccc;
}
.section1-title span {
  color: #2a2962;
  font-weight: 400;
  line-height: 1.5;
}
.section1 .button-box {
  justify-content: center;
}

.arrow-button {
  border: 1px solid #e3e3e3;
  border-radius: 50%;
  float: left;
  padding: 8px;
}

.circle-button {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #fff;
  color: #ed3729;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #696969;
}

.explore {
  font-size: 22px;
  letter-spacing: 6px;
  font-weight: 100;
}

.circle-button i {
  transform: rotate(0deg);
}

/* Mobile adjustments for Section 1 */

@media (max-width: 767px) {
  /* Adjusting font-sizes for mobile */
  .section1-head,
  .section1-head2 {
    font-size: 40px; /* half of the original size */
    letter-spacing: 8px; /* reduced letter spacing */
  }

  .section1-title {
    font-size: 24px; /* reduced size for mobile */
  }

  .explore {
    font-size: 18px; /* reduced font size */
    letter-spacing: 3px; /* reduced letter spacing */
  }

  /* Adjust button size for mobile for easy touch */
  .circle-button {
    width: 50px;
    height: 50px;
  }

  /* Add space between the text and the image since columns stack */
  .section1 .col-md-7 {
    margin-bottom: 20px;
  }

  .section1-right .explore {
    display: block; /* ensure it's block-level to take full width */
    text-align: center; /* center the text */
  }
}

/* Section 1 END */

/* Section 2 START */
.section2 {
  background: #ebebf5;
  padding: 100px 0px;
}

.section2_img {
  background-image: url(../images/Group.png);
  background-repeat: no-repeat;
  background-position: center;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center; /* This will center the content vertically */
  align-items: center; /* This will center the content horizontally */
  height: 50vh;
}

.section2-title {
  font-size: 40px;
  font-weight: 300;
}
.section2-title span {
  color: #2a2962;
  font-weight: 400;
}
.section2_right {
  display: table;
  margin: 35px auto;
  padding: 0px 20px;
  position: relative;
}

.section2_right:after,
.section2_right:before {
  content: "";
  position: absolute;
  font-family: fontAwesome;
  font-size: 50px;
  color: #ed3729;
  /* background: #fff; */
}

.section2_right:after {
  content: "\f10d";
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  /* box-shadow: 10px 10px 0 #fff; */
}

.section2_right:before {
  content: "\f10e";
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
  /* box-shadow: -10px -10px 0 #fff; */
}

.section2_right .description {
  display: table-cell;
  width: 94%;
  vertical-align: middle;
}

.section2_right .description {
  font-size: 14px;
  text-align: justify;
}

@media (max-width: 767px) {
  /* Adjusting section2 padding for mobile */
  .section2 {
    padding: 50px 0px; /* Reduced padding for mobile */
  }

  /* Adjusting background container height and font size */
  .section2_img {
    background-size: contain; /* Maintain aspect ratio */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Ensure it doesn't repeat */
    height: 100px; /* Fixed height for mobile */
  }

  .section2-title {
    text-align: center;
    font-size: 32px; /* Adjusted font size */
  }

  /* Adjusting position of icons and possibly resizing them */
  .section2_right:after,
  .section2_right:before {
    font-size: 30px; /* Reduced font size */
    top: 10px; /* Positioned from the top */
    left: 10px; /* Positioned from the left for the :after element */
    right: auto; /* Reset right property */
    bottom: auto; /* Reset bottom property */
  }

  .section2_right:before {
    bottom: 0; /* Position at the bottom */
    right: 0; /* Position at the rightmost side */
    left: auto; /* Resetting left property */
    top: auto; /* Resetting top property */
    transform: none; /* Removing the translate transform */
  }

  /* Adjusting the description text size and padding */
  .section2_right .description {
    font-size: 14px; /* Adjusted font size for better legibility on mobile */
    padding: 5px; /* Added some padding */
  }
}

/* Section 2 END */

/* Section 3 START */
.section3 {
  padding: 100px 0px;
}

.section3-title {
  font-size: 40px;
  font-weight: 300;
}
.section3-title span {
  color: #ed3729;
}
.section3-title span span {
  color: #2a2962;
  font-weight: 400;
}
.section3-desc {
  margin-top: 100px;
  text-align: justify;
}

/* Hide the mobile image for larger screens by default */
.section3 .mobile-img {
  display: none;
}

@media (max-width: 767px) {
  .section3-title {
    font-size: 32px; /* Adjusted font size */
    padding: 0 20px;
  }
  /* Show the mobile image on smaller screens */
  .section3 .mobile-img {
    display: block;
    margin-top: 20px; /* Add some spacing between title and image */
  }

  /* Hide the original image on smaller screens */
  .section3 .col-md-6:last-child .text-center {
    display: none;
  }

  .section3-desc {
    margin-top: 50px;
    font-size: 14px;
    padding: 0px 20px;
  }
}
/* Section 3 END */

/* Section 4 START */
.section4 {
  background: #ebebf5;
  padding: 100px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* min-height: 100vh; */
}

.section4_top {
  border-bottom: 2px solid #ed3729;
  text-align: right;
  padding-bottom: 20px;
}
.section4_bottom {
  margin: 100px 0;
  text-align: right;
}
.section4-title {
  font-weight: 300;
  font-size: 40px;
}
.section4-title span {
  color: #2a2962;
  font-weight: 400;
}

@media (max-width: 767px) {
  /* Center-align the text and image for mobile devices */
  .section4 img {
    width: 60%;
  }
  .section4 img,
  .section4_top,
  .section4_bottom {
    font-size: 14px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* Adjust title's padding and margin for better spacing on mobile */
  .section4-title {
    font-size: 32px;
    padding: 50px 0;
    margin: 0;
  }

  /* Adjust the margin for the section's bottom content */
  .section4_bottom {
    text-align: justify;
    margin: 20px 0;
  }
}
/* Section 4 END */

/* Section 5 START */
.section5 {
  position: relative;
  padding: 100px 0px;
}

.section5-title {
  font-size: 40px;
  text-align: right;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 100px;
}
.section5-title span {
  color: #2a2962;
  font-weight: 400;
}
.section5-title span span {
  color: #ed3729;
}

.section5_left {
  text-align: justify;
}

#borderLeft {
  border-left: 5px solid #2a2962;
  position: absolute;
  top: 5px;
  bottom: 83%;
  left: 0;
}

/* Hide the mobile image for larger screens by default */
.section5 .mobile-img {
  display: none;
}

@media (max-width: 767px) {
  .section5-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 0px;
  }

  .section5_left {
    padding: 0 20px;
    font-size: 14px;
  }

  /* Show the mobile image on smaller screens */
  .section5 .mobile-img {
    display: block;
    margin: 80px 0; /* Add some spacing between title and image */
  }

  .section5_right img {
    display: none;
  }
}
/* Section 5 END */

/* Section 6 START */

.section6 {
  background: #ebebf5;
  padding: 100px 0px;
}

.section-title {
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  padding-bottom: 7px;
  position: relative;
  border-bottom: 2px solid #ed3729;
  width: 343px;
  font-size: 40px;
  font-weight: 300;
}

.section-title:before {
  position: absolute;
  background: #2a2962;
  height: 2px;
  content: "";
  width: 85px;
  bottom: -2px;
  left: 0;
}
.section-title span {
  color: #2a2962;
  font-weight: 400;
}

.brand-desc {
  text-align: center;
  padding: 40px 45px;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .section6 {
    padding: 100px 0px; /* reduce padding for mobile */
  }

  .section-title {
    font-size: 32px; /* reduce font size for mobile */
    width: auto; /* Let the width be automatic to fit the title */
    padding: 0 10px; /* Provide some horizontal padding */
  }
}

/* Section 6 END */

/* Section CLIENT START */
#clients {
  padding: 100px 0px;
}
#clients .clients-wrap {
  border-top: 1px solid #d7d7d7;
  border-left: 1px solid #d7d7d7;
}

#clients .client-logo {
  padding: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
  overflow: hidden;
  background: #fff;
  height: 160px;
}

#clients img {
  transition: all 0.4s ease-in-out;
  width: 120px;
}

/* Mobile Adjustments for the Client Section */
@media (max-width: 767px) {
  section#clients-mobile {
    padding: 80px 20px;
  }

  #clients-mobile .col-6 {
    border: 1px solid #d7d7d7;
  }

  #clients-mobile .client-logo {
    text-align: center;
    padding: 10px;
  }

  .brand-desc {
    text-align: justify;
    padding: 80px 0;
  }
}

/* Section CLIENT END */

.section8 {
  background: #ebebf5;
  padding: 100px 0px;
}
.section8-box {
  padding-right: 178px;
}
.section8-title {
  font-size: 40px;
  font-weight: 300;
}
.section8-title span {
  background: #ed3729;
  color: #fff;
  border-radius: 50%;
  padding: 0px 10px;
}

.section8 .arrow-button {
  border: 1px solid #e3e3e3;
  border-radius: 50%;
  float: left;
  padding: 8px;
}
.section8 .explore {
  font-size: 22px;
  letter-spacing: 8px;
}

/* Custom CSS */
.section8 .circle-button {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #ebebf5;
  color: #ed3729;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #696969;
}

.section8 .circle-button i {
  transform: rotate(0deg);
}

/*******/

.slider {
  width: 100%;
  margin: 100px auto;
}

.slick-slide {
  margin: 0px 20px;
}

.slick-slide img {
  width: 100%;
}

.slick-prev:before,
.slick-next:before {
  color: black;
}

.slick-slide {
  transition: all ease-in-out 0.3s;
  opacity: 0.2;
}

.slick-active {
  opacity: 1;
}

.slick-current {
  opacity: 1;
}

/**************************************/

.bx-wrapper {
  -moz-box-shadow: 0 0 5px #ccc;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  background: transparent;
}

/*******************/

#news-slider {
  margin-top: 80px;
}
.post-slide {
  background: #fff;
  margin: 20px 15px 20px;
  border-radius: 15px;
  padding-top: 1px;
  box-shadow: 0px 14px 22px -9px #bbcbd8;
}
.post-slide .post-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: -12px 15px 8px 15px;
  margin-left: -10px;
}
.post-slide .post-img img {
  width: 100%;
  height: auto;
  transform: scale(1, 1);
  transition: transform 0.2s linear;
}
.post-slide:hover .post-img img {
  transform: scale(1.1, 1.1);
}
.post-slide .over-layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: linear-gradient(
    -45deg,
    rgba(6, 190, 244, 0.75) 0%,
    rgba(45, 112, 253, 0.6) 100%
  );
  transition: all 0.5s linear;
}
.post-slide:hover .over-layer {
  opacity: 1;
  text-decoration: none;
}
.post-slide .over-layer i {
  position: relative;
  top: 45%;
  text-align: center;
  display: block;
  color: #fff;
  font-size: 25px;
}
.post-slide .post-content {
  background: #fff;
  padding: 2px 20px 40px;
  border-radius: 15px;
}
.post-slide .post-title a {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}
.post-slide .post-title a:hover {
  text-decoration: none;
  color: #3498db;
}
.post-slide .post-description {
  line-height: 24px;
  color: #808080;
  margin-bottom: 25px;
}
.post-slide .post-date {
  color: #a9a9a9;
  font-size: 14px;
}
.post-slide .post-date i {
  font-size: 20px;
  margin-right: 8px;
  color: #cfdace;
}
.post-slide .read-more {
  padding: 7px 20px;
  float: right;
  font-size: 12px;
  background: #2196f3;
  color: #ffffff;
  box-shadow: 0px 10px 20px -10px #1376c5;
  border-radius: 25px;
  text-transform: uppercase;
}
.post-slide .read-more:hover {
  background: #3498db;
  text-decoration: none;
  color: #fff;
}
.owl-controls .owl-buttons {
  text-align: center;
  margin-top: 20px;
}
.owl-controls .owl-buttons .owl-prev {
  background: #fff;
  position: absolute;
  top: -13%;
  left: 15px;
  padding: 0 18px 0 15px;
  border-radius: 50px;
  box-shadow: 3px 14px 25px -10px #92b4d0;
  transition: background 0.5s ease 0s;
}
.owl-controls .owl-buttons .owl-next {
  background: #fff;
  position: absolute;
  top: -13%;
  right: 15px;
  padding: 0 15px 0 18px;
  border-radius: 50px;
  box-shadow: -3px 14px 25px -10px #92b4d0;
  transition: background 0.5s ease 0s;
}
.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after {
  content: "\f104";
  font-family: FontAwesome;
  color: #333;
  font-size: 30px;
}
.owl-controls .owl-buttons .owl-next:after {
  content: "\f105";
}
@media only screen and (max-width: 1280px) {
  .post-slide .post-content {
    padding: 0px 15px 25px 15px;
  }
}

/***************************/
.section9 {
}
.section9 .hr {
  border-top: 2px solid #ed3729;
  margin-top: 40px;
}
.svg-inline--fa {
  vertical-align: -0.2em;
}

.rounded-social-buttons {
  text-align: center;
  padding: 4rem 0rem;
}

.rounded-social-buttons .social-button {
  display: inline-block;
  position: relative;
  cursor: pointer;
  width: 2.8rem;
  height: 2.8rem;
  border: 0.125rem solid transparent;
  padding: 7px;
  text-decoration: none;
  text-align: center;
  color: #fefefe;
  font-size: 1rem;
  font-weight: normal;
  line-height: 2em;
  border-radius: 1.6875rem;
  transition: all 0.5s ease;
  margin-right: 0.25rem;
  margin-bottom: 0.25rem;
  background: black;
}

.rounded-social-buttons .social-button:hover,
.rounded-social-buttons .social-button:focus {
  /* -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg); */
}

.rounded-social-buttons .fa-twitter,
.fa-facebook-f,
.fa-linkedin,
.fa-youtube,
.fa-instagram {
  font-size: 25px;
}

.rounded-social-buttons .social-button.facebook {
  /* background: #3b5998; */
}

.rounded-social-buttons .social-button.facebook:hover,
.rounded-social-buttons .social-button.facebook:focus {
  color: #000;
  background: #fefefe;
  border-color: #000;
}

.rounded-social-buttons .social-button.twitter {
  /* background: #55acee; */
}

.rounded-social-buttons .social-button.twitter:hover,
.rounded-social-buttons .social-button.twitter:focus {
  color: #000;
  background: #fefefe;
  border-color: #000;
}

.rounded-social-buttons .social-button.linkedin {
  /* background: #007bb5; */
}

.rounded-social-buttons .social-button.linkedin:hover,
.rounded-social-buttons .social-button.linkedin:focus {
  color: #000;
  background: #fefefe;
  border-color: #000;
}

.rounded-social-buttons .social-button.youtube:hover,
.rounded-social-buttons .social-button.youtube:focus {
  color: #000;
  background: #fefefe;
  border-color: #000;
}

.rounded-social-buttons .social-button.instagram:hover,
.rounded-social-buttons .social-button.instagram:focus {
  color: #000;
  background: #fefefe;
  border-color: #000;
}

.rounded-social-buttons .social-button.email:hover,
.rounded-social-buttons .social-button.email:focus {
  color: #000;
  background: #fefefe;
  border-color: #000;
}

/*****************/
/* FOOTER START */
.bg-foot {
  background: #2a2962;
  color: white;
}
.footer-top {
  padding: 140px 0px;
}

.foot-col-content {
  font-size: 1.5rem;
}
.foot-col-content ul {
  list-style: none;
  padding: 0;
}

.foot-col-content ul li a {
  color: white;
  font-size: 15px;
  font-weight: 100;
  text-decoration: none;
}
.bottom-box {
  border: 2px solid #ed3729;
  border-radius: 50% 50% 0 0/100% 100% 0 0;
  padding: 55px;
  font-size: 13px;
  border-bottom: 0;
}
.bottom-box p {
  padding-top: 85px;
}

/*** Large devices (desktops, 992px and up) ***/
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 2rem;
    padding-left: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

/* Footer Mobile Adjustments */
@media (max-width: 767px) {
  .footer-top {
    padding: 60px 0px; /* Reduced padding for mobile */
  }

  .foot-col-head h2 {
    font-size: 24px; /* Slightly smaller headings for mobile */
  }

  .foot-col-content {
    font-size: 1rem; /* Reduced font-size for mobile */
  }

  .foot-col-content ul li a {
    font-size: 13px; /* Smaller link text for mobile */
    font-weight: 100;
  }

  .bottom-box {
    padding: 30px; /* Reduced padding for mobile */
    margin: 0 10px; /* Slight horizontal margin to ensure it doesn't touch the edges */
  }

  .bottom-box p {
    padding-top: 45px; /* Reduced padding-top for mobile */
    font-size: 12px; /* Smaller font-size for bottom box text */
  }
}
