@import url(https://fonts.googleapis.com/css?family=Poppins:400,300,500,600,700);

@tailwind base;
@tailwind components;
@tailwind utilities;

/* font-family: "Poppins", sans-serif; */

/* ==============================================
    General
============================================== */
:root {
  --color-p-1: #f37d01;

  --color-s-1: #bc5c20;
  --my-color: #bc5c20;
  --color-s-2: #501807;
  --color-s-3: #fdf6f0;
  --color-s-4: #fcf8f6;

  --color-b-1: #1c1c1c;
  --color-b-2: #1a1a1a;
  --color-b-3: #747474;

  --color-g-1: #d7d7d7;

  --color-w-1: #ffffff;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

body {
  font-size: 14px;
  padding: 0;
  margin: 0;
  line-height: 1.2;
  color: var(--color-b-2);
  font-family: "poppins-regular", sans-serif;
  font-weight: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::selection {
  background-color: var(--color-p-1);
  color: var(--color-w-1);
}

/* pppppppppp  */
p {
  line-height: 1.8;
  font-size: 14px;
  color: var(--color-b-3)
}

p:last-child {
  margin-bottom: 0;
}

/* aaaaaaaaa */
a {
  outline: none !important;
  text-decoration: none;
  transition: 0.3s all ease-in-out;
  -webkit-transition: 0.3s all ease-in-out;
  -moz-transition: 0.3s all ease-in-out;
  -ms-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
}

a:hover,
a:focus,
select:focus,
button:focus {
  outline: none;
  text-decoration: none;
  color: var(--color-p-1);
}

a:hover {
  color: var(--color-w-1);
}

img {
  border: none;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  margin: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  line-height: 1.4;
  margin-bottom: 10px;
  outline: none !important;
  color: var(--color-b-2);
  font-weight: 400;
  font-size: 36px;
}

h1,
h2 {
  @apply text-2xl xl:text-xl lg:text-[30px] font-semibold;
}

h3 {
  @apply text-xl sm:text-lg font-semibold text-b-1;
}

h4 {
  @apply text-md md:text-sm font-semibold !my-3 text-b-1;
}

h5 {
  @apply text-sm;
}

h6 {
  @apply text-xs;
}

span {
  @apply text-p-1
}

.dark-sec {
  @apply text-w-1;
}

.my-sec {
  @apply py-[80px] xl:py-[70px] md:py-[55px] sm:py-[45px];
}

/* basic css end  */

/* css start */

.btn-p {
  @apply bg-s-1 text-white text-[16px] py-[14px] px-[26px] rounded-[5px] inline-block text-center font-semibold transition-all duration-300 ease-in-out md:py-[10px] md:px-[15px] md:text-[14px];
}

.btn-p:hover {
  @apply bg-p-1 text-white scale-[1.03] shadow-lg;

}

.btn-small {
  @apply inline-block px-4 py-1.5 text-[14px] font-semibold text-s-1 bg-[#fcf8f6] border border-s-1 rounded-full uppercase tracking-wide
}

.btn-small-v2 {
  @apply !text-w-1 inline-block px-4 py-1.5 text-[14px] font-semibold !bg-p-1 border !border-s-1 rounded-full uppercase tracking-wide
}

/* ===============================
   Banner Section
================================ */

.banner-wrap {
  @apply flex items-center justify-between gap-[30px] lg:gap-[20px] w-full pt-[40px] lg:flex-col lg:text-center;
}


.banner-img {
  @apply mx-auto relative w-full;
}


/* ===============================
   Slider
================================ */

.pogoSlider {
  @apply h-full pb-0;
}

.pogoSlider .container {
  @apply h-full;
}

.pogoSlider-slide {
  @apply bg-center bg-cover h-full;
}

.slide-content {
  @apply flex-col items-start justify-center w-full h-full relative;
}

.slide-content .row {
  @apply flex items-center;
}

.pogoSlider-dir-btn {
  @apply border border-black/70;
}

.pogoSlider-dir-btn:hover {
  @apply border-black;
}


.pogoSlider {
  padding-bottom: 36% !important;
}

.pogoSlider-dir-btn--next {
  right: 0;
}

.pogoSlider-dir-btn--prev {
  left: 0;
}

.listing-sec ul {
  list-style-type: disc !important;
  padding-left: 20px;
}

.listing-sec li {
  list-style-type: disc !important;
  margin-bottom: 10px;
}

.listing-sec li a {
  font-size: 14px;
  color: var(--color-b-3);
}

.listing-sec li a:hover {
  color: var(--color-s-2);
}

