:root {
  --primary-color: #2696E9;
  --second-color: #04487c;
  --white-font-color: #fff;
  --black-color: #121212;
  --dark-font-color: #ddd;
  --light-mode: #fff;
  --theme-btn: #fff;
  --nav-bar-color: #fff;
  --background-color: #121212;
  --bg-transparent-color: rgba(0, 0, 0, 0.1);
  --transparent-color-01: rgba(0, 0, 0, 0.1);
  --footer-color: #ddd;
  --font_2: normal normal normal 28px/1.4em raleway,sans-serif;
  --font_8: normal normal normal 20px/1.4em raleway,sans-serif;
  --transparent-color-02: rgba(106, 89, 209, 0.1);
  --box-shadow: 0px 0px 20px rgb(0 0 0 / 10%);
  --font: 'Poppins', sans-serif;
}

.dark-theme{
  --primary-color: #2696E9;
  --second-color: #04487c;
  --white-font-color: #000;
  --dark-font-color: #222;
  --theme-btn: #222;
  --black-color: #fff;
  --background-color: #fff;
  --nav-bar-color: #222;
  --footer-color: #222;
  --bg-transparent-color: rgba(0, 0, 0, 0.1);
  --transparent-color-01: rgba(0, 0, 0, 0.1);
  --transparent-color-02: rgba(106, 89, 209, 0.1);
  --box-shadow: 0px 0px 20px rgb(0 0 0 / 10%);
  --font: 'Poppins', sans-serif;
}


body {
  font-family: "Roboto Mono", monospace;
  background-color: var(--background-color);
  line-height: 1.5; }

  
  /********Light/Dark Mode********/
.theme-btn{
  z-index: 999999;
  position: fixed !important;
  right: 0;
  top: 100px;
  background-color: var(--transparent-color-01);
  backdrop-filter: blur(20px);
  width: 50px;
  height: 50px;
  font-size: 1.2em;
  border-radius: 5px 0 0 5px;
  box-shadow: var(--box-shadow);
  cursor: pointer;
  transition: 0.3s ease;
}

.theme-btn .fa-sun, .theme-btn.sun .fa-moon{
  display: none !important;
}

.theme-btn.sun .fa-sun{
  display: block !important;
}

.theme-btn{
  color: var(--theme-btn);
}

.theme-btn .fa-sun, .theme-btn .fa-moon{
  margin: 15px;
}

/******Header*******/
header{
  background: #1f1e1e;
  height: 70px;

}

header .brand img{
  width: 190px;
}

header .navigation .navigation-items a{
  position: relative !important;
  color: #ddd !important;
  font-size: 1em !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  margin-left: 30px !important;
  transition: 0.3s ease !important;
  text-transform: uppercase !important;
  align-items: center;
  text-align: center;
}  

  header .navigation .navigation-items a:before{
    content: '';
    position: absolute;
    background: #fff;
    width: 0 !important;
    height: 3px !important;
    bottom: 0 !important;
    left: 0 !important;
    transition: 0.3s ease;
  }
  
  header .navigation .navigation-items a:hover:before{
    width: 100%;
  }

  .contact{
    margin-top: 100px;
    margin-right: auto;
    margin-left: auto;
    align-items: center;
  }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Oswald", sans-serif !important;
  color: var(--white-font-color);
  text-transform: uppercase; }

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; }
  a, a:hover {
    text-decoration: none !important; }

.text-black {
  color: var(--white-font-color); }

.content {
  padding: 7rem 0; }


.contact .container p{
  color: var(--dark-font-color);
}

.thin-heading {
  font-weight: 300;
  font-size: 40px; }

.form-control {
  border: none;
  border-bottom: 1px solid #ccc;
  padding-left: 0;
  padding: 0;
  border-radius: 0px; 
  background-color: var(--background-color);
  color:var(--dark-font-color);}
  .form-control:active, .form-control:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: var(--white-font-color); }

.col-form-label {
  color: var(--white-font-color); }

.btn, .form-control, .custom-select {
  height: 50px; }

.custom-select:active, .custom-select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #000; }

.heading {
  color: #888;
  letter-spacing: .05rem;
  text-transform: uppercase;
  font-weight: 400; }

.btn {
  border: none;
  border-radius: 0; 
  transition: .3s ease;}
  .btn.btn-primary {
    background: var(--primary-color);
    color: #fff;
    padding: 15px 20px; }
  .btn:hover {
    color: #fff; 
    background-color: var(--second-color)}
  .btn:active, .btn:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none; }

.box {
  padding: 40px;
  background: var(--background-color);
  -webkit-box-shadow: -30px 30px 0px 0 rgba(0, 0, 0, 0.08);
  box-shadow: -30px 30px 0px 0 rgba(0, 0, 0, 0.08); }
  .box h3 {
    font-size: 14px;
    margin-bottom: 30px;
    text-align: center; }

label.error {
  font-size: 12px;
  color: red; }

#message {
  resize: vertical; }

#form-message-warning, #form-message-success {
  display: none; }

#form-message-warning {
  color: #B90B0B; }

#form-message-success {
  color: #55A44E;
  font-size: 18px;
  font-weight: bold; }

.submitting {
  float: left;
  width: 100%;
  padding: 10px 0;
  display: none;
  font-weight: bold;
  font-size: 12px;
  color: var(--white-font-color); }

  .submitting:hover{
    background-color: var(--primary-color);
  }

  /********Footer********/
  .footer-distributed{
    background-color: #272727;
    height: 45vh;
  }
  
  .footer-distributed .footer-left,
  .footer-distributed .footer-center,
  .footer-distributed .footer-right{
    display: inline-block;
    vertical-align: top;
    margin-top: 50px;
  }
  
  /* Footer left */
  .footer-distributed .footer-left{
    width: 40%;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-distributed .footer-left h2{
    color: #ddd;
    margin-left: 30px;
  }
  
  
  /* The company logo */
  .footer-distributed img{
    color:  #ffffff;
    font: normal 36px 'Open Sans', cursive;
    margin: 0;
    width: 370px;
    
  }
  
  .footer-distributed h3 span{
    color:  lightseagreen;
  }
  
  /* Footer links */
  
  .footer-distributed .footer-links{
    color:  #ffffff;
    margin: 20px 30px 12px;
    padding: 0;
  }
  
  .footer-distributed .footer-links a{
    display:inline-block;
    line-height: 1.8;
    color: #fff !important;
    font-weight:400;
    text-decoration: none;
    color:  inherit;
  }
  
  .footer-distributed .footer-company-name{
    color:  var(--white-font-color);
    text-align: center;
    font-size: 14px;
    font-weight: normal;
    margin-top:  80px !important;
  }
  
  /* Footer Center */
  
  .footer-distributed .footer-center{
    width: 35%;
  }
  
  .footer-distributed .footer-center i{
    background-color:  #33383b;
    color: #ffffff;
    font-size: 25px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    margin: 10px 15px;
    vertical-align: middle;
  }
  
  .footer-distributed .footer-center i.fa-envelope{
    font-size: 17px;
    line-height: 38px;
  }
  
  .footer-distributed .footer-center p{
    display: inline-block;
    color: #ffffff !important;
    font-weight:400;
    vertical-align: middle;
    margin:0;
  }
  
  .footer-distributed .footer-center p span{
    display:block;
    font-weight: normal;
    font-size:14px;
    line-height:2;
  }
  
  .footer-distributed .footer-center p a{
    color:  lightseagreen;
    text-decoration: none;;
  }
  
  .footer-distributed .footer-links a:before {
    content: "|";
    font-weight:300;
    font-size: 20px;
    left: 0;
    color: #fff;
    display: inline-block;
    padding-right: 5px;
  }
  
  .footer-distributed .footer-links .link-1:before {
    content: none;
  }
  
  /* Footer Right */
  
  .footer-distributed .footer-right{
    width: 20%;
  }
  
  .footer-distributed .footer-company-about{
    line-height: 20px;
    color:  #92999f !important;
    font-size: 13px;
    font-weight: normal;
    margin: 0;
  }
  
  .footer-distributed .footer-company-about span{
    display: block;
    color:  #ffffff;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .footer-distributed .footer-icons{
    margin-top: 25px;
  }
  
  .footer-distributed .footer-icons a{
    display: inline-block;
    width: 35px;
    height: 35px;
    cursor: pointer;
    background-color:  #33383b;
    border-radius: 2px;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    line-height: 35px;
    margin-right: 3px;
    margin-bottom: 5px;
  }
  
/* If you don't want the footer to be responsive, remove these media queries */

@media (max-width: 880px) {

  header .nav-item:hover .drop-down ul{
    display: block;
    margin: 10px;
    border-radius: 5px;
    background-color: var(--white-font-color);
    margin-top: 20px;
    }
}

@media (max-width: 1080px){
	.cards .image{
		flex: 100%;
		max-width: 480px;
	}

  header{
    padding: 12px 20px;
  }

  section{
    padding: 100px 20px;
  }

  .home .media-icons{
    right: 15px;
  }

  header .navigation{
    display: none;
  }

  header .navigation.active{
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(1, 1, 1, 0.5);
  }

  header .navigation .navigation-items a{
    color: var(--background-color);
    font-size: 1.2em;
    margin: 20px;
  }

  header .navigation .navigation-items a:before{
    background: var(--background-color);
    height: 5px;
  }

  header .navigation.active .navigation-items{
    background: #fff !important;
    width: 600px;
    max-width: 600px;
    margin: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
  }

  .menu-btn{
    background: url(../../img/menu.png)no-repeat;
    background-size: 30px;
    background-position: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .menu-btn.active{
    z-index: 999;
    background: url(../../img/close.png)no-repeat;
    background-size: 25px;
    background-position: center;
    transition: 0.3s ease;
  }
}



header .navigation-items{
  list-style: none !important;
  display: flex !important;
  }
  
  .ob-is-breaking-bad{
  padding: 0 !important;
  margin: 0 !important;
  
  }
  
  header nav .navigation-items .nav-item{
  padding-left: 3rem ;
  }
  
  
  header .nav-item .fa-chevron-down{
  margin-left: 10px;
  font-size: 15px;
  }
  
  header .nav-item .nav-link{
    text-decoration: none;
    color: var(--nav-link-color);
    font-size: 20px;
    font-weight: 700;
    transition: .3s ease;
  }
  
  header .nav-item .nav-link:hover{
  }
  
  .drop-down{
  display: none;
  }
  
  .drop-down a{
  text-decoration: none;
  color: var(--nav-link-color);
  transition: .3s ease;
  font-size: 15px;
  font-weight: 800;
  }
  
  .drop-down a:hover{
  color: var(--primary-color);
  }
  
  header .nav-item:hover .drop-down{
  display: block;
  position: absolute;
  z-index: 9999;
  }
  
  header .nav-item:hover .drop-down ul{
  display: block;
  margin: 10px;
  border-radius: 5px;
  background-color: #332e2e;
  margin-top: 20px;
  }
  
  .drop-down ul li{
  width: 200px;
  padding-bottom: 10px;
  list-style: none;
  }  


