body {
  background: #fff;
    color: #414141;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
}


a {
  color: #2dc997;
}

a:hover, a:active, a:focus {
  color: #2dca98;
  outline: none;
  text-decoration: none;
}

p {
    padding: 0;
    line-height: 26px;
    font-size: 14px;
	color: #666666;
  
}

h1, h2, h3, h4, h5, h6 { font-family: 'Roboto', sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Prelaoder */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff url("../img/preloader.svg") no-repeat center center;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  padding: 6px 12px 9px 12px;
  font-size: 16px;
  border-radius: 2px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

.back-to-top:focus {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #2dc997;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    padding: 8px 0;
    height: 39px;
    position: relative;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 997;
    background: #d95889;
    border-bottom: 1px solid #d95889;
    box-shadow:0px 2px 4px 0px #00000040;
}

#header #logo {
  float: left;
}

#header #logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 6px 0;
  line-height: 1; font-family: 'Roboto', sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 a, #header #logo h1 a:hover {
  color: #fff;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 26px;
  }
  #header #logo img {
    max-height: 40px;
  }
}

#header.header-fixed {
    background: #d95889;
    height: 42px;
    position: fixed;
    top: 0;
    border: none;
	padding: 10px 0;
    z-index: 1000;
    transition: 0.5s ease;
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}
.header-fixed #nav-menu-container {
    float: none;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
  float: right;
  margin: 0;
}

@media (max-width: 768px) {
  #nav-menu-container {
    display: none;
  }
}

/* Nav Meu Styling */
.nav-menu a {
    padding: 0 8px 10px 10px;
    text-decoration: none;
    display: inline-block;
    color: #fff; font-family: 'Roboto', sans-serif;
    font-weight: 400;
    text-transform: capitalize;
    font-size: 14px;
    outline: none;
	    letter-spacing: 0.05em;
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .menu-active > a:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.nav-menu ul {
  margin: 0px 0 0 0;
  border: 1px solid #e7e7e7;
}

.nav-menu ul li {
  background: #fff;
}

.nav-menu ul li:first-child {
  border-top: 0;
}

.nav-menu ul li a {
    color: #545453;
    transition: 0.3s;
    display: block;
    font-size: 14px;
    text-transform: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    padding: 7px 8px;
    border-bottom: 1px dotted #d95889;
}

.nav-menu ul li a:hover {
  background: #d95889;
  color: #fff;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #fff;
}

@media (max-width: 768px) {
  #mobile-nav-toggle {
    display: inline;
  }
}

/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(52, 59, 64, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 16px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #2dc997;
}

#mobile-nav ul .menu-item-active {
  color: #2dc997;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(52, 59, 64, 0.9);
  display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

#topbar{
    background: linear-gradient( 180deg, #fffcc708, #f9f6bd);
    position: relative;
}

#topbar .logo{
    position: absolute;
    z-index: 999;
    background: #d95889;
    border-top: 2px solid #ff9800;
    box-shadow: 0px 4px 5px #585657b5;
    padding: 15px 0px;
}
#topbar .logo img{
	width: 150px;
}

#topbar h1{
    font-size: 35px;
    font-weight: 600;
    margin: 0;
    padding: 15px 0 0px;
	color:#e67415;
    --color1: #d95889;
    --color2: #545453;
  	background: repeating-linear-gradient(
    45deg,
    var(--color1),
    var(--color1) 30px,
    var(--color2) 30px,
    var(--color2) 60px
  );
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  animation: 40s linear 0s infinite move;
}
@keyframes move {
  from {
    background-position: 0px;
  }
  to {
    background-position: 1000px;
  }
}
#topbar h5{
	font-size: 20px;
    font-weight: 400;
}
#topbar .god_img{
    float: right;
    width: 100px; 
	 -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-animation: swinging 1.5s ease-in-out forwards infinite;
    animation: swinging 1.5s ease-in-out forwards infinite;
}
 @-webkit-keyframes swinging{
       0%{-webkit-transform: rotate(5deg);}
       50%{-webkit-transform: rotate(-2deg)}
       100%{-webkit-transform: rotate(5deg);}
   }
    
   @keyframes swinging{
       0%{transform: rotate(1deg);}
       50%{transform: rotate(-2deg)}
       100%{transform: rotate(1deg);}
   }
#topbar .btns {
    float: left;
    margin: 14px 0 0;
    width: 120px;
}
#topbar .btns ul li a{
	color:white;
}
#topbar .blink-bg {
    color: #fff;
    padding: 5px 11px;
    display: block;
    border-radius: 20px;
    animation: blinkingBackground 2s infinite;
}
@keyframes blinkingBackground{
		0%		{ background-color: #d95889;}
		25%		{ background-color: #545453;}
		50%		{ background-color: #d95889;}
		75%		{ background-color: #545453;}
		100%	        { background-color: #d95889;}
	}
#topbar .blink-bg_II {
    color: #fff;
    padding: 5px 11px;
    display: block;
    border-radius: 20px;
    animation: blinkingBackground_II 2s infinite;
}
@keyframes blinkingBackground_II{
		0%		{ background-color: #545453;}
		25%		{ background-color: #d95889;}
		50%		{  background-color: #545453;}
		75%		{ background-color: #d95889;}
		100%	        {background-color: #545453; }
	}

#topbar ul{
	float: right;
	text-align: right;
    margin: 0;
    padding: 7px 3px 0 0px;   
}

#topbar ul li{
    font-size: 14px;
}

#topbar .fa {
    padding: 7px;
    font-size: 14px;
    width: 30px;
    text-align: center;
    text-decoration: none;
    margin: 2px 2px;
    border-radius: 50%;
}
#topbar .fa:hover {
    opacity: 0.7;
}

#topbar .fa-facebook {
  background: #3B5998;
  color: white;
}

#topbar .fa-twitter {
  background: #55ACEE;
  color: white;
}

#topbar .fa-google {
  background: #dd4b39;
  color: white;
}

.skitter .container_skitter .image_main {
    width: 100%!important;
    height: 526px!important;
	object-fit:cover!important;
}

.skitter .info_slide_dots{
    bottom: 4%!important;
}

.skitter {
	height: 526px!important;
	width: 100%;
}

.skitter .info_slide_dots .image_number{
	width: 18px;
    height: 3px;
}

.skitter .box_clone img {
    object-fit: cover;
}

.skitter:after {
	content:'';
    position: absolute;
	left:0;
    bottom: 0;
  	right:0;
    background: linear-gradient(transparent, #000);
    width: 100%;
	height: 150px;
	z-index: 99;
}
#about .about{
    padding: 50px 38px 50px 50px;
    position: relative;
    z-index: 99;
    background: #fff;
    box-shadow: 0 2px 20px rgb(34 30 31 / 40%);
}
#about .about h3{
	font-size: 32px;
    margin-bottom: 20px;
    padding-top: 22px;
    color: #2d3e50;
    font-weight: 700;
    max-width: 456px;
    line-height: 1.2;
    text-transform: capitalize;
}
#about .about h3 span{
    color: #d95889;
}
.btn{
    padding: 6px 21px;
    box-shadow: 0 0 5px #737373;
    color: #414141;
    font-size: 14px;
    font-weight: 400;
	border-radius:20px;
	transition:all ease 0.5s;
}
.btn:hover{
    box-shadow: none;
}
.btn-warning {
    color: #ffffff;
    background-color: #e57415;
    border-color: #e57415;
}
#about .about img{
    box-shadow: 0 2px 20px rgb(34 30 31 / 40%);
}
#about {
    margin-bottom: 100px;
}

#messages{
    padding: 75px 0 20px;
    background-image: url(../images/7.png);
    background-size: cover;
    background-position: center center;
}
.box{
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    position: relative;
    box-shadow: 2px 5px 25px rgb(34 30 31 / 25%);
    margin: 25px;
}
.msg_text:before {
    content: "''";
    position: absolute;
    top: 35px;
    left: 20px;
    font-size: 70px;
}
.heading{
    background: #f5f5f5f5;
    padding: 20px 42px;
    padding-bottom: 20px;
}
.heading img{
    float: right;
    width: 184px;
    height: 212px;
    position: relative;
    top: -45px;
    border: 5px solid #d95889;
    /* border-radius: 100%; */
    z-index: 9;
    object-fit: cover;
}
.msg_text{
    padding: 25px 40px 0 40px;
    font-size: 14px;
    line-height: 26px;
}
.heading h5{
    margin: 0;
    font-size: 27px;
    font-weight: 500;
    color: #d95889;
}
.heading h6{
    margin: 6px 0;
    font-size: 16px;
    font-weight: 400;
}
#mobileapp_dwn h4 {
    font-size: 40px;
    font-weight: 700;
    color: #d95889;
    margin: 0;
    text-shadow: 0px 3px 3px #a9a1a1;
}
#mobileapp_dwn h4 span {
    font-size: 45px;
    color: #fff;
}
#mobileapp_dwn h6 {
    font-size: 20px;
    color: white;
    font-weight: 500;
}
#mobileapp_dwn img {
    height: 65px;
}
#mobileapp_dwn{
    padding: 50px 0;
background: linear-gradient(#000000ad, #0a0a0a82), url(../images/app_back.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}
#footer h5{
    font-size: 26px;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 400;
}
.botttom-nav {
    margin: 35px 0 45px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 0;
}
.botttom-nav ul {
    text-align: center;
}
.botttom-nav ul li {
    list-style: none;
    display: inline-block;
    margin: 10px 20px;
}
.botttom-nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    letter-spacing: 2px;
}
#footer {
    background: url(../images/bg.jpg) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    text-align: center;
}
#footer p{
    color: #e0e0e0;
    margin: 0;
    letter-spacing: 1px;
    font-size: 15px;
    line-height: 1.9;
}
.sub-footer {
    padding: 4em 0;
}
.footer-thanks h3 {
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 600;
    font-style: italic;
}
.footer-copy-right {
    padding: 1em 0;
    background: rgba(0, 0, 0, 0.72);
}
.allah-copy {
    float: left;
}
.footer-copy-right p {
    padding: 1em 0;
    text-align: center;
    color: #fff;
    margin: 0;
    letter-spacing: 2px;
    font-size: 14px;
}
.footer-copy-right p a {
    text-decoration: none;
    color: #EA3621;
}
.footercopy-social {
    float: right;
}
.footercopy-social ul {
    padding: 0;
    margin: 0;
    margin-top: 8px;
}
.footercopy-social ul li {
    display: inline-block;
}
.footercopy-social ul li a {
    color: #333;
    text-align: center;
}
.footercopy-social ul li a span {
    height: 40px;
    width: 40px;
    line-height: 40px;
    color: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}
.footercopy-social ul li a span.fa.fa-facebook {
    background: #3b5998;
}
.footercopy-social ul li a span.fa.fa-twitter {
    background: #1da1f2;
}
.footercopy-social ul li a span.fa.fa-rss {
    background: #f26522;
}
.footercopy-social ul li a span.fa.fa-vk {
    background: #45668e;
}
.footercopy-social ul li a span.fa.fa-facebook:hover {
    opacity: 0.8;
}
#breadcrumb{
padding: 30px 0;
    background: url(../images/bg.jpg) no-repeat center;
    background-size: cover;
    color: white;
}
#content{
    padding: 70px 0;
}
.phoogallery h5{
    font-size: 28px;
    text-transform: uppercase;
    text-align: center;
    color: #d95889;
    font-weight: 700;
    padding: 40px 0;
}
#photogallery .owl-item{
     overflow:hidden;
     
}
#photogallery .owl-item:hover img{
    transform:scale(1.1);
}
#photogallery img {
    height: 190px;
    width: 100%;
    object-fit: cover;
    border: 4px solid black;
    box-shadow: 0px 0px 9px white;
    transition:0.5s all ease;
}

.gallery_box {
    box-shadow: 0 0 5px #676767;
    background: #d95889;
}
.gallery_box img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}
.gallery_box h1 {
    font-size: 20px;
    letter-spacing: .01em;
    margin: 0;
    font-weight: 700;
    color: white;
    text-align: left;
    text-transform: uppercase;
}
.gallery_box h6 {
    font-size: 14px;
    color: white;
    font-weight: 500;
    margin: 0;
}
#lightGallery img{
    width: 100%;
    object-fit: cover;
    height: 180px;
    box-shadow: 0 0 5px 0 #989a9c;
    border: 3px solid #FFF;
    border-radius: 3px;
	    margin-bottom: 15px;
}
.newsticker{
background: #d95889;
    z-index: 99;
    position: relative;
    padding: 6px 6px;
}

.leftHeading h6{
    margin: 0;
    background: white;
    padding: 9px 22px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
}
.aboutSection{
    margin-top: -53px;
}
#newsSliderTop h5{
    margin: 0;
    color: white;
    font-size: 17px;
    margin-top: 0px;
}
#newsSliderTop h5 span{
     color: white;
    font-size: 12px;
    display: block;
    margin-bottom: 4px;
}
#newsSliderTop a{
     background: white;
    color: black;
    border-radius: 23px;
    padding: 2px 12px;
    margin-left: 36px;
	display: inline-block;
}
.about_img:before {
    content: '';
    position: absolute;
    border: 5px solid white;
    left: 45px;
    right: 45px;
    top: 30px;
    bottom: 30px;
}
@media (max-width: 768px) {
    
#mobile-nav-toggle {
    
    background: #595455;
}
#topbar .logo {
    position: relative;
     background: none; 
     border-top: none; 
    box-shadow:none; 
     padding: 0; 
}
#topbar h1 {
    font-size: 26px;
    /* padding: 15px 0 0px; */
  
}
#topbar h5 {
    font-size: 20px;
    margin: 0;
}
#topbar .god_img{
    display:none;
}
#header {
    display:none;
}
.skitter {
    height: 270px!important;
}
.btns_left {
   position:relative!important;
    width: 100%!important;
    top: 0!important;
    left: 0!important;
    margin: 0 auto!important;
    text-align: center!important;
}
#topbar {
    text-align: center;
}
.skitter .container_skitter .image_main {
    height: 270px!important;
}
.aboutSection {
    margin-top: 0;
}
.set_img_left {
    display: none;
}
#slider .blink-bg {
    margin: 10px 20px;
}
.heading {
    padding: 30px 42px;
}
}