/* ===============================================
    
    Start Of Base Css 

    =============================================== */

@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-lato);
  background-color: var(--body-bg);
  overflow-x: hidden;
  background-image: url("../assets/images/bg/page-bg.png");
  background-attachment: fixed;
  background-position: top;
  background-size: cover;
  background-size: cover;
}

body.openMenu {
  overflow: hidden;
}

html {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

h1,
.title,
.secTitle,
h2,
h3,
h4 {
  font-family: var(--font-quilon);
}

svg {
  width: 20px;
}

p,
.para {
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 25px;
  font-family: var(--font-lato);
}

.secTitle {
  font-size: 50px;
  line-height: 60px;
  font-weight: 400;
  color: var(--dark-tan);
  margin-bottom: 20px;
}

.subTitle {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  color: var(--orange);
  line-height: 21px;
  margin-bottom: 14px;
}

.text-warning {
  color: var(--orange) !important;
}

.lh-25 {
  line-height: 25px !important;
}

.secPadding {
  padding: 100px 0;
}

.secMargin {
  margin: 100px 0;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 15px;
}

.container {
  max-width: 1290px;
  width: 100%;
  margin: 0 auto;
}

.custom-container {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.w-1160 {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
}

.custom-btn {
  overflow: hidden;
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  font-family: "Quilon";
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 15px;
  background: var(--white);
  border-radius: 40px;
  color: var(--dark-tan);
  position: relative;
  z-index: 5;
  transition: 0.3s;
}

.custom-btn span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  border-radius: 100%;
  transition: 0.3s;
}

.custom-btn::before {
  transition: width 0.3s;
  content: "";
  position: absolute;
  top: 0;
  left: initial;
  right: 0;
  height: 100%;
  width: 0;
  background: var(--dark-tan);
  z-index: -1;
  border-radius: 40px;
}

.custom-btn:hover {
  color: #fff;
  transition: 0.3s;
}

.custom-btn:hover::before {
  left: 0;
  right: initial;
  width: 100%;
}

.custom-btn:hover span {
  transform: rotate(45deg);
  transition: 0.3s;
}

.custom-btn img {
  width: 11px !important;
}

.custom-btn:hover span {
  background: var(--white);
  transition: 0.3s;
  margin-left: 5px;
}

.custom-btn:hover span img {
  filter: brightness(0) saturate(100%) invert(8%) sepia(92%) saturate(2960%)
    hue-rotate(356deg) brightness(106%) contrast(90%);
}

.view_btn {
  border-radius: 0;
  width: 167px;
  height: 60px;
  justify-content: center;
  padding: 0;
  font-size: 19px;
  line-height: 21px;
  background: var(--orange);
  color: var(--white);
  border-radius: 16px;
}

.view_btn::before {
  border-radius: 0;
  left: initial;
  right: 0;
  transition: width 0.5s;
  transform: inherit;
  width: 0;
}

.view_btn:hover::before {
  left: 0;
  right: initial;
  transition: inherit;
  width: 100%;
}

.header_sec,
.banner_sec {
  background-color: var(--body-bg);
}

#backToTopBtn {
  opacity: 0;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  border: 0;
  background: transparent;
  color: #fff;
  font-weight: 500;
  font-family: var(--font-quilon);
  font-size: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s;
  background: var(--dark-tan);
  padding: 10px 0;
  line-height: 35px;
  border-radius: 30px;
  z-index: 5;
  overflow: hidden;
}

#backToTopBtn:hover {
  bottom: 25px;
  transition: 0.3s;
  color: var(--white);
}

#backToTopBtn::before {
  content: "";
  position: absolute;
  bottom: initial;
  top: 0;
  left: 0;
  height: 0;
  width: 100%;
  background: var(--orange);
  z-index: -1;
  transition: height 0.3s;
  border-radius: 40px;
}

#backToTopBtn:hover::before {
  height: 100%;
  transition: 0.3s;
  top: initial;
  bottom: 0;
}

#backToTopBtn span {
  font-size: 16px;
  font-weight: 400;
  writing-mode: sideways-rl;
  margin-bottom: 5px;
}

/* ============= Root =========== */

:root {
  --white: #fff;
  --dark-tan: #6a1010;
  --light-orange: #c3a280;
  --body-bg: #ffefdf;
  --orange: #d07f2b;
  --greenish: #5f684a;
  --grey: #7a7a7a;
  --font-lato: "Lato", serif;
  --font-quilon: "Quilon";
}

/* ===============================================
    
    End Of Base Css 

    =============================================== */
