@import "style.css";

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900;1000&family=Lexend:wght@300;400;500;700;800;900&display=swap');

:root {
	--main--color  : #F59324;
	--second--color: #CDFAF3;
	--third--color : #423838;
	--opacity--back: #a8d18d70;
}

* {
    font-family: "Lexend", sans-serif !important;
}

.fa-classic, .fa-regular, .fa-solid, .far, .fas, .fa, .fa-xl, fa-s{
    font-family: "Font Awesome 6 Free" !important;
}
    
@media(max-width: 960px){
    .btn-1 {
    	padding: 6px 20px 6px 20px;
    	font-size: 16px;
    }
    .btn-2 {
    	padding: 6px 20px 6px 20px;
    	font-size: 16px;
    }
}

@media(min-width: 960px) and (max-width: 1400px){
   .btn-1 {
    	padding: 7px 30px 7px 30px;
    	font-size: 18px;
    }
   .btn-2 {
    	padding: 7px 30px 7px 30px;
    	font-size: 18px;
    }
}

@media(min-width: 1400px){
    .btn-1 {
    	padding: 8px 50px 8px 50px;
    	font-size: 22px;
    }
    .btn-2 {
    	padding: 8px 50px 8px 50px;
    	font-size: 22px;
    }
}
    
.btn-1 {
	background: var(--main--color);
	color: white;
	border-radius: 24px;
	border: 2px solid var(--main--color);
	transition: all 0.3s ease-in-out;
}

.btn-1:hover {
	background: transparent;
	color: var(--main--color);
	transition: all 0.3s ease-in-out;
}

.btn-2{
    border: white solid 2px;
    border-radius: 24px;
    color: white;
    background: rgba(255, 255, 255, 0.08);;
    transition: all 0.2s ease-in-out;
}
.btn-2:hover{
    border: rgba(255, 255, 255, 0.08) solid 2px;
    background: white;
    color: black;
    transition: all 0.2s ease-in-out;
}

.nav-link {
    color: #565656 !important;
    padding-bottom: 3px;
    font-size: 16px !important;
    
}
.nav-link.active{
    color: var(--main--color) !important;
    border-bottom: 2px solid #00A5B5;
    
}
.nav-link:hover{
    color: var(--main--color) !important;
    border-bottom: 2px solid #00A5B5;
    
}

.section_header {
    text-transform: uppercase;
    border: 0;
    height: 1.5em;
    line-height: 1em;
    position: relative;
    text-align: center;
    opacity: 1;
    width: 50%;
    margin: auto;
}

.section_header::before {
    content: "";
    background: #929292;
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
}

.section_header::after {
    background-color: white;
    color: black;
    content: attr(data-content);
    line-height: 1.5em;
    padding: 0 7px;
    position: relative;
}

.account_link{
    background: var(--main--color);
    padding: 10px;
    text-decoration: none;
    color: white;
    border-radius: 20px;
}


@media only screen and (max-width: 600px) {
    .cart_canvas{
        width: 100% !important;
    }
    .btn-1{
        padding: 6px 20px 6px 20px;
        font-size: 14px;
    }
    .btn-2{
        padding: 6px 20px 6px 20px;
        font-size: 14px;
        
    }
    .sm-bt1{
        margin-top: 2rem;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .cart_canvas{
        width: 80% !important;
    }

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .cart_canvas{
        width: 80% !important;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .cart_canvas{
        width: 60% !important;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .cart_canvas{
        width: 40% !important;
    }
}


@media(max-width: 990px){
    .logo_div{
        text-align: center !important;
    }
}


::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

/* Track */
::-webkit-scrollbar-track {
  background: lightgrey;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--main--color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}