@font-face {
	  font-family: 'Raleway';
	  src: url('../font/Raleway-Regular.ttf');
	}
@font-face {
	  font-family: 'Raleway-bold';
	  src: url('../font/Raleway-Bold.ttf');
}
@font-face {
	  font-family: 'Raleway-semi-bold';
	  src: url('../font/Raleway-SemiBold.ttf');
}
@font-face {
	  font-family: 'Raleway-Medium';
	  src: url('../font/Raleway-Medium.ttf');
}
@font-face {
	  font-family: 'Exo2-Medium';
	  src: url('../font/Exo2-Medium.ttf');
}
@font-face {
	  font-family: 'TitilliumWeb';
	  src: url('../font/TitilliumWeb-Regular.ttf');
	}
body{
	 margin:0px;
	 padding:0px;
	 font-family: 'TitilliumWeb', sans-serif;
}

.row{
	margin:0px;
	padding:0px;
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

 ul {
  list-style: none;
}

 a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}
/*=============== HEADER & NAV ===============*/
.header-area.sticky {
    -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    background: rgba(255, 255, 255, 0.95) none repeat scroll 0 0;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.05);
    left: 0;
    padding: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.header-a {
	padding: 20px 0px;
    position: fixed;
    width: 90%;
    left: 0px;
    margin: auto;
}
.header-a img {
	width:100px;
}
/*.header-a {
position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000000;
}
*/

.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  color: var(--white-color);
  font-weight: var(--font-medium);
}

.nav__close, 
.nav__toggle {
  display: flex;
  color: var(--white-color);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1150px) {
  .nav__menu {
    position: fixed;
    left: -100%;
    top: 0;
    background-color: #ddd;
    width: 100%;
    height: 100%;
    padding: 6rem 3.5rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: left .4s;
  }

  .nav__item {
    transform: translateX(-150px);
    visibility: hidden;
    transition: transform .4s ease-out, visibility .4s;
  }

  .nav__item:nth-child(1) {
    transition-delay: .1s;
  }
  .nav__item:nth-child(2) {
    transition-delay: .2s;
  }
  .nav__item:nth-child(3) {
    transition-delay: .3s;
  }
  .nav__item:nth-child(4) {
    transition-delay: .4s;
  }
  .nav__item:nth-child(5) {
    transition-delay: .5s;
  }
}

.nav__list, 
.nav__social {
  display: flex;
}

.nav__list {
  flex-direction: column;
  row-gap: 3rem;
}

.nav__link {
  position: relative;
  color: var(--white-color);
  font-size: var(--h1-font-size);
  font-weight: var(--font-medium);
  display: inline-flex;
  align-items: center;
  transition: opacity .4s;
}

.nav__link i {
  font-size: 2rem;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s, visibility .4s;
}

.nav__link span {
  position: relative;
  transition: margin .4s;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  color:#292929;
}

.nav__link span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color:#292929;
  transition: width .4s ease-out;
}

/* Animation link on hover */
.nav__link:hover span {
  margin-left: 2.5rem;
}

.nav__link:hover i {
  opacity: 1;
  visibility: visible;
  color:#292929;
}

.nav__link:hover span::after {
  width: 100%;
}

/* Sibling fade animation */
.nav__list:has(.nav__link:hover) .nav__link:not(:hover) {
  opacity: .4;
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.nav__social {
  column-gap: 1rem;
}

.nav__social-link {
  color: var(--white-color);
  font-size: 1.5rem;
  transition: transform .4s;
}

.nav__social-link:hover {
  transform: translateY(-.25rem);
}

/* Show menu */
.show-menu {
  left: 0;
}

/* Animation link when displaying menu */
.show-menu .nav__item {
  visibility: visible;
  transform: translateX(0);
}

/*=============== BREAKPOINTS ===============*/
/* For large devices */
@media screen and (min-width: 1024px) {
    .nav__toggle {
        display: none;
      }
}
@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
  }

  .nav__close {
    display: none;
  }

  .nav__link {
    font-size: var(--normal-font-size);
  }

  .nav__link i {
    font-size: 1.5rem;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 3.5rem;
  }

  .nav__menu {
    display: flex;
    align-items: center;
    column-gap: 3.5rem;
  }
}		
/*header-end*/
  /*body-start*/
  /*banner-section-start*/
  .banner{
	background-image:url(../img/bg/17.jpg);
    height: 100vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .banner .row{
	align-items:center;
	height:100vh;
	  }
  .banner-content h4{
	 color: #292929;
    font-size: 300%;
    margin: 0;
    text-transform: capitalize;
    font-weight: 600;
  }
  .banner-content p, .about-us p, .faq-text{
	color: #292929;
    font-size: 14px;
    letter-spacing: 0.025em;
    line-height: 24px;
    margin: 0;
    padding: 20px 0px;
    font-family: Raleway;
  }
  .banner-content a{
	    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
		border: 2px solid #292929;
		border-radius: 0;
		color: #292929;
		display: inline-block !important;
		font-size: 12px;
		font-weight: 600;
		margin-top: 20px;
		padding: 15px 55px;
		text-transform: uppercase;
		transition: .3s;
  }
  .banner-content a:hover {
    border: 2px solid #292929;
    background: #292929 none repeat scroll 0 0;
    color: #fff !important;
}
@media only screen and (max-width: 1024px) {
	.banner-content h4{
		font-size: 270%;
		line-height: 66px;
	}
}
@media only screen and (max-width: 768px) {
	.banner-content h4{
		        font-size: 200%;
        line-height: 45px;
	}
}
@media only screen and (max-width: 425px) {
	 .banner{
		background-image:none;
		background-color:#F6F6F6;
		
	 }
}
  /*banner-section-end*/
  /*about-us-section-start*/
  .about-us h2, .faq-title > h2, .faq-a, .portfolio-h2 h2, .why-choose h2, .heading {
    font-size: 30px !important;
    font-weight: 600 !important;
    margin: 0 0 13px;
    text-transform: capitalize !Important;
}
.about-us{
	text-align:center;
	padding:100px 0px;
}
.about-us p{
	padding:20px 0px;
}
  /*about-us-section-end*/
  /*FAQ-area-section-start*/
.faq-area{
    margin:100px 0;
}
.faq-text{
    margin-top:25px;
}
.faq-area .accordion {
    margin: 0;
    padding-right: 22px;
}
.card {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 0 none;
    box-shadow: none;
}
.card > .card-header {
    background: #fafafa none repeat scroll 0 0;
    border-left: 10px solid #eeeeee;
    border-radius: 0;
    margin: 0;
    padding: 0;
    border-bottom: none;
}
.card-header:first-child {
    border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
}
.faq-area .card h4 {
    font-size: 16px;
    font-weight: 400;
}

.faq-area .card-title {
    margin-bottom: 0;
}
.faq-area .card-title > a {
    background: inherit;
    border-bottom: 0 none;
    color: #121212;
    display: block;
    padding: 17px 0 10px 31px;
    position: relative;
    text-decoration: none;
    -webkit-transition: all 0.3s 
ease 0s;
    transition: all 0.3s 
ease 0s;
    width: 100%;
}
.card-title a span:before, .card-body span.arrow:before {
    bottom: 17px;
    color: #666666;
    content: "";
    font-family: "FontAwesome";
    font-size: 13px;
    height: 10px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    text-align: center;
    -webkit-transition: all 0.7s 
ease 0s;
    transition: all 0.7s 
ease 0s;
    width: 23px;
    z-index: 99;
}
.card > .card-header + .collapse > .card-body {
    background: #fafafa none repeat scroll 0 0;
    border-color: -moz-use-text-color -moz-use-text-color -moz-use-text-color #eeeeee;
    border-color: #eeeeee;
    border-style: none none none solid;
    border-width: 0 0 0 10px;
}
.card-body {
    padding: 5px 13px 28px 32px;
    position: relative;
    -webkit-transition: all 0.3s 
ease 0s;
    transition: all 0.3s 
ease 0s;
}
.card-body > p {
    color: #666666;
    line-height: 23px;
	font-size:14px;
}
.card-body span.arrow:before {
    bottom: 20px;
    content: "";
    left: 0;
    right: 0;
    top: auto;
    -webkit-transition: all 0.3s 
linear 0s;
    transition: all 0.3s 
linear 0s;
}
.faq-area .card-title > a.collapsed {
    padding: 17px 0 42px 31px;
}

.collapse:not(.show) {
    display: none;
}
.accordion .card + .card {
    margin-top: 30px;
}
.faq-left-sec {
    background: #fafafa none repeat scroll 0 0;
    padding-left: 40px;
    padding-bottom:50px;
}
.faq-title-image {
    padding-top: 40px;
}
.faq-title {
    padding-top: 66px;
}
.faq-title {
    display: inline-block;
    float: left;
}
.faq-title > h3 {
    color: #444444;
    font-size: 20px;
    line-height: 18px;
    text-transform: uppercase;
	font-family: 'Raleway-Medium';
}
.faq-image {
    display: inline-block;
    float: right;
}
.faq-left-sec .fix {
    overflow: hidden;
}

.pt-90{
	padding-top:90px;
}
.pb-60{
	padding-bottom:60px;
}

.card-title ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
.feature-icon {
    background: rgba(7, 10, 38, 0.3) none repeat scroll 0 0;
    border-radius: 100%;
    color: #ffffff;
    display: inline-table;
    float: left;
    height: 40px;
    text-align: center;
    -webkit-transition: all 0.2s 
linear 0s;
    transition: all 0.2s 
linear 0s;
    width: 40px;
}
.feature-icon i {
    display: table-cell;
    font-size: 13px;
    vertical-align: middle;
}
.feature-text {
    overflow: hidden;
    padding-left: 25px;
    padding-right: 22px;
}
.single-feature:hover .feature-icon {
    background: #000 none repeat scroll 0 0;
}
.feature-text h3{
	    font-size: 17px;
    font-family: 'Raleway-medium';
}
.single-feature{
	border-bottom: 1px solid #dddddd;
    padding: 14px 0px;
}
.global-text h3{
	    font-family: 'TitilliumWeb';
    font-size: 17px;
    margin-top: 23px;
}
@media only screen and (max-width: 525px) {
	.single-testimonial{
		margin-top: 70px;
	}
}

/*FAQ-area-section-end*/
/*porfolio-area-section-start*/
.portfolio-h2 h2{
	padding:60px 0px;
}
 .swiper-pagination-bullet, .testimonial-area .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    border-radius: 10px !important;
    margin-bottom: 14px !important;
    background: #999; 
    transition: all 0.3s ease-in-out;
}

 .swiper-pagination-bullet-active, .testimonial-area .swiper-pagination-bullet-active {
    width: 20px !important;
    background: #000 !important; 
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal{
	bottom:-12px !important;
}
.single-table{
	height:450px;
	background: #f4f4f4 none repeat scroll 0 0;
}
.table-title {
    background: #000 url(../img/bg/table.png) no-repeat scroll center bottom / 100% auto;
    padding: 23px 19px 56px;
    padding-bottom: 25px;
}
.table-title > h4 {
    font-family: 'Raleway-Medium';
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 18px;
}
.table-title > h1 {
    color: #ffffff;
    font-size: 48px;
    margin-bottom: 8px;
    font-family: 'TitilliumWeb';
}
.table-title > h5 {
    color: #cccccc;
    font-weight: 400;
    font-size: 14px;
}
.table-content {
    
    padding: 2px 0 24px;
    text-align: center;
    position: relative;
}
.table-content > span {
    border-bottom: 1px solid #eeeeee;
    display: block;
    font-size: 16px;
    padding: 11px 6px 15px;
}
.default-btn {
    border: 1px solid #263238;
    border-radius: 30px !important;
    color: #263238;
    font-size: 16px;
    padding: 12px 40px;
    text-transform: uppercase;
    -webkit-transition: all 0.2s 
linear 0s;
    transition: all 0.2s 
linear 0s;
}

.table-btn {
    border: 1px solid #263238;
    color: #263238 !important;
    margin-top: 23px;
    padding: 12px 40px;
    background: #f5f5f5 !important;
}
.default-btn {
    border-radius: 30px;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
}
.swiper {
      width: 100%;
      height: 100%;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
		
/*porfolio-area-section-end*/
/*  why-choose-us-sec-start*/
.sec-e-1st-p-txt{
  cursor: pointer;
  position: relative;
      font-size: 18px;
    font-weight: 500;
    font-family: 'Raleway-bold';
}
.sec-e-slide {
	    margin-bottom: 30px ;
}
.why-choose-banner{
	background: #263238 url(../img/banner/7.jpg) no-repeat scroll center bottom / 100% auto;
    background-size: cover;
    background-position: center;
    padding: 70px 0px;
}
.sec-e-1st-p-txt i{
position: absolute;
    right: 0px;
    font-size: 30px;
    top: -3px;
}
.sec-e-1st-p-txt .ri-subtract-fill{
  display: none;
}
.sec-e-1st-p-txt:after{
  content: '';
  border-bottom: 1px solid;
  border-color: rgba(99, 99, 99, 0.2);
  width: 100%;
    height: 2px;
    display: block;
    padding-top: 4px;
}
.sec-e-2nd-p-txt{
  display: none;
  color: #767676;
  margin-top: 12px;
}
.add{
  color: #FF7C43;
}
/*  why-choose-us-sec-end*/
/*  body-7th-sec-start*/
.sec-g-headder{
 width:100%;
 height: 250px;
 overflow: hidden;
 position: relative;
}
.sec-g-headder div:nth-child(1){
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  object-fit: cover;
  box-shadow: 0px -1px 5px -3px;
   transition: .5s;
}

.body-sec-g .col-3:hover .sec-g-headder div:nth-child(1){
  transform: scale(1.1);
}
.sec-g-headder div:nth-child(2){
  width: 350px;
  height: 11px;
  background: #000;
  position: absolute;
  bottom: 30px;
  rotate: -10deg;
  left: -4px;
}
.d-color, .d-color-2{
	background-color: #000 !important;
}
.d-color-2 ul li a{
	color:#fff !important;
}
.sec-g-headder div:nth-child(3){
 width: 355px;
 height: 76px;
 background: #fff;
 position: absolute;
 bottom: -45px;
 rotate: -10deg;
 left: -7px;
 transition: .2s;
}
.sec-g-headder a{
     text-decoration: none;
    position: absolute;
    bottom: 19px;
    background-color: #F6F6F6;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 22px 8px 19px;
    right: -8px;
    rotate: -10deg;
}
.sec-g-body{
 box-shadow: 0px 1px 5px -3px;
 padding: 7px 15px;
 transition: .2s;
}
.sec-g-body h2{
 text-align: center;
 color: #000;
 font-size: 18px;
 font-weight: 700;
 margin-bottom: 16px;
}
.sec-g-body ul{
 padding-left: 18px;
}
.sec-g-body ul {
list-style-type: disc;
color: #000;
}
.d-color-2 ul{
color: #F6F6F6 !important;
}
.body-sec-g .col-3:hover .sec-g-body ul:hover{
color: #F6F6F6 !important;
}
.sec-g-body ul li a{
color:#000;
font-size: 14px;
}
.body-sec-g .col-3:hover .sec-g-headder div:nth-child(1) div:nth-child(1){
 background-color: rgb(0, 0, 0,0.4);
}
.body-sec-g .col-3:hover .sec-g-headder div:nth-child(3){
  background-color: #0B3B5E;
}
.body-sec-g .col-3:hover .sec-g-body{
  background-color: #0B3B5E;
}
.body-sec-g .col-3:hover .sec-g-body h2{
  color: #fff;
}
.body-sec-g .col-3:hover .sec-g-body ul li a{
   color: #fff;
} 
.body-sec-g .col-3:nth-child(3) .sec-g-headder div:nth-child(3){
   background-color:#0B3B5E;
}
.body-sec-g .col-3:nth-child(3) .sec-g-body{
 background-color:#0B3B5E;
}
.body-sec-g .col-3:nth-child(3) .sec-g-body ul li a{
  color:#fff;
}
.body-sec-g{
	margin:100px 0px;
}
/*  body-7th-sec-end*/
/*testimonial-area-section-start*/
.testimonial-area h2{
	    font-family: 'Raleway-Medium';
}
.testimonial-area .swiper-wrapper{
	    height: 200px;
}
.testimonial-area .swiper {
    width: 100%;
    height: 260px;
}
.single-testimonial > h4 a {
    color: #000;
    margin-bottom: 8px;
    font-family: 'Raleway-Medium';
	font-size:18px;
}
.single-testimonial > h5 {
    color: #444444;
    font-weight: 300;
    margin-bottom: 20px;
	font-size:14px;
}
.heading-paragraph{
        font-size: 18px;
    font-family: Raleway;
    padding-top:5px;
    padding-bottom:20px;
}
.testimonial-area{
    margin-top:100px;
}
/*testimonial-area-section-end*/
/*contact-area-section-start*/
.contact p{
	width:80%;
	margin:auto;
}
.contact-area .section-title > h2 {
    color: #121212;
    line-height: 23px;
    margin-bottom: 19px;
    text-transform: capitalize;
}
.contact-from input:focus, .contact-from textarea:focus {
    border-color: #000;
    box-shadow: inherit;
    outline: 0 none;
}

.contact-from input {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #dddddd;
    border-radius: 10px;
    color: #444;
    font-size: 14px;
    font-weight: normal;
    height: inherit;
    margin-bottom: 18px;
    padding: 16px 20px 15px;
    transition: all 0.3s 
ease 0s;
    width: 100%;
}
.contact-from textarea {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #dddddd;
    border-radius: 10px;
    color: #444;
    font-size: 14px;
    font-weight: normal;
    height: 100px;
    padding: 16px 20px;
    transition: all 0.3s 
ease 0s;
    width: 100%;
}
.contact-from input.submit:hover {
    background-color: #000;
    border: 1px solid #000;
    color: #fff;
}
.contact-from input.submit {
    margin-bottom: 0;
    margin-top: 20px;
    transition: all 0.3s 
ease 0s;
    color: #444;
}
.conatct-info {
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: -78px;
    padding: 52px 0;
    position: relative;
    z-index: 9;
}
.contact-icon {
    border: 1px solid #f3f3f3;
    border-radius: 10px;
    display: inline-table;
    height: 54px;
    margin-right: 18px;
    text-align: center;
    transition: all 0.3s 
ease 0s;
    width: 54px;
}
.single-contact-info:hover .contact-icon {
    background-color: #0091ea;
    border: 1px solid #0091ea;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.35);
}
.single-contact-info:hover .contact-icon i {
    color: #fff;
}
.contact-icon i {
    color: #666666;
    display: table-cell;
    font-size: 30px;
    vertical-align: middle;
}
.contact-text {
    display: inline-block;
    text-align: left;
}
.contact-text > span {
    color: #7a7a7a;
    font-size: 14px;
    font-weight: normal;
    line-height: 22px;
    font-family: "Exo 2", sans-serif;
}
.contact-text > span a{
    outline: medium none;
    color: #606060;
    -webkit-transition: all 0.5s 
ease-out 0s;
    transition: all 0.5s 
ease-out 0s;
text-decoration:none;
}
.contact-text > span a:hover {
    color: #0091ea;
}
@media only screen and (max-width: 768px) {
	.single-contact-info{
		margin-bottom:20px !important;
	}
}
.single-contact-info{
		width: 70%;
		margin: auto;
	}
	.contact-area .heading{
	 padding-top:70px;   
	}
	.contact-area .heading-paragraph{
	    padding-bottom: 50px;    
		}
		.contact-area{
		 padding-bottom: 80px;   
		}
		
/*contact-area-section-end*/
/*footer-area-section-start*/
.footer-title {
    padding-top: 62px;
    position: relative;
}
.footer-title > h2 {
    color: #444444;
    font-weight: 400;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
	
}
h2{
	font-size:30px;
}
.contact-info {
    font-family: "Exo2-Medium", sans-serif;
    margin-bottom: 13px;
        font-size: 14px;
    padding-right: 5px;
}
.c-content {
    color: #333333;
    float: left;
    font-weight: 600;
    font-size:15px;
}
h4 {
    font-size: 18px;
}
.contact-info > span {
    color: #444444;
    display: block;
    line-height: 23px;
    overflow: hidden;
	font-size:14px;
	    font-family: 'Exo2-Medium';
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
    
    bottom:0px !Important;
}
.footer-widget-list {
    padding-top: 2px;
}
.footer-widget-list > li {
    margin-bottom: 13px;
}
.footer-widget-list a {
    color: #333333;
}
ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
a{
	text-decoration:none;
	transition: all 0.5s 
ease-out 0s;
}
.footer-widget-list a{
	font-size:14px;
}
.footer-widget-list a:hover {
    color: #0091ea;
    padding-left: 5px;
}
.bd-location{
    color: #000 !important;
    text-decoration: underline;
}
.footer-title .heading{
    font-size: 26px !important;
}
.col-4{
    padding:0px;
}
.footer-feature-icon:hover{
    color:#fff;
    background:#000;
}
/*footer-area-section-end*/
