
body {
  background: #fff;
  color: #444;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #f30070;
  transition: 0.5s;
  text-decoration: none;
}
    


a:hover, a:active, a:focus {
  color: #ff09d6;
  outline: none;
  text-decoration: none;
}
p {
  padding: 0;
  margin: 0 0 10px 0;
  text-align: justify;
}
h1{
    text-align:center;
        font-size: 35px;
}
/* top bar */
#topbar {
  padding: 0 0 10px 0;
  font-size: 14px;
  transition: all 0.5s;
}

@media (max-width: 991px) {
  #topbar {
    display: none;
  }
}

#topbar .social-links {
  text-align: right;
}

#topbar .social-links a {
  color: #535074;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
}

#topbar .social-links a:hover {
  color: #1bb1dc;
}

#topbar .social-links a:first-child {
  border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 110px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 20px 0;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header.header-scrolled, #header.header-inner-pages {
  height: 78px;
  padding: 15px 0;
  background-color: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

#header.header-scrolled #topbar, #header.header-inner-pages #topbar {
  display: none;
}

@media (max-width: 991px) {
  #header {
    height: 70px;
    padding: 15px 0;
  }
}

#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  #header .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #413e66;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: -17px 0;
  max-height: 70px;
}

.main-pages {
  margin-top: 60px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.main-nav {
  /* Drop Down */
  /* Deep Drop Down */
}

.main-nav, .main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.main-nav a {
  display: block;
  position: relative;
  color: #413e66;
  padding: 10px 9px;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
}

.main-nav a:hover, .main-nav .active > a, .main-nav li:hover > a {
  color: #cc045d;
  text-decoration: none;
}

.main-nav .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% - 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
  overflow: scroll;
  height: 268px;
}
.main-nav .drop-down ul.full{
    height:512px !important;
}

.main-nav .drop-down ul::-webkit-scrollbar {
    display: none;
}
.main-nav .drop-down ul {
    -ms-overflow-style: none;
    scrollbar-width: none;}

.main-nav .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.main-nav .drop-down li {
  min-width: 180px;
  position: relative;
}

.main-nav .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #000;
}

.main-nav .drop-down ul a:hover, .main-nav .drop-down ul .active > a, .main-nav .drop-down ul li:hover > a {
  color: #cc065f;
}

.main-nav .drop-down > a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 10px;
}

.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.main-nav .drop-down .drop-down > a {
  padding-right: 35px;
}

.main-nav .drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: #cc045d;
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #8dc2fa;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  margin: 57px 18px 0 0;
  color: #065e77;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: #23212100;
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

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

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

 
 
/* Section with background
--------------------------------*/
.section-bg {
  background: #f5f8fd;
}

 
 
 
 
 
 
 
 

 
 
 

 

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 0 0 4px 0;
  font-size: 14px;
  background: #fff;
}

#footer .footer-top {
  padding: 15px 0 0px 0;
  background: #f5f8fd;
}

#footer .footer-top .footer-info {
  margin-bottom: 0px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: #413e66;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#footer .footer-top .footer-info p {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #535074;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #cb075e;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #0a98c0;
  color: #fff;
}

@media (max-width: 574px) {
  #footer .footer-top .social-links a {
    margin-bottom: 25px;
  }
}

#footer .footer-top h4 {
  font-size: 20px;
  font-weight: bold;
  color: #413e66;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul li {
  padding: 6px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #000;
  font-weight:bold;
}

#footer .footer-top .footer-links ul a:hover {
  color: #1bb1dc;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}
 

 

  

#footer .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

#footer .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#footer .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#footer .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#footer .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

#footer .php-email-form input, #footer .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #dce1ec;
  font-size: 14px;
}

#footer .php-email-form input::focus, #footer .php-email-form textarea::focus {
  background-color: #1bb1dc;
}

#footer .php-email-form input {
  padding: 20px 15px;
}

#footer .php-email-form textarea {
  padding: 12px 15px;
}

#footer .php-email-form button[type="submit"] {
  background: #ca075f;
  border: 0;
  border-radius: 3px;
  padding: 8px 30px;
  color: #fff;
  transition: 0.3s;
}

#footer .php-email-form button[type="submit"]:hover {
  background: #0a98c0;
  cursor: pointer;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#footer .copyright {
  text-align: center;
  padding-top: 0px;
  color: #535074;
  font-size: 15px;
}

#footer .credits {
  text-align: center;
  font-size: 14px;
  padding-top: 4px;
  color: #8582a8;
}

#footer .credits a {
  color: #1bb1dc;
}

#footer .credits a:hover {
  color: #0a98c0;
}

.carousel{
  padding-top: 70px;
}

.img-item img{
  height: 100%;
  width: 100%;
}
.content-item{
  text-align: justify;
}
.text-center{
  text-align: center !important;
}

 
 
 
 
.hide{
    display:none;
}
.itemtype{
    display:none;
}
    
.top-call-div .top-call{
     position: absolute;
    top: 22%;
    left: 10%;
    /*border: 1px solid black;*/
    padding: 18px;
        background: #940645;
    font-size: 25px;
    font-weight: 500;
    color: #dbe62a;
    }
.top-call a{
    color:#fcff2e;
}    
    @media (max-width: 992px) {
       .top-call-div .top-call{
    position: absolute;
    top: 40%;
    left: 0%;
    /* border: 1px solid black; */
    padding: 6px;
    background: #940645;
    font-size: 16px;
    font-weight: 600;
    color: #dbe62a;
    }
    }
    
.top-header-bar{
        text-align:center;
    }
    
.top-header-bar p{
    text-align:center;
        }
    
.top-header-bar p{
    margin: 0 0 0px 0 !important;
    color: white;
    font-weight: 700;
    }
.top-header-bar p a{
    color: #ffe52f;
    font-weight: 700;
    }
    
@media (max-width: 992px) {
    #header.header-scrolled, #header.header-inner-pages {
        height: 102px;
    }
     }
    
#top-header-bar{
        background: #cc045d;
    margin-top: -15px;
}
#success{
    background:#1d8a1d;
    color:#fff;
    font-size: 30px;
}


#error{
    background:#b11717;
    color:#fff;
    font-size: 30px;
}

.category-heading{
        position: absolute;
    bottom:0px;
    background: radial-gradient(#cc045d, transparent);
    width: 91%;
    padding-top: 11px;
    color:#ffdf00;
}
.category-heading h4{
        font-weight: 800 !important;
    font-size: 22px !important;
 
}

.main-nav li a{
color: #cc045d;
  text-shadow: -1px 0 #cc045d, 0 1px #cc045d, 1px 0 #cc045d, 0 -1px #cc045d;
}

/*.img-item img{
    height:20%;
    width:60%; 
}*/

.list-col{
border: 3px solid #cc045d;
    padding: 3px;
}

.list-col ul{    list-style: none;
    background: #cc045d;
}
.list-col ul li a{
    color:#f2ff2f;
    font-weight:900;
}
.list-col h4{
       text-align: center;
    background: #cc045d;
    color: #fff;
}
.list-col ul{
    list-style:none;
}

.services .category3-container .row .category3-col img{
     width: 100%;   
     height:80%;
}
.services .category3-container .row .category3-col .category3-heading{
        position: absolute;
    bottom:0px;
    background: radial-gradient(#cc045d, transparent);
    width: 85%;
    padding-top: 11px;
    color:#ffdf00;
}
.category3-container{
    background:#cc045d;
}
.h-white{
    color:#fff !important;
}

.whatsapp-img{
       height: 62px;
    width: 61px;
    position: fixed;
    bottom: 23px;
    left: 15px;
}

.model-row .model-col .model-inner-div{
   border: 10px solid #cc045d;
       background: #cc045d;
       
}
 
 .model-row .model-col .model-inner-div img{
     width:100%;
     height:100%;
     box-shadow: 0px -1px 15px 2px #fddc31;
 }
 .model-row .model-col .model-inner-div p{
        font-weight: 1000;
    color: #ffe52f;
    text-align: center;
    line-height: 10px;
    margin-top: 10px;
 }
 
.footer-contect-ul{
    list-style: none;
}
.footer-contect-li{
    display:inline;
}
 
.footer-contect-ul .footer-contect-li .whatsapp img{
     height:80px;
     position: fixed;
    bottom: 23px;
    left: 15px;
    display:inline;
 }
 .footer-contect-ul .footer-contect-li .phone img{
     height:80px;
     position: fixed;
    bottom: 23px;
    left: 100px;
    display:inline;
 }
 .display-none{
     display:none;
 }
 .cg-details{
         line-height: 14px;
    font-weight: bold;
 }
 .blog-row .blog-col .blog-inner-div{
   border: 10px solid #cc045d;
       background: #cc045d;
        margin: 5px;
}
 
 .blog-row .blog-col .blog-inner-div img{
     width:100%;
     height:100%;
     box-shadow: 0px -1px 15px 2px #fddc31;
 }
 .blog-row .blog-col .blog-inner-div p{
        font-weight: 1000;
    color: #fff !important;
    text-align: justify;
    margin-top: 10px;
 }
  .blog-row .blog-col .blog-inner-div h4{
      color:#fff;
  }
    .blog-row .blog-col .blog-inner-div p a{
        color:yellow;
    }
        .blog-row .blog-col .blog-inner-div span{
            color:#fff;
        }
 
 #main .blog .container-fluid .blog-row .latest-blog-sidebar-col .inner-latest-blog-sidebar ul{
     list-style:none;
     padding: 0px;
     
 }
  #main .blog .container-fluid .blog-row .latest-blog-sidebar-col .inner-latest-blog-sidebar ul li{
      background:#cc045d;
      margin-bottom: 3px;
          padding: 6px;
  }
    #main .blog .container-fluid .blog-row .latest-blog-sidebar-col .inner-latest-blog-sidebar ul li a{
        color:#fff;
        font-size: 16px;
    font-weight: 600;
    }
      #main .blog .container-fluid .blog-row .blog-heading{
          background:#cc045d;
          color:#fff;
          text-align:center;
          margin-top:13px;
          padding:7px;
      }
      .blog-main{
              padding-top: 70px;
      }
    @media screen and (min-width:320px) and (max-width:480px){
       .blog-main{
              padding-top: 95px;
      } 
    }
 
 
 
 @media (min-width: 992px){
.d-lg-none {
    display: none!important;
}
}


/*@media screen and (min-width:320px) and (max-width:440px){
.banner{
width:100%;
height:260px;
}
}

@media screen and (min-width:991px) and (max-width:1000px){
.banner{
width:100%;
height:420px;
}
}
@media screen and (min-width:1001px) and (max-width:1100px){
.banner{
width:100%;
height:450px;
}
}
@media screen and (min-width:1101px) and (max-width:1200px){
.banner{
width:100%;
height:500px;
}
}
@media screen and (min-width:1201px) and (max-width:1300px){
.banner{
width:100%;
height:540px;
}
}
@media screen and (min-width:1301px) and (max-width:1400px){
.banner{
width:100%;
height:565px;
}
}
@media screen and (min-width:1401px) and (max-width:1500px){
.banner{
width:100%;
height:600px;
}
}
 
 .banner .img{
 width:100%;
 height:auto;}
.banner{
display:block;
 width:100%;
height:490px;

}
 
 */