@import url('https://fonts.googleapis.com/css2?family=Lato&family=Montserrat:wght@300;400&family=Poiret+One&display=swap');
body,html,div,h1,h2,h3,p{
    top:0;
    bottom: 0;
   margin:0;
   padding:0;
   border: 0;
   outline: 0;
   vertical-align: baseline;
   background: transparent; 
	
}
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
  }
  #loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #fff;
    z-index: 1000;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  #loader-wrapper .loader-section.section-left {
    left: 0;
  }
  #loader-wrapper .loader-section.section-right {
    right: 0;
  }
  #loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f9c922;
    -webkit-animation: spin 2s linear infinite;
            animation: spin 2s linear infinite;
    z-index: 99999;
  }
  #loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f00000;
    -webkit-animation: spin 3s linear infinite;
            animation: spin 3s linear infinite;
  }
  #loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f9c922;
    -webkit-animation: spin 1.5s linear infinite;
            animation: spin 1.5s linear infinite;
  }
  .loaded #loader-wrapper {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition: all 0.3s 1s ease-out;
    transition: all 0.3s 1s ease-out;
  }
  .loaded #loader-wrapper .loader-section.section-left {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .loaded #loader-wrapper .loader-section.section-right {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .loaded #loader {
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  @-webkit-keyframes spin {
    0% {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
  }
  @keyframes spin {
    0% {
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg);
    }
  }
  .loaded #loader-wrapper {
    visibility: hidden;
    transform: translateY(-100%);
  }
  .loaded #loader {
    opacity: 0;
  }
.navbar{
    height:100px;
    transition:1s ease;
    background-color:#0c0c05;
    padding-top: 24px;
}

.BgColour {
    color: #fff;
    transition: all 0.5s;
    background-color: #0c0c05;
    box-shadow: 2px 4px 4px 4px rgba(0,0,0,0.2);
    height:80px;

}
nav a img{
padding:10px 10px 10px 24px;
}
.navbar-toggler{
    background:linear-gradient(45deg,#FA9229,#ff0000); 
    padding:24px;  
}
.navbar-toggler:hover{
    background:linear-gradient(45deg,#Fff,#eee);
}
.custom-toggler .navbar-toggler-icon{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(256,256,256,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.custom-toggler .navbar-toggler-icon:hover{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(256,140,41,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-collapse{
    background-color: #0c0c05;
    padding-right: 24px;
}
.navbar-collapse .navbar-nav {
    padding-left:24px;
    
    text-align: left;
}

.navbar-collapse .navbar-nav .nav-link{
    color:#fff;
    font-size: 1.125em;
    font-family: "Lato", sans-serif;
    letter-spacing: 1.25px;
    font-weight: 300;
}
.navbar-collapse .navbar-nav .nav-link:hover{
    background: -moz-linear-gradient(top, rgb(238, 233, 233) 38%, rgba(249,145,43,1) 62%);
    background: -webkit-linear-gradient(top, rgb(234, 226, 226) 38%, rgba(249,145,43,1) 62%);
    background: linear-gradient(to bottom, rgb(239, 231, 231) 38%, rgba(249,145,43,1) 62%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.header{
    padding: 200px 12px 0px;
    text-align: center;

}
.header h1{
    font-size: 3em;
    color:#Fff;
    letter-spacing: 3px;
    margin-top: 24px;
    font-weight: bold;
    font-family: 'Poiret One', sans-serif;
    background: -moz-linear-gradient(top, rgb(238, 233, 233) 38%, rgba(249,145,43,1) 62%);
    background: -webkit-linear-gradient(top, rgb(234, 226, 226) 38%, rgba(249,145,43,1) 62%);
    background: linear-gradient(to bottom, rgb(239, 231, 231) 38%, rgba(249,145,43,1) 62%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    
}
.header h2{
    font-size:1.5em;
    font-family: "Lato", sans-serif;
    color:#efefef;
    letter-spacing: 1.25px;
    margin-top: 24px;
    line-height: 35px;
}
.main-title{
    font-size: 2em;
    color:#0c0c05;
    letter-spacing: 1.5px;
    font-weight: bold;
    font-family: 'Poiret One', sans-serif;
    padding-top: 54px;

}
.sub-title{
    font-size:1.25em;
    font-family: "Lato", sans-serif;
    color:#0c0c05;
    letter-spacing: 1.25px;
    line-height: 35px;
}
.btn-group{
    padding-top:54px;
}
.btn.cust-btn{
    height:48px;
    width:200px;
    background:linear-gradient(45deg,#FA9229,#ff0000);
    color:#fff;
    font-size: 18px;
    font-family:"Lato",sans-serif !important;
    font-weight: bold;
    letter-spacing: 1.25px;
    border:0px solid;
    transition: all 500ms cubic-bezier(.17,.67,.83,.67);	
	cursor: pointer;
    margin-bottom: 54px;
}
.cust-btn:hover{
    background:transparent;
    color:#ff0000 !important;
    border-width:2px;
    border-style: solid;
    border-image:linear-gradient(45deg,#FA9229,#FF0000) 50; 
    box-shadow: 0 0.5em 0.5em -0.4em transparent;
    transition: all 500ms cubic-bezier(.17,.67,.83,.67);
}
.about-container{
    height:100%;
    background-color: #ffffff;
    padding: 54px 0px;
}
.about-container h1{
    font-size: 2em;
    color:#0c0c05;
    letter-spacing: 1px;
   
    font-family: 'Poiret One', sans-serif;
    text-align: left;
    font-weight: bolder;
    padding:24px;
}
.mini-text{
    font-size: 1em;
    color:#0c0c05;
    letter-spacing: 1.25px;
    
    font-family: 'Lato', sans-serif;
    text-align: center;
    font-weight: bold;
}
.about-container .caption{
    font-size: 1.65em;
    color:#0c0c05;
    letter-spacing: 1.25px;
    
    font-family: 'Lato', sans-serif;
    text-align: center;
    font-weight: bold;
    line-height: 50px;
}
 

.card-title{
    font-size: 1em;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    letter-spacing: 1.25px;
    color:#0c0c05;
    line-height: 30px;
}
.card-text{
    font-family: "Lato", sans-serif;
    color:#333;
    font-weight: 300;
    letter-spacing: 1.25px;
}
.story-container{
    background-color: #0c0c05;
    margin-top: 54px;
    padding:54px;
}
.paragraph{
    font-size: 1em;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    color: #333;
    text-align: justify;
    line-height: 40px;
    margin-bottom: 24px;
    padding: 24px;
    letter-spacing: 1.5px;
}
.mini-container{
    height:100%;
    margin-top: 54px;
    padding:54px;
    
    color:#fafafa;
    text-align: center;
    box-shadow: 4px 4px 4px 8px #efefef;
}

.service-container-2{
    height:100%;
    margin-top: 24px;
    background-color: #efefef;
    padding-bottom: 54px;
}

 /* services */
.services {
  position: relative;
  margin: 54px 0px;
}
.services .square {
  height: 100px;
  width: 100px;
  margin: 54px auto 54px;
  position: relative;
  border-radius: 15px;
  transform: rotate(45deg);
  padding: 10px;
  background-image:linear-gradient(45deg, #fa9229,#ff0000);
  box-shadow: 0px 0px 10px 0px #aaa;
  border: 0px solid;
}
.services .square:hover{
    background-image:linear-gradient(45deg, #fafafa,#ffffff);
    box-shadow: 4px 4px 10px 4px rgba(0,0,0,0.2);

}
.square i {
  transform: rotate(315deg);
  display: block;
  color: #eaf3fa;
  font-size: 40px;
  padding-top: 17px;
  padding-right: 14px;
}
.services .square:hover i{
    color:#ff0000
}
.services .serv h5 {  
    font-size: 1.1em;
    font-family: "Lato", sans-serif;
    color:#0c0c05;
    font-weight: 400;
    padding:12px;
    line-height: 30px;
    letter-spacing: 1.25px;
}

.choose-container{
    padding:54px 0px;
}
.choose-container .row .features .col-sm{
    margin:12px;
    color:#0c0c05;
    width:250px;
    font-size: 1.125em;
    font-weight: bold;
    font-family: "Lato", sans-serif;
    letter-spacing: 1.25px;
}
.choose-container .row .features .col-sm i{
    color:#ff0000;
    font-size: 24px;
    padding-right: 12px;
}
.team-container{
    background-color: #fff;
    padding-top: 72px;

}
.color-text{
    font-size: 1.1em;
    font-family: "Lato",sans-serif;
    font-style: italic;
    font-weight: bold;
    color: #fff;
    margin:24px 0px;
    line-height: 35px;
    letter-spacing: 1.25px;
    background-image: linear-gradient(60deg, #fa9229, #f00000);
    padding:24px;
}
.team-container .row{
    margin: 54px;
}
.team-container .row .col-sm{
   
    margin: 12px 5px;
    padding: 12px;
    background-image: linear-gradient(45deg, #eaeaea, #fefefe);
}
.team-container .row .col-sm img{
    border-radius: 150%;
    margin: 24px 0px;
}
.team-container .carousel{
    padding:24px
}
/*====================
Internal Audit
=====================*/
/* Timeline.css */
.panel{
    padding:24px
}
.timeline {
    position: relative;
    padding: 20px 0 20px;
    list-style: none;
}

.timeline:before {
    content: " ";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    margin-left: -1.5px;
    background-color: #eeeeee;
}

.timeline > li {
    position: relative;
    margin-bottom: 20px;
}

.timeline > li:before,
.timeline > li:after {
    content: " ";
    display: table;
}

.timeline > li:after {
    clear: both;
}

.timeline > li:before,
.timeline > li:after {
    content: " ";
    display: table;
}

.timeline > li:after {
    clear: both;
}

.timeline > li > .timeline-panel {
    float: left;
    position: relative;
    width: 46%;
    padding: 20px;
    border: 1px solid #d4d4d4;
    border-radius: 2px;
    -webkit-box-shadow: 0 1px 6px rgba(0,0,0,0.175);
    box-shadow: 0 1px 6px rgba(0,0,0,0.175);
    background-color: #0c0c05;
  

}

.timeline > li > .timeline-panel:before {
    content: " ";
    display: inline-block;
    position: absolute;
    top: 26px;
    right: -15px;
    border-top: 15px solid transparent;
    border-right: 0 solid #ccc;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #ccc;
}

.timeline > li > .timeline-panel:after {
    content: " ";
    display: inline-block;
    position: absolute;
    top: 27px;
    right: -14px;
    border-top: 14px solid transparent;
    border-right: 0 solid #fff;
    border-bottom: 14px solid transparent;
    border-left: 14px solid #fff;
}

.timeline > li > .timeline-badge {
    z-index: 100;
    position: absolute;
    top: 16px;
    left: 50%;
    width: 50px;
    height: 50px;
    margin-left: -25px;
    border-radius: 50% 50% 50% 50%;
    text-align: center;
    font-size: 1.4em;
    line-height: 50px;
    color: #fff;
    background-color: #999999;
}

.timeline > li.timeline-inverted > .timeline-panel {
    float: right;
}

.timeline > li.timeline-inverted > .timeline-panel:before {
    right: auto;
    left: -15px;
    border-right-width: 15px;
    border-left-width: 0;
}

.timeline > li.timeline-inverted > .timeline-panel:after {
    right: auto;
    left: -14px;
    border-right-width: 14px;
    border-left-width: 0;
}

.timeline-badge.primary {
    background-color: #2e6da4 !important;
}

.timeline-badge.success {
    background-color: #3f903f !important;
}

.timeline-badge.warning {
    background-color: #f0ad4e !important;
}

.timeline-badge.danger {
    background-color: #d9534f !important;
}

.timeline-badge.info {
    background-color: #5bc0de !important;
}

.timeline-title {
    margin-top: 0;
    color: #ff0000;
    font-family: "Poiret One", sans-serif;
    font-weight: bolder;
    line-height: 35px;
    padding:24px 12px
}

.timeline-body > p,
.timeline-body > ul {
    margin-bottom: 0;
    font-family: "Lato", sans-serif;
    font-size: 1.125em;
    color:#efefef;
    line-height: 35px;
    padding:12px 12px;
    text-align: justify;
    letter-spacing: 1.25px;
}

.timeline-body > p + p {
    margin-top: 5px;
}

@media(max-width:767px) {
    ul.timeline:before {
        left: 40px;
    }

    ul.timeline > li > .timeline-panel {
        width: calc(100% - 90px);
        width: -moz-calc(100% - 90px);
        width: -webkit-calc(100% - 90px);
    }

    ul.timeline > li > .timeline-badge {
        top: 16px;
        left: 15px;
        margin-left: 0;
    }

    ul.timeline > li > .timeline-panel {
        float: right;
    }

    ul.timeline > li > .timeline-panel:before {
        right: auto;
        left: -15px;
        border-right-width: 15px;
        border-left-width: 0;
    }

    ul.timeline > li > .timeline-panel:after {
        right: auto;
        left: -14px;
        border-right-width: 14px;
        border-left-width: 0;
    }
}
/*==================== 
  Media Audit
====================== */
.media-container{
    height:100%;
    background-color: #0c0c05;
    text-align: center;
    margin-top: 30px;
    padding-bottom: 54px;
}
.video-container{
    width: 600px;
  height: 400px; 
}
.media-second-container{
    height:100%;
    padding-top:24px;
}
.hover {
    overflow: hidden;
    position: relative;
    padding-bottom: 60%;
    padding-top: 60%;
  }
  
  .hover-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 90;
    transition: all 0.4s;
  }
  
  .hover img {
    width: 100%;
    height:100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s;
  }
  
  .hover-content {
    position: relative;
    z-index: 99;
  }
  .hover-3::after {
    content: '';
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    border: 1px solid #fff;
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 90;
    transition: all 0.3s;
    transform: scale(1.1);
    opacity: 0;
    display: block;
    opacity: 0;
  }
  
  .hover-3-content {
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 99;
    text-align: center;
  }
  
  .hover-3-description {
    opacity: 0;
    transform: scale(1.3);
    transition: all 0.3s;
    font-size: 1.125em;
    font-family: "Lato",sans-serif;
    font-weight: 600;
    letter-spacing: 1.25px;
    line-height: 30px;
  }
  
  .hover-3 img {
    width: 110%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .hover-3 .hover-overlay {
    background: rgba(0, 0, 0, 0.2);
  }
  
  .hover-3:hover img {
    width: 100%;
  }
  
  .hover-3:hover::after {
    opacity: 1;
    transform: none;
  }
  
  .hover-3:hover .hover-3-description {
    opacity: 1;
    transform: none;
  }
  
  .hover-3:hover .hover-overlay {
    background: rgba(0, 0, 0, 0.8);
  }
  .media-last-container{
    padding:24px
  }
  .client-container{
    height:100%;
    padding:54px 24px;
    text-align: center;
   
  }
  .client-container .row{
    margin-top: 54px;
    text-align: center;
    padding:0px 54px;
  }
  .client-container .col{
    padding-top: 12px;
    text-align: center;
  }
  .client-container .col img{
    width:75%;
  }
  .testimonial{
     padding:54px 24px;

  }
  .carousel{
    padding:0px 54px;
  }
  .carousel-inner{
    width:500px;
    padding: 54px 0px;
  }
 
  .carousel-para{
    line-height: 35px;
    letter-spacing: 1.25px;
    font-size: 1em;
    font-family: "Lato", sans-serif;
    color:#fff;
  }
  .carousel-client-img{
border-radius: 50%;
  }
  .carousel-client-name{
    padding-top: 24px;
    line-height: 35px;
    letter-spacing: 1.25px;
    font-size: 1.5em;
    font-family: "Lato", sans-serif;
    font-weight: bold;
    color:#fa9229
   
  
    
  }
  .carousel-client{
    line-height: 35px;
    letter-spacing: 1.25px;
    font-size: 1em;
    font-family: "Lato", sans-serif;
    color:#eee;
  }
  .carousel span{
    color:#aaa;
    font-size: 36px;
  }
.project-tab-container{
    height:100%;
}
.project-tab-container .nav-tabs .nav-link{
  background-image: linear-gradient(45deg,#fa9229, #ff0000);
  height:54px;
  padding: 0px 12px;
  margin:12px 12px;
  color:#fff;
  font-size: 1em;
  font-family: "Lato";
  font-weight: bold;
  letter-spacing: 1.25px;
  width:200px;
  border:0px solid;
    transition: all 500ms cubic-bezier(.17,.67,.83,.67);	
	cursor: pointer;

}
 
.project-tab-container .nav-tabs .nav-link:hover{
    background:transparent;
    color:#ff0000 !important;
    border-width:2px;
    border-style: solid;
    border-image:linear-gradient(45deg,#FA9229,#FF0000) 50; 
    box-shadow: 0 0.5em 0.5em -0.4em transparent;
    transition: all 500ms cubic-bezier(.17,.67,.83,.67);

}
.project-tab-container .nav-tabs .nav-link.active{
    background:transparent;
    color:#ff0000 !important;
    border-width:2px;
    border-style: solid;
    border-image:linear-gradient(45deg,#FA9229,#FF0000) 50; 
    box-shadow: 0 0.5em 0.5em -0.4em transparent;
    transition: all 500ms cubic-bezier(.17,.67,.83,.67);

}
.project-tab-container .tab-content .row{
  padding:54px;
}
.project-tab-container .tab-content .row .col{
    margin:12px 0px;
  }
.project-tab-container .tab-content .row .col img{
    width:100%;
    transition: transform .2s;
    box-shadow: 4px 4px 4px rgba(0,0,0,0.2);
  }
  .project-tab-container .tab-content .row .col img:hover{
    transform: scale(1.1); 
    box-shadow: 4px 4px 4px rgba(0,0,0,0.2);
  }




/*==================== 
  Footer 
====================== */

/* Main Footer */
footer{
    background: #0c0c05;
    padding-top: 54px;
}
footer .main-footer{  padding: 20px 0;  background: transparent;font-family: "Montserrat",sans-serif;}
footer ul{  padding-left: 0;  list-style: none;}

/* Copy Right Footer */
.footer-copyright { background: #222; padding: 5px 0;}
.footer-copyright .logo {    display: inherit;}
.footer-copyright nav {    float: right;    margin-top: 5px;}
.footer-copyright nav ul {  list-style: none; margin: 0;  padding: 0;}
.footer-copyright nav ul li { border-left: 1px solid #505050; display: inline-block;  line-height: 12px;  margin: 0;  padding: 0 8px;}
.footer-copyright nav ul li a{  color: #969696;}
.footer-copyright nav ul li:first-child { border: medium none;  padding-left: 0;}
.footer-copyright p { color: #969696; margin: 2px 0 0;}

/* Footer Top */
.footer-top{  background: #252525;  padding-bottom: 30px; margin-bottom: 30px;  border-bottom: 3px solid #222;}

/* Footer transparent */
footer.transparent .footer-top, footer.transparent .main-footer{  background: transparent;}
footer.transparent .footer-copyright{ background: none repeat scroll 0 0 rgba(0, 0, 0, 0.3) ;}

/* Footer light */
footer.light .footer-top{ background: #f9f9f9;}
footer.light .main-footer{  background: #f9f9f9;}
footer.light .footer-copyright{ background: none repeat scroll 0 0 rgba(255, 255, 255, 0.3) ;}

/* Footer 4 */
.footer- .logo {    display: inline-block;}

/*==================== 
  Widgets 
====================== */
.widget{  padding: 20px;  margin-bottom: 40px;}
.widget.widget-last{  margin-bottom: 0px;}
.widget.no-box{ padding: 0; background-color: transparent;  margin-bottom: 40px;
  box-shadow: none; -webkit-box-shadow: none; -moz-box-shadow: none; -ms-box-shadow: none; -o-box-shadow: none;}
.widget.subscribe p{  margin-bottom: 18px;}
.widget li a{ color: #fa9229;}
.widget li a:hover{ color: #4b92dc;}
.widget-title {margin-bottom: 20px;}
.widget-title span {background: #839FAD none repeat scroll 0 0;display: block; height: 1px;margin-top: 25px;position: relative;width: 20%;}
.widget-title span::after {background: inherit;content: "";height: inherit;    position: absolute;top: -4px;width: 50%;}
.widget-title.text-center span,.widget-title.text-center span::after {margin-left: auto;margin-right:auto;left: 0;right: 0;}
.widget .badge{ float: right; background: #7f7f7f;}

.typo-light h1, 
.typo-light h2, 
.typo-light h3, 
.typo-light h4, 
.typo-light h5, 
.typo-light h6,
.typo-light p,
.typo-light div,
.typo-light span,
.typo-light small{  color: #fff;}

ul.social-footer2 { margin: 0;padding: 0; width: auto;}
ul.social-footer2 li {display: inline-block;padding: 0;}
ul.social-footer2 li a:hover {background-color:#ff8d1e;}
ul.social-footer2 li a {display: block; height:30px;width: 30px;text-align: center;}
.btn{background-color: #ff8d1e; color:#fff;}
.btn:hover, .btn:focus, .btn.active {background: #4b92dc;color: #fff;
-webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
-ms-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
-o-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
-webkit-transition: all 250ms ease-in-out 0s;
-moz-transition: all 250ms ease-in-out 0s;
-ms-transition: all 250ms ease-in-out 0s;
-o-transition: all 250ms ease-in-out 0s;
transition: all 250ms ease-in-out 0s;

}





