*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Mulish, sans-serif;
}
/* variables */
:root {
    --primary: ;
    --secondary: #212529;
    --accent: #2d708e;
    --button: linear-gradient(to left,gray,#0d6efd,#000)
}
.hero {
    background: url(assets/img/prevnew.png) left center no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 120px 0 60px 60px;
    display: flex;
    align-items: center;
}
.hero h1{
    color: #2d708e;
}
.per h2{
    color: #2d708e;
    font-family: "Lato", sans-serif;
}
.conts h3{
    color: #2d708e;
}
.about h4{
    color: #2d708e;
}
.card h5{
    color: #2d708e;
}
.serv h2{
    color: #2d708e;
}
.samp h2{
    color: #2d708e;
}
.conts h2{
    color: #2d708e;
}
.con h2{
    color: #2d708e;
}
.con {
    background: url(assets/img/box2.jpg) center no-repeat;
    background-size: cover;
}
.ard {
    background-color: 
color-mix(in srgb, white, transparent 75%);
    border-radius: 10px;
}

.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");
}
.navbar img {
    width: 250px;
}

.header {
    background-color: #f7f1e5;
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
    color: #fff;
    z-index: 1029;
}
.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
}
.about .content {
    background-color: 
color-mix(in srgb, #, transparent 95%);
    padding: 40px;
}
.conts {
    background-color: #f6efe3;
}
.conts .content {
    padding: 0 40px 0 40px;
}
.serv {
    background-color: #f6efe3;

}
.rd {
    background-color: 
color-mix(in srgb, #0d6efd, transparent 75%);
    color: black;
    
}
.samp .rd {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.samp .rd:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.card {
    box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
}
/* form */
.container-frm{
    background: var(--accent);
}
/* footer */
.container-fluid{
    background: var(--secondary);
}
.container-fluid h3{
    font-weight: bold;
    background: linear-gradient(to right,#fdfdfd,#ebedee 70%);
    background: linear-gradient(90deg,#002860,#00dbde);
    -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;
}