
img{
    width:100%;
}
/*----------------start testimonial-----------------*/

.testimonial-section2{
  /*height: 600px;*/
  position: relative;
  padding: 50px 0;
  /*background-color: #e91c5e;*/
   background: linear-gradient(rgba(0, 102, 142, 0.73), rgba(0, 102, 142, 0.8)), url(images/testimonial-image2.png) no-repeat scroll center top;
   background-position: center;
    background-size: cover;
    /*margin-top:50px;*/
}

.testim .wrap {
    position: relative;
    width: 100%;
    max-width: 1020px;
    padding: 40px 20px;
    margin: auto;
}

.testim .arrow {
    display: block;
    position: absolute;
    color: #eee;
    cursor: pointer;
    font-size: 2em;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s ease-in-out;    
    -ms-transition: all .3s ease-in-out;    
    -moz-transition: all .3s ease-in-out;    
    -o-transition: all .3s ease-in-out;    
    transition: all .3s ease-in-out;
    padding: 5px;
    z-index: 22222222;
}

.testim .arrow:before {
    cursor: pointer;
}

.testim .arrow:hover {
    color: #2b288d;
}
    

.testim .arrow.left {
    left: 10px;
}

.testim .arrow.right {
    right: 10px;
}

.testim .dots {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 60px;
    left: 0;
    display: block;
    z-index: 3333;
    height: 12px;
}

.testim .dots .dot {
    list-style-type: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #eee;
    margin: 0 10px;
    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;    
    -ms-transition: all .5s ease-in-out;    
    -moz-transition: all .5s ease-in-out;    
    -o-transition: all .5s ease-in-out;    
    transition: all .5s ease-in-out;
    position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
    background: #2b288d;
    border-color: #2b288d;
}

.testim .dots .dot.active {
    -webkit-animation: testim-scale .5s ease-in-out forwards;   
    -moz-animation: testim-scale .5s ease-in-out forwards;   
    -ms-animation: testim-scale .5s ease-in-out forwards;   
    -o-animation: testim-scale .5s ease-in-out forwards;   
    animation: testim-scale .5s ease-in-out forwards;   
}
    
.testim .cont {
    position: relative;
    overflow: hidden;
}

.testim .cont > div {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 70px 0;
    opacity: 0;
}

.testim .cont > div.inactive {
    opacity: 1;
}
    

.testim .cont > div.active {
    position: relative;
    opacity: 1;
}
    

.testim .cont div .img img {
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
}

.testim .cont div .h4 {
    color: #fff;
    font-size: 1.2em;
    margin: 15px 0;
}

.testim .cont div p {
    font-size: 1.15em;
    color: #eee;
    width: 80%;
    margin: auto;
}

.testim .cont div.active .img img {
    -webkit-animation: testim-show .5s ease-in-out forwards;            
    -moz-animation: testim-show .5s ease-in-out forwards;            
    -ms-animation: testim-show .5s ease-in-out forwards;            
    -o-animation: testim-show .5s ease-in-out forwards;            
    animation: testim-show .5s ease-in-out forwards;            
}

.testim .cont div.active .h4 {
    -webkit-animation: testim-content-in .4s ease-in-out forwards;    
    -moz-animation: testim-content-in .4s ease-in-out forwards;    
    -ms-animation: testim-content-in .4s ease-in-out forwards;    
    -o-animation: testim-content-in .4s ease-in-out forwards;    
    animation: testim-content-in .4s ease-in-out forwards;    
}

.testim .cont div.active p {
    -webkit-animation: testim-content-in .5s ease-in-out forwards;    
    -moz-animation: testim-content-in .5s ease-in-out forwards;    
    -ms-animation: testim-content-in .5s ease-in-out forwards;    
    -o-animation: testim-content-in .5s ease-in-out forwards;    
    animation: testim-content-in .5s ease-in-out forwards;    
}

.testim .cont div.inactive .img img {
    -webkit-animation: testim-hide .5s ease-in-out forwards;            
    -moz-animation: testim-hide .5s ease-in-out forwards;            
    -ms-animation: testim-hide .5s ease-in-out forwards;            
    -o-animation: testim-hide .5s ease-in-out forwards;            
    animation: testim-hide .5s ease-in-out forwards;            
}

.testim .cont div.inactive .h4 {
    -webkit-animation: testim-content-out .4s ease-in-out forwards;        
    -moz-animation: testim-content-out .4s ease-in-out forwards;        
    -ms-animation: testim-content-out .4s ease-in-out forwards;        
    -o-animation: testim-content-out .4s ease-in-out forwards;        
    animation: testim-content-out .4s ease-in-out forwards;        
}

.testim .cont div.inactive p {
    -webkit-animation: testim-content-out .5s ease-in-out forwards;    
    -moz-animation: testim-content-out .5s ease-in-out forwards;    
    -ms-animation: testim-content-out .5s ease-in-out forwards;    
    -o-animation: testim-content-out .5s ease-in-out forwards;    
    animation: testim-content-out .5s ease-in-out forwards;    
}

@-webkit-keyframes testim-scale {
    0% {
        -webkit-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -webkit-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -webkit-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -webkit-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-moz-keyframes testim-scale {
    0% {
        -moz-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -moz-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -moz-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -moz-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-ms-keyframes testim-scale {
    0% {
        -ms-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -ms-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -ms-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -ms-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-o-keyframes testim-scale {
    0% {
        -o-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -o-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -o-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -o-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-webkit-keyframes testim-content-in {
    from {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -webkit-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-moz-keyframes testim-content-in {
    from {
        opacity: 0;
        -moz-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -moz-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-ms-keyframes testim-content-in {
    from {
        opacity: 0;
        -ms-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -ms-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-o-keyframes testim-content-in {
    from {
        opacity: 0;
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -o-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);        
    }
}

@-webkit-keyframes testim-content-out {
    from {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -webkit-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-moz-keyframes testim-content-out {
    from {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -moz-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-ms-keyframes testim-content-out {
    from {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -ms-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-o-keyframes testim-content-out {
    from {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        transform: translateY(-100%);        
    }
}

@-webkit-keyframes testim-show {
    from {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -webkit-transform: scale(1);       
        transform: scale(1);       
    }
}

@-moz-keyframes testim-show {
    from {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -moz-transform: scale(1);       
        transform: scale(1);       
    }
}

@-ms-keyframes testim-show {
    from {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -ms-transform: scale(1);       
        transform: scale(1);       
    }
}

@-o-keyframes testim-show {
    from {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -o-transform: scale(1);       
        transform: scale(1);       
    }
}

@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        transform: scale(1);       
    }
}

@-webkit-keyframes testim-hide {
    from {
        opacity: 1;
        -webkit-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@-moz-keyframes testim-hide {
    from {
        opacity: 1;
        -moz-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
}

@-ms-keyframes testim-hide {
    from {
        opacity: 1;
        -ms-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
}

@-o-keyframes testim-hide {
    from {
        opacity: 1;
        -o-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        transform: scale(0);
    }
}

@media all and (max-width: 300px) {
  body {
    font-size: 14px;
  }
}

@media all and (max-width: 500px) {
  .testim .arrow {
    font-size: 1.5em;
  }
  
  .testim .cont div p {
    line-height: 25px;
    font-size: 14px;
  }
  

}

/*----------------End testimonial-------------------*/


.single-footer-widget > h3 {
    font-family: raleway;
    font-weight: 800;
    line-height: 19px;
    margin-bottom: 37px;
    padding-top: 12px;
    text-transform: uppercase;
}
.social-icons a {
    color: #2d3e50;
    display: inline-block;
    font-size: 30px;
    /* height: 31px; */
    /* line-height: 30px; */
    /* margin-right: 11px; */
    text-align: center;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    /* width: 31px; */
    padding: 9px;
}
footer {
     background: aliceblue;
    padding: 20px 40px;
     background: linear-gradient(rgba(148, 225, 255, 0.57), rgba(35, 146, 236, 0.52)),    
    url(../images/footer-bg.jpg);
        background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top:50px;
}
.footer-logo p{
    font-size: 12px;
    text-align: justify;
    margin-top: 10px;
    color:#fff;
}
.footer-icon li{
    list-style: none;
    /*padding: 7px;*/
    color: #fff;
    font-weight: 600;
}
.footer-icon li a{
    text-decoration: none;
    display: flex;
    color: #000;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}
.footer-icon li a i{
    margin-right:10px;
}
.footer-heading h3{
    font-size: 25px;
    margin:20px 0px;
    color: #fff;
}
.news-letter {
    background: #0c9494;
    padding: 10px 15px 25px;
    color: #fff;
}
.news-letter h3{}


.news-letter button.btn.btn-primary {
    margin-top: 20px;
}


.landing-btn a{
  width:100%;
  height:100%;
  color:black;
  font-weight:bold;
  animation: myanimation 5s infinite;
}

@keyframes myanimation {
  0% {background-color: red;}
  25%{background-color:#2d3e50;}
  50%{background-color:green;}
  75%{background-color:brown;}
  100% {background-color: red;}
}





.h2 {
    color: #fff;
}
.h2:after{
     content: '';
    display: block;
    margin: 10px 0 0 0;
    width: 170px;
    border-bottom: 2px solid red;
    left: 50%;
    position: relative;
    /* top: 138px; */
    transform: translate(-50%, -50%); 
}

.afflicatio-image {
    text-align: center;
    background: aliceblue;
}
.afflicatio-image img {
    width:50%;
}

a{text-decoration:none;}
a:hover{text-decoration:none !important;}

.max-logo img {
    width: 355px;
}
.logo-content h2{
    font-size: 40px;
    text-align: right;
        margin: -15px 32px 0;
}
.logo-content{
    text-align:right;
}
.header-nav {
    margin: 30px;
}

.form-section {
    background: aliceblue;
    padding: 20px 40px;
     background: linear-gradient(rgba(148, 225, 255, 0.57), rgba(35, 146, 236, 0.52)),    
    url(../images/landing-logo.png);
        background-position: center;
    background-repeat: no-repeat;
}
.form-section h3{
    text-align:center;
    margin-bottom:20px;
}
.form-section h3:after{
    content: '';
    display: block;
    margin: 10px 0 0 0;
    width: 170px;
    border-bottom: 2px solid red;
    left: 50%;
    position: relative;
    /* top: 138px; */
    transform: translate(-50%, -50%);
}
.top-heading-h {
    padding: 26px;
    color: red;
        text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}
.btn-right.mt-4 {
    text-align: right;
}
.about-heading:after{
    content: '';
    display: block;
    margin: 10px 0 0 0;
    width: 170px;
    border-bottom: 2px solid red;
    left: 50%;
    position: relative;
    /* top: 138px; */
    transform: translate(-50%, -50%);
}
.course-offered {
    background: #2d3e50;
    margin: 50px 0px 0px;
    width:100%;
}
.course-offered h3{
    color:#fff;
    margin: 0px;
    padding: 20px 0px;
}
.course-offered h3:after{
    content: '';
    display: block;
    margin: 10px 0 0 0;
    width: 170px;
    border-bottom: 2px solid red;
    left: 50%;
    position: relative;
    /* top: 138px; */
    transform: translate(-50%, -50%);
}
.course-image img{
    width:100%;
}
.course-image p {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    margin: 20px;
}
.course-image {
    background: #2d3e50;
    color: #fff;
    height: 401px;
}
.courses-image-section{
    background-size: cover;
    background: linear-gradient(rgba(0, 102, 142, 0.73), rgba(0, 102, 142, 0.8)), url(images/IMG_0079.JPG) no-repeat scroll center top;
    color: #ffffff;
    background-position: center;
    background-size: cover;
    padding-bottom: 50px;
    position: relative;
    padding-top: 50px;
}
h3.critria.text-center {
    margin-top: 40px;
}
h3.critria.text-center:after{
     content: '';
    display: block;
    margin: 10px 0 0 0;
    width: 170px;
    border-bottom: 2px solid red;
    left: 50%;
    position: relative;
    /* top: 138px; */
    transform: translate(-50%, -50%);
}
p.text-center.critria-p {
    font-size: 20px;
    letter-spacing: 1px;
}

.afflication-heading{
    background:#2d3e50;
    margin-top: 50px;
}
.afflication-heading h3{
    color:#fff;
    margin:0px;
    padding:20px 0px;
}
.afflication-heading h3:after{
       content: '';
    display: block;
    margin: 10px 0 0 0;
    width: 170px;
    border-bottom: 2px solid red;
    left: 50%;
    position: relative;
    /* top: 138px; */
    transform: translate(-50%, -50%);
}










.maxlife-section{
    background-size: cover;
    background: linear-gradient(rgba(0, 0, 0, 0.89), rgba(0, 0, 0, 0.85)), url(images/max-building.png) no-repeat scroll center top;
    color: #ffffff;
    background-position: center;
    background-size: cover;
    padding-bottom: 50px;
    position: relative;
    padding-top: 50px;
    margin-top:50px;
    margin-bottom:50px;
}

.form-section form label {
    text-align: unset !important;
    font-size: 16px;
    margin-bottom: 0px;
    margin-top: 10px;
    font-weight: 600;
}
form {
    text-align: left;
}
.top-header .fab {
    padding: 0px 8px;
    font-size: 20px;
    margin-top: 15px;
}
.top-header a{
    line-height: 45px;
    font-size: 16px;
    font-weight: 600;
    color:#fff;
}
.top-header {
    background: #2d3e50;
    color: #fff;
    height: 50px;
}
.second-banner {
    background: linear-gradient(rgba(148, 225, 255, 0.57), rgba(35, 146, 236, 0.52)),    
    url(../images/landing-bg.jpg);
    background-size: cover;
    width: 100%;
    padding-bottom:40px;
    }
.second-banner h1 {
    /*font-size: 50px;*/
    color: #fff;
    margin:0px;
    /*margin-top:20px;*/
  
}
.second-banner p{
    color:#fff;
    margin-bottom:35px;
    margin-bottom: 35px;
    font-weight: 500;
}
.landing-btn a.btn.btn-primary {
    width: 100%;
    color: #fff;
    background-color: #0071bc;
    border-color: #0a74b6;
    font-size: 15px;
    text-transform: uppercase;
}
.banner-text {
    background: #0071bc;
    padding: 17px 40px;
    box-shadow: 0 0 27px -14px #000;
}
.banner-text img{
    width:150px;
}

.mb-social-icon{
    display:none;
}


/*--------start sticky button------------*/
.sticky-btn {
    position: fixed;
    top: 40%;
}
#mySidenav a {
  position: absolute;
  left: -10px;
    transition: 0.3s;
    padding: 10px;
    width: 145px;
  text-decoration: none;
  font-size: 20px;
  color: white;
  border-radius: 0 5px 5px 0;
}

#mySidenav a:hover {
  left: 0;
}

#about {
  top: 20px;
  background-color: #4CAF50;
  margin-bottom:10px;
}
#blog {
  top: 80px;
  background-color: #2196F3;
}

#callnow a {
    position: absolute;
    right: -10px;
    transition: 0.3s;
    padding: 10px;
    width: 120px;
    text-decoration: none;
    font-size: 20px;
    color: white;
    border-radius: 5px 5px 5px 5px;
}
#call-now-btn {
  top: 20px;
  background-color: brown;
  margin-bottom:10px;
}
.callnow #callnow a:hover {
  right: 0px;
}
.callnow {
    position: fixed;
    top: 45%;
    right: 10px;
}
/*----------end of sticky button---------*/











@media(max-width:767px){
    .mb-big a{
        font-size:16px !important;
    }
    .no-padding{
        padding:0px !important;
    }
   .mb-social-icon li  a {
    width: 100%;
        padding: 4px;
}
    .mb-social-icon{
    display:unset;
    background: #333333;
    position: fixed;
    bottom: 0px;
    width: 100%;
    color: #fff;
}
.mb-social-icon li{
    list-style:none;
}
.mb-social-icon li a{
     color: #fff;
    text-decoration:none;
    font-size: 23px;
}
    .sticky-btn, .callnow{
        display:none;
    }
    .landing-btn a.btn.btn-primary {
    font-size: 14px;
    padding: 5px 0px;
}
    .view-full-site {
    padding: 21px 0px;
    }
    .header-nav {
    margin: 30px 0px;
}
.top-header a {
    line-height: 20px;
    font-size: 14px;
}
.max-logo img {
    width: 80%;
    margin: auto;
    display: block;
}
.logo-content h2 {
    font-size: 18px;
    text-align: center;
    margin-top: 14px;
}
.top-heading-h {
    padding: 10px 0px;
        font-size: 20px;
}
.form-section h3 {
    text-align: center;
    margin-bottom: 6px;
    font-size: 19px;
}
    .top-header{
        height:unset;
        text-align: center;
    }
    .top-header.float-right {
    float: unset !important;
}
    .second-banner{
        padding:0px;
    }
    .banner-text {
    margin-top: 10%;
        padding: 15px 20px 1px;
}
.course-offered h3 {
    padding: 8px 0px;
    font-size: 20px;
}
.course-offered {
    margin: 30px 0px 0px;
}
.courses-image-section {
    padding-bottom: 30px;
    padding-top: 30px;
}
    .banner-text img{
    width:100px;
}
.second-banner h1 {
    font-size: 20px;
}
.second-banner p {
      font-size: 12px;
    margin-bottom: 17px;
}

/*body {*/
/*    background: #63b8f3;*/
/*}*/
.second-banner:before{
    content: "" !important;
    display: block !important;
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    z-index: -10 !important;
    background:linear-gradient(rgba(148, 225, 255, 0.57), rgba(35, 146, 236, 0.52)),    
    url(images/banner.jpg) no-repeat center center !important;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    background-attachment: fixed !important;
}
.second-banner {
    background-image:  linear-gradient(rgba(148, 225, 255, 0.57), rgba(35, 146, 236, 0.52)),    
    url(../images/banner.jpg) !important;
    background-attachment: scroll;
    background-size: auto;
    position: relative;
    background-repeat: no-repeat;
}

}
.view-full-site {
    background: #2d3e50;
    padding: 21px;
    text-align: center;
    margin-top: 30px;
    margin-bottom: -20px;  
   
}
.view-full-site a i{
     animation: myanimation 5s infinite;
}

@keyframes myanimation {
  0% {background-color: red;}
  25%{background-color:#2d3e50;}
  50%{background-color:green;}
  75%{background-color:brown;}
  100% {background-color: red;}
}
