/* Google Font Link */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    width: 100%;
    height: 100%;
    font-family: var(--primary-font);
}
/* Root Elements */
:root {
    --primary-color: #000;
    --secondary-color: #ebb134;
    --third-color: #072ea6;
    --gray-color: #212121;
    --white-color: #fff;
    --light-gray: #cccccc;
    --green-color: #069147;
    --red-color: #e81922;
    --primary-font: 'Quicksand', sans-serif;
}
::-webkit-scrollbar {
    width: 0.625rem;
  }
  ::-webkit-scrollbar-track {
    background-color: var(--light-gray);
  }
  ::-webkit-scrollbar-thumb {
    background-color: var(--third-color);
  }
/* Change Navbar Styling On Scroll */
.navbar.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white-color);
    box-shadow: 0 0.125rem 1.75rem 0 rgb(0, 0, 0, 0.09);
    transition: all .15s ease-in-out 0s;
    z-index: 999;
  }
.top_menu {
    background: #00033c;
}
.top_menu .top_menu_link a {
    text-decoration: none;
    color: var(--white-color)!important;
    border-right: 2px solid #949494;
    padding: 0 10px;
    font-weight: 700;
}
.top_menu .top_menu_link a span,
.fa-magnifying-glass {
    color: #50bceb;
}
.fa-whatsapp {
    background: var(--green-color);
    border-radius: 100px;
    color: var(--white-color);
}
.main-btn {
    display: inline-block;
    border-radius: 50px;
    border: 1px solid var(--white-color);
    color: var(--white-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(to right, var(--red-color) 50%, var(--third-color) 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: all 0.5s ease-out;
    padding: 8px 12px;
}
.main-btn:hover {
    background-position: left bottom;
}
a {
    text-transform: uppercase;
    font-weight: 800;
}
.select_size {
    font-size: 12px;
}
.select_size select {
    color: var(--third-color);
}
.select_size select:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}
.section_wrapper {
    padding: 5rem 0;
}
.section_pic {
    background: linear-gradient(180deg, rgba(168,216,240,1) 0%, rgba(246,246,246,1) 100%);
}
/* 7. Reviews */
.review_wrapper {
    width: 100%;
    height: auto;
    color: var(--gray-color);
    background: url('https://media.cnn.com/api/v1/images/stellar/prod/220316041512-indian-farmer-file-02162018.jpg?q=h_1562,w_2343,x_0,y_0');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.review_wrapper .carousel-item {
    height: 100%;
    min-height: 500px;
}

.review_wrapper .carousel-item img {
    width: 80px;
    margin-bottom: 20px;
}
.review_wrapper .carousel-caption {
    color: var(--gray-color);
}
.review_wrapper .carousel-control-next-icon,
.review_wrapper .carousel-control-prev-icon {
    filter: brightness(0.10);
}
.card {
    border: none;
}
.carousel-caption {
    margin-bottom: 5rem;
    line-height: 1;
}
footer {
    background-color: var(--gray-color);
}
footer a {
    color: var(--white-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
}
footer a:hover {
  color: var(--secondary-color) !important; 
}
footer h3,
footer p {
    color: var(--white-color);
    font-size: 1rem;
    font-weight: 700;
    position: relative;
    margin-bottom: 20px;
}
.newsletter input:focus-visible {
    outline: none;
    box-shadow: none;
    border: 1px solid var(--green-color);
}
.newsletter input::placeholder {
    color: var(--light-gray);
}
.social-icons i {
    font-size: 1.3rem;
    margin-right: 1.4rem;
}
footer li i {
    color: var(--light-gray);
}
footer h3::after {
    content: '';
    display: block;
    height: 4px;
    width: 30px;
    background: #fff;
    bottom: -6px;
    left: 0;
    position: absolute; 
}
h2 {
    position: relative;
}
h2::after {
    content: '';
    display: block;
    height: 6px;
    width: 100%;
    background: #fff;
    bottom: -6px;
    left: 0;
    position: absolute; 
}
.icons ul li a {
    text-decoration: none;
    color: var(--white-color);
    filter: drop-shadow(1px 2px 2px var(--gray-color));
}
/* About Us */
.about_wrapper {
    background: linear-gradient(180deg, rgb(153, 186, 202) 0%, rgb(239, 237, 237) 100%);
}