:root{
    --colBrown: #e5af5a;
    --colDark: #444444;
    --bgGrey: #eeeeee;
    --textGrey: #9c9c9c;
}

*{
	margin: 0;
  	padding: 0;
	font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
}

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

h1{
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 55px;
    text-transform: uppercase;
}

h2{
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 35px;
    text-transform: uppercase;
}

p{
    font-size: 18px;
}

/* TOP MESSAGE */

#top-message{
    border-bottom: 1px solid #eeeeee;
    padding: 8px 0;
    background-color: white;
}

.text-top-left{
    
}

.text-top-left ul{
    margin-bottom: 0;
}

.text-top-left ul li{
    font-size: 14px;
    color: var(--colDark);
    list-style: none;
}

.text-top-left ul li a{
    background-color: var(--colBrown);
    color: white;
    font-weight: 600;
    padding: 5px;
    border-radius: 5px;
    margin-left: 10px;
    text-decoration: none;
}

.text-top-right{
    
}

.text-top-right ul{
    margin-bottom: 0;
    text-align: right;
}

.text-top-right ul li{
    list-style: none;
}

.text-top-right ul li a{
    font-size: 14px;
    color: var(--colDark);
    text-decoration: none;
}

.text-top-right ul li a:hover{
    color: var(--colBrown);
    text-decoration: none;
}

/* NAVBAR */

.navbar {
    transition: all 0.4s;
    background-color: white;
    border-bottom: 1px solid #eeeeee;
}

.navbar .nav-link {
    color: var(--colDark);
    font-size: 14px;
    margin-left: 5px;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: var(--colBrown);
    text-decoration: none;
}

.navbar .navbar-brand {
    color: var(--colBrown);
}

.sing-up{
    background-color: var(--colBrown);
    color: white !important;
    border-radius: 5px;
}

.sing-up:hover{
    background-color: var(--colDark);
    transition: 0.5s ease;
}


/* Change navbar styling on scroll */
.navbar.active {
    background: #fff;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.active .nav-link {
    color: #555;
}

.navbar.active .nav-link:hover,
.navbar.active .nav-link:focus {
    color: #555;
    text-decoration: none;
}

.navbar.active .navbar-brand {
    color: #555;
}


/* Change navbar styling on small viewports */
@media (max-width: 991.98px) {
    .navbar {
        background: #fff;
    }

    .navbar .navbar-brand, .navbar .nav-link {
        color: #555;
    }
}

/* HERO */

#hero{
    background-image: url(..//images/hero-1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 100vh;
}

.bg-hero{
    width: 100%;
    min-height: inherit;
    padding-top: 38vh;
    background: rgba(0,0,0,0.6);
}

.text-hero{
    text-align: center;
    border-radius: 5px;
}

.text-hero h1{
    color: white;
    margin-bottom: 0;
}

.text-hero h4{
    color: white;
    margin: 30px 0;
}

.btn-hero{
    padding-top: 25px;
    padding-bottom: 16px;
}

.btn-hero a:first-of-type{
    text-decoration: none;
    background-color: var(--colBrown);
    color: white;
    padding: 15px 35px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 5px;
    border: 2px solid var(--colBrown);
}

.btn-hero a:first-of-type:hover{
    text-decoration: none;
    background-color: white;
    color: var(--colBrown);
    border: 2px solid white;
    transition: 0.5s ease;
}

.btn-hero a:last-of-type{
    text-decoration: none;
    background-color: transparent;
    color: white;
    padding: 15px 35px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 5px;
    border: 2px solid white;
}

.btn-hero a:last-of-type:hover{
    background-color: var(--colBrown);
    color: white;
    border: 2px solid var(--colBrown);
    transition: 0.5s ease;
}

/* LOOKING */

#looking{
    padding: 80px 0;
    width: 100%;
    height: auto;
}

.title-looking{
    text-align: center;
}

.title-looking h2{
    margin-bottom: 20px;
    color: var(--colDark);
}

.title-looking p{
    color: var(--textGrey);
    margin-bottom: 60px;
}

.padd-look{
    padding: 10px;
}

.text-looking{
    text-align: center;
}

.text-looking i{
    color: var(--colBrown);
    font-size: 50px;
}

.text-looking h4{
    font-weight: 600;
    margin: 20px 0;
    color: var(--colDark);
}

.text-looking p{
    color: var(--textGrey);
}

.btn-look{

}

.btn-look a{
    text-decoration: none;
    color: var(--colBrown);
    font-weight: 600;
}

/* SING UP HERE */

#sing-up-here{
    background-color: var(--colDark);
    padding: 80px 0;
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

#sing-up-here::before{
    content: "";
    width: 130px;
    height: 130px;
    background-color: var(--colBrown);
    position: absolute;
    top: -60px;
    left: -80px;
    transform: rotate(40deg);
    overflow: hidden;
}

#sing-up-here::after{
    content: "";
    width: 130px;
    height: 130px;
    background-color: var(--colBrown);
    position: absolute;
    bottom: -60px;
    right: -80px;
    transform: rotate(40deg);
    overflow: hidden;
}

.title-sing-up{
    text-align: center;
}

.title-sing-up h2{
    margin-bottom: 20px;
    color: white;
}

.title-sing-up p{
    color: white;
}

.btn-sing-up{
    padding-top: 30px;
    padding-bottom: 16px;
}

.btn-sing-up a{
    text-decoration: none;
    background-color: transparent;
    color: white;
    padding: 15px 35px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 5px;
    border: 2px solid white;
}

.btn-sing-up a:hover{
    background-color: var(--colBrown);
    color: white;
    border: 2px solid var(--colBrown);
    transition: 0.5s ease;
}

/* GUIDE */

#guide{
    padding: 80px 0;
    width: 100%;
    height: auto;
}

.title-guide{
    text-align: center;
}

.title-guide h2{
    margin-bottom: 20px;
    color: var(--colDark);
}

.title-guide p{
    color: var(--textGrey);
    margin-bottom: 60px;
}

.icon-guide{
    float: left;
    width: 5%;
}

.icon-guide i{
    font-size: 30px;
    margin-right: 15px;
    color: var(--colBrown);
}

.text-guide{
    overflow: hidden;
}

.text-guide h4{
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--colDark);
}

.text-guide p{
    color: var(--textGrey);
    margin-bottom: 20px;
}

/* GET START */

#get-start{
    width: 100%;
    height: auto;
    padding: 60px 0;
    background-color: var(--colDark);
}

.title-get-start{
    
}

.title-get-start h3{
    margin-bottom: 0;
    color: white;
    font-weight: 600;
}

.btn-get-start{
    text-align: right;
    margin-top: 5px;
}

.btn-get-start a{
    text-decoration: none;
    padding: 15px 35px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 5px;
    background-color: var(--colBrown);
    color: white;
    border: 2px solid var(--colBrown);
}

.btn-get-start a:hover{
    background-color: transparent;
    color: white;
    border: 2px solid white;
    transition: 0.5s ease;
}

/* FAQ */

#faq{
    padding: 80px 0;
    width: 100%;
    height: auto;
    border-bottom: 1px solid #eeeeee;
}

.faq-nav {
  flex-direction: column;
  margin: 0 0 32px;
  border-radius: 2px;
  border: 1px solid #ddd;
  box-shadow: 0 1px 5px rgba(85, 85, 85, 0.15);
}

.faq-nav .nav-link {
  position: relative;
  display: block;
  margin: 0;
  padding: 13px 16px;
  background-color: #fff;
  border: 0;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  color: var(--colDark);
  transition: background-color 0.2s ease;
}

.faq-nav .nav-link:hover {
  background-color: #eeeeee;
}

.faq-nav .nav-link.active {
  background-color: #eeeeee;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.87);
}

.faq-nav .nav-link:last-of-type {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom: 0;
}

.faq-nav .nav-link i {
  margin-right: 5px;
  font-size: 18px;
  position: relative;
}

.tab-content {
  box-shadow: 0 1px 5px rgba(85, 85, 85, 0.15);
}

.tab-content .card {
  border-radius: 0;
}

.tab-content .card-header{
  padding: 15px 16px;
  border-radius: 0;
  background-color: #eeeeee;
}

.tab-content .card-header h5 {
  margin: 0;
}

.tab-content .card-header h5 button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.87);
  text-align: left;
  white-space: normal;
}

.tab-content .card-header h5 button:hover, .tab-content .card-header h5 button:focus, .tab-content .card-header h5 button:active, .tab-content .card-header h5 button:hover:active {
  text-decoration: none;
}

.tab-content .card-body p {
  color: var(--textGrey);
    font-size: 16px;
}

.tab-content .card-body p:last-of-type {
  margin: 0;
}

.accordion > .card:not(:first-child) {
  border-top: 0;
}

.collapse.show .card-body {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

/* PRICING */

#pricing{
    padding: 80px 0;
    width: 100%;
    height: auto;
}

.text-pricing h2{
    margin-bottom: 20px;
    color: var(--colDark);
}

.text-pricing p{
    color: var(--textGrey);
    margin-bottom: 40px;
}

.box-pricing{
    text-align: center;
    border: 1px solid #eeeeee;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.box-pricing h4{
    margin-bottom: 0;
    padding: 15px 0;
    border-bottom: 1px solid #eeeeee;
    font-weight: 600;
    color: var(--colDark);
}

.box-pricing p:first-of-type{
    margin-bottom: 0;
    padding-top: 25px;
    font-size: 40px;
    font-weight: 600;
    color: var(--colBrown);
}

.box-pricing p:last-of-type{
    font-size: 16px;
    color: var(--textGrey);
    padding-bottom: 15px;
    margin-bottom: 0;
    margin-top: -8px;
}

.box-pricing ul{
    margin-bottom: 65px;
}

.box-pricing ul li{
    list-style: none;
    text-align: left;
    margin: 0 15px;
    color: var(--textGrey);
}

.box-pricing ul li i{
    color: var(--colBrown);
    margin-right: 5px;
}

.box-pricing a{
    display: block;
    padding: 15px 0;
    background-color: var(--colBrown);
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.box-pricing a:hover{
    background-color: var(--colDark);
    color: white;
    text-decoration: none;
    transition: 0.5s ease;
}

.btn-pricing{
    margin: 50px 0;
}

.btn-pricing a{
    text-decoration: none;
    padding: 15px 35px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 5px;
    background-color: var(--colDark);
    color: white;
    border: 2px solid var(--colDark);
}

.btn-pricing a:hover{
    background-color: var(--colBrown);
    color: white;
    border: 2px solid var(--colBrown);
    transition: 0.5s ease;
}

/* FOOTER */

footer{
    background-color: var(--colDark);
    width: 100%;
    height: auto;
    padding-top: 80PX;
}

.text-footer{
    
}

.text-footer h5{
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}


.text-footer ul{
    margin-bottom: 30px;
}


.text-footer ul li{
    list-style: none;
    color: white;
    margin-bottom: 5px;
}


.text-footer ul li a{
    color: white;
    text-decoration: none;
}

.text-footer ul li a:hover{
    color: var(--colBrown);
    text-decoration: none;
}

.hr-foo hr{
    background-color: #eeeeee;
    margin-bottom: 40px;
}

.copy{
    
}

.copy p{
    color: white;
}

.copy ul{
    text-align: right;
}

.copy ul li{
    list-style: none;
    display: inline;
    margin-left: 10px;
}

.copy ul li a i{
    color: var(--colBrown);
}

.copy ul li a i:hover{
    color: white;
}

/* RESPONSIVE HOME PAGE */

@media (min-width: 992px) and (max-width: 1199px) {
	
}

@media (min-height: 1366px){

}

@media (min-width: 768px) and (max-width: 991px) {
    .bg-hero{
        padding-top: 31vh;
    }
    .text-guide{
        padding-left: 20px
    }
    .title-get-start h3{
        text-align: center;
    }
    .btn-get-start{
        text-align: center;
        margin-top: 40px;
        margin-bottom: 16px;
    }
    .navbar .nav-link{
        margin-left: 0;
    }
    .sing-up{
        width: 150px;
        text-align: center;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .bg-hero{
        padding-top: 27vh;
    }
    .text-looking p{
        padding: 0 50px;
    }
    .text-guide{
        padding-left: 20px
    }
    .title-get-start h3{
        text-align: center;
    }
    .btn-get-start{
        text-align: center;
        margin-top: 40px;
        margin-bottom: 16px;
    }
    .sing-up{
        width: 150px;
        text-align: center;
    }
}

@media (min-width: 321px) and (max-width: 480px) {
    .text-top-left ul li{
        font-size: 10px;
        text-align: center;
    }
    .sing-up{
        width: 150px;
        text-align: center;
    }
    .text-top-right ul{
        text-align: center;
    }
    .bg-hero{
        padding-top: 28vh;
    }
    h1{
        font-size: 40px;
    }
    h2{
        font-size: 30px;
    }
    #looking, #guide,#faq,#pricing{
        padding: 40px 0;
    }
    .text-guide{
        padding-left: 25px
    }
    .title-get-start h3{
        text-align: center;
    }
    .btn-get-start{
        text-align: center;
        margin-top: 40px;
        margin-bottom: 16px;
    }
    .box-marg{
        margin-bottom: 20px;
    }
    footer{
        padding-top: 40px;
    }
    .copy ul{
        text-align: left;
    }
}

@media (max-width: 320px) {
    .text-top-left ul li{
        font-size: 10px;
        text-align: center;
    }
    .sing-up{
        width: 150px;
        text-align: center;
    }
    .text-top-right ul{
        text-align: center;
    }
    .bg-hero{
        padding-top: 28vh;
    }
    .btn-hero a:first-of-type{
        display: block;
        margin-bottom: 5px;
    }
    .btn-hero a:last-of-type{
        display: block;
        margin-bottom: 20px;
    }
    h1{
        font-size: 35px;
    }
    h2{
        font-size: 30px;
    }
    #looking, #guide,#faq,#pricing{
        padding: 40px 0;
    }
    .text-guide{
        padding-left: 25px
    }
    .title-get-start h3{
        text-align: center;
    }
    .btn-get-start{
        text-align: center;
        margin-top: 40px;
        margin-bottom: 16px;
    }
    .box-marg{
        margin-bottom: 20px;
    }
    footer{
        padding-top: 40px;
    }
    .copy ul{
        text-align: left;
    }
}