
/* Template - LPC - Copyrigths 2023   https://www.performance-lpc.ch  */


body {

	font-family: 'Poppins', sans-serif;
  	overflow-x: hidden;
  	text-rendering: optimizeLegibility;
  	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
	opacity: 1 ;
	margin: auto auto;
	width: 100%;
	background-color: rgb(235, 234, 234);


}

p {
	margin-bottom: 0px;
	font-size: 14px;
	color: #003153;
	line-height: 30px;
}
a {
	text-decoration: none!important;
	color: #eee;
}
ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

h1,h2,h3,h4,h5,h6 {
	margin: 0px;
}


a.filled-button {
	background-color: #003153 ;
	color: #fff;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 12px 20px;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
}

a.filled-button:hover {
	background-color: #6495ed  ;
	color: #fff;
}

a.border-button {
	background-color: transparent;
	color: #fff;
	border: 2px solid #fff;
	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: #fff;
	color: #483d8b;
}

.section-heading {
	text-align: center;
	margin-bottom: 20px;
	font-size: 30px;
}

.section-heading h2 {
	font-size: 36px;
	font-weight: 600;
	color: #000;
	margin-top: 40px;
}

.section-heading h3 {
	font-size: 36px;
	font-weight: 600;
	color: #eee;
	margin-top: 40px;
}

.section-heading em {
	font-style: normal;
	color:#fd5800;
}

.section-heading span {
	display: block;
	margin-top: 15px;
	text-transform: none;
	font-size: 15px;
	color: #eee;
	letter-spacing: 1px;
}

#preloader {
  overflow: hidden;
  background: #483d8b;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: fixed;
  z-index: 9999999;
  color: #fff;
}

#preloader .jumper {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  position: absolute;
  margin: auto;
  width: 50px;
  height: 50px;
}

#preloader .jumper > div {
  background-color: #fff;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  position: absolute;
  opacity: 0;
  width: 50px;
  height: 50px;
  -webkit-animation: jumper 1s 0s linear infinite;
  animation: jumper 1s 0s linear infinite;
}

#preloader .jumper > div:nth-child(2) {
  -webkit-animation-delay: 0.33333s;
  animation-delay: 0.33333s;
}

#preloader .jumper > div:nth-child(3) {
  -webkit-animation-delay: 0.66666s;
  animation-delay: 0.66666s;
}

@-webkit-keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}



/* new Header Style */
.header {
	position: fixed;
	background-color: transparent;
	z-index: 1;
	-webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
	width: 100%;
}


.header ul{
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
	background-color: rgba(0, 49, 83, 0.5);
	color: #eee;
}


.header ul a {

	display: block;
	padding: 10px;
	text-decoration: none;
	font-size: 12px;
	text-transform: capitalize;
	font-weight: 300;
	letter-spacing: 0.5px;
	text-align: center;
	transition:0.3s;
	
}

.header ul a:hover {
	background-color: rgba(0, 49, 83, 1.0);
	color: orangered;

}

#service:focus ~ .menu{
	max-height: 440px;
}


.header .logo{
	float: left;
	width: 140px;
	height: 40px;
	padding: 10px 0px;
	margin-top: 9px;
	margin-left: 10px;
	background-image: url(/assets/images/logo.png);
	background-size: cover;
	z-index: 1;
}


.header .menu{

	clear: both;
	max-height: 0px;
	transition: max-height .4s ease-out;
}



.header .menu-icon{
	padding: 28px 20px;
	position: relative;
	float: right;
	cursor: pointer;
}

.flag {

	position:absolute; 
	top: 15px;
	left: 32px;
	
}
/* crea icons lines*/
.header .menu-icon .nav-icon{

	background-color: #eee;
	display: block;
	width: 18px;
	height: 2px;
	position: relative;
	transition: background-color 0.2s ease-out;
}

.header .menu-icon .nav-icon::before, 
.header .menu-icon .nav-icon::after{
	background-color: #eee;
	content: "";
	display: block;
	height: 100%;
	width: 100%;
	transition: all 0.1s ease-out;
	position: absolute;
	top: 5px;
}

.header .menu-icon .nav-icon::after{
	top: -5px;
}
.header .menu-icon .nav-icon::before{
	top: 5px;
}

.header .menu-btn{
	display: none;
}

.header .menu-btn:checked ~ .menu{
	max-height: 440px;
}
.header .menu-btn:checked ~ .header {
	background-color: #003153;
}

.header .menu-btn:checked ~ .menu-icon .nav-icon{

	background-color: transparent;
}
.header .menu-btn:checked ~ .menu-icon .nav-icon::after{
	transform: rotate(45deg);
	top: 0;
	
}
.header .menu-btn:checked ~ .menu-icon .nav-icon::before{
 	transform: rotate(-45deg);
 	top: 0;
}

/* open header menu for large screen*/

@media (min-width:1050px) {

		.header li {
			float: left;
		}
			
		.header li a {
			padding: 0px 20px;
		}

		.header .menu{
			clear: none;
			float: right;
			padding: 20px 50px ;
			max-height: 550px;
			font-size: 12px;
			background-color: transparent;
		}
		.header .menu-icon{
			display: none;
		}

		.header .logo{
			margin-left: 30px;
		}

		.header ul a:hover {
			background-color: transparent;
			color: orangered;
		
		}
}


/* 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;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.Grid1k {
  padding: 0 15px;
  max-width: 1200px;
  margin: auto;
}

.blocks-box,
.slick-slider {
  margin: 0;
  padding: 0!important;
}

.slick-slide {
  float: left;
  padding: 0;
}

.Modern-Slider .item .img-fill {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	height:100vh;
	position: relative;
}

.Modern-Slider .item-1 .img-fill {
	background-image: url(../images/sport2.jpg);
}

.Modern-Slider .item-2 .img-fill {
	background-image: url(../images/Speechw.jpg);
}

.Modern-Slider .item-3 .img-fill {
	background-image: url(../images/life2.jpg);
}

.Modern-Slider .NextArrow{
  position:absolute;
  top:50%;
  right:10px;
  border:0 none;
  background-color: transparent;
  text-align:center;
  font-size: 36px;
  font-family: 'FontAwesome';
  color:#FFF;
  z-index:5;
  outline: none;
  cursor: pointer;
}

.Modern-Slider .NextArrow:before{
  content:'\f105';
}

.Modern-Slider .PrevArrow {
  position:absolute;
  top:50%;
  left:10px;
  border:0 none;
  background-color: transparent;
  text-align:center;
  font-size: 36px;
  font-family: 'FontAwesome';
  color:#FFF;
  z-index:5;
  outline: none;
  cursor: pointer;
}

.Modern-Slider .PrevArrow:before{
  content:'\f104';
}

ul.slick-dots {
  display: none!important;
  margin: auto auto;
  justify-content: center;
  background-color: transparent;
}
ul.slick-dots button {
	
	background-color: red;
  }

.Modern-Slider .text-content {
	text-align: left;
  	width: 75%;
  	position: absolute;
  	top: 55%;
  	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:#483d8b;
  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:#FFF;
  overflow:hidden;
  animation:fadeOutLeft 1s both;
}

.Modern-Slider .item p {
	max-width: 570px;
	color: #fff;
	font-size: 1.0em;
	font-weight: 400;
	line-height: 30px;
	margin-bottom: 100px;
}

.Modern-Slider .item a {
  margin: 0 5px;
}

.Modern-Slider .item.slick-active h6{
  animation:fadeInDown 1s both 1s;
}

.Modern-Slider .item.slick-active h4{
  animation:fadeInLeft 1s both 1.5s;
}

.Modern-Slider .item.slick-active{
  animation:Slick-FastSwipeIn 1s both;
}

.Modern-Slider .buttons {
  position: relative;
}

.Modern-Slider {background:#000;}


/* ==== Slick Slider Css Ruls === */
.slick-slider{position:relative;display:block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}
.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}
.slick-list:focus{outline:none}.slick-list.dragging{cursor:hand}
.slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
.slick-track{position:relative;top:0;left:0;display:block}
.slick-track:before,.slick-track:after{display:table;content:''}.slick-track:after{clear:both}
.slick-loading .slick-track{visibility:hidden}
.slick-slide{display:none;float:left /* If RTL Make This Right */ ;height:100%;min-height:1px}
.slick-slide.dragging img{pointer-events:none}
.slick-initialized .slick-slide{display:block}
.slick-loading .slick-slide{visibility:hidden}
.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}


/* Fun Facts - LPC Performance area*/


.fun-facts {

	color: black;
	height: auto;
	width: 100%;
	letter-spacing: 1px;
	display: inline-block;
	background-color: #f7f7f7;
	margin-inline-start: auto;
}

.motto p {
	font-size: 18px;
	font-weight: 600;
	padding-top: 30px;
	padding-bottom: 20px;
	text-align: center;
	color: #fd5800;
}

.FAQ .motto p {
	
	color: #fff;
}

.services .motto p {
	
	color: #fff;
}
.fun-facts h1 {
	font-size: 36px;
	font-weight: 600;
	padding-top: 80px;
	padding-bottom: 10px;
	text-align: center;
}

.fun-facts em {
	font-style: normal;
	color: #fd5800;
	
}


.fun-facts .left-content ul {
	text-align: left;
	font-size: 16px;
	color:black;
	padding: 20px 20px 20px 60px;
	letter-spacing: 1.5px;
	line-height: 200%;
	width: 100%;
	height: auto;
	background-color: #f7f7f7;
	
}



.fun-facts .filled-button{
	background-color: orangered;
	position: absolute;
	margin-top: 20em;
    margin-left: 13em;
	
}

.fun-facts .rigth-content{
	border-radius: 10%;
	width: 80%;
	height: 90%;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
}
.fun-facts .rigth-content img {
	border-radius: 10%;
	width:50%;
	height: 80%;
}
.fun-facts .col-md-5{
	display: flex;
	align-items: center;
}
.fun-facts .col-md-7{
	display: flex;
	align-items: center;
}


/* FAQ section area*/


.FAQ {
	
	background-color: rgba(0, 49, 83);
	display: block;
	padding-bottom: 50px;

}

.accordion {
	color:#003153;
	cursor: pointer;
	padding: 18px;
	font-size: 15px;
	transition: 0.4s;
	width: 90%;
	margin: auto auto;
	text-align: center;
	box-shadow:  0px 0px 20px rgb(0 0 0 / 15%);
    border-radius: 6px;
	display: block;
	font-weight: bold;
	background-color: #fff;
	height: 70px;
  }
  
  .panel.active:after {
	box-shadow:  0px 0px 20px rgb(0 0 0 / 15%);
	color:#eee
  }
  
  .panel {
	padding: 5px 5px;
	max-height: 0;
	overflow: hidden;
	text-align: center;
	transition: max-height 0.2s ease-out;
	background-color: rgba(0, 49, 83);
	width: 90%;
	margin: auto auto;
	color:#eee;
}

.panel p{
	color:#eee
}

.panel ul li{
	padding: 5px 5px;
	text-align: center;
	color:#eee;
	font-size: 13px;

	
}

/* Style the buttons that are used to open and close the accordion panel */

.accordion:after {
	content: '\271A'; /* Unicode character for "plus" sign (up) 142F*/
	font-size: 13px;
	float: right;
  }
  

  .active:after {
	content: '\2716';/* Unicode character for "minus" sign (down) */
  }


/* Services - LPC Methods */

.services {
	
	height: 100%;
	width: 100%;
	background-image: url(/assets/images/speech3.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	padding-top: 20px;
	font-size: 15px;
	color: #fff;
	letter-spacing: 1px;
	padding-bottom: 30px;
	display: block;
	justify-content: space-evenly;
}

.service-item img {
	width:50%;
	margin: auto;
	display: block;
	margin-top:  15px;
}

.service-item .down-content {
	background-color: rgba(255, 255, 255, 0.8);
	padding: 5px;
	height: 400px;
	color: black;
	overflow: hidden;
	border-radius: 10px;
	margin-top: 20px;
	width: 80%;
	justify-items: auto;
	display: block;
	margin: 0 0 0 50px;
}

.service-item .down-content h4 {
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.30px;
	margin: 15px 0;
	color: #fd5800;
}

.service-item .down-content-left{
	
	display: block;
	padding-top: 20px;
	height: 400px;
	align-items: center;
	margin-top: 30px;

}

.service-item .down-content-left ul li {
	margin-bottom: 20px;
	text-align: left;
	color: #fff;
	line-height: 150%;
	list-style: none;

}


.service-item .down-content ul li {
	margin-bottom: 10px;
	text-align: center;
	color: black;
	line-height: 150%;
	list-style-type: disc;
	list-style-position: inside;
	font-size: 14px;
}

.services span{
 	color: #000;
}

#lowrow{
	/*align-items: stretch;
	justify-content: flex-end;*/
	display: flex;
	
}




/* About me - More Info */

.more-info {
	margin-top: 0px;
	background-color: #f7f7f7;
	padding: 20px;
	color: #003153;
}
.more-info em {
	color: #fd5800
}

.more-info h2 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 5px;
	margin-top: 10px;
	color: black;
}

.more-info .left-image {
	max-width: 60%;
	margin: auto auto;
}

.more-info .left-image img {
	width: 70%;
	height: auto;
	border-radius: 5%;

}

.more-info .right-content {
	padding: 3px 4px 4px 3px;

}

.more-info .right-content span {
	text-transform: uppercase;
	font-size: 15px;
	color: #666;
	letter-spacing: 1px;
	margin-bottom: 10px;
	display: block;
	text-align: right;
}

.more-info .right-content h2 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 35px;
	color: black;
}

.more-info .right-content em {
	font-style: normal;
	color: #fd5800;
}

.more-info .right-content p {
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;

}
/*.more-info .right-content p {
	margin-top: 20px;
	margin-left: 0;
	margin-right: 0;
}//


/* Testimonials area */

.about-testimonials {
	margin-top: 0px!important;
}

.testimonials {
	margin-top: 0px;
	background-color: #003153;
	background-size: cover;
	min-height: 600px;
	padding: 50px 50px;

}
.testimonial-item .inner-content {
	text-align:left;
	padding: 20px;
	border-radius: 30px;
	width: 100%;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.testimonial-item  {
	margin: 30px auto;
	box-shadow:  0px 0px 20px rgba(253, 252, 252);
	border-radius: 30px;
	width: 90%;
}


.testimonial-item p {
	font-size: 15px;
	font-weight: 400;
	color: #fff;
	margin: auto;
	display: block;
	border-radius: 30px;
	width: 90%;
	padding: 10px;
}

.testimonial-item h4 {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.5px;
	padding: 5px;
	margin-left: 5px;
	border: 5px;
	
}

.testimonial-item em {
	display: flex;
	float: center;
	font-weight: 600;
	color: #fd5800;
	border: 5px;
	font-size: 16px;
	
}

.testimonial-item .inner-content img {
	width: 30%;
	border-radius: 50%;
	display: flex;
	margin-top: 10px;

}

/* Call Back area */

.callback-services {
	border-top: 1px solid #eee;
	padding-top: 40px;
}

.contact-us {
	background-color: #f7f7f7;
	padding: 20px 0px;
	color: #003153;
}

.contact-us .contact-form {
	background-color: transparent!important;
	padding: 0!important;
}

.callback-form {
	background-color: #f7f7f7;
}

.callback-form .contact-form {
	padding: 60px;
	border-radius: 5px;
	text-align: center;
}

.callback-form .contact-form input {
	border-radius: 20px;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	padding: 0px 15px;
	color: #003153;
	font-size: 13px;
	text-transform: none;
	box-shadow: none;
	border: none;
	margin-bottom: 35px;
}

.callback-form .contact-form input:focus {
	outline: none;
	box-shadow: none;
	border: none;
}

.callback-form .contact-form textarea {
	border-radius: 20px;
	height: 120px;
	max-height: 200px;
	min-height: 120px;
	display: inline-block;
	padding: 15px;
	color: #003153;
	font-size: 13px;
	text-transform: none;
	box-shadow: none;
	border: none;
	margin-bottom: 35px;
}

.callback-form .contact-form textarea:focus {
	outline: none;
	box-shadow: none;
	border: none;
}

.callback-form .contact-form ::-webkit-input-placeholder { /* Edge */
  color: #003153;
}
.callback-form .contact-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #003153;
}
.callback-form .contact-form ::placeholder {
  color: #003153;
}

.callback-form .contact-form button.border-button {
	background-color: #003153;
	color: #fff;
	border: 2px solid #fff;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 10px 28px;
	border-radius: 30px;
	display: inline-block;
	transition: all 0.3s;
	outline: none;
	box-shadow: none;
	text-shadow: none;
	cursor: pointer;
}

.callback-form .contact-form button.border-button:hover {
	background-color: #003153;
	color: #fd5800;
}

.contact-us .contact-form button.filled-button {
	background-color: #003153 ;
	color: #fff;
	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;
}

.contact-us .contact-form button.filled-button:hover {
	background-color: #b0c4de ;
	color: #fff;
}


.modal-body {
font-size: 14px;
padding: 10px 10px;
color:#003153;
text-align: center;
}

.modal-body h5 {
	font-size: 16px;
	padding: 5px 5px;
	color:orangered;
	text-align: center;
	}

.modal-header{
	font-size: 14px;
	padding: 5px 5px;
	color:orangered;
	text-align:right;
	}
.modal-title {
	margin-left: 140px;
}
	
.modal-header button.btn-close {
	margin: 5px;
		}

.modal-body ul li {
		font-size: 14px;
		color: #003153;
		text-align: left;
		margin-left: 5%;
		}

.modal-footer p{
	font-size: 14px;
	padding: 5px 5px;
	color: black;
	}


/* Footer Area */

footer {
	background-color: #003153;
	padding: 10px;
	color: #fff;
}

footer h4 {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.25px;
	margin-left:20%;
	margin-top: 10px;
}
footer p {
	color: #fff;
	margin-left:20%;
}
footer ul li {
	color: #fff;
	margin-left:20%;
}

.col-md-3 footer-item {
		
	position: relative;
	margin-right: auto;
	margin-left:auto;
	}


footer ul.menu-list li a {
	font-size: 14px;
	color: #fff;
	transition: all 0.3s;
}

footer ul.menu-list li a:hover {
	color: #483d8b;
}


/* Sub-footer Area */

.sub-footer {
	background-color: #003153;
	text-align: center;
	padding: 20px 20px;
}

.sub-footer p {
	color: #fff;
	font-weight: 300;
	letter-spacing: 0.5px;
	font-size: 10px;
}

.sub-footer a {
	color: #fff;
}

.page-heading {
	text-align: center;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 230px 0px 150px 0px;
	color: #fff;
}

.page-heading h1 {
	text-transform: capitalize;
	font-size: 36px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 18px;
}

.page-heading span {
	font-size: 15px;
	text-transform: none;
	letter-spacing: 1px;
	color: #fff;
	display: block;
}


/* RESPONSIVE STYLE */

/*Landscape views*/

@media (max-width: 680px) and (orientation:landscape) {
	
	
	.Modern-Slider .item h4 {
		
		font-size: 28px;
		font-weight: 600;
		margin-bottom: 10px;
		
	  }

	  .Modern-Slider .item p {
		
		margin-bottom: 20px;

		
	  }

	  .Modern-Slider .text-content {
		text-align: left;
		  width: 85%;
		  position: absolute;
		  top: 55%;
		  left: 50%;
		  transform: translate(-50%, -50%);
	}
	.Modern-Slider .NextArrow {
		right: -25px;
	}
	.Modern-Slider .PrevArrow {
		left: -25px;
	}
	.services {
		height: auto;
		width: 100%;
		padding-top: 10px;
		font-size: 15px;
		color: #fff;
		letter-spacing: 1px;
		padding-bottom: 10px;
		display: inline-block;
		background-attachment: scroll;
	
	}

		.service-item .down-content img {
			width: 30%;
		}
	
		.service-item .down-content {
			margin: 10px auto;
			width: 90%;
			height: fit-content;
			
		}

		.service-item .down-content ul li{
			font-size: 16px;
			
		}
		.service-item .down-content-left {
			height: fit-content;
			font-size: 14px;
			
		}
		.service-item .down-content-left ul li {
			font-size: 16px;
			
		}
		
		.fun-facts .rigth-content {
			width:80%;
			height: 90%;
			margin: 10px auto;
			}
		
		.more-info .left-image {
			width: 70%;
			height: 60%;
			margin: auto auto;
			display: block;
			text-align: center;
			margin-top: 10px;
			max-width: 100%;
		}

	}
@media (min-width: 680px) and (max-width:1350px) and (orientation:landscape) {
	
		body {
			width: 100%;
		}
		.header {
			width: 100%;
		}
		.services {
			height: auto;
			width: 100%;
			padding-top: 10px;
			font-size: 15px;
			color: #fff;
			letter-spacing: 1px;
			padding-bottom: 30px;
			display: inline-block;
			background-attachment: scroll;
		
		}
	
		.service-item .down-content-left {
			height: fit-content;
		
		}
	
			.service-item .down-content ul li{
				font-size: 12px;
				
			}
		
			.service-item .down-content {
				margin: auto auto;
				width: 90%;
				
			}
			.service-item .down-content-left {
				height: fit-content;
				font-size: 14px;
				margin-top: 0px;
				padding-top: 0px;
				
			}
			
			.fun-facts .rigth-content img {
			width:80%;
			height: 70%;
			}
	
			.more-info .left-image {
				max-width: 60%;
				max-height: 80%;
				margin: auto auto;
			}
	
		}


/*Portrait views*/

@media (max-width: 750px) and (orientation:portrait){
	
	.Modern-Slider .item h4 {
		
		font-size: 34px;
		font-weight: 600;
		
	  }
	
	.Modern-Slider .item p {
		
		margin-bottom: 30px;
		
	  }
	
	.services{
		background-attachment: scroll;

	}

	.services .service-item {
		margin-bottom: 30px;
	}
	.fun-facts .left-content ul {
		font-size: 14px;
		padding:15px;
	}
	
	.fun-facts .rigth-content {
		width:80%;
		height: 90%;
		margin: 10px auto;
		}


	.fun-facts .rigth-content img {
	height: auto;
	}
	
	.service-item .down-content-left {
		height: fit-content;
		font-size: 14px;
		margin: auto auto;
		
	}
	.service-item .down-content-left ul li{
		font-size: 16px;
	
	}
	.service-item .down-content ul li{
		font-size: 16px;
		
	}
	
	.service-item .down-content {
		margin: auto auto;
		height: 450px;
	}
	.service-item .down-content h4 {
		font-size: 18px;
		
	}
	.more-info .left-image {
		max-width: 80%;
		margin: auto auto;
		display: block;
		margin-top: 10px;
		text-align: center;
	}

	.more-info .left-image img {
		margin: auto auto;
	}
	.testimonials {
		padding: 20px 5px;
	}

	.menu-list {
		padding-bottom: 15px;
	}
	.sub-footer p{
		font-size: 9px;
	}
	.Modern-Slider .NextArrow {
		right: -25px;
	}
	.Modern-Slider .PrevArrow {
		left: -25px;
	}
	#preloader .jumper > div {
		-webkit-animation: jumper 0s 0s linear infinite;
		animation: jumper 0s 0s linear infinite;
	  }

	  .accordion{
		height: 105px;
		width:95%;
	  }

	  .modal-title {
		margin-left: 45px;
	}
}


@media  (min-width: 750px) and (max-width: 1044px) and (orientation:portrait) {
	
	.services{
		background-attachment: scroll;

	}
	.accordion{
	width: 100%;
	}
	.panel {
		width: 100%;
	}
	
	.service-item .down-content-left {
		height: fit-content;
		font-size: 12px;
		margin: auto auto;
		padding-top: 0px;
		
	}
	.service-item .down-content-left ul li{
		font-size: 14px;
	
	}
	.service-item .down-content ul li{
		font-size: 14px;
		padding-top: 10px;
		
		
	}
	
	.service-item .down-content {
		margin: auto auto;
		height: 530px;
		width: 95%;
	}
	.service-item .down-content h4 {
		font-size: 16px;
		
	}
	.testimonial-item p{
		padding: 5px;
	}
	.more-info .left-image {
		max-width: 90%;
	}

	.fun-facts .rigth-content img {
		width: 80%;
		height: auto;
		}
	.fun-facts .rigth-content  {
			width: 100%;
			}

	.fun-facts .col-md-5{
			justify-content: center;
		}

	.services .motto p {
		padding-left: 50px;
		padding-right: 50px;
	}
	.FAQ .motto p {
		padding-left: 50px;
		padding-right: 50px;
	}
}

/*Large screen view */

@media  (min-width: 1180px) {
	.services{
		background-attachment: fixed;

	}



}
@media  (min-width: 1440px) {
			.header {
				width:85%;
			}

			body {
				width:85%;
			}

			.footer.row{
				align-items: unset;
			}
	}

	/* End */
	  


	  

		

