﻿@charset "UTF-8";
/* CSS Document */

@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

#page {width: 80%; max-width: 1600px; margin: 0 auto; position: relative;}

/* navigation */

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: #101010;
    overflow-x: hidden;
    padding-top: 150px;
    transition: 0.5s;
}

.sidenav a {
    padding: 8px 8px 8px 40px;
    font-family: 'Cormorant Garamond', serif;
    text-decoration: none;
    font-size: 2em;
    font-weight: 300i;
    font-style: italic;
    line-height: 1.25em;
    color: #ffffff;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover, .offcanvas a:focus{
    color: #5DF4AA;
}

.sidenav a:visited {
    color: #ffffff; 
}

.sidenav .closebtn {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    position: absolute;
    top: 35px;
    text-align: left;
    font-size: 36px;
}

.open_close {
    width: 200px;
    float: right;
    position: relative;
    text-align: right;
}

#main {
    transition: margin-right .5s;
}

/* Hover Element */

.container {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;  
}

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

.overlay {
  width: 0;
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(0,0,0,.5);
  overflow: hidden;
  height: 90%;
  transition: .5s ease;
  z-index: 10;
}

.overlay_blog {
  width: 0;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #000000;
  opacity: .75;
  overflow: hidden;
  height: 100%;
  transition: .5s ease;
}

.container:hover .overlay {
  width: 100%;
  height: 90%;
}

.container:hover .overlay_blog {
  width: 100%;
  height: 100%;
}

.textLabel {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  white-space: nowrap; 
  color: white;
  font-size: 1em;
  position: absolute;
  overflow: hidden;
  left: 100px;
}


.text {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  white-space: nowrap; 
  color: white;
  font-size: 1em;
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.text_blog {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: 1px;
  white-space: nowrap; 
  color: #ffffff;
  font-size: 2em;
  position: absolute;
  overflow: hidden;
  top: 55%;
  left: 30%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

/* Elements */
p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: .9em;
    line-height: 1.75em;
    text-align: left;
	color: rgb(200,200,200);
}

p2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: .9em;
    text-align: left;
	color: rgb(250,250,250);
}

p3 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 1em;
    text-align: left;
	color: #ffffff;
}

p4 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 2.1em;
    line-height: 1.7em;
    text-align: left;
	color: rgb(150,150,150);
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 3.5em;
    text-align: left;
    top: 0%;
	color: #ffffff;
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 2.2em;
    line-height: .50em;
    text-align: left;
    top: 50%;
	color: #ffffff;
}

h3 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: .75em;
    line-height: 0em;
    letter-spacing: 1px;
    text-align: left;
	color: rgb(150,150,150);
}

h4 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 1em;
    letter-spacing: 1px;
    text-align: left;
	color: rgb(150,150,150);
}

h5 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
    text-align: left;
	color: rgb(250,250,250);
}

a {
    text-decoration: none;
    color: #5DF4AA;
}

a:hover {
    color:#49C086;
}

a:visited {
    color: #5DF4AA;
}

body {
    margin: 0 auto;
    }

header {
    margin: 0 auto;
    width: 100%;
    padding-bottom: 50px;
    padding-top: 50px;
    position: relative;
    }

body {
    margin: 0 auto;
    }

/* fade in */

.fade-in {
    opacity:0;
    -webkit-animation:fadeIn ease-in 1;
    -moz-animation:fadeIn ease-in 1;
    animation:fadeIn ease-in 1;

    -webkit-animation-fill-mode:forwards;
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;

    -webkit-animation-duration:.7s;
    -moz-animation-duration:.7s;
    animation-duration:.7s;   
}

.fade-in.one {
  -webkit-animation-delay: .5s;
  -moz-animation-delay: .5s;
  animation-delay: .5s;
}

.fade-in.two {
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.fade-in.three {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  animation-delay: 2s;
}

.fade-in.four {
  -webkit-animation-delay: .9s;
  -moz-animation-delay: .9s;
  animation-delay: .9s;
}

.fade-in.five {
  -webkit-animation-delay: 1.2s;
  -moz-animation-delay:1.2s;
  animation-delay: 1.2s;
}

/* fade in */

.button {
    float: right;
    padding: 5px;
    background: #5DF4AA;
    width: 150px;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 1px;
    font-weight: 600;
    color: rgb(250,250,250);
    border-radius: 25px;
    text-align: center;
}

.button:hover {
    float: right;
    background: #49C086;
    width: 150px;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 1px;
    border-radius: 25px;
    cursor: pointer;
    transition: .5s ease;
}


.portfolio {
    width: 100%;
    height: 3500px;
    position: relative;
}

.port {
    width: 100%;
    max-width: 1800px;
    position: relative;
    padding-top: 50px;
}

.spacer {
    margin: 0 auto;
    width: 100%;
    height: 1px;
    margin-top: 20px;
    background-color: rgb(50,50,50);
    position: relative;
}

.intro {
    width: 80%;
    max-width: 1000px;
    padding-top: 50px;
    padding-bottom: 225px;
    position: relative;
}

.blog {
    margin: 0 auto;
    width: 100%;
    height: 600px;
    position: relative;
}

.blog_top {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;  
    position: relative;
    overflow: hidden;
    transition: .5s ease;
}

.foot {
    margin-top: 100px;
    width: 80%;
    height: 400px;
    background-color: black;
    position: relative;
    padding: 0 10%;
    float: left;
}

.footInfo {
    margin:0 auto;
    max-width: 1600px;
}


.foot_column {
    color: aqua;
    width: 25%;
    float:left;
    position: relative;
    margin:0 auto; 
    padding-top: 80px;   
}

.foot_mobile {
    display:none;
}

/* id styles & background images */

#portfolio_buttons {
    width: 100%;
    height: 100px;
    padding-top: 150px;
    vertical-align: bottom; 
}

.circle_video {
    width: 100%; 
    height: 400px;
    object-fit: cover;
    left: 0px;
    top: 0px;
    z-index: 1;
    overflow: hidden;
    position: relative;
}

#circle {
    width: 48%;
    height: 450px;
    padding-bottom: 140px;
    float: left;
}

.covermore_video {
    width: 100%; 
    height: 400px;
    object-fit: cover;
    left: 0px;
    top: 0px;
    z-index: 1;
    overflow: hidden;
    position: relative;
}

#covermore {
    width: 48%;
    height: 450px;
    padding-bottom: 140px;
    float: right;
}

#videoBGcircle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
}


#medibank {
    width: 48%;
    height: 450px;
    padding-bottom: 140px;
    float: left;
}

.medibank_video {
    width: 100%; 
    height: 400px;
    object-fit: cover;
    left: 0px;
    top: 0px;
    z-index: 1;
    overflow: hidden;
    position: relative;
}

#videoBG {
    z-index: -1;
    background-position: center;
    width: 900px;
}

#crystal {
    width: 48%;
    height: 450px;
    padding-bottom: 140px;
    float: right;
}

.crystal_video {
    width: 100%; 
    height: 400px;
    object-fit: cover;
    left: 0px;
    top: 0px;
    z-index: 1;
    overflow: hidden;
    position: relative;
}

#covermore {
    width: 48%;
    height: 450px;
    padding-bottom: 140px;
    float: right;
}

.covermore_bg {
    width: 100%;
    height: 90%;
    background-repeat: no-repeat;
    background-position: center;  
    position: relative;
    overflow: hidden;
    transition: .5s ease;
    background-image: url("../images/home/covermore_900.jpg");
}

#combank {
    width: 48%;
    height: 450px;
    padding-bottom: 140px;
    float: left;
}

.comm_video {
    width: 100%; 
    height: 405px;
    object-fit: cover;
    left: 0px;
    top: 0px;
    z-index: 1;
    overflow: hidden;
    position: relative;
}

#customink {
    width: 48%;
    height: 450px;
    padding-bottom: 140px;
    float: right;
}

.customink_bg {
    width: 100%;
    height: 90%;
    background-repeat: no-repeat;
    background-position: center;  
    position: relative;
    overflow: hidden;
    transition: .5s ease;
    background-image: url("../images/home/customink_900.jpg");
}

#kajeet {
    width: 48%;
    height: 450px;
    padding-bottom: 140px;
    float: left;
}

.kajeet_bg {
    width: 100%;
    height: 90%;
    background-repeat: no-repeat;
    background-position: center;  
    position: relative;
    overflow: hidden;
    transition: .5s ease;
    background-image: url("../images/home/kajeet_900.gif");
}

#watermark {
    width: 48%;
    height: 450px;
    padding-bottom: 140px;
    float: right;
}

.watermark_bg {
    width: 100%;
    height: 90%;
    background-repeat: no-repeat;
    background-position: center;  
    position: relative;
    overflow: hidden;
    transition: .5s ease;
    background-image: url("../images/home/watermark_900.jpg");
}

#hungry {
    width: 48%;
    height: 450px;
    padding-bottom: 140px;
    float: left;
}

.hungry_bg {
    width: 100%;
    height: 90%;
    background-repeat: no-repeat;
    background-position: center;  
    position: relative;
    overflow: hidden;
    transition: .5s ease;
    background-image: url("../images/home/hungry_900.jpg");
}

#chronic {
    width: 48%;
    height: 450px;
    padding-bottom: 140px;
    float: right;
}

.chronic_bg {
    width: 100%;
    height: 90%;
    background-repeat: no-repeat;
    background-position: center;  
    position: relative;
    overflow: hidden;
    transition: .5s ease;
    background-image: url("../images/home/chronic_900.jpg");
}

#logos {
    width: 48%;
    height: 450px;
    padding-bottom: 140px;
    float: left;
}

.logos_bg {
    width: 100%;
    height: 90%;
    background-repeat: no-repeat;
    background-position: center;  
    position: relative;
    overflow: hidden;
    transition: .5s ease;
    background-image: url("../images/home/legit_900.jpg");
}

#usatoday {
    width: 48%;
    height: 450px;
    padding-bottom: 140px;
    float: right;
}

.usatoday_bg {
    width: 100%;
    height: 90%;
    background-repeat: no-repeat;
    background-position: center;  
    position: relative;
    overflow: hidden;
    transition: .5s ease;
    background-image: url("../images/home/usa_900.jpg");
}

#blog_buttons {
    width: 100%;
    height: 50px;
}

#blog_one {
    width: 33.3%;
    height: 200px;
    float: left;
}

.blogOne_bg {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;  
    position: relative;
    overflow: hidden;
    transition: .5s ease;
    background-image: url("../images/home/1.jpg");
}

#blog_two {
    width: 33.3%;
    height: 200px;
    float: left;
}

.blogTwo_bg {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;  
    position: relative;
    overflow: hidden;
    transition: .5s ease;
    background-image: url("../images/home/2.jpg");
}

#blog_three {
    width: 33.3%;
    height: 200px;
    float: left;
}

.blogThree_bg {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;  
    position: relative;
    overflow: hidden;
    transition: .5s ease;
    background-image: url("../images/home/3.jpg");
}

#blog_four {
    width: 33.3%;
    height: 200px;
    float: left;
}

.blogFour_bg {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;  
    position: relative;
    overflow: hidden;
    transition: .5s ease;
    background-image: url("../images/home/5.jpg");
}

#blog_five {
    width: 33.3%;
    height: 200px;
    float: left;
}

.blogFive_bg {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;  
    position: relative;
    overflow: hidden;
    transition: .5s ease;
    background-image: url("../images/home/4.jpg");
}

#blog_six {
    width: 33.3%;
    height: 200px;
    float: left;
}

.blogSix_bg {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;  
    position: relative;
    overflow: hidden;
    transition: .5s ease;
    background-image: url("../images/home/6.jpg");
}

/* media queries */
/* media queries */
/* media queries */

@media screen and (max-width: 1500px) {
  
p {
    font-size: .8em;   
}    
    
h1 {
    font-size: 3em;
}

.portfolio {
    padding-top: 100px;
    height: 2800px;
}

.blog {
    height: 500px;
}

.text_blog {
  top: 55%;
  left: 35%;
}
    
#portfolio_buttons {
    padding-top: 75px;
}

.text {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: .9em;
  top: 50%;
  left: 50%;
}

.overlay {
  width: 0;
  position: absolute;
  background-color: rgba(0,0,0,.5);
  overflow: hidden;
  height: 100%;
  transition: .5s ease;
}

.container {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;  
}

.container:hover .overlay {
  width: 100%;
  height: 100%;
}

.container:hover .overlay_blog {
  width: 100%;
  height: 100%;
} 
    
#videoBG {
    z-index: -1;
    background-position: center;
    width: 700px;
}
    
    
#circle {
    width: 48%;
    height: 400px;
    float: left;
}

.circle_video {
    width: 100%; 
    height: 400px;
    object-fit: cover;
    left: 0px;
    top: 0px;
    z-index: 1;
    overflow: hidden;
    position: relative;
}

#covermore {
    width: 48%;
    height: 400px;
    float: right;
}

.covermore_bg {
    background-image: url("../images/home/covermore_600.jpg");
    height: 100%;
}
    
#medibank {
    width: 48%;
    height: 400px;
    float: left;
}

.medibank_video {
    width: 100%; 
    height: 400px;
    object-fit: cover;
    left: 0px;
    top: 0px;
    z-index: 1;
    overflow: hidden;
    position: relative;
}

#crystal {
    width: 48%;
    height: 400px;
    float: right;
}

#kajeet {
    width: 48%;
    height: 400px;
    float: left;
}

.kajeet_bg {
    background-image: url("../images/home/kajeet_600.gif");
    height: 100%;
}
    
#customink {
    width: 48%;
    height: 400px;
    float: right;
}

.customink_bg {
    background-image: url("../images/home/customink_600.jpg");
    height: 100%;
}



#combank {
    width: 48%;
    height: 400px;
    padding-bottom: 140px;
    float: left;
}


#watermark {
    width: 48%;
    height: 400px;
    padding-bottom: 140px;
    float: right;
}

.watermark_bg {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;  
    position: relative;
    overflow: hidden;
    transition: .5s ease;
    background-image: url("../images/home/watermark_900.jpg");
}
    
#hungry {
    width: 48%;
    height: 400px;
    float: left;
}

.hungry_bg {
    background-image: url("../images/home/hungry_600.jpg");
    height: 100%;
}

#chronic {
    width: 48%;
    height: 400px;
    float: right;
}

.chronic_bg {
    background-image: url("../images/home/chronic_600.jpg");
    height: 100%;
}

#logos {
    width: 48%;
    height: 400px;
    float: left;
}

.logos_bg {
    background-image: url("../images/home/legit_600.jpg");
    height: 100%;
}

#usatoday {
    width: 48%;
    height: 400px;
    float: right;
}

.usatoday_bg {
    background-image: url("../images/home/usa_600.jpg");
    height: 100%;
}
    
.foot {
    height: 300px;
}    
}

/* media queries */
/* media queries */
/* media queries */

@media screen and (max-width: 800px) {
    
h1 {
    font-size: 1.5em;
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 2.2em;
    line-height: .50em;
    text-align: left;
    top: 50%;
	color: #ffffff;
}

h3 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: .75em;
    line-height: 0em;
    letter-spacing: 1px;
    text-align: left;
	color: rgb(150,150,150);
}
    
#page {
        width: 100%; 
        max-width: 1800px; 
        margin: 0 auto; 
        position: relative;
}
    

.portfolio {
    height: 5200px;
    width: 100%;
    background-color:;
}

.blog {
    height: 400px;
    display: none;
}
    
#portfolio_buttons {
    width: 90%;
    height: 90px;
    padding-top: 50px;
    vertical-align: bottom; 
    padding-left: 10%;
}


.button {
    float: right;
    font-size: .9em;
    padding: 5px;
    background: #a2b8ae;
    width: 125px;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 1px;
    font-weight: 600;
    color: rgb(250,250,250);
    border-radius: 25px;
    text-align: center;
}

.button:hover {
    float: right;
    background: #889991;
    width: 125px;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 1px;
    border-radius: 25px;
    cursor: pointer;
    transition: .5s ease;
}

header {
    margin: 0 auto;
    width: 80%;
    padding-bottom: 3em;
    /*padding-left: 10%;*/
    position: relative;
}
    
p {
    font-size: .1em;   
} 

p2 {
    font-size: .3em;   
}
    
h2 {
    padding-left: 10%;
}

h3 {
    padding-left: 10%;
}

h4 {
    font-size: .9em;
}

.intro {
    width: 70%;
    max-width: 300px;
    padding-top: 10px;
    padding-bottom: 25px;
    padding-left: 10%;
    padding-right: 10%;
    position: relative;
}

.homePage .intro {
    max-width: 100%;
}
    
/*.open_close {
    display: none;     
}*/
    
.spacer { 
    display: none;
}

.text {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: .9em;
  top: 50%;
  left: 50%;
}

.overlay {
  width: 0;
  position: absolute;
  background-color: rgba(0,0,0,.5);
  overflow: hidden;
  height: 300px;
  transition: .5s ease;
}

.container {
  position: relative;
  width: 100%;
  height: 300px;
  cursor: pointer;  
}

.container:hover .overlay {
  width: 100%;
  height: 300px;
}

.container:hover .overlay_blog {
  width: 100%;
  height: 300px;
}

#videoBG {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 0;
    min-height: 0;
    width: auto;
    height: auto;
    z-index: -1;
  }
    
#covermore {
    width: 100%;
    height: 350px;
    float: none;
    padding-bottom:75px;
}

.covermore_video {
    width: 100%;
    /*height: 300px;*/
    height: auto;
    object-fit: cover;
    left: 0px;
    top: 0px;
    z-index: 1;
    overflow: hidden;
    position: relative;
  }

#videoBGcircle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 0;
    min-height: 0;
    width: auto;
    height: auto;
    z-index: -1;
  }
    
#circle {
    width: 100%;
    height: 350px;
    float: none;
    padding-bottom:75px;
}

.circle_video {
    width: 100%;
    /*height: 300px;*/
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
    z-index: 1;
    overflow: hidden;
    position: relative;
}

#covermore {
    width: 100%;
    height: 350px;
    float: none;
    padding-bottom:75px;
}

.covermore_bg {
    background-image: url("../images/home/covermore_900.jpg");
}    
       
#medibank {
    width: 100%;
    height: 350px;
    float: none;
    padding-bottom:75px;
}

.medibank_video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0px;
    top: 0px;
    z-index: 1;
    overflow: hidden;
    position: relative;
  }
    
#crystal {
    width: 100%;
    height: 300px;
    float: none;
    padding-bottom:150px;
}

.crystal_video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    left: 0px;
    top: 0px;
    z-index: 1;
    overflow: hidden;
    position: relative;
  }

#kajeet {
    width: 100%;
    height: 325px;
    float: none;
}

.kajeet_bg {
    background-image: url("../images/home/kajeet_900.gif");
}

#customink {
    width: 100%;
    height: 325px;
    float: none;
}

.customink_bg {
    background-image: url("../images/home/customink_900.jpg");
}
    
#combank {
    width: 100%;
    height: 300px;
    float: none;
    padding-bottom: 150px;
}

.comm_video {
    width: 100%; 
    height: 300px;
    object-fit: cover;
    left: 0px;
    top: 0px;
    z-index: 1;
    overflow: hidden;
    position: relative;
}

    
#watermark {
    width: 100%;
    height: 340px;
    float: none;
}

.watermark_bg {
    background-image: url("../images/home/watermark_900.jpg");
}
    
#hungry {
    width: 100%;
    height: 340px;
    float: none;
}

.hungry_bg {
    background-image: url("../images/home/hungry_900.jpg");
}

#chronic {
    width: 100%;
    height: 340px;
    float: none;
}

.chronic_bg {
    background-image: url("../images/home/chronic_900.jpg");
}

#logos {
    width: 100%;
    height: 340px;
    float: none;
}

.logos_bg {
    background-image: url("../images/home/legit_900.jpg");
}

#usatoday {
    width: 100%;
    height: 340px;
    float: none;
}

.usatoday_bg {
    background-image: url("../images/home/usa_900.jpg");
}

.blog {
    height: 800px;
}

#blog_one {
    width: 100%;
    height: 200px;
    float: none;
}

.blogOne_bg {
    background-image: url("../images/home/1.jpg");
}

#blog_two {
    width: 100%;
    height: 200px;
    float: none;
}

.blogTwo_bg {
    background-image: url("../images/home/2.jpg");
}

#blog_three {
    width: 100%;
    height: 200px;
    float: none;
}

.blogThree_bg {
    background-image: url("../images/home/3.jpg");
}
    
.foot {
    margin-top: 125px;
    width: 90%;
    height: 300px;
    background-color: black;
    position: absolute;
    padding: 0 5%;
}

.footInfo {
    display:none;
}

.foot_column {
    display:none;   
}

.foot_mobile {
    display: block;
    margin: 0 auto;
    padding-top: 120px;
    text-align: center;
    
}   
    
}