@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --white: #ffffff;
  --black: #000000;
  --lightgrey: #f8f5f0;
  --yellow: #fee823;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

a {
  text-decoration: none;
}

main {
  overflow: hidden;
}

/*----------------
   Desktop view
----------------*/
h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
}

h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
}

h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.special-font {
  font-size: 18px;
  font-weight: 500;
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 34px;
}


/*----------------
   Tablet view
----------------*/
@media (min-width: 768px) and (max-width: 1024px) {
  h1 {
    font-size: 38px;
    font-weight: 600;
    line-height: 48px;
  }

  h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
  }

  h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
  }

  .special-font {
    font-size: 18px;
    font-weight: 500;
  }

  p {
    font-size: 18px;
    font-weight: 400;
    line-height: 34px;
  }
}


/*----------------
   Mobile view
----------------*/
@media (max-width: 767px) {
  h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
  }

  h2 {
    font-size: 26px;
    font-weight: 600;
    line-height: 34px;
  }

  h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
  }

  .special-font {
    font-size: 18px;
    font-weight: 500;
  }

  p {
    font-size: 17px;
    font-weight: 400;
    line-height: 32px;
  }
}

.container {
  max-width: 1440px;
  width: 100%;
}


/*------------------------------
-------------NAVBAR-------------
------------------------------*/
button {
  cursor: pointer;
}

.navbar-section {
  background-color: #000000;
  display: flex;
  justify-content: center;
}

.navbar-container {
  max-width: 1440px;
  width: 100%;
  padding: 0 100px;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

.company-logo {
  width: 220px;
  height: 40.53px;
}

.navlinks {
  display: flex;
  gap: 36px;
  justify-content: space-between;
  font-size: 18px;
  line-height: 34px;
  font-weight: 400;
}

@media(min-width: 1025px) {
  .navlinks .navlink {
    color: #ffffff;
    transition: all 0.25s;
    cursor: pointer;
  }

  .navlinks .navlink:hover {
    color: #fee823;
  }
}

.drop-down-link {
  display: flex;
  gap: 8px;
  align-items: center;
}


.drop-down-link img {
  vertical-align: middle;
  padding: 8px 5px;
}

.navbar-quote-btn {
  background-color: var(--yellow);
  color: #000000;
  border-radius: 12px;
  height: 48px;
  width: 234px;
  font-size: 18px;
  line-height: 34px;
  font-weight: 500;
  border: none;
  outline: none;
}

.navbar-quote-btn:hover {
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.navbar-quote-btn:hover img {
  filter: invert(1);
}


.open-menu-icon,
.close-menu-icon,
.slider-links,
.company-logo-b,
.navlink .link-img,
.slider-header,
.navlinks .navbar-quote-btn {
  display: none;
}

main {
  background-color: #ffffff;
}


/*----------------
 Smaller desktop
----------------*/
@media (max-width: 1280px) {
  .company-logo {
    width: 162px;
    height: auto;
  }

  .navlinks {
    gap: 15px;
  }
}

@media(max-width: 1310px) {
  .navbar-container {
    padding: 0 20px;
  }
}


/*----------------
  Tablet view
----------------*/
@media (max-width: 1024px) {
  .navbar-container {
    padding: 0 40px;
    height: 76px;
  }

  .navbar-quote-btn {
    height: 46px;
  }

  .company-logo-b,
  .navlink .link-img,
  .navlinks .navbar-quote-btn {
    display: inline-block;
  }

  .company-logo,
  .company-logo-b {
    width: 210px;
    height: auto;
  }

  .navlinks {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    max-width: 500px;
    width: 49%;
    transition: right .35s ease;
    z-index: 999;
    justify-content: unset;
    gap: 32px;
  }

  .navlink {
    color: #000000;
    border-radius: 3px 0 0 3px;
    height: 50px;
    display: flex;
    padding: 10px 10px 10px 40px;
    gap: 24px;
    align-items: center;
    justify-content: left;
  }

  .navlink:hover {
    background-color: #fee82357;
    border-left: 4px solid #000000;
  }

  .navlinks .active {
    background-color: #fee82357;
    border-left: 4px solid #000000;
  }

  .navlink img {
    width: 24px;
    height: 24px;
  }

  .open-menu-icon {
    display: inline-block;
    width: 49.7px;
    height: 52px;
  }

  .close-menu-icon {
    display: inline-block;
    width: 43px;
    height: 43px;
  }

  .slider-link-go {
    display: none;
  }

  .open-menu-container {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
  }

  .slider-header {
    height: 67px;
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    align-items: center;
  }

  .navlinks .navbar-quote-btn {
    margin-left: 40px;
    transform: translateY(-2px);
    width: 250px;
  }
}


/*----------------
  Mobile desktop
----------------*/
@media (max-width: 767px) {
  .navbar-container {
    padding: 8px 24px;
    height: 46px;
  }

  .navbar-quote-btn {
    display: none;
  }

  .company-logo {
    width: 162.85px;
  }

  .open-menu-icon {
    width: 40px;
    height: 40px;
  }

  .slider-header {
    height: 54px;
  }

  .company-logo-b {
    width: 135px;
  }

  .open-menu-icon {
    width: 30px;
    height: 30px;
  }

  .close-menu-icon {
    width: 38px;
    height: 38px;
  }

  .navlinks {
    gap: 24px;
    max-width: 321px;
    width: 100%;
  }

  .navlink {
    padding: 10px 10px 10px 24px;
  }
}

/*----------------------------------
---------------FOOTER---------------
----------------------------------*/
footer {
  background-color: #000000;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

.footer-all-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 230px));
  justify-content: space-between;
  color: #ffffff;
  max-width: 1440px;
  width: 100%;
  padding: 60px 80px;
  margin: auto;
}

.footer-links a {
  text-decoration: none;
  color: #ffffff;
  display: flex;
  gap: 4px;
  transition: all 0.25s ease;
}

.footer-links a:hover {
  transform: translateX(10px);
  color: #fee823;
}

.footer-links img {
  width: 24px;
  height: 24px;
  margin-top: 3px;
}

.follow-us {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.follow-us h3 {
  margin-bottom: 6px;
}

.links-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.social-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.social-links img {
  width: 50px;
  height: 50px;
  transition: all 0.25s ease;
}

.social-links img:hover {
  transform: scale(1.1);
}

.dmca-img {
  width: 170px;
  height: 83.5px;
}

.copyright-text {
  text-align: center;
  /* margin-bottom: 25px; */
}

.txt-yellow {
  color: var(--yellow) !important;
  font-weight: 600;
}

.disclaimer {
  background-color: #1b1b1b;
  text-align: center;
  padding: 25px 130px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.disclaimer p {
  max-width: 1280px;
  color: #ffffff99;
}

.copyright {
  padding: 25px;
  border-top: 1px solid var(--yellow);
}


/*-----------------
  Smaller desktop
-----------------*/
@media(max-width: 1280px) {
  .footer-all-links {
    padding: 50px 60px;
    grid-template-columns: repeat(3, minmax(0, 230px));
    gap: 32px;
  }
}


/*----------------
   Tablet view
----------------*/
@media(max-width: 1024px) {
  .footer-all-links {
    padding: 40px;
    /* display: flex; */
    row-gap: 32px;
    flex-wrap: wrap;
    column-gap: 7px;
    justify-content: space-around;
  }

  .disclaimer {
    padding: 25px 40px;
  }

  .social-links img {
    width: 42px;
    height: 42px;
  }
}


/*---------------
   Mobile view
---------------*/
@media(max-width: 767px) {
  .footer-all-links {
    padding: 32px 24px;
    justify-content: left;
    display: flex;
  }

  .follow-us,
  .links-section {
    width: 100%;
  }

  .links-section h3 {
    margin-left: 28px;
  }

  .disclaimer {
    padding: 25px;
  }
}


.hidden-cont {
  display: none;
}

@media(max-width: 1280px) {
  .hidden-cont {
    display: block;
  }
}

button {
  transition: all 0.15s !important;
}