/*
	Author: Team90Degree.
	Template Name: Maks - Onepage Multipurpose Responsive HTML5 Template
	Version      : 1.0

*/
/*--------------------------
    CSS INDEX
 ---------------------------
    01. Typography
    02. Preloader
    03. Section Title
    04. Menu
    05. Slider
    06. About
    07. Services
    08. Work
    09. Team
    10. Skill
    11. Video
    12. Pricing
    13. Testmonial
    14. Counter
    15. Blog
    16. Client
    17. Contact
    18. Footer

----------------------------*/



/* ===== 1. Google Fonts Import  ====*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700|PT+Sans:400,700');

/* Typography */

h1, h2, h3, h4, h5, h6 {
  color: #444;
  font-family: "PT Sans",sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: normal;
  margin-bottom: 20px;
  margin-top: 0;
}

body {
	font-family: "Open Sans",sans-serif;
	font-weight: 400;
	color: #757575;
	font-size: 15px;
	line-height: 26px;
	letter-spacing:0.4px;
	overflow-x: hidden;
}

p {
	margin-bottom: 10px;
	
}

img {
    max-width: 100%;
    height: auto;
	vertical-align: middle;
	border-style: none;
}
a{
	color:#ED1C24;
    transition: .5s;
    text-decoration: none;
}
a:hover,
a:active {
	color:transparent;
	outline: 0 none;
	text-decoration: none;
	color:#ED1C24;
}

ul, ol{
    list-style: outside none none;
    margin: 0;
    padding: 0
}



/* Preloader*/

.preloader {
    background: #ED1C24;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
}

.status-mes {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -75px 0 0 -35px;
    font-size: 10px;
    text-indent: -12345px;
    z-index: 10000;
}


.loader {
  position: relative;
  width: 75px;
  height: 100px;
}
.loader__bar {
  position: absolute;
  bottom: 0;
  width: 10px;
  height: 50%;
  background: #fff;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}
.loader__bar:nth-child(1) {
  left: 0px;
  -webkit-transform: scale(1, 0.2);
          transform: scale(1, 0.2);
  -webkit-animation: barUp1 4s infinite;
          animation: barUp1 4s infinite;
}
.loader__bar:nth-child(2) {
  left: 15px;
  -webkit-transform: scale(1, 0.4);
          transform: scale(1, 0.4);
  -webkit-animation: barUp2 4s infinite;
          animation: barUp2 4s infinite;
}
.loader__bar:nth-child(3) {
  left: 30px;
  -webkit-transform: scale(1, 0.6);
          transform: scale(1, 0.6);
  -webkit-animation: barUp3 4s infinite;
          animation: barUp3 4s infinite;
}
.loader__bar:nth-child(4) {
  left: 45px;
  -webkit-transform: scale(1, 0.8);
          transform: scale(1, 0.8);
  -webkit-animation: barUp4 4s infinite;
          animation: barUp4 4s infinite;
}
.loader__bar:nth-child(5) {
  left: 60px;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-animation: barUp5 4s infinite;
          animation: barUp5 4s infinite;
}
.loader__ball {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  -webkit-animation: ball 4s infinite;
          animation: ball 4s infinite;
}

@-webkit-keyframes ball {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  5% {
    -webkit-transform: translate(8px, -14px);
            transform: translate(8px, -14px);
  }
  10% {
    -webkit-transform: translate(15px, -10px);
            transform: translate(15px, -10px);
  }
  17% {
    -webkit-transform: translate(23px, -24px);
            transform: translate(23px, -24px);
  }
  20% {
    -webkit-transform: translate(30px, -20px);
            transform: translate(30px, -20px);
  }
  27% {
    -webkit-transform: translate(38px, -34px);
            transform: translate(38px, -34px);
  }
  30% {
    -webkit-transform: translate(45px, -30px);
            transform: translate(45px, -30px);
  }
  37% {
    -webkit-transform: translate(53px, -44px);
            transform: translate(53px, -44px);
  }
  40% {
    -webkit-transform: translate(60px, -40px);
            transform: translate(60px, -40px);
  }
  50% {
    -webkit-transform: translate(60px, 0);
            transform: translate(60px, 0);
  }
  57% {
    -webkit-transform: translate(53px, -14px);
            transform: translate(53px, -14px);
  }
  60% {
    -webkit-transform: translate(45px, -10px);
            transform: translate(45px, -10px);
  }
  67% {
    -webkit-transform: translate(37px, -24px);
            transform: translate(37px, -24px);
  }
  70% {
    -webkit-transform: translate(30px, -20px);
            transform: translate(30px, -20px);
  }
  77% {
    -webkit-transform: translate(22px, -34px);
            transform: translate(22px, -34px);
  }
  80% {
    -webkit-transform: translate(15px, -30px);
            transform: translate(15px, -30px);
  }
  87% {
    -webkit-transform: translate(7px, -44px);
            transform: translate(7px, -44px);
  }
  90% {
    -webkit-transform: translate(0, -40px);
            transform: translate(0, -40px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes ball {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  5% {
    -webkit-transform: translate(8px, -14px);
            transform: translate(8px, -14px);
  }
  10% {
    -webkit-transform: translate(15px, -10px);
            transform: translate(15px, -10px);
  }
  17% {
    -webkit-transform: translate(23px, -24px);
            transform: translate(23px, -24px);
  }
  20% {
    -webkit-transform: translate(30px, -20px);
            transform: translate(30px, -20px);
  }
  27% {
    -webkit-transform: translate(38px, -34px);
            transform: translate(38px, -34px);
  }
  30% {
    -webkit-transform: translate(45px, -30px);
            transform: translate(45px, -30px);
  }
  37% {
    -webkit-transform: translate(53px, -44px);
            transform: translate(53px, -44px);
  }
  40% {
    -webkit-transform: translate(60px, -40px);
            transform: translate(60px, -40px);
  }
  50% {
    -webkit-transform: translate(60px, 0);
            transform: translate(60px, 0);
  }
  57% {
    -webkit-transform: translate(53px, -14px);
            transform: translate(53px, -14px);
  }
  60% {
    -webkit-transform: translate(45px, -10px);
            transform: translate(45px, -10px);
  }
  67% {
    -webkit-transform: translate(37px, -24px);
            transform: translate(37px, -24px);
  }
  70% {
    -webkit-transform: translate(30px, -20px);
            transform: translate(30px, -20px);
  }
  77% {
    -webkit-transform: translate(22px, -34px);
            transform: translate(22px, -34px);
  }
  80% {
    -webkit-transform: translate(15px, -30px);
            transform: translate(15px, -30px);
  }
  87% {
    -webkit-transform: translate(7px, -44px);
            transform: translate(7px, -44px);
  }
  90% {
    -webkit-transform: translate(0, -40px);
            transform: translate(0, -40px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@-webkit-keyframes barUp1 {
  0% {
    -webkit-transform: scale(1, 0.2);
            transform: scale(1, 0.2);
  }
  40% {
    -webkit-transform: scale(1, 0.2);
            transform: scale(1, 0.2);
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  90% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(1, 0.2);
            transform: scale(1, 0.2);
  }
}
@keyframes barUp1 {
  0% {
    -webkit-transform: scale(1, 0.2);
            transform: scale(1, 0.2);
  }
  40% {
    -webkit-transform: scale(1, 0.2);
            transform: scale(1, 0.2);
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  90% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  100% {
    -webkit-transform: scale(1, 0.2);
            transform: scale(1, 0.2);
  }
}
@-webkit-keyframes barUp2 {
  0% {
    -webkit-transform: scale(1, 0.4);
            transform: scale(1, 0.4);
  }
  40% {
    -webkit-transform: scale(1, 0.4);
            transform: scale(1, 0.4);
  }
  50% {
    -webkit-transform: scale(1, 0.8);
            transform: scale(1, 0.8);
  }
  90% {
    -webkit-transform: scale(1, 0.8);
            transform: scale(1, 0.8);
  }
  100% {
    -webkit-transform: scale(1, 0.4);
            transform: scale(1, 0.4);
  }
}
@keyframes barUp2 {
  0% {
    -webkit-transform: scale(1, 0.4);
            transform: scale(1, 0.4);
  }
  40% {
    -webkit-transform: scale(1, 0.4);
            transform: scale(1, 0.4);
  }
  50% {
    -webkit-transform: scale(1, 0.8);
            transform: scale(1, 0.8);
  }
  90% {
    -webkit-transform: scale(1, 0.8);
            transform: scale(1, 0.8);
  }
  100% {
    -webkit-transform: scale(1, 0.4);
            transform: scale(1, 0.4);
  }
}
@-webkit-keyframes barUp3 {
  0% {
    -webkit-transform: scale(1, 0.6);
            transform: scale(1, 0.6);
  }
  100% {
    -webkit-transform: scale(1, 0.6);
            transform: scale(1, 0.6);
  }
}
@keyframes barUp3 {
  0% {
    -webkit-transform: scale(1, 0.6);
            transform: scale(1, 0.6);
  }
  100% {
    -webkit-transform: scale(1, 0.6);
            transform: scale(1, 0.6);
  }
}
@-webkit-keyframes barUp4 {
  0% {
    -webkit-transform: scale(1, 0.8);
            transform: scale(1, 0.8);
  }
  40% {
    -webkit-transform: scale(1, 0.8);
            transform: scale(1, 0.8);
  }
  50% {
    -webkit-transform: scale(1, 0.4);
            transform: scale(1, 0.4);
  }
  90% {
    -webkit-transform: scale(1, 0.4);
            transform: scale(1, 0.4);
  }
  100% {
    -webkit-transform: scale(1, 0.8);
            transform: scale(1, 0.8);
  }
}
@keyframes barUp4 {
  0% {
    -webkit-transform: scale(1, 0.8);
            transform: scale(1, 0.8);
  }
  40% {
    -webkit-transform: scale(1, 0.8);
            transform: scale(1, 0.8);
  }
  50% {
    -webkit-transform: scale(1, 0.4);
            transform: scale(1, 0.4);
  }
  90% {
    -webkit-transform: scale(1, 0.4);
            transform: scale(1, 0.4);
  }
  100% {
    -webkit-transform: scale(1, 0.8);
            transform: scale(1, 0.8);
  }
}
@-webkit-keyframes barUp5 {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  40% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1, 0.2);
            transform: scale(1, 0.2);
  }
  90% {
    -webkit-transform: scale(1, 0.2);
            transform: scale(1, 0.2);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@keyframes barUp5 {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  40% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  50% {
    -webkit-transform: scale(1, 0.2);
            transform: scale(1, 0.2);
  }
  90% {
    -webkit-transform: scale(1, 0.2);
            transform: scale(1, 0.2);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}


/*----- Section Title -----*/

.section_title{
	margin-bottom: 50px;
}
.section_title {
  display: inline-block;
  position: relative;
}
.section_title h2 {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 0;
  margin-top: 20px;
  text-transform: capitalize;
}
.section_title::after {
  background-image: url("img/separator.png");
  bottom: -14px;
  content: "";
  height: 4px;
  left: 50%;
  margin-left: -73px;
  position: absolute;
  width: 144px;
}
.section_title p {
	margin-top: 10px;
}
.section_padding{
	padding:80px 0;
}
.section_gray{
	background: #f8f8f8;
}

/*----- button -----*/

.main_bg_btn {
  background: #ED1C24 none repeat scroll 0 0;
  border: 1px solid #ED1C24;
  border-radius: 30px;
  box-shadow: 0 0 5px #ddd;
  color: #fff;
  display: inline-block;
  font-family: "PT Sans",sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 20px;
  overflow: hidden;
  padding: 14px 27px;
  position: relative;
  text-transform: uppercase;
  transition: all 0.5s ease 0s;
  z-index: 1;
}
.main_bg_btn:hover,
.main_bg_btn:focus {
	color: #ED1C24;
	border-color: #ED1C24;
	background:transparent;
}
    

/*----- Menu -----*/

#header {
	top: 0;
	width: 100%;
	position: fixed;
	z-index: 999;
	transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	padding: 8px 0;
  background-color: white;

}
.logo_area {
	float: left;
}
.logo_area img{
	margin-left: 0;
}
#header.menu-shrink {
    background-color: #fff;
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
}
#main_menu{
	margin-top: 10px;
}

.nav > li {
	padding: 7px 12px;
	border: 1px solid transparent;
	transition: .5s;
}

.nav > li > a {
  color: #fff;
  font-family: "PT Sans",sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 0;
  text-transform: uppercase;
  transition: all 0.5s ease 0s;
}

#header.menu-shrink .nav > li > a{
	color: #757575;
}
.nav > li > a:hover,
#header.menu-shrink .nav > li > a:hover {

	color: #ED1C24;
}

.nav > li > a:hover, 
.nav > li > a:focus {
	text-decoration: none;
	background-color: transparent;
}
.navbar-toggle {
	position: relative;
	float: right;
	margin-right: 15px;
	padding: 9px 10px;
	margin-top: 19px;
	margin-bottom: 0;
}
.navbar-toggle .icon-bar{
	background-color: #ED1C24;
}


/*----- Slider -----*/

/* Default Slider Animations */

.owl-item.active .slider-animated-1 .sl_heading {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

.owl-item.active .slider-animated-1 h2 {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

.owl-item.active .slider-animated-1 p {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

.owl-item.active .slider-animated-1 a {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
  -webkit-animation-name: bounceInLeft;
  animation-name: fadeInLeft;
}

/* animation 2 */
.owl-item.active .slider-animated-2 .sl_heading {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.owl-item.active .slider-animated-2 h2 {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.owl-item.active .slider-animated-2 p {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.owl-item.active .slider-animated-2 a {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/* animation 3 */
.owl-item.active .slider-animated-3 .sl_heading {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
.owl-item.active .slider-animated-3 h2 {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
.owl-item.active .slider-animated-3 p {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
.owl-item.active .slider-animated-3 a {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
.main_logo {
  display: none;
}
.menu-shrink .main_logo {
  display: block;
}
.menu-shrink .white_logo {
  display: none;
}

#slider_area, .single_slide, .single-slide-item-table {
  height: 810px;
}
.single_slide{
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
	position: relative;
	z-index: 1;
}
.slider_item1 {
	background-image: url(img/slider/sl-1.jpg);
 background-size: cover;
 width: 100%;
height: auto;
}

.sowparnika-img-banner{
  margin-top: 72px;
  
}

.slider_item2 {

    background-image: url(img/slider/sl-2.jpg);

}

.slider_item3 {
    background-image: url(img/slider/sl-3.jpg);

}
.single_slide::after {

  content: "";
  height: 100%;
  left: 0;
  opacity: 0.31;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.slider_active .owl-nav .owl-next, .slider_active .owl-nav .owl-prev {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
	color: #fff;
	opacity: 1;
	font-size: 19px;
	transition: all 0.4s ease-in-out;
	width: 60px;
	height: 60px;
	line-height: 60px;
	border: 1px solid transparent;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.6);
}
.slider_active .owl-nav .owl-prev {
	left: 15px;
  display: none;
}
.slider_active .owl-nav .owl-next{
	right: 15px;	
  display: none;
}

.slider_active .owl-nav .owl-next:hover, .slider_active .owl-nav .owl-prev:hover {
  background: #ED1C24 none repeat scroll 0 0;
  color: #fff;
}
.single-slide-item-table {
    display: table;
    width: 100%;
}

.single-slide-item-tablecell {
    display: table-cell;
    vertical-align: middle;

}

.slider_content .sl_heading {
	color: #fff;
	font-size: 27px;
	margin-bottom: 0;
	font-weight: 400;
	display: block;
	text-transform: capitalize;
	font-family: 'PT Sans', sans-serif;
}

.slider_content h2 {
	color: #fff;
	font-size: 57px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 10px;
	display: inline-block;
	margin-top: 10px;
	line-height: normal;
}

.slider_content .main_bg_btn{
	box-shadow: inherit;
}
.slider_content .main_bg_btn:hover,
.slider_content .main_bg_btn:focus{
	color: #fff;
}
.slider_content h2 span {
	color: #fff;
}
.slider_content p {
  color: #fff;
  font-weight: 400;
  margin-bottom: 35px;
}
#slider_area .main_bg_btn {
  background: #ED1C24 none repeat scroll 0 0;
  border-color: #ED1C24;
  color: #fff;
  text-transform: uppercase;
}
#slider_area .main_bg_btn:hover {
  background: transparent none repeat scroll 0 0;
  border-color: #fff;
  color: #fff;
}
.gradient_background{
	background-image: linear-gradient(to right, #12D8FA  0%, #ED1C24 100%);
}
/*----- about css  -----*/
.single_about {
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 65px 46px 59px;
  position: relative;
  text-align: center;
  transition: all 0.3s ease 0s;
  z-index: 1;
}
.slick-slide .mobile-img{
  display: none;
}
.single_about:hover{

}
.single_about .about_icon {
  margin-bottom: 22px;
}
.single_about .about_icon i {
  color: #ED1C24;
  font-size: 61px;
  line-height: 70px;
  transition: all 0.3s ease 0s;
}
.single_about .about_content h3 {
  font-size: 25px;
  margin-bottom: 15px;
  text-transform: capitalize;
}
.about_areas.bg_white {
  padding-bottom: 90px;
}
.single_about:hover,.single_about.active{
  background: #ED1C24;
}
.single_about:hover .about_icon i,.single_about:hover .about_content,.single_about:hover .about_content h3,.single_about.active i,.single_about.active .about_content h3,.single_about.active .about_content {
  color: #fff;
}
.single_about .about_content p{
  line-height: 26px;
}
.why-chooseus.section_gray {
  padding: 85px 0 0;
}
.why-choose-text {
  margin-bottom: 0;
  margin-top: 67px;
  position: relative;
}
.why-chooseus.section_gray {
  padding-top: 30px;
 margin-bottom: 60px;
}
.why-choose-text .title h2 {
  color: #000;
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 30px;
}
.why-choose-text .title h2 span {
  color: #ED1C24;
}
.why-choose-text .text {
    margin-bottom: 25px;
}
.list-style-three {
  margin-bottom: 15px;
  position: relative;
}
.list-style-three li {
  color: #666;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}
.list-style-three li::before {
  color: #ED1C24;
  content: "";
  font-family: "FontAwesome";
  left: 0;
  position: absolute;
  top: 0;
}



.feature-section .single-item {
  margin-bottom: 30px;
  position: relative;
  transition: all 500ms ease 0s;
}
.img-box img {
  width: 100%;
}
.feature-section .single-item:hover {
    box-shadow: 0 0 10px 5px rgba(231, 231, 231, 0.6);
    transition: all 500ms ease 0s;
}
.feature-section .single-item .single-content {
  background: #fafafa none repeat scroll 0 0;
  border: 0 none;
  padding: 48px 22px 22px 22px;
  position: relative;
  transition: all 500ms ease 0s;
}
.feature-section .single-item .single-content .icon-box {
  background: #ED1C24 none repeat scroll 0 0;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(231, 231, 231, 0.95);
  height: 60px;
  left: 30px;
  line-height: 73px;
  position: absolute;
  text-align: center;
  top: -30px;
  transition: all 0.5s ease 0s;
  width: 60px;
}
.feature-section .single-item:hover .single-content .icon-box {
  background: #444 none repeat scroll 0 0;
}
.feature-section .single-item .single-content .icon-box i::before {
    color: #fff;
    font-size: 30px;
    margin: 0;
}
.feature-section .single-item h4 {
  font-size: 18px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

@media screen and (max-width: 990px){
    .single_about{
        margin-bottom:10px;
    }
}
.welcome__text {
  color: #000000;
  font-size: 36px;
  font-weight: 300;
  line-height: 1.4em;
  margin-bottom: 70px;
  position: relative;
  text-align: center;
}
/*----- Work css -----*/
#work_area{

	overflow: hidden;
}
.mix{
	display: none;
}
.portfolio_item .mix{
	display: none;
}
.portfolio_filter ul {
	margin: 0px 0 40px;
	padding: 0;
	list-style: none;
}
.portfolio_filter ul li {
	font-weight: 400;
	text-transform: capitalize;
	display: inline-block;
	cursor: pointer;
	padding: 6px 22px;
	font-size: 14px;
	transition: .5s;
	letter-spacing: 1px;
	border-radius: 20px;
}
.portfolio_filter .filter.active {
	color: #fff;
	background: #ED1C24;
	box-shadow: 0 0 5px #ddd;
}
.single_portfolio{
    text-align: center;
    overflow: hidden;
    position: relative;
	margin-bottom: 30px;
	
}
.single_portfolio:before,
.single_portfolio:after{
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease 0s;
}
.single_portfolio::after {
  background: rgba(24, 186, 96, 0.6) none repeat scroll 0 0;
  opacity: 1;
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0px, -100%, 0px);
  transition: transform 0.6s ease 0s;
}
.single_portfolio:hover:before{ opacity: 1; }
.single_portfolio:hover:after{ transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0px, 100%, 0px); }
.single_portfolio img{
    width: 100%;
    height: auto;
}
.single_portfolio .box-content{
    width: 100%;
    height: 100%;
    padding-top: 27%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.5s ease 0s;
}
.single_portfolio:hover .box-content{ opacity: 1; }
.single_portfolio .title{
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px;
}
.single_portfolio .post{
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}
.single_portfolio .icon{
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}
.single_portfolio .icon li{ display: inline-block; }
.single_portfolio .icon li a{
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fff;
    font-size: 18px;
    transition: all 0.3s ease 0s;
	display: inline-block;
	border-radius: 50%;
}
	.single_portfolio .icon li a:hover{
	background: #ED1C24;
	color: #fff;
}
@media only screen and (max-width:990px){
    .single_portfolio{ margin-bottom: 30px; }
}
/*----- Skill css -----*/

#skill_area{
    overflow: hidden;
}
.progressbar-title{
    font-size: 13px;
    text-transform: uppercase;
}
.progress{
    height: 5px;
    overflow: visible;
    background: #fff;
    margin-bottom: 40px;
}
.progress .progress-bar{
    position: relative;
    animation: animate-positive 2s;
	background: #ED1C24;
}
.progress .progress-icon{
    width: 30px;
    height: 30px;
    line-height: 25px;
    border-radius: 50%;
    font-size: 13px;
    position: absolute;
    top: -14px;
    right: 0;
    background: #fff;
    border-width: 3px;
    border-style: solid;
	border-color:#ED1C24; 
	color:#ED1C24;
}
.progress-value{
    font-size: 13px;
    color: #848484;
    position: absolute;
    top: 16px;
    right: 0;
}
@-webkit-keyframes animate-positive {
    0% { width: 0%; }
}
@keyframes animate-positive {
    0% { width: 0%; }
}

/*----- team css  -----*/
.our-team{
    text-align: center;
    overflow: hidden;
    position: relative;
	box-shadow: 0 0 3px #ddd;
}
.our-team img{
    width: 100%;
    height: auto;
}
.our-team .team-content {
  background: #ED1C24 none repeat scroll 0 0;
  bottom: 50%;
  color: #fff;
  left: -100%;
  margin-top: 0;
  padding: 29px 0 34px;
  position: absolute;
  transform: translateY(50%);
  transition: all 0.3s ease 0s;
  width: 100%;
  z-index: 999;
}
.our-team:hover .team-content {
  background: rgba(24, 186, 96, 0.85) none repeat scroll 0 0;
  left: 0;
}
.our-team .title {
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	margin: 0 0 7px 0;
	position: relative;
	color: #fff;
}
.our-team .title:before{
    left: 32%;
}
.our-team .title:after{
    right: 32%;
    transform: rotate(74deg);
}
.our-team .post{
    display: block;
    font-size: 13px;
    text-transform: capitalize;
    margin-bottom: 8px;
}
.our-team .social-links {
  list-style: outside none none;
  margin: 0;
  padding: 0;
  position: relative;
  right: 0;
  transition: all 0.5s ease 0s;
}
.our-team .social-links li{
    display: inline-block;
}
.our-team .social-links li a {
  color: #fff;
  display: block;
  font-size: 17px;
  margin-right: 12px;
  transition: all 0.5s ease 0s;
}
.our-team .social-links li:last-child a{
    margin-right: 0;
}
.our-team .social-links li a:hover{
    color: #222;
}
@media only screen and (max-width: 990px){
    .our-team{ margin-bottom: 30px; }
    .our-team .team-content:before,
    .our-team .team-content:after{
        height: 50px;
        top: -24px;
    }
    .our-team .title:before,
    .our-team .title:after{
        top: -85px;
        height: 102px;
    }
    .our-team .title:before{
        left: 35%;
    }
    .our-team .title:after{
        right: 35%;
    }
}
@media only screen and (max-width: 767px){
    .our-team .team-content:before,
    .our-team .team-content:after{
        height: 75px;
    }
    .our-team .team-content:before{
        transform: rotate(8deg);
    }
    .our-team .team-content:after{
        transform: rotate(-8deg);
    }
    .our-team .title:before,
    .our-team .title:after{
        width: 10px;
        top: -78px;
        height: 102px;
    }
    .our-team .title:before{
        left: 42.5%;
        transform: rotate(-82deg);
    }
    .our-team .title:after{
        right: 42.5%;
        transform: rotate(82deg);
    }
}
@media only screen and (max-width: 480px){
    .our-team .title:before,
    .our-team .title:after{
        top: -83px;
    }
}
/*----- service css -----*/

.serviceBox{
	position: relative;
	text-align: left;
    padding: 30px;
    transition: all 0.4s ease-in-out 0s;
	border: 1px solid rgba(0,0,0,0.03);
	background: #fff;
	overflow: hidden;
	margin-bottom: 30px;
}
.serviceBox:hover{
	background: #ED1C24;
	box-shadow: 0 0 20px rgba(0,0,0,0.088);
	color: #fff;
}
.serviceBox:hover .title{
	color: #fff;
}
.serviceBox .service-icon{
    font-size: 30px;
    color: #ED1C24;
    z-index: 1;
	transition: all 0.4s ease-in-out 0s;
	text-align: left;
}
.serviceBox:hover .service-icon{
	color: #fff;
	transform: rotateY(360deg);
}
.serviceBox .service-content{
	float: left;
}
.serviceBox .title{
    font-size: 18px;
    margin-bottom: 15px;
	margin-top: 17px;
    text-transform: capitalize;
    transition: all 0.4s ease-in-out 0s;
}
.serviceBox .description{
    margin: 0;
}
@media only screen and (max-width:990px){
    .serviceBox{ margin-bottom: 50px; }
}
#team_area.section_padding.section_gray {
  padding-bottom: 111px;
}
/*----- pricing css -----*/
#pricing_area.section_padding.section_gray {
  background: #fff none repeat scroll 0 0;
}
.pricingTable .heading > h3 {
  font-size: 18px;
  text-transform: uppercase;
}
.pricingTable {
  background: #f8f8f8 none repeat scroll 0 0;
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.02);
  text-align: center;
}
.pricingTable:hover .price-value,.pricingTable.active .price-value{
	border: 3px solid #fff;
    -webkit-box-shadow: 0px 0px 0px 3px #ED1C24;
	-moz-box-shadow: 0px 0px 0px 3px #ED1C24;
	box-shadow: 0px 0px 0px 3px #ED1C24;
}
.pricingTable > .pricingTable-header{

    padding-top: 40px;
}
.pricingTable-header > .price-value {
  background: #ED1C24 none repeat scroll 0 0;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  display: block;
  font-size: 32px;
  font-weight: 700;
  height: 140px;
  margin: 0 auto;
  padding: 44px 0;
  transition: all 0.4s ease 0s;
  width: 140px;
}
.price-value > .mo {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  margin-top: 3px;
}
.pricingTable-header > .heading{
    display: block;
    padding-top: 20px;
}
.heading > h3{
    margin: 0;
    text-transform: capitalize;
    font-weight: 700;
	font-size: 18px;
}
.pricingTable > .pricingContent{
    margin-top: 30px;
}
.pricingTable > .pricingContent > ul{
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}
.pricingTable > .pricingContent > ul > li {
  border-top: 0 none;
  padding: 5px 0;
}
.pricingTable-sign-up{
    padding: 40px 0;
}
.pricingTable:hover .main_bg_btn{
	background: transparent;
	color: #ED1C24;
}
li.linethro {
  color: #aaa;
  text-decoration: line-through;
}
@media screen and (max-width: 990px){
    .pricingTable{
        margin-bottom: 20px;
    }
}
/*----- testimonial css  -----*/
#testimonial_area.section_padding.bg_white {
  padding-bottom: 111px;
  padding-top: 0;
}
.testimonial{
    padding: 20px;
    margin: 20px 10px;
}
.testimonial .pic{
    width: 122px;
    height: 122px;
    float: left;
    margin-right: 50px;
    position: relative;
}
.testimonial .pic::before, .testimonial .pic::after {
  content: "";
  display: block;
  height: 50%;
  position: absolute;
  width: 100%;
}
.testimonial .pic:before{
    bottom: -10%;
    left: -10%;
    border-bottom: 3px solid #ED1C24;
    border-left: 3px solid #ED1C24;
}
.testimonial .pic:after{
    top: -10%;
    right: -10%;
    border-top: 3px solid #ED1C24;
    border-right: 3px solid #ED1C24
}
.testimonial .pic img{
    width: 100%;
    height: auto;
}
.testimonial .testimonial-content{
    display: table;
    position: relative;
}
.testimonial .testimonial-content::before {
  color: #f6f6f6;
  content: "\f10d";
  font-family: fontawesome;
  font-size: 112px;
  margin-right: 20px;
  position: absolute;
  right: 50%;
  top: 54px;
  transform: rotate(180deg);
  z-index: -1;
}
.testimonial .testimonial-title{
    font-size: 18px;
    color: #ED1C24;
    text-transform: capitalize;
}
.testimonial .post{
    font-size: 13px;
    font-weight: 600;
    color: #585f62;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    margin-left: 5px;
    padding-left: 5px;
}
.testimonial .description{
    color: #7c7c7c;
    margin-top: 12px;
    font-style: italic;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
    background-color: #ED1C24;
}
@media only screen and (max-width: 980px){
    .testimonial{
        padding: 20px 0;
        margin: 20px 15px;
    }
    .testimonial .pic{
        float: none;
    }
    .testimonial .testimonial-content{
        display: block;
        margin-top: 30px;
    }
    .testimonial .testimonial-content:before{
        z-index: 1;
        top: -200px;
    }
}
#testimonial-slider .owl-dots {
	text-align: center;
}
#testimonial-slider .owl-dots {
	text-align: center;
	bottom: -32px;
	left: 0;
	position: absolute;
	right: 0;
	margin-bottom: 50px;
}
#testimonial-slider .owl-dot {
  border: 1px solid #ED1C24;
  border-radius: 3px;
  display: inline-block;
  height: 6px;
  margin: -25px 5px;
  width: 19px;
}
#testimonial-slider .owl-dot.active {
	background: #ED1C24;
}
/*----- Blog css -----*/
#blog_area.section_padding.section_gray {
  padding-bottom: 112px;
}
a:hover, a:focus {
  color: #000;
  text-decoration: none;
}
.single_blog img {
	width: 100%;
}
.blog_details {
	padding: 25px;
	background: #fff;
	border: 1px solid #f1f1f1;
	display: inline-block;
}
.blog_details h1 {
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 2px;
  text-transform: capitalize;
  transition: all 0.6s ease 0s;
}
.single_blog:hover .blog_details h1 {
	color:#ED1C24;
}
.blog_details span {
	display: block;
	font-size: 13px;
	color: #a0a8ad;
}
.blog_details p {
	margin-top: 10px;
	margin-bottom: 0px;
}
.post_comments {
	float: left;
	margin-top: 15px;
}
.post_like {
	float: left;
	margin-top: 15px;
	margin-left: 20px;
}
.blog_media a {
	float: right;
}
.post_comments a, .post_like a {
	color: #757575;
	font-size: 17px;
}
.post_comments i, .post_like i {
	color: #ED1C24;
	margin-right: 5px;
}
.b_red_more {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  margin-top: 10px;
  text-transform: capitalize;
}
.b_red_more i {
  font-size: 11px;
  position: relative;
  top: -1px;
  vertical-align: middle;
}
/*----- Counter css -----*/
#counter_area{
	position: relative;
	padding: 80px 0;
	color: #fff;
}
#counter_area::after {
  background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.counter-items {
	position: relative;
	z-index: 10;
}
.counter_icon i {
	display: block;
	font-size: 50px;
	margin-bottom: 25px;
	color: #ED1C24;
}
.counter {
  color: #fff;
  display: inline-block;
  font-family: "PT Sans",sans-serif;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0;
  padding: 0 3px;
}
.number-desc {
	font-weight: 400;
	text-transform: capitalize;
	font-size: 14px;
	margin: 0;
	letter-spacing: 1px;
}
/*----- contact css -----*/
.contact_area {
  background: #0e0e0e none repeat scroll 0 0;
}
.single_contact_info {
  margin-bottom: 0;
  padding: 0;
  overflow: hidden;
}
.single_contact_info i {
  display: inline-block;
  float: left;
  font-size: 36px;
  height: auto;
  line-height: 60px;
  margin-bottom: 20px;
  width: auto;
}
.single_contact_info p {
  float: left;
  margin-bottom: 0;
  margin-top: 16px;
  padding-left: 16px;
}
#main_form .form-group{
	margin-bottom: 30px;
}
.cform_box {
	width: 100%;
	background: #fff;
	padding: 40px;
	border: 1px solid #fafafa;
	box-shadow: 0 0 20px rgba(0,0,0,0.02);
}
#main_form .form-control {
	font-size: 15px;
	line-height: 20px;
	padding: 12px;
	display: block;
	width: 100%;
	border: 1px solid #ddd;
	padding: 10px 15px;
	outline: none;
	box-shadow: none;
	height: 50px;
	line-height: 50px;
	transition: .5s;
	border-radius: 0;
}
#main_form .form-control:focus{
    border-color: #ED1C24;
	box-shadow:none;
}
#main_form textarea.form-control{
	height: 140px;
	line-height: 25px;
}
/*----- Client css -----*/
.client_area {
  background: #fff none repeat scroll 0 0;
  padding: 70px 0;
}
.single_client {
	
}
.single_client a{
	display: block;
	transition: .5s;
}
.single_client img {

}
/*----- Footer css -----*/
#footer_area {
  background: #ED1C24 none repeat scroll 0 0;
  color: #fff;
  padding: 30px 0;
  width: 100%;
}
.copyright {
  margin-top: 5px;
}
.ftr_social_list li {
    display: inline-block;
    margin: 0 7px;
}

.ftr_social_list a {
    display: inline-block;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #333;
    font-size: 15px;
	border-radius: 50%;
	position: relative;
	z-index: 1;
	background: #fff;
}
.ftr_social_list a:after{
	content: '';
	display: block;
	position: absolute;
	border-radius: 100%;
	width: 0;
	height: 0;
	transition: 0.3s;
	top: 0;
	left: 50%;	
	z-index: -1;
}
.ftr_social_list a:hover:after {
  width: 40px;
  height: 40px;
  margin-left: -20px;
}
.ftr_social_list a:hover{
	color: #fff;
}
.ftr_social_list a i {
}
.copyright p {
	display: inline-block;
	margin-top: 0px;
	margin-bottom: 0px;
	color: #fff;
}
.copyright a {
	color:#fff;
}
.center-block{
	float: inherit;
}
a.f_facebook:after{
    background: #5D82D1;
}
a.f_twitter:after{
    background: #40BFF5;
}
a.f_google:after{
    background: #EB5E4C;
}
a.f_linkedin:after{
    background: #238CC8;
}
a.f_youtube:after{
    background: #CC181E;
}
a.f_skype:after{
    background: #00AFF0;
}
.no_padding{
	padding: 0;
}
.owl-item .slider-animated-2 p {
  margin: 0 auto 25px;
  width: 40%;
}
.purschase-banner {
  background: rgba(0, 0, 0, 0) url("img/banner__03.png") no-repeat fixed center center / cover ;
  padding: 101px 0;
  text-align: left;
}
.purschase-banner .container > p {
  margin-bottom: 28px;
}
.purschase-banner .container > h2 {
  font-size: 33px;
  letter-spacing: 0;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.contact_area {
  background: #f9f9f9 none repeat scroll 0 0;
}
#module-maps {
  height: 450px;
  position: relative;
  width: 100%;
}
#map {
  height: 100%;
  width: 100%;
}
.content_left_title {
  margin-bottom: 30px;
}
.contact__infos {
  margin-top: 80px;
}
.contact__infos .col-sm-7.col-xs-12 {
  padding-left: 60px;
}
a#scrollUp {

  display: none;
}
a#scrollUp:hover {
  background: #444 none repeat scroll 0 0;
  border: 2px solid #444;
  color: #fff;
}
.image.display-block-image {
  margin-top: 25px;
}
.contact_area.section_padding.bg_white {
  padding: 75px 0 110px;
}
/*breadcrumb*/
.breadcrumb_area {
  background: rgba(0, 0, 0, 0) url("img/banner__03.jpg") repeat scroll center center / cover ;
  display: block;
  overflow: hidden;
  padding: 150px 0 80px;
  position: relative;
  text-align: center;
  margin-bottom: 90px;
}
.breadcrumb_area::before {
  background: #000 none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.55;
  position: absolute;
  top: 0;
  width: 100%;
}
.breadcrumb_area h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
}


#blog-post-no-sidebar .blog-post-no-sidebar .content article .article-content ul {
    margin: 27px 0 0;
    text-align: left;
}
#blog-post-no-sidebar .blog-post-no-sidebar .content article .article-content ul li {
    display: inline-block;
    margin-right: 10px;
}
#blog-post-no-sidebar .blog-post-no-sidebar .content article .article-content ul li i.fa {
  color: #ED1C24;
  width: 20px;
}
#blog-post-no-sidebar .blog-post-no-sidebar .content article .article-content h4 {
  font-size: 22px;
  margin: 19px 0 20px;
}
.leave-comment h5 {
  font-size: 22px;
  margin-bottom: 1px;
}
#blog-post-no-sidebar .blog-post-no-sidebar .content article .article-content blockquote {
    border-left: 0 solid #bebebe;
    color: #080808;
    font-style: italic;
    font-weight: 600;
    margin-left: 40px;
}
#blog-post-no-sidebar .blog-post-no-sidebar .content .leave-comment {
    margin-top: 50px;
}
#blog-post-no-sidebar .blog-post-no-sidebar .content .leave-comment input {
    border: 1px solid #bebebe;
    height: 40px;
    margin: 1% 1% 1% 0;
    padding: 5px 10px;
    width: 32%;
}
#blog-post-no-sidebar .blog-post-no-sidebar .content .leave-comment textarea {
    border: 1px solid #bebebe;
    height: 150px;
    margin: 10px 0 19px;
    padding: 5px 10px;
    width: 99%;
}
#blog-post-no-sidebar .blog-post-no-sidebar .content .leave-comment button, #contact .contact .contact-form button {
    background: transparent none repeat scroll 0 0;
    border: 1px solid #bebebe;
    font-weight: 600;
    padding: 11px 34px;
    text-transform: uppercase;
    transition: all 0.6s ease-out 0s;
}
#blog-post-no-sidebar .blog-post-no-sidebar .content .leave-comment button:hover, #contact .contact .contact-form button:hover {
    background: #3e3e3e none repeat scroll 0 0;
    border: 1px solid #3e3e3e;
    color: #fff;
}
#blog-post-no-sidebar .blog-post-no-sidebar .content article .article-content blockquote {
  background: #ED1C24 none repeat scroll 0 0;
  border-left: 3px solid #000;
  color: #fff;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 13px;
  margin-left: 40px;
}
.container.blog-post-no-sidebar {
  margin-bottom: 90px;
}
#blog-post-no-sidebar .blog-post-no-sidebar .content .leave-comment button, #contact .contact .contact-form button {
  background: #ED1C24 none repeat scroll 0 0;
  border: 1px solid #ED1C24;
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 23px;
  padding: 12px 28px 11px;
  text-transform: capitalize;
  transition: all 0.6s ease-out 0s;
}
.article-content a {
  color: #757575;
}
.article-content a:hover {
  color: #ED1C24;
}


/* Contact-message-modal  css start */
.cr-contact-message-modal {
position: fixed;
top: auto;
bottom: 0;
left: 0;
right: auto;
width: 100%;
background: rgba(25, 25, 25, 0.95);
-webkit-transform: translateY(100%);
-moz-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
transform: translateY(100%);
visibility: hidden;
opacity: 1;
z-index: -9;
-webkit-transition: 0.5s ease-out 0s;
-moz-transition: 0.5s ease-out 0s;
-ms-transition: 0.5s ease-out 0s;
-o-transition: 0.5s ease-out 0s;
transition: 0.5s ease-out 0s;
padding: 30px;
padding-right: 60px;
-webkit-box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.2);
-ms-box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.2);
-o-box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.2);
box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.2); }
.cr-contact-message-modal .form-messege {
	font-size: 14px;
	margin-bottom: 0;
	line-height: 1.3;
}
.cr-contact-message-modal .form-messege.error {
  color: #f6644F; }
.cr-contact-message-modal .form-messege.success {
  color: #47BB8F; }
.cr-contact-message-modal.is-visible {
opacity: 1;
visibility: visible;
z-index: 99999;
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0); }
.cr-contact-message-modal button {
position: absolute;
right: 25px;
top: 30px;
height: 30px;
width: 30px;
text-align: center;
line-height: 30px;
background: transparent;
color: #ffffff;
outline: none;
border: none;
font-size: 20px; }

@media only screen and (max-width: 767px) {
.cr-contact-message-modal {
padding-right: 40px; }
.cr-contact-message-modal button {
	right: 14px;
	top: 24px;
} }
  
.card-ins-cont{
  /* background-color: #c2c1c1; */
  display: flex;
  flex-direction: column;

}

.card-ins-conts{
  margin-top: -10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 12px;

}
.card-ins-conf{
  font-weight: 700;
}
.feature-section .single-item .single-content {

  padding: 28px 22px 22px 22px;

}
.card-btn-space{
  width: 100%;
  display: flex;
  justify-content: flex-end;
border-top: 1px solid rgb(200, 199, 199);
}
.card-enq-btn{
  color: white;
  background-color: #2a4669;
  padding: 4px 12px;
  width: 100%;
  max-width: 130px;
  cursor: pointer;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 600;
}
.card-in-location-box{
  background-color: #f9f9f9;
  width: 100%;
  padding: 8px;
}
.card-in-loc{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  line-height: 4px;
  padding: 0px 8px;
  font-weight: 700;
}

@media screen and (max-width:600px) and (min-width:0px){
  .why-chooseus.section_gray {
   
   margin-bottom: 0px;
  }

}

.slider_area{
  margin-top: 95px;
}

.nav >li >a{
  color: #757575;;
} 
.mobnav{
  padding-right: 0px;
  padding-left: 0px;
}
















.sowparnika-navbar {
  background-color: 
  #FFFFFF;
height: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  box-shadow: 0px 4px 30px 0px #00000014;

}
.sowparnika-title{
  font-weight: 500;
  font-size: 28px;

  
}
.sowparnika-des{
  color:  #737373;
  font-weight: 400;
  font-size: 16px;

}
.iamintrested{
  font-size: 16px;
  font-weight: 700;
}
.sowparnika-form-body {
  background-color: rgba(115, 115, 115, 0.5);

  display: flex;
  justify-content: center;
  align-items: center;
z-index: 100;
  height: 90%;
position: fixed;
width: 100%;


}

.sowparnika-form-content {
  background-color: rgb(255, 255, 255);
  width: 100%;


  max-width: 950px;
  height: 100%;
  max-height: 550px;
  display: flex;
  position: absolute;
  z-index: 100;
 
}

.sowparnika-formcontent-left {
  /* background-color: rgb(148, 148, 141); */
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

}

.sowparnika-formcontent-right {
  background-color: rgb(255, 255, 255);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sowparnika-formleft-image {
  /* height: 90%; */
  border-radius: 30px;
  width: 100%;
  max-width: 95%;
  display: flex;
  justify-content: center;
  align-items: center;

}
.sowlo{
  width: 140px;
  height: 100px;
}
.sowparnika-image {
  width: 100%;
  max-width: 400px;
  height: auto; /* Maintain aspect ratio */
  object-fit: cover; /* Ensure the image covers the container without stretching */
  border-radius: 20px;
}
.sowparnika-inputform-sec{
  /* background-color: antiquewhite; */
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sowparnikainput{
  width: 100%;
  padding: 12px;
  margin: 5px 0;
  box-sizing: border-box;

}
.sowparnika-rightformcontent{
  width: 90%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sowparnika-inputform-sec{
  display: flex;
  flex-direction: column;
  width: 100%;
max-width: 571px;
}
.iamintrested{
  margin-top: 10px;
  cursor: pointer;
  padding: 10px;
  background-color: #ED1C24;
  color: white;
  text-align: center;

}
.visitsowparnikasite{
  background-color: #0C2D62;
  color: white;
  padding: 8px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 14px;
  gap: 6px;
  border-radius: 16px;
}
.termsagreement{
  margin: 12px 0px;
  color: #70767E;
}
.visitsowparnikasite{
  margin: 4px 0px;
  padding: 8px 16px;
  cursor: pointer;
}
input{
  background-color:  #fafafa;
  border: 0px;
}
input:focus{
  background-color:  #F3F4F5;
  border: 0px;
  outline: none;
}
input ::placeholder{
  color: #737373;
  font-family: 400;
  font-size: 16px;
}
.underline{
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}
.iti {
  width: 100%;
}
.sowparnika-mobile-image{
  display: none;
}

@media screen and (max-width:1600px) and (min-width:0px){
  .sowparnika-image {
     max-width: 500px;
  }
}
/* mobile responsiveness */
.mobile-nav{
  display: none;
}

@media screen and (max-width:850px) and (min-width:0px) {
 

  .sowparnika-form-content{
    width: 90%;
    height: auto;
      display: flex;
      flex-direction: column;
      border-radius: 20px;
  }
  .sowparnika-mobile-image{
      display: block;
      width: 100%;
  }
  .sowparnika-image{
      display: none;
  }
  .sowparnika-formcontent-left{
      display: block;
  }
  .sowparnika-formcontent-right{
    padding: 10px 0px;
}
  .sowparnika-logo-image{
      display: none;
  }
  .sowparnika-rightformcontent {
padding: 14px 0px 8px 0px;
  }
  .termsagreement {
      margin: 12px 0px;
      color: #70767E;
      font-size: 12px;
  }
  .sowparnika-navbar{
      box-shadow: 0px 1px 11.7px 0px #9090902B;
      background: transparent;
      position: fixed;
      background: linear-gradient(180deg, rgba(46, 46, 46, 0.96) 0%, rgba(2, 2, 2, 0.48) 100%);


  }
  .sowparnika-form-body {

      margin-top: 0px;
   
  }
  .mobile-nav{
      display: block;
  }
  .desk-nav{
      display: none;
  }
 .visitsowparnikasite{
  line-height: 2px;
  gap: 4px;
 }
}

@media screen and (max-width:400px) and (min-width:0px) {
  .visit-sowparnika{
      font-size: 12px;
  }
}
.anchor-textdec{
  text-decoration: none;
  color: #70767E;
 
}
.iamintrested {

  background-color: #eda9ac;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
 
}
.sowparnika-kerala-visit{
  text-decoration: none;
  color: white;
}
.iamintrested:enabled {
  background-color: #ED1C24; /* Initial gray color */
}
.closeicon{
  position: absolute;
 right: 10px;
 top: 10px;
 cursor: pointer;
padding: 5px;
}
.close-mobile-icon{
display: none;
  position: absolute;
  right: 0px;
  cursor: pointer;
 padding: 5px;
}

@media screen and (max-width:850px) and (min-width:0px) {
  .closeicon{
  display: none;
  }
  .close-mobile-icon{
display: block;
  }
}
#istaDropDown{
  display: none;
}
#yaraDropDown{
  display: none;
}
#capitalDropDown{
  display: none;
}
#westholmesDropDown{
  display: none;
}
#customDropDown{
  display: none;
}
@media only screen and (max-width: 768px) {
  .slider_item1 {
      background-image: url(/img/mobileweb.jpg); /* Replace with your mobile image */
background-size: cover;
   height: 100vh;
   
  }
  .section_padding{
    padding:30px 0;
  }
  .sowparnika-form-body {

    align-items: flex-start;
   
}
.sowparnika-form-content{
  margin-top: 30px;
}
}
.owl-carousel .owl-stage {
  transform: none !important;  /* Disable the transform (sliding) */
}

.owl-carousel .owl-item {
  pointer-events: none;  /* Disable any interactions */
}
.sowparnika-form-body {
  display: none; /* Hide by default */
}

.sowparnika-form-body.active {
  display: block; /* Show when active */
}

.make-enquiry-btn{
  background-color: #ED1C24;
  padding: 14px 16px;
  color: white;
  border-radius: 24px;
  cursor: pointer;
}
.make-enquiry-btn:hover{
  color: white;
}
.confirm-submit-page{
  background-color:#E9FFF5;
  margin: 0;
  padding: 0px;
  box-sizing: border-box;
  height: 98vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0;
}
.confirm-submit-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  height: 100%;
  
}
.confirm-heading{
  font-size: 42px;
  color: #000;
}
.confirm-description{
  font-size: 23px;
  color: #000;
  text-align: center;
}
.lotte-icon{

  display: flex;
  justify-content: center;
}
.mobile-img{
  width: 100%;
  height: auto;
}
.desktop-img{
 width: 100%;
 height: auto;
}
@media screen and (max-width:700px) and (min-width:0px) {
  .confirm-heading{
    font-size: 32px;
    color: #000;
  }
  .confirm-description{
    font-size: 18px;
    color: #000;
  }
}
.sowparnikainput{
  font-weight: 600;
  color: #000;
  
}
.mobile-img{
  display: none;
  width: 100%;
  height: auto;
}
@media screen and (max-width:600px) and (min-width:0px) {

  
  .slick-slide .desktop-img {
    display: none;
  }
  .slick-slide .mobile-img{
    display: block;
  } 

  .desk-nav-logo {
    margin-top: -10px;
  }

  .mob-nav-logo {
    margin-top: -5px;
  }
}
