/*header*/
.header {
  background: #fff;
  border-bottom: 1px solid #dedede;
}

.navbar-brand img {
  max-height: 70px;
}

.navbar-toggler {
  border: none;
  font-size: 1.5rem;
}

.offcanvas {
  width: 300px;
  background: #f8f9fa;
}

.offcanvas-title {
  font-weight: bold;
}

.offcanvas-body .nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #013f92;
  padding: 10px 0;
  font-weight: bold;
}

.offcanvas-body .nav-link img {
  width: 20px;
  height: 20px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 80vh;
  position: relative;
  display: flex;
  padding: 100px 0 60px 0;
  align-items: center;
  background: #00346b url(/../webroot/img/login_bg.jpg) no-repeat center center;
  border-top: 5px solid #f58434;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, #013f92, transparent 50%);
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero h1 {
  font-size: 42px;
  font-weight: 500;
  padding: 0;
  color: #fff;
}

.hero h1 span {
  color: #f58434;
}

.hero p {
  font-size: 20px;
  margin: 0;
  padding: 0;
  color: #fff;
}


.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero {
    padding: 100px 0 150px 0;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;

  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.service-slider {
  margin-top: 20px;
}

.service-slider .service-area {
  margin: 0 10px;
}

.service-slider .service-area:last-child {
  margin-right: 0;
}

.service-row h2 {
  font-size: 30px;
  font-weight: 500;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: center;
}

.service-area {
  background: #f58434;
  border-radius: 10px;
  padding: 10px;
  text-align: left;
  transition: ease all 0.5s;
}

.service-area a {
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
  min-height: 70px;
  transition: ease all 0.5s;
}

.service-area span {
  background: #013f92;
  border-radius: 50%;
  padding: 10px;
  float: left;
  width: 48px;
  height: 47px;
  text-align: center;
  margin-right: 10px;
  transition: easeall 0.5s;
  flex-shrink: 0;
}

.service-area span img {
  margin: auto;
  filter: brightness(0) invert(1);
}

.service-area a h6 {
  color: #000;
  font-size: 16px;
  margin-bottom: 5px;
}

.service-area a p {
  font-size: 12px;
  color: #000;
}

.service-area:hover {
  background: #013f92;
}

.service-area:hover span {
  background: #ffffff;
}

.service-area:hover span img {
  filter: brightness(1) invert(0);
}

.service-area:hover a,
.service-area:hover a h6,
.service-area:hover a p {
  color: #ffffff;
}

.service-slider .slick-prev,
.service-slider .slick-next {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 15px;
  background: #014c8e;
  display: inline-block;
  line-height: 20px;
  transition: 0.5s;
  font-weight: 300;
  color: #fff;
  border: 1px solid #ffffff;
}

.service-slider .slick-prev:before,
.service-slider .slick-next:before {
  display: none;
}

.service-slider .slick-prev:hover,
.service-slider .slick-next:hover,
.service-slider .slick-next:hover,
.service-slider .slick-next:focus {
  background: #f58434 !important;
  color: #fff !important;
  border: 1px solid #ffffff !important;
}

.service-slider .slick-dots {
  text-align: center;
  padding: 15px 0 !important;
  position: relative;
}

.service-slider .slick-dots li {
  display: inline-block;
  margin: 0 4px;
}

.service-slider .slick-dots li button {
  border: none;
  background: transparent;
  padding: 0;
}

.service-slider .slick-dots li button:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.service-slider .slick-dots li.slick-active button:before {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.3);
}


/*New Login */
.login-wrap {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.hero .login-top h3 {
  color: #013f92;
  margin-bottom: 0px;
  font-weight: bold;
  font-size: 25px;
}

.hero .login-top p {
  margin-bottom: 30px;
  color: #777;
  font-size: 14px;
}

.login-wrap .password-toggle-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
}

/* Buttons */
.login-wrap .btn-primary {
  background: #013f92;
  border: none;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background 0.3s ease;
  box-shadow: none;
}

.login-wrap .btn-primary:hover {
  background-color: #f58434;
}

.login-wrap .login-btn-fill {
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
}

.login-wrap .forgot_passwd,
.login-wrap .forgotpasswd {
  color: #013f92;
  font-size: 14px;
  text-decoration: none;
}

.login-wrap .forgot_passwd:hover,
.login-wrap .forgotpasswd:hover {
  text-decoration: underline;
}

.hero .signin-form p {
  color: #777;
  font-size: 14px;
}

.hero .loginCard p a {
  color: #013f92;
  text-decoration: none;
}


.info_bg {
  background: rgba(0, 0, 0, 0.27);
  padding: 15px;
  text-align: center;
  color: #fff;
  ;
  width: 100%;
  position: absolute;
  bottom: 0;
}

.info_bg span {
  font-weight: bold;
  color: #f58434;
}

.info_bg a {
  color: #fff;
  text-decoration: none;
}

.info_bg a:hover {
  color: #fff;
  text-decoration: underline;
}

/*================================*/

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: inherit;
  -webkit-box-shadow: inherit;
  transition: background-color 5000s ease-in-out 0s;

}

.error-message {
  top: unset;
  width: 100%;
  position: relative !important;
}

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

.heroSectionWrap {
  background-image: url(/webroot/newbanners.jpg);
  min-height: 700px;
  height: 100%;
  background-position: center;
  padding: 160px 0 60px 0;
  background-size: cover;
  background-repeat: no-repeat;
}

.heroSectionWrap_tts1 {
  position: relative;
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
}

.heroSectionWrap .heroSectionWrap_title {
  font-size: 60px;
  color: rgb(255, 255, 255);
  font-weight: 100;
  margin-bottom: 60px;
}

.heroSectionWrap .heroSectionWrap_title span {
  font-weight: 900;
  text-transform: uppercase;
  line-height: 100px;
}

.heroSectionWrap .heroSectionWrap_text {
  font-size: 16px;
  color: rgb(255, 255, 255);
  line-height: 1.5;
  padding-top: 1.5rem;
  margin-bottom: 40px;
}

.Registration-section .register_btn {
  background-color: #0a2960;
  color: #fff;
  font-weight: 400;
  width: 100%;
}

.Registration-section .register_submit {
  background-color: #c82e29;

  color: #fff;
  font-weight: 400;
  width: 100px;
}

.Registration-section {
  margin-top: 50px;
  margin-bottom: 50px;
}

/*.register_form {
  background: #ffffff;
  box-shadow: 0px 0px 10px 10px rgb(0 0 0 / 10%);

  border-radius: 0px;
  padding: 50px;
}*/

.register_form h4 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 40px;
}

.login_box {
  max-width: 500px;
  margin: 0% auto;
}

.formButtonWrap {
  padding: 1.5rem 3rem;
}

.heroSectionWrap .login_form {
  background-color: transparent;
  border: 1px solid rgb(255, 239, 220);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.heroSectionWrap .card-group .card {
  background-color: #fff;
  height: auto;
  padding: 40px 20px;
  min-height: 100%;
  border: none;
  width: 100%;
  border-radius: 4px !important;
}

.heroSectionWrap .card-group .login_bg {
  background-color: #fff;
}

.heroSectionWrap .card-group .card h3 {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  color: #c90201 !important;
}

.heroSectionWrap .card-group .card .form-group .forgot_passwd,
.heroSectionWrap .card-group .card .card-body {
  padding: 0;
}

.heroSectionWrap .card-group .card .form-group .forgot_passwd,
.heroSectionWrap .card-group .card p {
  color: #999;
  margin-bottom: 0;
  font-size: 14px;

}

.heroSectionWrap .card-group .card .form-group .forgot_passwd,
.heroSectionWrap .card-group .card .form-group .btn-link {
  text-decoration: none;
  color: #052e61;
  font-weight: 500;
}

.heroSectionWrap .card-group .card .form-group .btn-link:hover {
  color: #052e61;
  background-color: white;
}

.heroSectionWrap .card-group .card .form-control {
  padding: 10px 20px;
  border: 1px solid #ced4da !important;
  width: 100%;
}

.heroSectionWrap .card-group .card .form-control:focus {
  box-shadow: none !important;
  border-color: #c90201 !important;
}

.heroSectionWrap .card-group .card .loginbtn {
  background-color: #c90201;
  font-size: 16px !important;
  font-weight: 500;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  color: #fff;
}

.card-group .card .btn-register {
  background-color: #0a2960;
  border: 1px solid #0a2960;
  transition: all 0.5s;
  color: #fff !important;
  width: 140px;
  height: 70px;
  border-radius: 0;
  line-height: 55px;
  text-align: center;
  font-weight: 500;
}

.card-group .card .btn-register:hover {
  border: 1px solid #c90201;
  background-color: transparent;
  color: #c90201 !important;
}

.card .hide {
  display: none;
}

.whyTravelCrmsWrap .travelIcon i {
  margin-top: 0px;
  margin-right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  padding: 0 !important;
  background-color: #013f92;
  color: #fff;
  text-align: center !important;
  line-height: 34px !important;
}

.figureCountSection .figureCountContent .figureImg {
  height: 30px;
  width: 30px;
}

/*====================================*/

.login {
  width: 100%;
  height: 100%;
  position: relative !important;
}

.heroSectionWrap .login_form {
  padding: 0;
  padding-top: 34px !important;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 2px;
}

.heroSectionWrap .login_form .form-group {
  padding: 0 21px;
}

.heroSectionWrap .login_form .loginbtn {
  margin-left: 22px;
  margin-top: 20px;
}

.heroSectionWrap .heroSectionContent {
  padding: 102px 18px;
}

.heroSectionWrap .heroSectionContent .heroSubHead {
  font-size: 24px;
  height: 42px;
  word-break: break-word;
  margin: 15px 0 30px 0;
}

.heroSectionWrap .heroSectionContent .heroSubHead span {
  text-transform: uppercase;
  font-weight: 500;
}

.heroSectionWrap .heroSectionContent .heroListWrapper>ul>li>img {
  height: 60px;
  width: 129px;
  margin: 6px 9px;
}

/* fixed header css */

.heroSectionWrap .heroSectionContent ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  background-color: #fff;
  width: 103%;
  margin-top: 22px;
  padding: 11px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  -ms-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  margin-top: 31px;
}

.heroSectionWrap .heroSectionContent .clientInfo {
  font-size: 17px;
  font-weight: 500;
}

.heroSectionWrap .heroSectionContent .heroPara {
  font-size: 44px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  -webkit-text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  -moz-text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  -ms-text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.figureCountSection {
  margin-bottom: 0px;
  background-color: #f1f1f1;
  padding: 30px 0 30px 0;
}

.figureCountSection h2 {
  font-size: 40px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  margin: auto;
}

.figureCountSection p {
  font-size: 20px;
  margin-bottom: 40px !important;
  display: flex;
  justify-content: center;
  margin-top: 9px !important;
  margin: auto;
}

.figureCountSection p span {
  font-weight: 500;
}

.figureCountSection .tts_row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  justify-content: space-between;
  margin-left: -15px;
}

.figureCountSection .figureCountContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.figureCountSection .figureCountContent .figureImgWrapper {
  margin: auto;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  text-align: center;
  line-height: 70px;
}


.figureCountSection .figureCountContent p {
  font-size: 25px;
  font-weight: 700;
  padding-top: 0px;
  color: #ea2330;
  margin-bottom: 0 !important;
}

.figureCountSection .figureCountContent h4 {
  margin-top: 0;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

.formButtonWrap {
  display: inherit;
  background-color: rgb(255, 239, 220);
  padding: 2.5rem 3rem;
  border-radius: 0px 0px 4px 4px;
  position: relative;
  margin-top: 20px;
  padding-left: 27px;
}

.formButtonWrap .formSignUp {
  color: #000;
  font-weight: 600;
}

.whyTravelCrmsWrap {
  padding: 80px 0;
  overflow: hidden;
}

.whyTravelCrmsWrap h3 {
  font-weight: 700;
  font-size: 32px;
  color: #001f8d;
  text-transform: capitalize;
}

.whyTravelCrmsWrap .whyTravelMain {
  display: flex;
  margin-top: 25px;
}

.whyTravelCrmsWrap .travelContent {
  color: darkslategrey;
}

.whyTravelCrmsWrap .fa-tag {
  transform: rotate(90deg);
}

.whyTravelCrmsWrap .whyTravelContent .whyTravelMain h4 {
  margin-bottom: 0;
  font-size: 17px;
  opacity: 0.9;
  text-transform: capitalize;
}

.whyTravelCrmsWrap .whyTravelContent .whyTravelMain p {
  margin-top: 0;
  font-size: 16px;
  font-weight: 400;
  padding-left: 0;
}

.signUpFormWrapper {
  margin-top: 40px;
  margin-bottom: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.signUpFormWrapper .signUpFormContent {
  margin: 5px auto;
  width: 935px;
  padding: 25px 50px;
  background: #f7f7f7;
  border: 1px solid #cbcbcb;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  -ms-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}

.signUpFormWrapper .signUpFormContent h3 {
  font-size: 32px;
  color: #ea2330;
  border-bottom: 1px solid #ea2330;
  padding: 0 45px 15px 45px;
}

.signUpFormWrapper .signUpFormContent form {
  background-color: transparent !important;
}

.signUpFormWrapper .signUpFormContent label {
  padding: 15px 0;
  font-weight: 500;
  display: block;
  font-size: 15px;
  text-transform: uppercase;
}

.signUpFormWrapper .signUpFormContent .signUpField {
  border: 1px solid whitesmoke;
  height: 50px;
  width: 100%;
  padding: 10px 10px;
  -webkit-box-shadow: 0 2px 2px 0 #cdcdcd;
  -moz-box-shadow: 0 2px 2px 0 #cdcdcd;
  -ms-box-shadow: 0 2px 2px 0 #cdcdcd;
  box-shadow: 0 2px 2px 0 #cdcdcd;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  margin-right: 17px;
}

.signUpFormWrapper .signUpFormContent .formTerms {
  text-align: center;
  margin-top: 30px;
  font-size: 16px;
  margin-bottom: 29px;
}

.signUpFormWrapper .signUpFormContent button {
  cursor: pointer;
  box-shadow: none;
  display: flex;
  margin: auto;
  justify-content: center;
  background: #dcd6d6;
  height: 49px;
  font-weight: 700;
  padding: 16px;
  color: #000;
  width: 250px;
  border: 1px solid #ddd;
}



.heroSectionWrap .carousel-indicators {
  margin: 0 !important;
  justify-content: start;
}

.heroSectionWrap .carousel-indicators button {
  border-radius: 2rem;
  border: none !important;
  height: 5px;
}

.heroSectionWrap .carousel-indicators button.active {
  width: 100px !important;
}

/*===============clients======slider==================*/
.clients {
  padding: 15px 0;
  text-align: center;
  margin: 0px 0 0px 0;
}

.section-bg {
  background-color: #fff;
}

.clients img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;

}

.clients img:hover {
  filter: none;
  transform: scale(1.15);
}

.clients .clients-slick {
  width: 200px !important;
}

.clients .slick-slider {
  background-color: transparent !important;

}

.clients img {
  width: 30% !important;
}

.clients .slick-prev,
.clients .slick-next {
  background-color: none !important;
  width: 30px;
  height: 30px;
  border-radius: 50% !important;
}

.clients .slick-prev:before,
.clients .slick-next:before {
  color: #013f92 !important;
  font-size: 30px !important;
}

.clients .slick-prev:hover,
.clients .slick-prev:focus,
.clients .slick-next:hover,
.clients .slick-next:focus {
  background: none !important;
  border: 1px solid transparent;
  color: none !important;
}

/*==========services================*/
.services-section {
  background: #f9f1ee url('../../webroot/img/agnet_login.jpeg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
}

.services-section .services-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin: 0;
  padding: 25px 0;
}

.services-section .service-box {
  transition: ease all 0.5s;
  box-shadow: 1.871px 8.803px 21px 0px rgb(0 0 0 / 18%);
  padding: 15px;
  background: #fff;
  border-radius: 10px;
  margin: 150px 0 30px;
  height: auto;
  min-height: 120px;
}

.services-section .service-icons .fa {
  transition: ease all 0.5s;
  background: #eeeff1;
  text-align: center;
  width: 65px;
  height: 65px;
  line-height: 65px;
  border-radius: 50%;
}

.services-section .service-icons .fa {
  color: rgb(242, 166, 2);
  font-size: 25px;
}

.services-section .service-box .service-body {
  margin-left: 20px;
}

.services-section .service-box:hover {
  box-shadow: 1.871px 8.803px 21px 0px rgb(0 0 0 / 60%);
  border-radius: 25px;
}

.services-section .service-box:hover .service-icons .fa {
  background: #014c8e;
}

.services-section .service-box:hover .fa {
  color: #fff;
}

@media only screen and (max-width: 600px) {
  .services-section .service-box {
    margin: 0 0 20px;
  }

  .figureCountSection h2 {
    font-size: 30px;
    display: block;
  }

  .figureCountSection p {
    font-size: 16px;
  }

  .footer .footer__touch,
  .footer .footer__work {
    border-right: 1px solid transparent;
    padding: 0;
  }

  .whyTravelCrmsWrap .whyTravelMain {
    margin-top: 0px;
  }

  .whyTravelCrmsWrap .travelIcon i {
    margin-top: 0;
  }

  .heroSectionWrap .card-group .card .form-group .forgot_passwd,
  .heroSectionWrap .card-group .card p {
    font-size: 13px;
  }

  .register_form {
    padding: 20px;
  }

  .register_form h4 {
    margin-bottom: 30px;
  }

  .footer__touch,
  .footer_work {
    text-align: left !important;
  }

  .footer .footer__touch {
    margin-bottom: 20px !important;
    margin-top: 30px !important;
  }

  .footer .footer__work {
    text-align: left !important;
  }

  .navbar .navbar-toggler {
    border: transparent;
    border-radius: 0;
    background-color: #013f92;
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;

  }

  .navbar .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
  }

}

.valid-feedback {
  font-size: 16px;
  font-weight: 600;
}

.invalid-feedback label {
  cursor: pointer;
  font-size: 16px;
}


/*about-section*/
.about-section {
  padding-top: 80px;
}

.about-section .about-img {
  max-width: 400px;
  width: 100%;
  height: auto;
  float: right;
  margin-left: 30px;
  border-radius: 10px;
  overflow: hidden;
}

.about-section .about-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-section p {
  text-align: justify;
}

/*faq*/
.faq-section {
  padding: 80px 0;
}

.faq-sec .accordion-item {
  background-color: transparent;
  border: none;
  transition: all 0.3s ease-in-out;
}

.faq-sec .accordion-item:last-of-type {
  border-bottom: none;
}

.faq-sec .accordion-button {
  background-color: #dfdfdf;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease-in-out;
  padding: 10px 15px;
}

.faq-sec .accordion-button:after {
  content: "\f067";
  font-family: "FontAwesome";
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #f1f1f1;
  color: #4E5561;
  transition: all 0.3s ease-in-out;
  background-image: none;
  font-weight: 400;
}

.faq-sec .accordion-button:not(.collapsed):after {
  content: "\f068";
  background-color: #ffffff;
  color: #0a2960;
  background-image: none;
}

.faq-sec .accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: #0a2960;
  box-shadow: none;
}

.faq-sec .accordion-button:focus {
  box-shadow: none;
}

.faq-sec .accordion-item .accordion-body {
  padding: 10px 15px;
  font-size: 16px;
  color: #666;
  transition: all 0.3s ease-in-out;
  border: 1px solid #dfdfdf;
}


.faq-sec .accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 0;
}

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts {
  background-color: rgb(242, 236, 243);
  padding: 80px 0;
}

.recent-posts article {
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
}

.recent-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.recent-posts .post-img img {
  width: 100%;
}

.recent-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, #212529, transparent 50%);
  margin-bottom: 10px;
}

.recent-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 0px 0;
}

.recent-posts .title a {
  color: #32353a;
  transition: 0.3s;
  text-decoration: none;
}

.recent-posts .title a:hover {
  color: #f58434;
}

.recent-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, #212529, transparent 50%);
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: #212529;
  background-color: #ffffff;
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, #212529, transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, #0a2960, transparent 0%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li a {
  color: #ffffff;
  text-decoration: none;
}

.page-title nav ol li+li {
  padding-left: 10px;
  color: #f58434;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, #ffffff, transparent 70%);
}


.blog-details .article {
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
  max-height: 400px;
}

.blog-details .post-img img {
  width: 100%;
  height: auto;
}

.blog-details .title {
  color: #32353a;
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}