/*
COLOURS
Yellow: #F1F119
Light Blue: #44D6C4
Grey: #2D2D39
Off White: #F4F8FD
Off Black: #171717
*/

/* importing fonts */
@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat:500');

/* Main styles */
h1 {
    font-family: "Montserrat", sans-serif;
}
h2 {
    font-family: "Montserrat", sans-serif;
    /* color: #F1F119;
    background-color: #171717; */
}
p , figcaption, caption{
    font-family: 'Raleway', sans-serif;
}

/* MAIN */

html, body {
  height:100%;
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 4.5rem;
}

#about-us:target {
  scroll-margin-top: 5rem;
}

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

/* NAVBAR */

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 20px 10%;
    width: 100%;
    position: fixed;
    z-index: 2;
    overflow: hidden;
    background-color: #171717;
    max-height:150px;
}

.logo{
    cursor: pointer;
}

.nav__links {
    list-style: none;
}

.nav__links li{
    display: inline-block;
    padding: 0px 20px;
    transition: all 0.3s ease 0s;
}

.nav__links li a:hover {
    color: #e7d742
}

li, a, button{
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #F4F8FD;
    text-decoration: none;
}

button{
    padding: 9px 25px;
    background-color: yellow;
    border-width:5px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    color: black;
}

button:hover{
    background-color: black;
    border-color:yellow;
    color: white;

}

.logo {
  width: 12vw;
}

/* HOME */

.home {
  height: 100%;
  background-color: black;
  display: relative;
}

.home-background{
  background-image: url("./images/map.jpg"); 
  background-repeat: no-repeat;
  height: 100%;
  position: relative;
  background-size: cover;
}

.home-text{
  width: 50%;
  height: 30vh;
  padding: 50px 40px 40px 40px;
  margin: auto;
  position: absolute;
  text-align: center;
  background-color: #171717;
  color: #F1F119;
  /*text-shadow: -1px 0 #171717, 0 1px #171717, 1px 0 #171717, 0 -1px#171717;
  */
  outline-offset: 10px;
  outline: 4px solid #e7d742;
  display: inline-block;
  bottom: 35%;
  right: 25%;
  opacity: 0;
}

.home-text h1{
  font-size: 50px;
}

.home-text h2{
  font-size: 20px;
}

.arrow {
  border: solid #e7d742;
  border-width: 0 8px 8px 0;
  display: inline-block;
  padding: 10px;
  height: 50px;
  width: 50px;
  position: absolute;
  transform: rotate(45deg);
  bottom:8%;
  right:48%;
  border-radius: 5px;
  opacity: 0;
}

.arrow:hover{
  border-color: #F4F8FD;
}

@media screen and (max-height: 500px) {
  .arrow {
    padding: 8px;
    height: 30px;
    width: 30px;
    border-width: 0 4px 4px 0;
  }

  .home-text{
    padding: 30px 30px 30px 30px;
  }
  .home-text h1{
    font-size: 25px;
  }
  
  .home-text h2{
    font-size: 12px;
  }
}

@media screen and (min-height: 500px) and (max-height: 600px) {
  .home-text{
    padding: 40px 40px 40px 40px;
  }
  .home-text h1{
    font-size: 35px;
  }
  
  .home-text h2{
    font-size: 15px;
  }
}

@media screen and (min-height: 800px) {
  .home-text{
    padding: 60px 40px 40px 40px;
  }
  .home-text h1{
    font-size: 60px;
  }
  
  .home-text h2{
    font-size: 25px;
  }
}

@media screen and (min-height: 1000px) {
  .home-text{
    padding: 70px 40px 40px 40px;
  }
  .home-text h1{
    font-size: 70px;
  }
  
  .home-text h2{
    font-size: 30px;
  }
}

@media screen and (min-height: 1200px) {
  .home-text{
    padding: 80px 40px 40px 40px;
  }
  .home-text h1{
    font-size: 80px;
  }
  
  .home-text h2{
    font-size: 35px;
  }
}

/* features */
.blog-post{
    width: 100%;
    max-width: 100000rem;
    padding: 1rem;
    background-color: #171717;
    
    display: flex;
    align-items: center;
    border-radius: 0rem;
  }
  #more {display: none;}
  #more2 {display: none;}
  #more3 {display: none;}
  .blog-post__img{
    min-width: 35rem;
    max-width: 35rem;
    height: 30rem;
    transform: translateX(-8rem);
    position: relative;
  }
  
  .blog-post__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: .8rem;
  }
  
  .blog-post__img::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right, rgba(255, 250, 167, .8), rgba(255, 250, 0, 0.8));
    box-shadow: .5rem .5rem 3rem 1px rgba(0, 0, 0, .05);
    border-radius: .8rem;
  }
  
  .blog-post__date span{
    display: block;
    color: rgba(0, 0, 0, .5);
    font-size: 1.6rem;
    font-weight: 600;
    margin: .5rem 0;
  }
  
  .blog-post__title{
    font-size: 2.5rem;
    margin: 1.5rem 0 2rem;
    text-transform: uppercase;
    color: yellow;
  }
  
  .blog-post__text{
    margin-bottom: 3rem;
    font-size: 1.4rem;
    color:white;
  }
  
  .blog-post__cta{
    display: inline-block;
    padding: 1.5rem 3rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1.2rem;
    color: #fff;
    background-image: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    border-radius: .8rem;
    text-decoration: none;
  }
  
  .blog-post__cta:hover {
    background-image: linear-gradient(to right, #00f2fe 0%, #4facfe 100%);
  }
  
  
    
    .blog-post_img{

      min-width: 30rem;
      max-width: 30rem;
      transform: translate(0, -8rem);
    }
    
    /* End of Features */

/* ------------ CUSTOMER TESTIMONIALS ------------- */
/*
COLOURS
Yellow: #F1F119
Light Blue: #44D6C4
Grey: #2D2D39
Off White: #F4F8FD
Off Black: #171717
*/
.cust-reviews {   
  width: 100%;
  height: 87vh;
  min-height: 700px;
  padding: 40px 20px;
  padding-bottom: 30px;
  background-color: #171717;
  font-size: 16px;          
}
.cust-reviews .upper-container {
  position: relative;
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0,0,0,.5);
}
.cust-reviews h2 {
  color: #F1F119 ;
  text-align: left;
  /* font-size: 2.5rem; */
  font-size: 2em;
  font-family: 'Montserrat', sans-serif;
  /* font-weight: 500; */
  margin: 0.8rem;
  margin-left: 0;
}
.cust-reviews p {
  color: #F4F8FD;
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}
.cust-reviews .wrapper {
  width: 100%;
  box-sizing: border-box;    
  background-image: url("./images/city_intersection.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding: 15px;
  padding-top:10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cust-reviews .wrapper::after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: '';
  background: rgba(0,0,0,0.6);
}
.cust-reviews .wrapper .carousel {
  max-width: 1500px;
  margin: auto;
  padding: 0 30px;
}
.cust-reviews .wrapper .carousel .card {
  /* width:25vw;
  min-width: 250px; */
  width:300px;
  color: #fff;
  text-align: center;
  margin: 20px 0;
  /* margin-top: 10px; */
  line-height: 250px;
  font-size: 90px;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
}
.cust-reviews .wrapper .carousel .card img {
  width: inherit;
  height: auto;
  box-shadow: 5px 6px 6px rgba(0,0,0,0.7);
}
.owl-dots{
  text-align: center;
  margin-top: 40px;
}
.owl-dot:not(:last-child) {
  margin-right: 20px;
}
.owl-dot{
  height: 20px;
  width: 20px;
  margin: 0 5px;
  outline: none;
  /* border-radius: 14px; */
  border-radius: 50%;
  /* border: 2px solid #F1F119!important; */
  border: 2.4px solid rgba(255,255,255,0.7)!important;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
.owl-dot.active,
.owl-dot:hover{
  /* background: #F1F119!important; */
  background: rgba(255,255,255,0.6)!important;
}

.cust-reviews .zoom {
    transition: transform .2s;
}
.cust-reviews .zoom:hover {
    -ms-transform: scale(1.1); /* IE 9 */
    -webkit-transform: scale(1.1); /* Safari 3-8 */
    transform: scale(1.1); 
}

/* RESPONSIVE CUSTOMER TESTIMONIALS */
@media screen and (min-width: 1300px) {
  .cust-reviews .wrapper .carousel .card {
    width: 350px;
  }
}
@media screen and (max-width: 1155px) {
  .cust-reviews {
    height: 84vh
  }
}
@media screen and (max-width: 955px) {
  .cust-reviews h2 {
    font-size: 4vw;
  }
  .cust-reviews p {
    font-size: 2.5vw;
  }
  .cust-reviews {
    min-height: 650px;
  }
}
@media screen and (max-width: 600px) {
  .cust-reviews {
    min-height: 600px;
  }
  .cust-reviews .zoom:hover {
    -ms-transform: scale(1.05); /* IE 9 */
    -webkit-transform: scale(1.05); /* Safari 3-8 */
    transform: scale(1.05); 
  }
  .cust-reviews .bottom-dots i {
    font-size: 13px;
  }
}
@media screen and (max-width: 520px) {
  .cust-reviews h2 {
    font-size: 20px;
  }
  .cust-reviews p {
    font-size: 16px;
  }
  .cust-reviews .zoom:hover {
    /* disable zoom */
    -ms-transform: scale(1); /* IE 9 */
    -webkit-transform: scale(1); /* Safari 3-8 */
    transform: scale(1); 
  }
}
@media screen and (max-width: 470px) {
  .cust-reviews .wrapper {
    padding-left:0;
    padding-right:0;
  }
  .cust-reviews .wrapper .carousel{
    padding-left:40px;
    padding-right:10px;
  }
  .cust-reviews .wrapper .carousel .card {
    width: 270px;
  }
}

/* /////////////////////////////////////////////////////////////////////////ABOUT US Section////////////////////////////////////////////////////////////////////////////////////// */

div.about_us{
    background-color: #171717;
    color: #F4F8FD;
}

div.about_us h1{
    color:#F2F21F;
}

p.introinfo{
    font-size: 25px;
}

div.about_us img{
    transition: transform .4s;
}

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

figure p{
    display: inline;
}

section{
    padding: 20px;
    display: flex;
    flex-direction: row;
}

section button{
    border-radius: 20px;
    box-shadow: grey 2px 2px 0;
}

section .link a{
    background-color: white;
    background-size: 30px;
    background-repeat: no-repeat;
    border-radius: 50%;
    display: inline-block;
    height: 30px;
    margin-top: 5px;
    position: relative;
    text-indent: -999999999px;
    text-decoration: none;
    width: 30px;
    padding: 0;

}

section .linkedIn a{
    background-size: 45px;
    background-position: center;
}

section .github a{
    background-size: 51px;
    background-position: center;
    position: relative;
}

section .github a:hover{
    background-color:#F2F21F;    
}

section .linkedIn a:hover{
    background-color: #32D4E6;   
}

section .github a{
    background-image: url("images/github.png");
}


section .linkedIn a{
    background-image: url("images/linkedin.png");
}

figcaption{
    color: #F2F21F;
    font-size: 22px;
    margin-top: 10px;
}

.people a {
    text-decoration: none;
    color: black;
}

.people figure {
    margin: auto;
    text-align: center;
    width: 230px;
}
.people figure img {
    border-radius: 50%;
    box-shadow: grey 0 0 10px;
    width: 150px;
}

.peoplev2{
    display: none;
}

/*RESPONSIVE RULES FOR ABOUT US SECTION*/

@media screen and (max-width: 644px) {

    .people{
        display: none;
    }

    .peoplev2{
        display: flex;
        flex-direction: row;
        padding: 0px;
        flex-wrap: wrap;
    }
    
    figure{
        padding: 10px;
    }

    p.introinfo{
        font-size: 22px;
    }
}

@media screen and (max-width: 565px) {

    .h_main{
        font-size: 30px;
    }

    p.introinfo{
        font-size: 20px;
        padding-bottom: 0px;
    }
}

@media screen and (max-width: 516px) {

    p.introinfo{
        font-size: 18px;
        padding-bottom: 0px;
    }
}


/* /////////////////////////////////////////////////////////////////////////FAQ Section////////////////////////////////////////////////////////////////////////////////////// */
.Faq-background{
    background-color:#171717;

}
.FAQ-Section{
    background: 
        url(https://cdn.discordapp.com/attachments/763177317929058326/766010087063289866/pexels-photo-219692.png) no-repeat fixed;
        max-width: 50%;
        background-position: -600px -500px;
        color:#171717;

}
.FAQ-H2{
    text-align: center;
    color: yellow;
    margin: 0px 0px 130px 0px;
    background-color: #171717;
    padding: 20px;
    transform: translate(100%, 100%);

}
.container-questions {
    transform: translate(110%,0%);
    width: 95%;
    height: 420px
}
.container-questions ul{
    margin: 0px 0px 0px 0px;
    text-align: center;
    width: 100%;
}
.container-questions ul li {
    text-align: center;
    display: inline-flex;
    width: 300px;
    height: 320px;
    background: #171717;
    margin:  0px 40px 20px 0px;
    padding: 0px;
}
.container-questions ul li .title-questions {
    font-family: 'Raleway', sans-serif;
    height: 50px;
    line-height: 50px;
    background: yellow;
    text-align: center;
    color: #171717;
    width: 350px

}
.container-questions ul li .questions {
    font-family: 'Raleway', sans-serif;
    color: yellow;
    width: 300px;
    height: 50px;
    line-height: 50px;
    text-align: left;
    padding: 10px;
    margin: 0px 0px 20px 20px;
}
.searchbar-contour .search-bar{
    margin:0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
}
.searchbar-contour {
    position: absolute; 
    left: 33%;
    transform: translate(-75%, 100px);
    height: 40px;
    font-family: 'Raleway', sans-serif;
    background: #ffffff;
    padding: 10px;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
    max-width: 600px;
    width: 100%;
    border-radius: 5px;
    display:flex;
    justify-content: space-between;
}
.searchbar-contour .input{
    width: 85%;
    padding: 10px 10px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
}

@media screen and (max-width: 1440px){
    .Faq-background{
        height: 950px;
    }

    .FAQ-Section {
        height: 950px;
    }
}
@media screen and (max-width: 1440px){
    .searchbar-contour{
        transform: translate(-75%, 750%);
        width: 40% ;
    }
}


/* Contact Us Section*/
.contact-us-background{
  background-color: #171717;
  height: 550px;
  width: 100%;
}
.contact-us {
  background-color: #171717;
  width : 50%;
  position:  absolute;
  transform: translate(45%, 0%);
  margin: 50px 50px 50px 50px;
  padding: 30px 40px 30px 40px;
  box-sizing: border-box;
  border-radius: 8px;
  text-align: center;

}

.contact-us h1{
  color: yellow;
  margin-bottom: 25px;
  font-weight: 200;
  font-family: 'Raleway', sans-serif;
}

.contact-us .contact-textb{
  border: 1px solid yellow;
  margin: 8px 0;
  padding: 12px 18px;
  border-radius: 8px;
  font-family: 'Raleway', sans-serif;
}

.contact-us .contact-textb label{
  display:block;
  text-align: left;

  color: yellow;
  text-transform: uppercase;
  font-size: 14px;
  font-family: 'Raleway', sans-serif;
}

.contact-us .contact-textb input, .contact-us .contact-textb textarea{
  color: yellow;
  width: 100%;
  border: none;
  background: none;
  outline: none;
  font-size: 18px;
  margin-top: 6px;

  font-family: 'Raleway', sans-serif;
}

.contact-us .contactbutton{
  display: block;
  background: yellow;
  padding: 14px 0;
  color: #171717;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 40px;
  width: 40%;
  transform: translate(75%, 0%);
  border-radius: 8px;
  font-family: 'Raleway', sans-serif;
}

.contact-us .contactbutton:hover{
  opacity: 50%;
}
@media screen and (max-width: 1440px){
  .contact-us{
    width: 50%;
    height: 50%
  }
}
.contact-us-background .contact-us .contactbutton .Supportpop{
  visibility: hidden;
  width: 160px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;  
  
}
.contact-us-background .contact-us .contactbutton .Supportpop::after{
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent; 
}
.contact-us-background .contact-us .contactbutton .show{
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s
}

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

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}
/* $$$$$ Section */
}

body{ 
  background-image: linear-gradient(150deg,#171717,#171717 );
  min-height: 100vh;
  min-width: 100vh;
  display: flex;
  align-items: center;
  margin: auto;  

}
.pricing-table{
    background-image: linear-gradient(150deg,#171717,#171717 );
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding-top:2%;
    padding-bottom: 2%;
}
.pricing-card{
  flex: 1;
  max-width: 450px;
  background-color: #fff;
  margin: 500px 20px;
  border-radius: 10px 10px 10px 10px;
  text-align: center;
  cursor: pointer;
  align-items: center; 
  overflow: hidden;
  margin: auto;
  color: #2d2d2d;
  transition: .6s linear;


}

.ribbon .label {
  position: relative;
  display: block;
  left: 315px;
  top: -15px;
  width: 180px;
  padding: 10px 0;
  font-size: 15px;
  text-align: center;
  color: #fff;
  background-color: #db1616;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
  -ms-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
  -webkit-transform: rotate(45deg) translate3d(0, 0, 0);
  -moz-transform: rotate(45deg) translate3d(0, 0, 0);
  -ms-transform: rotate(45deg) translate3d(0, 0, 0);
  transform: rotate(45deg) translate3d(0, 0, 0);
}


.table1 .pricing-card-header{
  background-color: #76e381;
  display: inline-block;
  color: #fff;
  padding: 12px 30px;
  border-radius: 0 0 200px 200px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  transition: .6s linear;
}
.table2 .pricing-card-header{
  background-color: #ff7a59;
  display: inline-block;
  color: #fff;
  padding: 12px 30px;
  border-radius: 0 0 200px 200px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  transition: .6s linear;
}
.table3 .pricing-card-header{
  background-color: #0e579c;
  display: inline-block;
  color: #fff;
  padding: 12px 30px;
  border-radius: 0 0 200px 200px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  transition: .6s linear;
}
.pricing-card:hover .pricing-card-header{
  box-shadow: 0 0 0 26em #F2F21F;
  background-image: linear-gradient(100deg,#171717,#171717);

}

.table1 .price{
  font-size: 70px;
  color: #77ff00;
  margin: 40px 0;
  transition: .2s linear;
}
.table2 .price{
  font-size: 70px;
  color: #ff9900;
  margin: 40px 0;
  transition: .2s linear;
}
.table3 .price{
  font-size: 70px;
  color: #0e579c;
  margin: 40px 0;
  transition: .2s linear;
}
.price sup, .price span{
  font-size: 15px;
  font-weight: 600;
}
.price{
    color: black
}

.pricing-card:hover .price{
  color: #171717;

}
.pricing-card:hover .ribbon .label {
  background-image: linear-gradient(100deg,#171717,#171717);
}

.pricing-card li{
  font-size: 19px;
  padding: 12px 0;
  color: #000;

}

.table1 .order-btn{
  display: inline-block;
  margin-bottom: 40px;
  margin-top: 80px;
  border: 2px solid #058212;
  color: #47a150;
  padding: 18px 40px;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: 500;
  transition: .3s linear;
}

.table1 .order-btn:hover{
  background-color: #76e381;
  color: #fff;
}
.table2 .order-btn:hover{
  background-color: #e3c96d;
  color: #fff;
}
.table2 .order-btn{
  display: inline-block;
  margin-bottom: 40px;
  margin-top: 80px;
  border: 2px solid #fcc462;
  color: #ffa305;
  padding: 18px 40px;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: 500;
  transition: .3s linear;
}
.table3 .order-btn:hover{
  background-color: #1e0d4a;
  color: #fff;
}
.table3 .order-btn{
  display: inline-block;
  margin-bottom: 40px;
  margin-top: 80px;
  border: 2px solid #0e579c;
  color: #4755bf;
  padding: 18px 40px;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: 500;
  transition: .3s linear;
}
@media screen and (max-width:1100px){
  .pricing-card{
    flex: 100%;
  }
}

/* FOOTER */
.footer {
  background: #080808;
  padding: 40px;
  line-height: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.footer .row {
  display: flex;
  flex-direction: row;
  justify-content: space-between; 
}
.footer .row .column {
  width: 22vw;
  min-width: 185px;
  margin-top: 20px;
}
.footer .row .column:nth-child(1) {
  width: 30vw;
  min-width: 260px;
  margin-right: 60px;
  margin-top: 0;
}
.footer .row .column:nth-child(4) .download-pics {
  width:inherit;
  display: flex;
  flex-direction: column;
}
.footer .row .column:nth-child(4) .download-pics img {
  width: inherit;
  max-width: 170px;
  min-width: 120px;
  margin-bottom: 10px;
}
.footer .download {
  display:None;
}
.footer .row .column li {
  list-style-type: none;
}
.footer li a:hover, .bottom-band a:hover {
  color: #F1F119;
}
.footer .row .column img{
  width: 70%;
  height: auto;
}
.footer img:hover {
  cursor: pointer;
}

.footer .follow-us {
  margin-top: 20px;
}
.footer .follow-us .socials {
  width: 200px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.footer .follow-us .socials i {
  font-size: 20px;
  color: #e0e4e9;
}
.footer .follow-us .socials i:hover {
  color: #F1F119;
  cursor: pointer;
}
.bottom-band {
  background: black;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.footer h3 {
  font-size: 30px;
  color: #F1F119;
  font-family: "Montserrat", sans-serif;
}
.footer h4 {
  margin-bottom: 12px;
  font-size: 16px;
  color: #979797;
  font-family: 'Raleway', sans-serif;
}
.footer p, .bottom-band p {
  font-size: 16px;
  color: #e0e4e9;
  font-family: 'Raleway', sans-serif;
}
.footer a, .bottom-band a {
  font-size: 14px;
  font-weight: 100;
  font-family: 'Raleway', sans-serif;
}
.bottom-band p, .bottom-band a{
  padding: 10px;
  font-size: 13px;
}
@media screen and (max-width:1000px) {
  .footer .row {
    flex-wrap: wrap;
    /* justify-content: space-evenly; */
  }
  .footer .row .column:nth-child(1) {
    margin-right: 30px;
  }
  /* .footer .row .column:nth-child(2),.footer .row .column:nth-child(3) {
    margin-right: 15px;
  } */
  .footer .row .column:nth-child(4) {
    display: None;
  }
  .footer .download {
    display: inline-block;
    width: 55vw;
    margin-top: 20px;
  }
  .footer .download .download-pics {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .footer .download .download-pics img {
    width: 48%;
    height: auto;
    max-width: 300px;
    min-width: 120px;
  }
}
@media screen and (max-width:600px) {
  .footer .row .column:nth-child(2),.footer .row .column:nth-child(3) {
    min-width: 170px;
  }
}
@media screen and (max-width:430px) {
  .footer {
    padding: 30px;
  }
  .footer h4 {
    white-space: nowrap;
  }
  .footer .row .column:nth-child(1) {
    min-width: 200px;
  }
  .footer .row .column:nth-child(2),.footer .row .column:nth-child(3) {
    margin-right: 10px;
  }
  .footer .follow-us .socials {
    width: 150px;
  }
}
