* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

::selection {
  background-color: var(--main-color);
  color: #fff;
}

:root {
  --main-color: #083832;
  --secondary: #116f63;
  --black: #041424;
  --yellow: #f9bf13;
  --ternary: #45566a;
  /* --bg: #fcf7d9; */
  --bg: #fffceb;
}

@font-face {
  font-family: "hate_your_writing";
  src: url(../Font/HateYourWriting.ttf);
}
@font-face {
  font-family: "just_sans_reg";
  src: url(../Font/Just\ Sans/JUST_Sans_Regular.otf);
}
@font-face {
  font-family: "just_sans_light";
  src: url(../Font/Just\ Sans/JUST_Sans_Light.otf);
}
@font-face {
  font-family: "just_sans_med";
  src: url(../Font/Just\ Sans/JUST_Sans_Medium.otf);
}

html {
  overflow-x: hidden;
}
body {
  font-family: "hate_your_writing";
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  overflow-x: hidden;
  background-color: var(--bg);
  color: var(--main-color);
}

a {
  text-decoration: none;
}

a:focus {
  box-shadow: none;
}

ul {
  padding: 0;
  margin-bottom: 0;
}

ul li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 0;
}

/* font size */

h1 {
  font-weight: 500;
  font-size: 150px;
  line-height: 1.2;
}

h2 {
  font-weight: 500;
  font-size: 80px;
  line-height: 1.2;
}

h3 {
  font-weight: 400;
  font-size: 70px;
  line-height: 1.2;
}

h4 {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
}

h5 {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
}
h6 {
  font-family: "just_sans_light";
  font-weight: 400;
  font-size: 26px;
  line-height: 1.5;
}
p {
  font-family: "just_sans_light";
  font-size: 24px;
  line-height: 1.5;
  font-weight: 300;
  color: #fff;
}
.fs-14 {
  font-size: 14px;
  line-height: 1.5;
}
/* font size */

.light-white {
  color: var(--lightwhite);
}
.primary {
  color: var(--main-color);
}
.secondary {
  color: var(--secondary);
}
.balck {
  color: var(--balck);
}
.bg {
  background-color: var(--bg);
}

.black {
  color: var(--black);
}

/* about section satrt */
.about {
  padding-top: 330px;
  background-color: var(--main-color);
  position: relative;
}
.about::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 110%;
  height: 200px;
  background-image: url(../img/bg.svg);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}
.about::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 110%;
  height: 200px;
  background-image: url(../img/bg.svg);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.about .top img {
  width: 100px;
  height: auto;
  object-fit: contain;
  position: relative;
  top: 0px;
  transform: rotate(-120deg);
  right: -80px;
}

.about .bottom 
{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
.about .bottom .desc h2 span {
  line-height: 1;
  color: var(--yellow);
  text-indent: 50px;
}

.about .bottom .desc p:not(:last-child) {
  text-indent: 50px;
  margin-bottom: 24px;
  text-align: justify;
}
.about .bottom .desc p {
  color: #fffceb;
  opacity: 0.9;
}
.about .bottom .desc p span {
  color: #fff;
  font-weight: 600;
  opacity: 1;
}

.about .bottom .img-box {
  width: 420px;
  min-width: 420px;
  height: auto;
  overflow: hidden;
}
.about .bottom .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* <========== Product section start ==========> */
.products-grid {
  display: grid;
  place-items: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px 32px;
}

.product-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 42px;
  padding: 24px 44px;
  border-radius: 24px;
  background-color: var(--yellow);
}

.product-box img {
  width: auto;
  min-width: 100px;
  max-width: 200px;
  height: 150px;
  object-fit: contain;
  object-position: center;
}

.products-section {
  padding: 80px 0;
}
.products-section h2 {
  margin-bottom: 70px;
}
/* <========== Product section end ==========> */

/* <========== why choose section start ==========> */
.choose h2.main-heading{
  margin-bottom: 80px;
  position: relative;
  display: inline;
}
.choose h2.main-heading::after 
{
  content: '';
  position: absolute;
  bottom: -30px;
  right: -70px;
  width: 250px;
  height: 60px;
  background-image: url(../img/Icon/02.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.choose .choose-box{
  text-align: center;
}
.choose .choose-box p {
  max-width: 350px; 
  margin-left: auto;
  margin-right: auto;
  color: var(--secondary);
}

.choose .choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  margin-bottom: 40px;
}

.choose .second-heading img{
    width: 80px;
    height: 80px;
    object-fit: contain;
}
.choose .second-heading {
  margin: 70px 0 50px;
}
.choose .logo {
  width: 250px;
  height: 250px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
}
.choose .logo img{ 
  width: 100%;
  height: 100%;
}
.choose-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.choose-bg .img-bg1 {
  width: 390px;
  height: 740px;
  object-fit: contain;
  position: absolute;
  bottom: -50px;
  left: -120px;
}
.choose-bg .img-bg2 {
  width: 610px;
  height: 560px;
  object-fit: contain;
  position: absolute;
  top: 0px;
  right: -320px;
}

.choose-bg .img-bg3 {
  width: 300px;
  height: 320px;
  object-fit: contain;
  position: absolute;
  bottom: 0px;
  right: -120px;
}
/* <========== choose section end ==========> */



/* <========== footers section start ==========> */
footer {
  position: relative;
}
footer::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 110%;
    height: 200px;
    background-image: url(../img/bg.svg);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
}
.footer1 {
  width: 100%;
  height: auto;
  padding: 80px 0;  
  background-color: var(--main-color);
}

.footer1 .logo {
  width: 320px;
  height: 100px;
  overflow: hidden;
}
.footer1 .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer1 .footer1-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 42px;
}
.footer1 h6 {
  color: #fff;
}

.footer2
{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 24px 40px;
}
.footer2 p {
  color: var(--secondary);
}
.footer2 p img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* footer section end */
.cow-wrapper {
  width: 100%;
  height: 450px;
  z-index: 2;
  position: relative;
}
.cow-wrapper .img-box {
  width: 750px;
  height: 650px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cow-wrapper .img-box .cow-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cow-wrapper .img-box .stamp{
  width: 200px;
  height: 200px;
  position: absolute;
  top: 30px;
  left: 60%;
  transform: translateX(-40%);
}