@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

:root {
    --primary-color: #2696E9;
    --second-color: #04487c;
    --white-font-color: #fff;
    --dark-font-color: #ddd;
    --light-mode: #fff;
	--theme-btn: #fff;
    --nav-bar-color: #fff;
	--color-contact-btn: #000;
    --background-color: #121212;
    --header-nav: rgba(255, 255, 255, 0.5);
    --prod-intro: #242323;
	--contact-btn: #3d3d3d;
    --bg-transparent-color: rgba(0, 0, 0, 0.1);
    --transparent-color-01: rgba(0, 0, 0, 0.1);
    --footer-color: #ddd;
	--content-p: rgba(255, 255, 255, 0.568);
    --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;
	--theme-btn: #222;
    --dark-font-color: #222;
    --header-nav: rgba(26, 26, 26, 0.699);
    --background-color: #fff;
	--content-p: rgba(0, 0, 0, 0.568);
    --prod-intro: #88888857;
    --nav-bar-color: #222;
	--color-contact-btn: #ddd;
	--contact-btn: #3d3d3d;
    --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;
  }

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
}

body{
	transition: .5 ease;
	background: var(--background-color);
	right: 0;
	left: 0;
	
}

/********Light/Dark Mode********/
.theme-btn{
	z-index: 999999;
	position: fixed;
	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;
}
  
  
.theme-btn.sun .fa-sun{
	display: block;
}
  
.theme-btn{
	color: var(--theme-btn);
}
  
.section{
	width: 100%;
	min-height: 200vh;
	margin-bottom: -10rem;
}

/********Light/Dark Mode********/
.theme-btn{
	z-index: 999999;
	position: fixed;
	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;
  }
  
  .theme-btn.sun .fa-sun{
	display: block;
  }
  
  .theme-btn{
	color: var(--theme-btn);
  }
  
  /* Tooltip */
  .test+.tooltip>.tooltip-inner {
	background-color: #73AD21;
	color: #FFFFFF;
	border: 1px solid green;
	padding: 15px;
	font-size: 20px;
  }
  
  /* Tooltip on top */
  .test+.tooltip.top>.tooltip-arrow {
	border-top: 5px solid green;
  }
  
  /* Tooltip on bottom */
  .test+.tooltip.bottom>.tooltip-arrow {
	border-bottom: 5px solid blue;
  }
  
  /* Tooltip on left */
  .test+.tooltip.left>.tooltip-arrow {
	border-left: 5px solid red;
  }
  
  /* Tooltip on right */
  .test+.tooltip.right>.tooltip-arrow {
	border-right: 5px solid black;
  }  
  
  .ob-is-breaking-bad{
	padding: 0 !important;
	margin: 0 !important;
	
  }
    

  
  /********Home Section********/
  .home{
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	background: var(--primary-color);
  }
  
.container{
	width: 80%;
	display: block;
	margin:auto;
	padding-top: 100px;
}

.content-section{
	float: left;
	width: 55%;
}

.image-section{
	float: right;
	width: 40%;
}

.image-section img{
	width: 500px;
	height: 400px;
	border-radius: 10px;
	margin-top: 100px;
}

.content-section .title{
	text-transform: uppercase;
	font-size: 28px;
	color: var(--dark-font-color);
}

.content-section .content h3{
	margin-top: 20px;
	color : var(--dark-font-color);
	font-size: 21px;
	text-align: left;
}

.content-section .content p{
	margin-top: 10px;
	font-family: sans-serif;
	font-size: 18px;
	line-height: 1.5;
	color: var(--content-p);
	text-align: left;

}

.content-section .content .button{
	margin-top: 30px;
}

.content-section .content .button a{
	background-color: #3d3d3d;
	padding:12px 40px;
	text-decoration: none;
	color: #fff;
	font-size: 25px;
	letter-spacing: 1.5px;
	transition: .3s ease;
}

.content-section .content .button a:hover{
	background-color: var(--primary-color);
	color: #fff;
}

.content-section .social{
	margin: 40px 40px;
}

.content-section .social i{
	color: var(--primary-color);
	font-size: 30px;
	transition: .3s ease;
	padding:0px 10px;
}

.content-section .social i:hover{
	color: var(--dark-font-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;
	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;
	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;
	  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) {
  
	  .footer-distributed{
		  font: bold 14px sans-serif;
	  height: 120vh;
	  width: 414px !important;
	  align-items: center;
	  right: 0 !important;
	  left: 0 !important;
	  margin-top: 100px;
	  }
  
	  .footer-distributed .footer-left,
	  .footer-distributed .footer-center,
	  .footer-distributed .footer-right{
		  display: block;
		  width: 100%;
		  margin-bottom: 40px;
		  text-align: center;
	  }
  
	  .footer-distributed .footer-center i{
		  margin-left: 0;
	  }
  
  }
  /* Tooltip container */
  .tooltip {
	position: relative;
	display: inline-block;
  }
  
  /* Tooltip text */
  .tooltip .tooltiptext {
	visibility: hidden;
	max-width: 50px;
	background-color: transparent;
	color: var(--white-font-color);
	text-align: center;
	padding: 5px 0;
	border-radius: 6px; 
	/* Position the tooltip text - see examples below! */
	position: absolute;
	z-index: 1;
  }
  
  /* Show the tooltip text when you mouse over the tooltip container */
  .tooltip:hover .tooltiptext {
	visibility: visible;
  }
  
  .tooltip .tooltiptext {
	top: -5px;
	right: 70px;
  }
  

@media screen and (max-width: 768px){
	.section{
		width: 100%;
		min-height: 350vh;
		border-bottom: 90em;
		margin-bottom: -10rem;
	}
	
	.container{
	width: 80%;
	display: block;
	margin:auto;
	padding-top:50px;
	}

	header .nav-item:hover .drop-down ul{
		display: block;
		margin: 10px;
		border-radius: 5px;
		background-color: var(--white-font-color);
		margin-top: 20px;
	  }
	

	.content-section{
		float:none;
		width:100%;
		display: block;
		margin:auto;
	}

	.image-section{
		float:none;
		width:100%;
	}

	.image-section img{
		width: 100%;
		height: auto;
		display: block;
		margin:auto;
	}

	.content-section .title{
		text-align: center;
		font-size: 19px;
	}

	.content-section .content .button{
		text-align: center;
	}

	.content-section .content .button a{
		padding:9px 10px;
	}

	.content-section .social{
		text-align: center;
	}

	footer .footer-col h4{
		font-size: 13px;
	}

	.content-section .content h3 {
		margin-top: 20px;
		color: var(--dark-font-color);
		font-size: 21px;
		width: 100%;
	}

	.content-section .content p {
		margin-top: 10px;
		font-family: sans-serif;
		font-size: 18px;
		line-height: 1.5;
		color: var(--content-p);
 		min-width: 100% !;
	}
}

@media screen and (max-width: 480px){
	body{
		width: 100% !important;
	}
}

/****Media Query Max Width 1080px*****/
@media (max-width: 1080px){
	.cards .image{
		flex: 100%;
		max-width: 100%;
	}

  .home{
    min-width: 100%;
  }

  header{
    padding: 12px 20px;
  }

  section{
    padding: 20px 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: #222;
    font-size: 1.2em;
    margin: 20px;
	text-align: center;
    min-width: 100% !important;

  }

  header .navigation .navigation-items a:before{
    background: transparent;
    height: 5px;
    min-width: 100% !important;
  }

  header .navigation.active .navigation-items{
    background: var(--white-font-color);
    width: 600px;
    max-width: 600px;
    margin: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    margin-right: auto;
    margin-left: auto;
    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;
  }

  header .navigation .navigation-items button{
	color: #000 !important;
  }

  .menu-btn.active{
    z-index: 999;
    background: url(../img/close.png)no-repeat;
    background-size: 25px;
    background-position: center;
    transition: 0.3s ease;
  }
}


