@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

/***** General CSS *****/

body {
  word-break: break-word;
  font: 15px/25px 'Poppins', sans-serif;
  color: #393939;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

p {
  font-weight: 500;
}


/***** Font Files *****/

@font-face {
  font-family: 'Fonts Awesome';
  src: url(../fonts/fontawesome-webfont.eot);
  src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
  font-weight: 400;
  font-style: normal
}


/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.theme-btn {
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  padding: 16px 30px;
  color: #fff;
  margin: 20px 20px 20px 0;
  border-radius: 50px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 50px;
  text-transform: capitalize;
  text-transform: capitalize;
  background: #293f90;
  font-family: 'Poppins';
  font-weight: 700;
}

.theme-btn:hover {
  background-color: #000;
  color: #fff;
  border-color: unset;
}

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: "Jost", sans-serif;
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
  font-family: "Jost", sans-serif;
  font-size: 55px;
  line-height: 60px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 30px;
}

h3 {
  font-family: "Jost", sans-serif;
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 28px;
}

h4 {
  font-family: "Jost", sans-serif;
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  line-height: 25px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  line-height: 23px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 22px;
}

select {
  background: #fff url('../images/arrow.png') no-repeat right;
  padding: 0 40px 0 30px;
  
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}


/*header css start */

.menuSec {
  padding: 17px 0;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
  text-transform: capitalize;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #393939;
    padding: 10px 23px;
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: 600;
}

.menuSec ul li a:after {
  /* content: ''; */
  position: absolute;
  top: 35%;
  right: 0;
  width: 1px;
  height: 13px;
  background-color: #393939;
}

.menuSec ul li:last-child a {
  padding-right: 23px;
}

.menuSec ul li:last-child a:after {
  display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #5299ff;
}

.menuSec li:hover>ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li>ul>li>a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
  display: block;
  margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
  display: none;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
  content: " ";
  display: table;
}

.menuSec ul:after {
  clear: both;
}

.menuSec li>ul>li:hover>ul {
  left: 230px;
  top: 0px;
  width: 270px;
}
.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}
.droopdwon {
    float: left;
}
.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}
/*header css start */

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}
/*banner css start */




.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
  width: 100%;
}
.carousel-control.right,
.carousel-control.left {
  background: none;
  opacity: 1;
  width: 50px;
  height: 50px;
  top: initial;
  top: 40%;
  background: rgba(255, 255, 255, 0.1);
  text-shadow: none;
}
.carousel-control.right:hover,
.carousel-control.left:hover {
  background: rgba(255, 27, 27, 0.6);
  color: #fff;
}
.carousel-control.right .fa,
.carousel-control.left .fa {
  position: relative;
  top: 12px;
  font-size: 20px;
  color: #fff;
  opacity: 0.5;
}
.carousel-control.right {
  right: 0px;
}
.carousel-control.left {
  left: 0px;
}
.carousel-indicators {}
.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px!important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}
.carousel-caption {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
}
.carousel-indicators li {
  border: none;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  background: #fff;
  width: 12px;
  height: 12px;
  margin: 0;
}
.carousel-indicators .active {
  margin: 0;
  background-color: #28b16d;
  width: 10px;
  height: 12px;
}
/*banner css end*/

.blog_sec {
  padding: 5% 0;
}
/*slick slider in tabs css start*/


/* Style the tab */




.tab_sec .tab {
  overflow: hidden;
  border: 0;
  background-color: #ffffff;
}
/* Style the buttons that are used to open the tab content */
.tab_sec .tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}
/* Change background color of buttons on hover */
.tab_sec .tab button:hover {
  background-color: #ddd;
}
/* Create an active/current tablink class */
.tab_sec .tab button.active {
  background-color: #ccc;
}
/* Style the tab content */

.tab_sec .tabcontent {
  display: none;
  padding: 6px 12px;
  border: 0;
}
.tabcontent.active {
  display: block;
}
/*slick slider in tabs css start*/

.nav-item {padding: 10px;}

/*Header Start*/

.header-cont-info {
    /* background: #2F3CA6; */
}

.topSec .container-fluid {
    padding: unset;
}

.header-cont-info ul li a {
    color: #fff;
    font-family: 'Poppins';
    font-size: 16px;
}

.header-cont-info ul {
    display: flex;
    gap: 25px;
    margin-bottom: unset;
}

.header-cont-info ul li i {
    color: #fff;
}

ul.header-social-icons li a {
    color: #000;
    font-size: 15px;
}

ul.header-social-icons {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 12px;
    /* background: #263297; */
    margin-bottom: unset;
    position: relative;
}

.header-cont-info {
}


.container {
    max-width: 1230px;
}
.topSec {
    background: #000;
    padding: 14px 0px;
}

.header-cont-info ul li {
    display: flex;
    align-items: center;
    gap: 8px;
}

ul.header-social-icons li {
    border: 1px solid #fff;
    background: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    align-items: center;
}

.topSec .row {
    align-items: center;
}
.right-head-btn {
    text-align: end;
}

.right-head-btn a.theme-btn {
    margin: unset !important;
}

.menuSec .row {
    align-items: center;
}

/*header End*/


/*banner Start*/
.hero-slider{
  position:relative;
  width:100%;
  height:100vh;
  overflow:hidden;
}

.slide{
  position:absolute;
  width:100%;
  height:100%;
  opacity:0;
  transition:1s;
  background-size:cover;
  background-position:center;
}
.slide.active{ opacity:1; }

.overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
}

.banner-text{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  color:#fff;
  max-width: 72%;
  margin: 0 auto;
  right: 0;
  left: 0;
}

.banner-text h4{
  font-size: 50px;
  letter-spacing:2px;
  margin-bottom:10px;
  color: #fff;
  font-weight: 700;
  line-height: 42px;
}

.banner-text h1{
  font-size: 120px;
  margin-bottom:20px;
  font-weight:800;
  line-height: 130px;
  margin-bottom: 10px;
}

.banner-text p{
  margin-bottom: 38px;
  font-size: 18px;
  font-family: 'Poppins';
  font-weight: 400;
}

.btn{
  padding:12px 30px;
  border:2px solid #2a3f90;
  color:#fff;
  text-decoration:none;
}

.progress{
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:5px;
  background:rgba(255,255,255,0.2);
}

.progress-bar{
  width:0%;
  height:100%;
  background:#fff;
}

.arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:70px;
  height:70px;
  border-radius:50%;
  border:none;
  cursor:pointer;
  z-index:10;
  background:#000;
  overflow:hidden;
}

.arrow::before{
  content:"";
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:0.3s;
}

.arrow::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.6);
  transition:0.3s;
}

.arrow span{
  position:relative;
  z-index:2;
  color:#fff;
  font-size:28px;
  display:block;
  text-align:center;
  line-height:70px;
}

.arrow:hover::before{ opacity:1; }
.arrow:hover::after{ background:rgba(0,0,0,0.4); }

.prev{ left:20px; }
.next{ right:20px; }

img.banner-shape {
    position: absolute;
    right: 20px;
    bottom: -230px;
    opacity: 0.27;
    width: 12%;
    animation: tm-animation-floating 3s ease-in-out infinite;
}

/*banner End*/


/*Section About Us Start*/

.about-main-sec {
    padding: 100px 0px;
    position: relative;
}

.about-img img {
    width: 80%;
}

.about-img-text h3 {
    font-size: 25px;
    color: #fff;
    margin-bottom: 0px;
}

.about-img-text {
    padding: 38px 50px 35px 50px;
    position: absolute;
    width: 45%;
    background: #293f90;
    bottom: 0;
    right: 30px;
}

.about-img {
    position: relative;
}

.about-text h3 {
    color: #293f90;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 50px;
    font-family: 'Jost';
    font-weight: 700;
    margin-bottom: 30px;
    color: #323e37;
}

.about-text p {
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: 400;
    line-height: 30px;
    color: #5A6059;
}

.about-check-list ul li i {
    border: 1px solid #2d408e;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #2d408e;
    color: #fff;
    font-size: 18px;
}

.about-check-list ul li {
    font-family: 'Jost';
    font-size: 25px;
    font-weight: 600;
    color: #323e37;
}

.about-check-list ul {
    display: flex;
    gap: 20px;
    margin-bottom: 34px;
}

.about-check-list ul li span p {
    margin-top: 17px;
}

.about-check-list {
    margin-top: 53px;
}

.about-text {
    margin-left: 34px;
}
.about-check-list ul:hover li i {
    transform: rotateY(180deg);
    transition: 0.9s;
}
img.about-shape-img {
    position: absolute;
    bottom: 60px;
    opacity: 0.27;
    right: -130px;
    width: 21%;
    animation: tm-animation-floating 3s ease-in-out infinite;
}
@keyframes tm-animation-floating {
  0% {
    transform: translateY(0px);
  }
  65% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(0px);
  }
}
/*Section About Us End*/


/*Section Services Start*/

.heading-text h2 {
    font-size: 50px;
    font-family: 'Jost';
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}


.heading-text h3 {
    color: #293f90;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.heading-text p {
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: 400;
    line-height: 30px;
    color: #5A6059;
}

.heading-text {
    text-align: center;
    margin-bottom: 30px;
}

.services-text h2 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 5px;
}

.services-text p {
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: 400;
    line-height: 30px;
    color: #5A6059;
}

.services-main-box {
    background: #fff;
    text-align: center;
    padding: 50px 60px 47px 60px;
    position: relative;
    z-index: 0;
    border: 1px solid #f5f5f5;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease 0s;
}

.services-main-box:hover:after {
    opacity: 0.97;
}
.services-main-box:after {
    content: "";
    background-color: #000;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease 0s;
}
.services-main-box:hover:before {
    opacity: 1;
}
.services-main-box:before {
    content: "";
    background-image: url(../images/services1.jpg);
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease 0s;
}
.service-box-img img {
    width: 100%;
    height: 314px;
    object-fit: cover;
}
.services-main-box:hover .services-text h2 {
    color: #fff;
}

.services-main-box:hover .services-text p {
    color: #fff;
}
.services-main-box.serv-box-2:before{
  background-image: url(../images/services2.jpg);
}
.services-main-box.serv-box-3:before{
  background-image: url(../images/services2.jpg);
}
.service-box-img {
    margin-bottom: 30px;
}

.services-main-box {
    margin-bottom: 30px;
}
.services-main-box:hover .services-icon img {
 filter: brightness(0) saturate(100%) invert(100%) sepia(3%) saturate(7488%) hue-rotate(99deg) brightness(105%) contrast(105%);
}
.services-main-sec {
    padding-bottom: 90px;
}
.services-text h2 a {
    color: #393939;
}
.services-main-box:hover .services-text h2 a {
    color: #fff;
}
/*Section Services End*/


/*Section Choose Start*/

.chooseus-sec {
    background-image: url(../images/choose-back.jpg);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 100px 0px;
    z-index: 1;
}

.chooseus-sec:before {
    position: absolute;
    content: '';
    background: #000;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    opacity: 0.7;
}

.chooseus-sec .heading-text h3 {
    color: #fff;
}

.chooseus-sec .heading-text h2 {
    color: #fff;
}

.text-chooseus h2 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 5px;
}

.text-chooseus p {
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: 400;
    line-height: 30px;
    color: #5A6059;
}

.choose-us-box {
    padding: 45px 38px 38px 38px;
    background: #fff;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.text-chooseus a {
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: 600;
    line-height: 30px;
    color: #31333e;
}

.text-chooseus a i {
    padding-left: 13px;
    color: #31418c;
}

.choose-icon img {
    width: 71px;
    height: 71px;
    object-fit: contain;
}

.choose-icon {
    background: #faf4f2;
    width: fit-content;
    border-radius: 50%;
    padding: 10px;
    margin-bottom: 13px;
}

.choose-us-box .bottom-circle {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 170px;
    height: 170px;
    background: rgba(240, 240, 240, 0.45);
    opacity: 0.9;
    transform: translate(70%, 70%);
    z-index: 0;
    border-radius: 50%;
    transition: all 0.9s ease 0.2s;
}
.choose-us-box:hover .bottom-circle {
    transform: translate(60%, 60%);
    background: rgba(250, 250, 250, 0.1);
}
.choose-us-box:hover  {
    background: #000;
    transition: 0.9s;
}
.choose-us-box .top-circle {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 170px;
    height: 170px;
    background: rgba(240, 240, 240, 0.45);
    opacity: 0.9;
    transform: translate(60%, 60%);
    z-index: 0;
    border-radius: 50%;
    transition: all 0.8s ease 0.3s;
}
.choose-us-box:hover .top-circle {
    transform: translate(45%, 45%);
    background: rgba(250, 250, 250, 0.1);
}
.choose-us-box:hover .text-chooseus h2 {
    color: #fff;
}
.choose-us-box:hover .text-chooseus p {
    color: #fff;
}
.choose-us-box:hover .text-chooseus a {
    color: #fff;
}
.choose-us-box:hover .text-chooseus a i {
    color: #fff;
}
/*Section Choose End*/


/*Section Vision Start*/

.vision-text h3 {
    color: #293f90;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.vision-text h2 {
    font-size: 50px;
    font-family: 'Jost';
    font-weight: 700;
    margin-bottom: 20px;
    color: #323e37;
}

.vision-text p {
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: 400;
    line-height: 30px;
    color: #5A6059;
    margin-bottom: 36px;
    width: 90%;
}

.vision-img img {
    border: 10px solid #EEEEEE;
}

.vision-main-sec {
    padding: 100px 0px;
}

/*Section Vision End*/


/*Section Team Start*/

.teams-main-sec {
    background-image: url(../images/team-back.jpg);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0px;
    position: relative;
    z-index: 1;
    background-attachment: fixed;
}

.teams-main-sec:before {
    position: absolute;
    content: '';
    background: #000;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
    opacity: 0.7;
}

.teams-main-sec .row {
    justify-content: end;
}

.text-team h2 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #fff;
    line-height: 44px;
}

.text-team p {
    color: #fff;
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 400;
}

.team-img ul {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    background: #293f90cc;
    width: 67%;
    gap: 18px;
    padding: 11px 21px;
    position: absolute;
    bottom: 0;
    left: -122px;
    opacity: 0;
    justify-content: space-between;
}

.team-img ul li a {
    color: #fff;
}

.team-img {
    position: relative;
}

.team-main-box {
    overflow: hidden;
}

.team-main-box:hover .team-img ul {
    left: 0;
    opacity: 1;
    transition: 0.9s;
}

.text-team {
    margin-top: 10px;
}

.teamslid .slick-active {
    opacity: 1;
}
.teams-main-sec .container-fluid.p-0 {
    margin-left: 64px;
}
.teamslid  .slick-slide {
    opacity: 1;
}
.teams-main-sec .heading-text h2 {
    color: #fff;
}

.teams-main-sec .heading-text h3 {
    color: #fff;
}
.teams-main-sec .heading-text {
    text-align: left;
    margin-left: 20px;
}
/*Section team End*/


/*Section Faqs Start*/

.accordion-button {
    background-color: #fff;
    color: #323e37;
    box-shadow: none;
    padding: 0px 20px;
    font-family: 'Jost';
    font-size: 20px;
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa !important;
    color: #323e37;
    box-shadow: unset;
}

.accordion-item {
    border: unset;
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 0 70px 0 rgba(0, 0, 0, 0.1);
}

.accordion-body {
    padding: 0px 20px 10px;
    line-height: 31px;
}

.accordion-button::after {
    filter: none;
    display: none;
}



.faqs-text h2 {
    font-size: 50px;
    font-family: 'Jost';
    font-weight: 700;
    margin-bottom: 10px;
    color: #323e37;
    line-height: 55px;
}


.heading-text h3 {
    color: #293f90;
}

.faqs-text h3 {
    color: #293f90;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.faqs-accor {
    margin-top: 35px;
}

.faqs-main-sec {
    background-image: url(../images/faqs-back.jpg);
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    padding: 100px 0px;
}

.faqs-main-sec:before {
    position: absolute;
    content: '';
    background-color: #FFFFFF;
    opacity: 0.95;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
}

.faqs-text {
    margin-right: 60px;
}



/*Section Faqs End*/


/*Section Blogs Start*/


.blog-text h2 {
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 40px;
    margin-bottom: 21px;
}

.blog-text ul li i {
    color: #293f90;
}

.blog-text ul li {
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 400;
    color: #9a9a9a;
    display: flex;
    align-items: center;
    gap: 9px;
    text-transform: uppercase;
}

.blog-text ul {
    display: flex;
    align-items: center;
    gap: 16px;
}

.blog-text span {
    color: #293f90;
    padding: 10px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 15px 0px rgba(51, 51, 51, 0.2);
    width: fit-content;
    border-radius: 6px;
    position: absolute;
    right: 30px;
    top: -29px;
    background: #fff;
    z-index: 2;
}

.blog-text {
    position: relative;
    padding: 23px 0px;
}


.blog-main-sec .heading-text {
    text-align: left;
}

.blog-main-sec .heading-text h2 {
    color: #323e37;
}


.blog-btn a.theme-btn {
    border-radius: 40px;
    padding: 18px 30px;
    text-transform: uppercase;
}

.blog-btn {
    text-align: end;
}

.blog-main-sec .row {
    align-items: center;
}

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img:before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    content: "";
    width: 0;
    height: 0;
    background: rgba(0, 0, 0, 0.2);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
}

.blog-main-box:hover .blog-img:before {
-webkit-animation: circle 0.75s;
    animation: circle 0.75s;
}
@-webkit-keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
.blog-main-sec {
    padding: 100px 0px;
}
/*Section Blogs End*/


/*Section Contact Start*/
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 50px 50px 50px 50px;
  background-color: #FFFFFF;
  margin-left: 40px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 18px 15px;
  border: none;
  background: #f1eef680;
  border-radius: 5px;
  font-size: 14px;
  font-family: 'Poppins';
  font-size: 16px;
  font-weight: 400;
}

.form-textarea {
  height: 190px;
  resize: none;
}

.submit-btn {
  width: 180px;
  padding: 16px;
  background: #293f90;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Poppins';
}

.submit-btn:hover {
  background: #2f3c75;
}

.contact-main-sec .row {
    justify-content: space-between;
}

.contact-text h2 {
    font-size: 50px;
    font-family: 'Jost';
    font-weight: 700;
    margin-bottom: 30px;
    color: #323e37;
}

.contact-text p {
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: 500;
    line-height: 30px;
    color: #5A6059;
    margin-bottom: 40px;
}

.contact-text ul li i {
    border: 1px solid #2d408e;
    width: 51px;
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #2d408e;
    color: #fff;
    font-size: 21px;
}

.contact-text ul li {
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: 400;
    line-height: 30px;
    color: #5A6059;
    line-height: 28px;
}

.contact-text ul li span {
    display: block;
}

.contact-text ul li span a {
    font-size: 20px;
    font-family: 'Jost';
    color: #323e37;
    font-weight: 600;
}

.contact-text ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 38px;
}

.contact-main-sec {
    background: #f5f5f5;
    padding: 90px 0px;
    position: relative;
}
img.contact-shape {
    position: absolute;
    bottom: 40px;
    left: -50px;
    width: 12%;
    opacity: 0.24;
    animation: tm-animation-floating 3s ease-in-out infinite;
}

.contact-text ul:hover li i {
    transform: rotateY(180deg);
    transition: 0.9s;
}
/*Section Contact End*/


/*Footer Start*/

.footer-head h3 {
    font-size: 25px;
    font-weight: 700;
    color: #fff;
}

footer {
    background: #000;
    padding: 90px 0px;
}

.footer-abt-text p {
    font-size: 15px;
    color: #DEE5F5;
    font-weight: 400;
    font-family: 'Poppins';
    padding-bottom: 27px;
    border-bottom: 1px solid #DEE5F5;
}

.footer-abt-text ul li {
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 19px;
}

.footer-abt-text ul li a {
    color: #DEE5F5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-abt-text ul li a i {
    color: #293f90;
    font-size: 22px;
}

.footer-abt-text ul {
    margin-top: 40px;
}
.latest-news-ft ul li img {
    border-radius: 50%;
}

.latest-news-ft ul li span {
    color: #939FBA;
    display: block;
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: 400;
}

.latest-news-ft ul li {
    font-size: 16px;
    font-family: 'Jost';
    font-weight: 600;
    color: #DEE5F5;
}

.latest-news-ft ul {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 39px;
}
.ft-links ul li a {
    font-size: 16px;
    font-family: 'Poppins';
    color: #DEE5F5;
    display: flex;
    align-items: center;
    gap: 26px;
}

.ft-links ul li a i {
    transform: rotate(-90deg);
    font-size: 10px;
    color: #2d408e;
}

.ft-links ul li {
    margin-bottom: 10px;
}

.ft-links ul li:hover a i {
  color:#fff;
}
.footer-head.ft-links-main {
    margin-left: 20px;
}
.footer-newsletter input {
    width: 100%;
    padding: 17px 10px;
    background: #fff;
    font-family: 'Poppins';
    font-size: 16px;
    border: unset;
    margin-bottom: 0px;
}

.footer-newsletter .theme-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    font-weight: 500;
    border: unset;
}

.footer-newsletter p {
    font-family: 'Poppins';
    font-size: 16px;
    color: #DEE5F5;
    width: 90%;
}
.footer-head.ft-news-main {
    margin-left: 50px;
}

.footer-newsletter .theme-btn:hover {
    background: #000;
    border: 1px solid #fff;
}
.ft-social ul li {
    border: 1px solid #fff;
    background: #2d408e;
    width: 44px;
    height: 45px;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    align-items: center;
}

.ft-social ul li a {
    color: #fff;
    font-size: 16px;
}

.ft-social ul {
    display: flex;
    margin-bottom: 0px;
    justify-content: end;
    gap: 12px;
}

.ft-copyrighht-main .row {
    align-items: center;
}

.ft-copyrighht-main p {
    font-family: 'Poppins';
    font-size: 17px;
    font-weight: 400;
    color: #000000;
    margin-bottom: unset;
}

.ft-copyrighht-main {
    padding: 20px 0px;
}
/*footer End*/


/*inner Banner Start*/

.innerbanner-sec {
    background-image: url(../images/banner.jpg);
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 580px;
    background-position: 100% 30%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.inner-banner-text h2 {
    font-size: 60px;
    font-weight: 600;
    color: #fff;
}

.innerbanner-sec::before {
    position: absolute;
    content: '';
    background: #0000006e;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
}
.about-main-sec.inner-about-sec {
    padding: 100px 0px 20px;
}
.services-main-sec.services-pg-sec {padding-top: 100px;}
.blog-text h2 a {
    color: #393939;
}
/*inner Banner End*/

/*Blog Detail Page Start*/

.blog-detail-box ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.blog-detail-box ul li {
    color: #000000c2;
    font-size: 16px;
    font-family: 'Poppins';
    font-size: 15px;
    font-weight: 500;
}
.blog-detail-box h2 {
    color: #393939;
    font-family: 'Jost';
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 10px;
}
.blog-detail-box img {
    width: 100%;
    margin-bottom: 20px;
    height: 600px;
    object-fit: cover;
    object-position: 100% 10%;
    border-radius: 10px;
}
.blog-detail-box p {
    font-size: 14px;
    font-family: 'Poppins';
    font-weight: 400;
    line-height: 29px;
}

.blog-detail-box ul li i {
    color: #2d408e;
}

section.blog-sec.inner-blog-page {
    padding: 100px 0px;
}

/*Blog Detail Page End*/


/*Service Detail Page Start*/

.service-detail-main img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 30px;
    object-position: top;
    margin-bottom: 30px;
}

.service-detail-main h2 {
    margin-bottom: 15px;
}

.service-detail-main p {
    margin-bottom: 22px;
    opacity: 70%;
}

section.service-detail-sec {
    padding: 100px 0px;
}

.serv-head-iner {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
    margin-top: 20px;
}

.icon-serv-dtl img {
    height: 40px !important;
    width: 40px !important;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(190deg) brightness(108%) contrast(107%);
    margin: unset;
}

.icon-serv-dtl {
    display: flex;
    align-items: center;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    justify-content: center;
    background-color: #2d408e;
}

.serv-head-iner h2 {
    margin: unset;
    font-size: 40px;
    font-weight: 600;
    color: #212529;
}

ul.aboutiner {
    column-count: unset;
    margin: unset;
    margin-top: 50px;
}

.service-detail-text img {
    width: 100%;
    height: 580px;
    object-position: bottom;
    object-fit: cover;
    border-radius: 0px;
}

.icon-serv-dtl svg {
    fill: #28b79a;
    width: 40px;
}

.service-detail-text p {
    font-size: 14px;
    font-family: 'Poppins';
    font-weight: 400;
}
/*Service Detail Page End*/ 


/*get A Quote page Start*/
.form-control:disabled, .form-control:read-only {
    background-color: #ffffff;
}

.input-group-text {
    background-color: #ffffff;
    border-left: 0;
}

.order-form .input-group {
    position: relative;
}

.order-form .input-group>.form-control, .order-form .input-group>.form-select {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    border-color: #bdbdbd;
    color: #909091;
    border-radius: 0px;
    padding: 17px;
    margin-bottom: 0;
    font-family: 'Poppins';
    font-weight: 400;
}

.order-form .form-select {
    background-image: url(../images/arrow-icon.png);
    background-size: unset;
}

.input-group-text.plane {
    align-items: start;
}

.order-form textarea.form-control {
    resize: none;
}

.submit-btn {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

form.order-form {
    /* margin-top: 7%; */
}

form.order-form :is(input, select, textarea) {
    border: 1px solid #0000001f;
    border-radius: 5px;
    font-family: 'Poppins';
    border-radius: 0px;
    padding: 100px 20px 0px;
}

form.order-form ::placeholder {
    color: #909091;
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 400;
}

.input-group> :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    border: 1px solid #b3b3b3;
    border-radius: 0px 10px 10px 0px;
    padding: 14px;
}

.contact1 input::placeholder {
    color: #909091;
}

section.work-together.bg-effect:before {
    background-position: bottom;
}

.work-together {
    margin-bottom: 83px;
    margin-top: 100px;
}

.order-form .input-group i {
    position: absolute;
    right: 0;
    height: 100%;
    width: 50px;
    display: flex;
    border: none !important;
    align-items: center;
    justify-content: center;
    color: #00000082;
}

.order-form .input-group i::after {
    width: 10px;
    background-size: 10px 50px;
    background-image: url(../images/right-arrow.png);
    background-repeat: no-repeat;
    content: '';
    height: 58px;
    width: 26px;
    position: absolute;
    right: 50px;
    rotate: 180deg;
    top: -2px !important;
    background-size: 10px 54px;
}

.appointment-submit-btn span:nth-child(1) {
    font-family: 'MontBlanc', sans-serif;
    font-size: 11px;
    color: var(--white-color);
    text-transform: uppercase;
    background-color: var(--red-color);
    border-radius: 3px;
    height: 50px;
    display: inline-flex;
    margin: 0;
    justify-content: center;
    align-items: center;
    padding: 0 22px;
    border: 1px solid transparent;
    transition: background-color 0.9s ease, color 0.9s ease, border-color 0.3s ease;
}

.appointment-submit-btn span:nth-child(1):hover {
    background-color: transparent;
    color: var(--red-color);
    border: 1px solid var(--red-color);
}

.appointment-submit-btn span:nth-child(2) {
    font-size: 11px;
    font-weight: bold;
    color: var(--red-color);
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid var(--light-black);
    border-radius: 3px;
    transition: background-color 0.9s ease, color 0.9s ease, border-color 0.3s ease;
}

.appointment-submit-btn span:nth-child(2):hover {
    background-color: transparent;
    color: var(--red-color);
    border: 1px solid var(--red-color);
}

.section-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.section-heading h2 {
    padding: 0 0 15px 0;
}

.section-heading p {
    width: 60%;
    padding: 0 0 16px 0;
}

.text-area {
    width: 100%;
    height: 200px;
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    border-color: #bdbdbd;
    color: #909091;
    font-family: 'Montserrat';
    border-radius: 5px;
    font-weight: 500;
    padding: 17px;
    margin-bottom: 0;
    height: 150px;
}

.appointment-submit-btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.work-together .heading-text {
    margin-bottom: 30px;
}

.quick-links ul li a:hover {
    color: #f7c566;
}

ul.ftr-list li a:hover {
    color: #f7c566;
}

/*get A Quote Page End*/

