    #ani-news {
    	width:100%;
    	color: white;
    	position: fixed;
    	bottom: -350px;
    	left: 0;
    	height: 220px;
    	z-index: 2;
    	box-shadow: 0 0 20px black;
    }
    .brand-palace #ani-news {
    	background: #003D4C !important;
    }
    .brand-estate #ani-news {
    	background: #43273B !important;
    }
    .animateup {
    	animation: slideup 1s forwards;
     }
     .animatedown {
    	animation: slidedown 1s forwards;
     }
    
    #ani-news label {
     color: white;
        font-size: 16px;
    }
    #ani-news h3 {
    	margin: 20px 0px 10px;
        padding: 0;
    	font-size: 45px;
    	color: white;
    }
    #ani-news p {
    	color: white;
    	margin: 0;
        padding: 0;
    }
    
    @keyframes slideup {
      from {
        bottom: -350px;
      }
    
      to {
        bottom: 0;
      }
    }
    @keyframes slidedown {
      from {
        bottom: 0px;
      }
    
      to {
        bottom: -300;
      }
    }
    
    @keyframes slideupSmall {
      from {
        bottom: -450px;
      }
    
      to {
        bottom: 0;
      }
    }
    @keyframes slidedownSmall {
      from {
        bottom: 0px;
      }
    
      to {
        bottom: -450;
      }
    }
    #fieldName {
    	margin: 20px 0;
    }
    .newsletter.form-control {
    	display: inline;
        width: 300px;
        margin: 15px 30px 0px 10px !important;
    }
    
    .mob { display: none;}
    @media only screen and (max-width: 1200px) {
      .newsletter.form-control {
          width: 270px;
      }
    }
    @media only screen and (max-width: 1000px) {
    	.mob { display: block;}
    	#ani-news {
      		height: 300px;
      	}
    	#footer {
    	margin-bottom: 220px !important;
    	}
    }
    
    @media only screen and (max-width: 580px){
    	#ani-news label {
    		display: none;
    	}
    	#ani-news {
      		height: 450px;
      		bottom: -450px;
      	}
      	.topmargin-sm {
      	    margin: 0px 0 20px !important;
        }
        .animateup {
        	animation: slideupSmall 1s forwards !important;
         }
         .animatedown {
        	animation: slidedownSmall 1s forwards !important;
         }
        
        
    }
