@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
   
}

:root{
  --color-1--:#fff;
  
  --color2--:rgb(57, 120, 198);
  --color3--: #F2F4F8;
  --color4--: 0 5px 10px #333;
  
}

html{
  font-size: 62.5%;
  
}

/* section title css */
.section-title{
  text-align: center;
  font-weight: bold;
  margin-bottom: 5rem;
}
.section-title p{
  color: var(--color2--);
  font-size: 2.8rem;
}
.section-title h2{
  font-size: 1.8rem;
}


/* Header Style */

/* header .navbar {
	padding: 20px 0px;
}
.background-header .navbar {
	padding: 10px 0px;
}
.background-header {
	top: 0;
	position: fixed;
	background-color: var(--color-1--)!important;
	box-shadow: 0px 1px 10px rgba(0,0,0,0.1);
}
.background-header .navbar-brand h2 {
	color: var(--color2--)!important;
}
.background-header .navbar-nav a.nav-link {
	color: #1e1e1e!important;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .active>.nav-link,
.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link.show,
.navbar .navbar-nav .show>.nav-link {
	color: var(--color2--);
	border-bottom: 3px solid var(--color2--);
}


.navbar .navbar-nav .nav-item {
	margin: 0px 15px;
}
.navbar .navbar-nav a.nav-link {
	text-transform: capitalize;
	font-size: 15px;
	font-weight: 300;
	letter-spacing: 0.5px;
	color: var(--color-1--);
	transition: all 0.5s;
	margin-top: 5px;
}

.navbar .navbar-brand {
	float: 	left;
	margin-top: 12px;
	outline: none;
  color: var(--color-1--);
	text-transform: uppercase;
	font-size: 24px;
	font-weight: 700;
} */
 
header .navbar {
	padding: 20px 0px;
  width: 80%;
}
#home .main-banner{
  overflow-x: hidden !important ;
}
.background-header .navbar {
	padding: 10px 0px;
}
.navbar .navbar-brand {
	
	margin-top: 12px;
	outline: none;
  color: var(--color-1--);
	text-transform: uppercase;
	font-size: 24px;
	font-weight: 700;
} 

.navbar .navbar-nav .nav-item {
	margin: 0px 15px;
}
.navbar .navbar-nav a.nav-link {
	text-transform: capitalize;
	font-size: 17px;
	font-weight: 300;
	letter-spacing: 0.5px;
	font-weight: bold;
	transition: all 0.5s;
	margin-top: 5px;
}

.navbar .nav-item{
  text-align: center;
  padding: 10px;
}

.nav-link:after{
  content: "";
  margin-left: 2.5rem;
  width: 10%;
  height: 2px;
  background-color: var(--color2--);
  transition: .5s;
  display: block;
 }

 .nav-link:hover::after{
  width: 100%;
  margin-left: 0;
  background-color:white;
 }
/* header end */

/* button css */
a.filled-button {
	background-color: var(--color2--);
	color: var(--color-1--);
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 12px 30px;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
  text-decoration: none;
}

a.filled-button:hover {
	background-color: var(--color-1--);
	color: var(--color2--);
}

a.border-button {
	background-color: transparent;
	color: var(--color-1--);
	border: 2px solid var(--color-1--);
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 10px 28px;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
}

a.border-button:hover {
	background-color: var(--color-1--);
	color: var(--color2--);
}

/* button css end */

/* Banner Style */

.img-fill{
    width: 100%;
    display: block;
    overflow: hidden;
    position: relative;
    text-align: center
  }
  
  .img-fill img {
    min-height: 100%;
    min-width: 100%;
    position: relative;
    display: inline-block;
    max-width: none;
  }

  .Modern-Slider .item .img-fill {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height:95vh;
  }
  
  
  .Modern-Slider .item-1 .img-fill {
    background-image: url(./images/slide_01.jpg);
  }
  .Modern-Slider .item-2 .img-fill {
    background-image: url(./images/slide_02.jpg);
  }
  .Modern-Slider .item-3 .img-fill {
    background-image: url(./images/slide_03.jpg);
  }
  

  .Modern-Slider .text-content {
    text-align: left;
      width: 75%;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
  }
  
  .Modern-Slider .item h6 {
    margin-bottom: 15px;
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color:var(--color2--);
    animation:fadeOutRight 1s both;
  }
  
  .Modern-Slider .item h4 {
    margin-bottom: 30px;
    text-transform: uppercase;
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color:var(--color-1--);
    overflow:hidden;
    animation:fadeOutLeft 1s both;
  }
  
  .Modern-Slider .item p {
    max-width: 570px;
    color: var(--color-1--);
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 40px;
  } 
  
/* swiper css start carousel */
  .swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: var(--color-1--);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-btn-next,
  .hero-btn-prev {
     
      
      color: var(--color2--)!important;
      fill: var(--color2--) !important;
      stroke: var(--color2--)!important;
      margin: 0 50px;
      --swiper-navigation-size: 25px;
      font-weight: bold;
     
  }
.hero-swiper{
  padding-bottom: 0 !important;
}

  

 
  /* swiper css end carousel */

 
  /* service css start */

  #service{
    
    background-color:var(--color3--);
    padding: 4rem 0;
  }
  .service-content{
    padding: 2rem 2rem;
    
  }
  .service-main{
    box-shadow: 0 5px 10px #3337;
    height: 740px;
    background-color: white;
  }
  .service-content h3{
    font-size: 2.1rem;
    font-weight: bold;
    letter-spacing: 2px;
  }

  .service-content li{
    font-size: 1.6rem;
    text-align: start;
  }
  
  .service-btn{
    margin: 2rem 0;
   
  } 
 

  .service-btn a{
    border: 1px solid rgb(189, 187, 187);
    font-size: 1.3rem;
    border-radius: 5rem;
    padding: 0 1rem;
    font-weight: bold;
    
  }

  .service-content-btn{
    display: block;
    padding: 1.6rem;
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: var(--color2--);
    color: var(--color-1--);
    transition: .5s;
  }
  .service-content-btn:hover{
    background-color: var(--color-1--);
    color: var(--color2--);
    border: 1px solid var(--color2--);
  }

  .img-fluid{
    aspect-ratio: 3/3;
  }

  /* service swiper */

  .swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    /* background: #fff; */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* swiper pagination outside of the container code */
.swiper-wrapper{
  padding-bottom: 50px;
 
}


  /* Fun Facts */

.fun-facts {
	
	background-image: url(images/fun-facts-bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	padding: 140px 0px;
	color: #fff;
}

.fun-facts span {
	text-transform: uppercase;
	font-size: 15px;
	color: #fff;
	letter-spacing: 1px;
	margin-bottom: 10px;
	display: block;
}

.fun-facts h2 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 35px;
}

.fun-facts em {
	font-style: normal;
	color: var(--color2--);
}

.fun-facts p {
	color: #fff;
	margin-bottom: 40px;
  font-size: 15px;

}

.fun-facts .left-content {
	margin-right: 45px;
  font-size: 30px !important;
}

.count-area-content {
	text-align: center;
	background-color: rgba(250,250,250,0.1);
	padding: 25px 30px 35px 30px;
	margin: 8px 0px;
  height: 125px;
}

.count-digit {
    margin: 5px 0px;
    color: var(--color2--);
    font-weight: 700;
    font-size: 36px;
}
.count-title {
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.5px;
}
.count-title span{
  font-size: 20px;
  font-weight: 900 !important;
}
/* More Info */

.more-info {
	
  background-color: #f7f7f7;
  padding-block: 4rem;

}

.more-info .section-title{
  margin: rem !important;
}

.chip{
  /* background-color: #232323; */
  margin: 10px 0;
  color: #000;
  font-size: 15px;
  height: 100px;
  padding: 25px 30px 35px 30px;
  box-shadow: 0px 3px 12px 0px #3978c6; 
  display: flex;
  justify-content: center;
  align-items: center;
}


.about-info .more-info-content {
	background-color: transparent;
}

.about-info .right-content {
	padding: 0px!important;
	margin-right: 30px;
}

.more-info .right-content {
	padding: 45px 45px 45px 30px;
}

.more-info span {
	text-transform: uppercase;
	font-size: 15px;
	color: #666;
	letter-spacing: 1px;
	margin-bottom: 10px;
	display: block;
}

.more-info h2 {
	font-size: 34px;
	font-weight: 600;
	margin-bottom: 35px;
}

.more-info em {
	font-style: normal;
	color: var(--color2--);
}

.more-info .right-content p {
	margin-bottom: 30px;
  font-size: 15px;
}


/* testimonial css */

.swiper1 {
  width: 100%;
  height: 100%
  
}
.mySwiper3{
    height: 45vh;
    margin-bottom: 35px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background-color:var(--color1--);
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-content-top img{
height: 100px;
width: 100px;
border-radius: 50%;
margin-right: 25px;


}
.card-content-top{
display: flex;
align-items: center;
}
/* .card-content-text{
padding-top: 16px;
margin-left: -50px;
padding-left: 10px;
} */
.card-content-text p{
text-align: start;
margin-top: 15px;
color: grey;
}
.quote{
margin-top: 10px;
margin-right: 20px;
font-size: 80px;
position: absolute;
top:10px;
right: 1rem;
}
.card-content-icon{
display: flex;
gap:2px;
margin-top: 5px;
}
.card-content-bottom{
text-align: start;
font-size: 16px;
margin-top: 10px;
padding-left: 10px;
}
.card-body{
padding: 1rem;
border-radius: 10;
border: 1px solid var(--color3--);
box-shadow: -2px 10px 14px -12px rgba(0,0,0,0.75);
background-color: rgb(255, 255, 255);
border-radius: 20px;
position: relative;
}



/* request call contact */

.callback {
  position: relative;
}

.callback::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  top: 0;
  left: 0;
  background: linear-gradient(rgba(57, 120, 198, 0.95), rgba(57, 120, 198, 0.95)), url(../img/bg.png);
  z-index: -1;
}

.form-floating label{
  font-size: 15px;
}

.call-btn{
  font-size: 15px;
  background-color: var(--color2--);
  color: var(--color-1--);
}

.call-btn:hover{
  background-color: var(--color-1--);
  color: var(--color2--);
}
#contact{
  padding-bottom: 6rem;
}
/* Footer Style */

footer {
	background-color: #232323;
	padding: 80px 0px;
	color: #fff;
}
footer .footer-item p{
  font-size: 14px;
}

footer h4 {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.25px;
	margin-bottom: 35px;
}
footer p {
	color: #fff;
}
footer ul{
  list-style-type: none;
  
}
footer ul.social-icons {
	margin-top: 25px;
}

footer ul.social-icons li {
	display: inline-block;
	margin-right: 5px;
}

footer ul.social-icons li:last-child {
	margin-right: 0px;
}

footer ul.social-icons li a {
	width: 34px;
	height: 34px;
	display: inline-block;
	line-height: 34px;
	text-align: center;
	background-color: #fff;
	color: #232323;
	border-radius: 50%;
	transition: all 0.3s;
}

footer ul.social-icons li a:hover {
	background-color: var(--color2--);
}

footer ul.menu-list li {
	margin-bottom: 13px;
}

footer ul.menu-list li:last-child {
	margin-bottom: 0px;
}

footer ul.menu-list li a {
	font-size: 16px;
	color: #fff;
	transition: all 0.3s;
  text-decoration: none;
  
}

footer ul.menu-list li a:hover {
	color: var(--color2--);
}

footer .contact-form input {
	border-radius: 20px;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	padding: 0px 15px;
	color: #aaa!important;
	background-color: #343434;
	font-size: 13px;
	text-transform: none;
	box-shadow: none;
	border: none;
	margin-bottom: 15px;
}

footer .contact-form input:focus {
	outline: none;
	box-shadow: none;
	border: none;
	background-color: #343434;
}



footer .contact-form textarea {
	border-radius: 20px;
	height: 120px;
	max-height: 200px;
	min-height: 120px;
	display: inline-block;
	padding: 15px;
	color: #aaa!important;
	background-color: #343434;
	font-size: 13px;
	text-transform: none;
	box-shadow: none;
	border: none;
	margin-bottom: 15px;
}

footer .contact-form textarea:focus {
	outline: none;
	box-shadow: none;
	border: none;
	background-color: #343434;
}

footer .contact-form ::-webkit-input-placeholder { /* Edge */
  color: #aaa;
}
footer .contact-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #aaa;
}
footer .contact-form ::placeholder {
  color: #aaa;
}

footer .contact-form button.filled-button {
	background-color: transparent;
	color: #fff;
	background-color: var(--color2--);
	border: none;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 12px 30px;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
	outline: none;
	box-shadow: none;
	text-shadow: none;
	cursor: pointer;
}

footer .contact-form button.filled-button:hover {
	background-color: #fff;
	color: var(--color2--);
}



/* Sub-footer Style */

.sub-footer {
	background-color: #343434;
	text-align: center;
	padding: 25px 0px;
}

.sub-footer p {
	color: #fff;
	font-weight: 300;
	letter-spacing: 0.5px;
  font-size: 15px;
}

.sub-footer a {
	color: #fff;
}




  /* media query */

   @media(max-width:540px){
   
     .Modern-Slider .item h6{
      font-size: 15px;
   } 
   .Modern-Slider .item h4{
    font-size:34;
   }

   .fun-facts .left-content span{
    font-size: 18px;
   }
   .fun-facts .left-content h2{
    font-size: 34px;
   }
   .fun-facts .left-content p{
    font-size: 15px;
   }
   .more-info .right-content h2{
    font-size: 26px;
   }
   .more-info .right-content p{
    font-size: 15px;
   }
   .mySwiper3 .slide .icon{
    font-size: 40px;
    position: absolute;
  top: 35px;
  right: 25px;
  
   }
   .mySwiper3 .slide .user .user-info .stars {
    margin-left: 25px;
  }
  .mySwiper3 .slide  .text {
    font-size: 15px;
  }
  .fun-facts .left-content {
    margin-right: 45px;
    padding: 0 30px;
  }
  .nav-link:after{
    display: none;
  }
  } 

 
  .container-calc {
	
    max-width: 600px;
    padding: 20px;
    margin: 30px auto;
  }
  
  .container-calc h1 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #3978c6;
  } 
  
  .container-calc label{
      font-size: 16px;
  }
  
  label {
    display: block;
    margin-top: 20px;
  }
  
  input[type=number] {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    font-size: 16px;
  }
  
  .button-calc{
    display: block;
    margin-top: 20px;
    padding: 10px;
    background-color: #3978c6 ;
    color: #fff;
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    cursor: pointer;
    font-size: 16px;
  }
  
  .button-calc:hover {
    background-color: white;
    color: #3978c6;
  }
  
  #error {
    color: red;
    font-weight: bold;
    margin-top: 20px;
  }
  
  #result {
    margin-top: 20px;
    padding: 10px;
    background-color: #f2f2f2;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    text-align: center;
    font-size: 24px;
    font-weight: bold;
  } 

@media(max-width:560px){
  .navbar{
    background-color: #3978c6;
    
  }
  .text-content{
    margin-top: 10px;
  }
}

.navbar-brand img{
   height: 70px;
   width: 70px;
}
