*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Mulish, sans-serif;
}
/* variables */
:root {
    --primary: ;
    --secondary: #212529;
    --accent: #77dd66;
    --button: linear-gradient(to left,#0dcaf0,#77dd66,#0dcaf0)
}
.hero {
    position: relative;
    background: url(assets/img/gradbg.jpg) center no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 90vh;
    padding: 120px 0 60px 0;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3); /* White with 50% opacity */
    z-index: -1;
}


.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
    color: #fff;
    z-index: 1029;
}
.navbar img {
    width: 200px;
}
.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
}
.about .content {
    background-color: 
color-mix(in srgb, #0dcaf0, transparent 95%);
    padding: 40px;
}
.burk .content {
    padding: 40px;
}
.burk h2 {
    font-family: "Edu AU VIC WA NT Arrows", cursive;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.services {
    background-color: #0dcaf0;
    color: white;
}
.ard {
    background-color: 
color-mix(in srgb, white, transparent 90%);
    border-radius: 10px;
}
/* form */
.container-frm{
    background: url(assets/img/gradbgs.jpg) center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
/* footer */
.container-fluid{
    background: var(--secondary);
}
.container-fluid h3{
    font-weight: bold;
    background: linear-gradient(to right,#fdfdfd,#ebedee 70%);
    background: linear-gradient(90deg,#0dcaf0,#77dd66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.btn1{
    transition: 0.6s ease;
    background-size: 200%;
    background-image: var(--button);
    cursor: pointer;
    border: none;
}
.btn1:hover{
    background-position: right;
    transform: scale(.9);
    color: white;
}

.btn2{
    transition: 0.6s ease;
    background-size: 200%;
    background-image: var(--button);
    cursor: pointer;
    border: none;
}
.btn2:hover{
    background-position: right;
    transform: scale(1.2);
    color: white;
}