*{
  margin: 0;
  padding: 0;
  position: relative;
  box-sizing: border-box;
}

::selection {
  background: black; /* WebKit/Blink Browsers */
  color: white
}
::-moz-selection {
  background: black; /* Gecko Browsers */
  color: white
}

.clearfix{
  clear: both;
}

.text-center{
  text-align: center;
  text-align: -webkit-center;
  text-align: -moz-center;
  text-align: -ms-center;
  text-align: -o-center;
}

body{
  height: auto;
  width: 100%;
}

#scroll-to-top {
    background: url(images/back-top.png) no-repeat center center grey;
    border: 2px solid #ddd;
    border-radius: 100%;
    cursor: pointer;
    height: 50px;
    width: 50px;
    position: fixed;
    bottom: 25px;
    right: 12px;
    z-index: 9999;
    display: none;
    -webkit-transition: all .15s ease;
    transition: all .15s ease;
}

header{
  width: 100%;
  height: auto;
}

.header-top{
  width: 100%;
  border-bottom: 4px solid #ea212e;
  background-color: grey;
}

.header-contact{
  max-width: 1400px;
  height: auto;
  margin: auto;
  padding: 10px 30px;
  box-sizing: border-box;
  width: 100%;
  text-align: right;
  text-align: -webkit-right;
  text-align: -ms-right;
  text-align: -moz-right;
  text-align: -o-right;
}

.header-contact-obj:first-of-type {
  padding: 0 12px 0 0;
}

.header-contact-obj {
  display: table-cell;
  vertical-align: middle;
  color: #ccc;
}

.header-contact-obj .ion {
  font-size: 25px;
  color: #ea212e
}

.header-contact-obj a {
  text-decoration: none;
  color: inherit;
  font-family: "Open Sans";
}

.header-bg{
  padding: 15px 30px;
  max-width: 1400px;
  width: 100%;
  margin: auto;
  display: table;
}

.logo{
  max-width: 500px;
  height: auto;
  display: table-cell;
  vertical-align: middle;
}

.logo a{
  text-decoration: none;
}

.logo img{
  width: 100%;
  max-width: 80px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

.logo-text{
  display: inline-block;
  vertical-align: middle;
  margin-left: 15px;
}

.logo h1{
  color: #3e4b8c;
  font-family: "Roboto";
}

.logo h2{
  color: #525252;
  font-family: "Roboto";
  font-weight: 300;
}

.burger-nav{
  display: none;
}

nav{
  width: auto;
  display: table-cell;
  vertical-align: middle;
  text-align: right;
  text-align: -webkit-right;
  text-align: -moz-right;
  text-align: -ms-right;
}

nav ul li{
  display: inline-block;
  text-decoration: none;
  width: auto;
  margin-left: 20px;
}

nav ul li:first-of-type{
  margin: 0;
}

nav ul li a{
  color: grey;
  text-decoration: none;
  font-family: 'Open Sans';
  font-size: 20px;
  cursor: pointer;
}

nav ul li a:hover{
  color: black;
}

nav ul li ul{
  display: none;
}

nav ul li:hover > ul{
  display: block;
  position: absolute;
  z-index: 999;
  padding-top: 20px;
  left: -33px;
}

li ul li{
  width: 100%;
  background-color: white;
  height: auto;
  margin: 0;
  padding: 10px 20px;
  text-align: center;
  text-align: -webkit-center;
  text-align: -ms-center;
  text-align: -moz-center;
}

li ul li:last-of-type{
  padding-bottom: 20px;
}

.overlay {
height: 0%;
width: 100%;
position: fixed;
z-index: 10000;
top: 0;
left: 0;
background-color: rgba(86,86,85, 0.95);
overflow-y: hidden;
transition: 0.5s;
}

.overlay-content {
position: relative;
top: 25%;
width: 100%;
text-align: center;
text-align: -webkit-center;
text-align: -moz-center;
text-align: -ms-center;
margin-top: 30px;
}

.overlay a {
padding: 8px;
text-decoration: none;
font-size: 36px;
color: rgb(181,181,181);
display: block;
transition: 0.3s;
font-family: 'Roboto';
text-transform: uppercase;
}

.overlay a:hover, .overlay a:focus {
color: white;
}

.overlay .closebtn {
position: absolute;
top: 20px;
right: 45px;
font-size: 60px;
}

h1 {
  font-family: 'Open Sans';
}

h2{
  font-family: 'Open Sans';
  color: #ea212e;
  font-size: 21px;
}

p{
  font-family: 'Open Sans';
  font-size: 18px;
}

p strong{
  font-size: 20.5px;
}

.bullet{
  color: #ea212e;
  font-size: 22px;
}

.number{
  color: #ea212e;
  font-size: 20px;
}

.content{
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: auto;
  padding: 30px;
}

/*----- Home Start -----*/

#home-top{
  width: 100%;
  height: 600px;
  background-image: url(images/apollo-comfort.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#intro{
  width: 100%;
  height: auto;
}

#services-tabs{
  width: 100%;
  height: auto;
  display: flex;
}

.tab{
  position: relative;
  width: 25%;
  height: auto;
  flex: 0 1 25%;
}

.tab-image:after{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: .5;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.01) 1%, rgba(0, 0, 0, 0.82) 81%, black 99%);
  transition: all 0.2s ease-out;
}

.tab-image img{
  width: 100%;
  height: auto;
  display: block;
}

.tab-caption{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  overflow: hidden;
  transition: all .5s ease;
}

.tab-caption h5{
  position: absolute;
  font-size: 25px;
  font-family: 'Open Sans';
  left: 40px;
  right: 75px;
  bottom: 30px;
  transition: all .5s ease;
}

.tab-caption h5 a{
  color: white;
  text-decoration: none;
  transition: all .3s ease;
}

.tab-caption .icon{
  bottom: -55px;
  right: 15px;
  position: absolute;
  transition: all .5s ease;
}

.tab:hover .tab-caption{
  background: rgba(62,75,140,0.7);
}

.tab:hover .tab-caption h5{
  bottom: 50%;
  transform: translateY(50%);
}

.tab:hover .tab-caption .icon{
  display: block;
  bottom: 50%;
  transform: translateY(50%);
}

.tab-caption h5 a:hover{
  color: grey;
}

.iconify:hover{
  color: grey;
  border-color: grey;
}

.iconify {
  border: 3px solid white;
  border-radius: 100%;
  cursor: pointer;
  height: 50px;
  width: 50px;
  transition: all .3s ease;
  color: white;
}

/*-- Home End --*/

/*----- Services Start -----*/

.generic-top{
  width: 100%;
  height: 500px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#bedroom-furniture-top{
  background-image: url(images/bedroom-furniture-top.jpg);
}

#bed-frames-top{
  background-image: url(images/bed-frames-top.jpg);
}

#mobility-chairs-top{
  background-image: url(images/mobility-chairs-top.jpg);
  background-position: bottom;
}

#carpets-underlays-top{
  background-image: url(images/carpets-underlays-top.jpg);
  background-position: bottom;
}

.services-section{
  width: 100%;
  height: auto;
}

.product-boxes-container{
  background-color: lightgrey;
  padding: 25px 20px;
}

.services-title{
  font-weight: bold;
  color: #ea212e;
  max-width: 1400px;
  margin: auto;
  font-size: 28px;
}

.range-title{
  font-weight: 200;
  max-width: 1400px;
  margin: auto;
  font-family: "Montserrat";
  font-size: 26px;
  margin-top: 100px;
  color: rgb(60,60,60);
}

.beds-list{
  font-weight: bold;
  color: rgb(60,60,60)
}

.accordion_item {
	width: 100%;
	border-bottom: 1px solid #ccc;
}

.carpets-title{
  font-weight: 200;
  max-width: 1400px;
  margin: auto;
  font-family: "Montserrat";
  font-size: 26px;
  margin-top: 100px;
  color: rgb(60,60,60);
  cursor: pointer;
  display: block;
  line-height: 140%;
  padding: 8px 40px 8px 8px;
  position: relative;
  cursor: pointer;
}

.carpets-title:after {
	content: "";
	width: 0;
	height: 0;
	display: inline-block;
	position: absolute;
	right: 15px;
	top: 50%;
	border: 6px solid transparent;
	border-top-color: #333;
	transition: border 400ms, margin 400ms;
	margin-top: -3px; /* half of border value */
}

.carpets-title:first-of-type{
  margin-top: 15px;
}

.accordion_item.active .carpets-title:after {
	border-color: transparent;
	border-bottom-color: #333;
	margin-top: -9px; /* fixing arrow position */
}

.bedrooms-title{
  font-weight: 200;
  max-width: 1400px;
  margin: auto;
  font-family: "Montserrat";
  font-size: 26px;
  margin-top: 100px;
  color: rgb(60,60,60);
  cursor: pointer;
  display: block;
  line-height: 140%;
  padding: 8px 40px 8px 8px;
  position: relative;
  cursor: pointer;
}

.bedrooms-title:after {
	content: "";
	width: 0;
	height: 0;
	display: inline-block;
	position: absolute;
	right: 15px;
	top: 50%;
	border: 6px solid transparent;
	border-top-color: #333;
	transition: border 400ms, margin 400ms;
	margin-top: -3px; /* half of border value */
}

.bedrooms-title:first-of-type{
  margin-top: 15px;
}

.accordion_item.active .bedrooms-title:after {
	border-color: transparent;
	border-bottom-color: #333;
	margin-top: -9px; /* fixing arrow position */
}

.beds-title{
  font-weight: 200;
  max-width: 1400px;
  margin: auto;
  font-family: "Montserrat";
  font-size: 26px;
  margin-top: 100px;
  color: rgb(60,60,60);
  cursor: pointer;
  display: block;
  line-height: 140%;
  padding: 8px 40px 8px 8px;
  position: relative;
  cursor: pointer;
}

.beds-title:after {
	content: "";
	width: 0;
	height: 0;
	display: inline-block;
	position: absolute;
	right: 15px;
	top: 50%;
	border: 6px solid transparent;
	border-top-color: #333;
	transition: border 400ms, margin 400ms;
	margin-top: -3px; /* half of border value */
}

.beds-title:first-of-type{
  margin-top: 15px;
}

.accordion_item.active .beds-title:after {
	border-color: transparent;
	border-bottom-color: #333;
	margin-top: -9px; /* fixing arrow position */
}

.accordion_content {
	padding: 8px;
	display: none;
	color: #333;
}
.accordion_content > *:first-child {
	margin-top: 0;
}

.product-boxes-inner-container{
  max-width: 1400px;
  width: 100%;
  margin: auto;
  display: flex;
  margin-top: 15px;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  text-align: center;
  text-align: -webkit-center;
  text-align: -ms-center;
  text-align: -moz-center;
  text-align: -o-center;
}

.product-boxes-inner-container a{
  text-decoration: none;
}

.product-boxes{
  width: 30%;
  border-radius: 16px;
  box-shadow: 0px 0px 15px 2px rgba(0,0,0,0.5);
  margin: 10px;
  flex: 0 1 30%;
  padding: 15px;
  background-color: white;
  cursor: pointer;
}

.product-boxes img{
  width: 100%;
}

.product-boxes-text{
  color: grey;
  margin-top: 10px;
}

.product-boxes-text h3{
  font-family: "Roboto";
  font-size: 22px;
}

.product-boxes-text p{
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 300;
}

.view{
  color: black;
  text-decoration: underline;
  font-family: "Montserrat";
}

.product-boxes:hover .view{
  text-decoration: none;
}

.content h1{
  font-size: 40px;
  font-family: 'Montserrat','sans-serif';
  font-weight: 200;
  color: grey;
}

.range h2{
  font-size: 32px;
  color: black;
  font-weight: 400;
}

.range h3{
  font-size: 26px;
  color: black;
  font-weight: 400;
  font-family: 'Open Sans';
}

.range .left{
  padding-right: 15px;
  width: 55%;
  display: inline-block;
  vertical-align: top;
}

.range .right{
  display: inline-block;
  width: 35%;
  padding-left: 20px;
  vertical-align: top;
  border-left: 1px rgb(200,200,200) solid;
}

.range-top{
  width: 100%;
  height: 400px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#healthopaedic-adjustable-bed-top{
  background-image: url(images/collections/beds/healthopaedic-adjustable-bed.jpg);
}

#shaker-wooden-bed-frame-top{
  background-image: url(images/collections/beds/shaker-wooden-bed-frame.jpg);
}

#highgrove-raffles-1000-top{
  background-image: url(images/collections/beds/highgrove-raffles-1000.jpg);
}

#richmond-wooden-bed-frame-top{
  background-image: url(images/collections/beds/richmond-wooden-bed-frame.jpg);
}

#rebecca-metal-bed-frame-top{
  background-image: url(images/collections/beds/rebecca-metal-bed-frame.jpg);
}

#healthopaedic-tencel-bed-top{
  background-image: url(images/collections/beds/healthopaedic-tencel-bed.jpg);
}

#gel-infusion-mattress-top{
  background-image: url(images/collections/beds/gel-infusion-mattress.jpg);
}

#marple-top{
  background-image: url(images/collections/beds/marple.jpg);
}

#halston-top{
  background-image: url(images/collections/beds/halston.jpg);
}

#headboards-selection-top{
  background-image: url(images/collections/beds/headboards-selection.jpg);
  background-position: top;
}

#base-options-top{
  background-image: url(images/collections/beds/base-options.jpg);
}

#ottoman-divan-top{
  background-image: url(images/collections/beds/ottoman-divan.jpg);
}

#mayfield-top{
  background-image: url(images/collections/beds/mayfield.jpg);
}

#lynton-knuckle-top{
  background-image: url(images/collections/chairs/lynton-knuckle-top.jpg);
}

#milburn-top{
  background-image: url(images/collections/chairs/milburn-top.jpg);
}

#claremont-top{
  background-image: url(images/collections/chairs/claremont-top.jpg);
}

#malvern-top{
  background-image: url(images/collections/chairs/malvern-top.jpg);
}

#keswick-top{
  background-image: url(images/collections/chairs/keswick-top.jpg);
  background-position: bottom;
}

#apollo-elite-top{
  background-image: url(images/collections/carpets/apollo-elite.jpg);
}

#apollo-plus-top{
  background-image: url(images/collections/carpets/apollo-plus.jpg);
}

#primo-plus-top{
  background-image: url(images/collections/carpets/primo-plus.jpg);
}

#primo-naturals-top{
  background-image: url(images/collections/carpets/primo-naturals.jpg);
}

#primo-choice-top{
  background-image: url(images/collections/carpets/primo-choice.jpg);
  background-position: bottom;
}

#primo-grande-top{
  background-image: url(images/collections/carpets/primo-grande.jpg);
}

#primo-ultra-top{
  background-image: url(images/collections/carpets/primo-ultra.jpg);
  background-position: bottom;
}

#sensation-twist-top{
  background-image: url(images/collections/carpets/sensation-twist.jpg);
}

#apollo-comfort-top{
  background-image: url(images/collections/carpets/apollo-comfort.jpg);
}

#gemini-top{
  background-image: url(images/collections/carpets/gemini.jpg);
}

#sensation-top{
  background-image: url(images/collections/carpets/sensation.jpg);
}

#sensation-heathers-top{
  background-image: url(images/collections/carpets/sensation-heathers.jpg);
}

#soft-focus-top{
  background-image: url(images/collections/carpets/soft-focus.jpg);
}

#soft-focus-heathers-top{
  background-image: url(images/collections/carpets/soft-focus-heathers.jpg);
}

#home-counties-plains-top{
  background-image: url(images/collections/carpets/home-counties-plains.jpg);
}

#home-counties-heathers-top{
  background-image: url(images/collections/carpets/home-counties-heathers.jpg);
}

#natural-berber-twist-top{
  background-image: url(images/collections/carpets/natural-berber-twist.jpg);
}

#oaklands-top{
  background-image: url(images/collections/carpets/oaklands.jpg);
}

#avebury-top{
  background-image: url(images/collections/carpets/avebury.jpg);
}

#avebury-stripe-top{
  background-image: url(images/collections/carpets/avebury-stripe.jpg);
}

#boucle-neutrals-top{
  background-image: url(images/collections/carpets/boucle-neutrals.jpg);
}

#boucle-neutrals-stripe-top{
  background-image: url(images/collections/carpets/boucle-neutrals-stripe.jpg);
}

#malabar-two-fold-top{
  background-image: url(images/collections/carpets/malabar-two-fold.jpg);
}

#southwold-top{
  background-image: url(images/collections/carpets/southwold.jpg);
}

#rebel-yell-top{
  background-image: url(images/collections/carpets/rebel-yell.jpg);
}

#citadel-starlight-top{
  background-image: url(images/collections/carpets/citadel-starlight.jpg);
}

#underlay-top{
  background-image: url(images/underlay-top.jpg);
  background-position: bottom;
}

.klever h2{
  font-family: 'Montserrat','sans-serif';
  font-weight: 200;
  color: grey;
  font-size: 34px;
}

.klever h4{
  font-family: 'Montserrat','sans-serif';
  font-weight: 200;
  color: grey;
  font-size: 17px
}

.colours-section{
  width: 100%;
  height: auto;
  text-align: center;
  text-align: -webkit-center;
  text-align: -moz-center;
  text-align: -ms-center;
  text-align: -o-center;
}

.colours-section h3{
  font-family: "Roboto";
  font-size: 26px;
  font-weight: 400
}

.colours{
  display: inline-block;
  width: 19%;
  padding: 10px;
  border-radius: 10px;
  vertical-align: top;
}

.colours a{
  text-decoration: none;
  color: grey;
}

.colours .image{
  width: 100%;
  height: 80%;
  overflow: hidden;
  border-radius: 10px;
}

.colours:hover img{
  transform: scale(1.1);
}

.colours img{
  width: 100%;
  border-radius: 10px;
}

.colours p{
  font-family: "Montserrat";
  font-weight: 200;
  font-size: 20px;
}

.examples-section{
  width: 100%;
  height: auto;
  text-align: center;
  text-align: -webkit-center;
  text-align: -moz-center;
  text-align: -ms-center;
  text-align: -o-center;
}

.examples-section h3{
  font-family: "Roboto";
  font-size: 26px;
  font-weight: 400
}

.examples{
  display: inline-block;
  width: 40%;
  padding: 10px;
  border-radius: 10px;
}

.examples a{
  text-decoration: none;
  color: grey;
}

.examples .image{
  width: 100%;
  height: 80%;
  overflow: hidden;
  border-radius: 10px;
}

.examples:hover img{
  transform: scale(1.1);
}

.examples img{
  width: 100%;
  border-radius: 10px;
}

.examples p{
  font-family: "Montserrat";
  font-weight: 200;
  font-size: 20px;
}

.bedrooms-section{
  width: 100%;
  height: auto;
  padding: 25px 20px;
  background-color: lightgrey;
}

.bedrooms-boxes-inner-container{
  max-width: 1400px;
  width: 100%;
  margin: auto;
  display: flex;
  margin-top: 15px;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  text-align: center;
  text-align: -webkit-center;
  text-align: -ms-center;
  text-align: -moz-center;
  text-align: -o-center;
}

.bedrooms-boxes{
  width: 30%;
  border-radius: 16px;
  box-shadow: 0px 0px 15px 2px rgba(0,0,0,0.5);
  margin: 10px;
  flex: 0 1 30%;
  padding: 15px;
  background-color: white;
  cursor: pointer;
}

.bedrooms-boxes a{
  text-decoration: none;
}

.bedrooms-boxes .image{
  width: 100%;
  height: 80%;
  overflow: hidden;
  border-radius: 10px;
}

.bedrooms-boxes img{
  width: 100%;
  border-radius: 10px;
}

.bedrooms-boxes p{
  font-family: "Montserrat";
  font-weight: 200;
  font-size: 20px;
}

.bedrooms-boxes-text{
  color: grey;
  margin-top: 10px;
}

.bedrooms-boxes-text h3{
  font-family: "Roboto";
  font-size: 22px;
}

.bedrooms-boxes-text p{
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 300;
}

.bedrooms-boxes:hover .view{
  text-decoration: none;
}

.beds-section{
  width: 100%;
  height: auto;
  padding: 25px 20px;
  background-color: lightgrey;
}

.beds-boxes-inner-container{
  max-width: 1400px;
  width: 100%;
  margin: auto;
  display: flex;
  margin-top: 15px;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  text-align: center;
  text-align: -webkit-center;
  text-align: -ms-center;
  text-align: -moz-center;
  text-align: -o-center;
}

.beds-boxes{
  width: 30%;
  border-radius: 16px;
  box-shadow: 0px 0px 15px 2px rgba(0,0,0,0.5);
  margin: 10px;
  flex: 0 1 30%;
  padding: 15px;
  background-color: white;
  cursor: pointer;
}

.beds-boxes a{
  text-decoration: none;
}

.beds-boxes .image{
  width: 100%;
  height: 80%;
  overflow: hidden;
  border-radius: 10px;
}

.beds-boxes img{
  width: 100%;
  border-radius: 10px;
}

.beds-boxes p{
  font-family: "Montserrat";
  font-weight: 200;
  font-size: 20px;
}

.beds-boxes-text{
  color: grey;
  margin-top: 10px;
}

.beds-boxes-text h3{
  font-family: "Roboto";
  font-size: 22px;
}

.beds-boxes-text p{
  font-family: "Open Sans";
  font-size: 18px;
  font-weight: 300;
}

.beds-boxes:hover .view{
  text-decoration: none;
}

.lb-data .lb-caption{
  font-family: "Open Sans";
  font-size: 20px !important;
}

.lb-data .lb-number {
  font-family: "Open Sans";
}

/*-- Services End --*/

/*----- Contact Start -----*/

#contact-top{
  background-image: url(images/contact-hoyland-furnitureand-carpets.jpg);
}

#contact{
  text-align: center;
  text-align: -webkit-center;
  text-align: -o-center;
  text-align: -moz-center;
  text-align: -ms-center;
}

.contact-obj{
  display: table-cell;
  vertical-align: middle;
}

.contact-obj p{
    font-size: 16px;
    color: #8b8b8c;
}

.contact-left{
  width: 49%;
  height: 400px;
  padding: 0 10px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  text-align: left;
  text-align: -webkit-left;
  text-align: -ms-left;
  text-align: -moz-left;
  text-align: -o-left;
}

#map {
  height: 450px;
  width: 100%;
  position: absolute;
  bottom: 0;
  box-sizing: border-box;
}

.contact-right{
  display: inline-block;
  vertical-align: middle;
  width: 50%;
}

#contact a{
  color: inherit;
  text-decoration: underline;
}

/*-- Contact End --*/

.call-to-action{
  background-color: #ea212e;
  width: 100%;
  height: 100px;
}

.call-to-action-content{
  max-width: 800px;
  width: 100%;
  height: auto;
  margin: auto;
  padding: 20px;
  text-align: center;
  text-align: -webkit-center;
  text-align: -moz-center;
  text-align: -ms-center;
}

.call-to-action-content h3{
  color: white;
  font-size: 32px;
  font-family: 'Roboto';
  margin-right: 100px;
}

.cta-btn{
  width: 220px;
  height: auto;
  background-color: rgba(128,128,128,0.85);
  padding: 20px;
  color: white;
  text-decoration: none;
  border-radius: 15px;
  transition: all .5s ease;
}

.cta-btn p{
  font-size: 20px;
}

.call-to-action-content h3, .call-to-action-content a{
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
}

.cta-btn:hover{
  background-color: rgb(128,128,128);
}

footer{
  width: 100%;
  height: auto;
  position: relative;
  bottom: 0;
  padding-top: 60px;
  font-family: 'Roboto';
}

footer a{
  text-decoration: none;
}

.footer-top{
  max-width: 1200px;
  height: auto;
  margin: auto;
  color: grey
}

.footer-top a{
  color: grey;
}

.footer-top img{
  max-width: 30%;
  height: auto;
}

.columns{
  height: auto;
  width: 33%;
  display: inline-block;
  vertical-align: top;
  padding: 0 15px;
  box-sizing: border-box;
}

.columns h3{
  font-size: 28px;
}

.footer-icons-container{
  width: 100%;
  margin-top: 15px;
}

.social-obj{
  vertical-align: middle;
}

.ion-social{
  font-size: 35px;
  color: #ea212e;
}

.social-icons{
  margin: 10px 0;
}

.social-icon{
  width: 30px;
  border: 1px solid #fff;
  display: inline-block;
  padding: 4px;
  margin: 3px;
  color: #fff;
}

.footer-obj {
  display: table-cell;
  padding: 0 12px 0 0;
  vertical-align: middle;
}

.ion{
  font-size: 25px;
  color: #ea212e;
}

footer p{
  font-size: 14.5px;
}

footer ul{
  list-style: none;
}

footer ul li{
  padding-bottom: 3px;
}

footer ul li a{
  font-size: 14.5px;
}

.footer-bottom{
  margin-top: 30px;
  border-top: 4px solid #ea212e;
  background-color: grey;
  color: white
}

.footer-bottom a{
  color: white;
  font-weight: bold;
}

.footer-bottom-container{
  max-width: 1200px;
  padding: 15px;
  margin: auto;
}

footer .left{
  float: left;
  width: auto;
  height: auto;
}

footer .right{
  float: right;
  width: auto;
  height: auto;
}
