@font-face {
  font-family: "PostNoBillsJaffna";
  font-display: swap;
  src: url("../fonts/PostNoBillsJaffna-SemiBold.ttf");
  src: local("O"),
    url("../fonts/PostNoBillsJaffna-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}


*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
}
body {
  font-family: 'Noto Sans TC', 'PostNoBillsJaffna', sans-serif;
  font-size: 15px;
  line-height: 1.3;
}

/* ---Container--- */
.container  {
  max-width: 100%;
  width: 1400px;
  margin: 0 auto;
}
/* ---buttons--- */
.btn {
  width: 178px;
  height: 45px;
  border-radius: 25px;
  padding: 13px;
  cursor: pointer;
  background-color: #ffd900;
  border: 1px solid transparent;
  color:  #161616;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  outline: 0;
  transition: .3s ease-in-out;
}
.btn:hover {
  box-shadow: 0px 0px 4px #0077ff,
              0px 0px 8px #0077ff,
              0px 0px 10px #0077ff;     
  background-color: #0077ff;
  border: 2px solid #ffd900;
  color: #ebe3e3;
  transition: color .3s linear, border .4s linear;
}

/* ---Header--- */
.header {
  background-color: #292727;
  padding: 15px 0px;
  color: #ebe3e3;
}
.header a {
  transition: .2s linear;
  color: #ebe3e3;
}
.header a:hover {
  color: #ffd900;
  transition: .2s linear;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}
.header .logo {
  font-family: 'PostNoBillsJaffna', sans-serif;
  color: #ffd900;
  letter-spacing: 0.7px;
  font-size: 40px;
  transition: .3s linear;
}
.header .logo:hover {
  text-shadow: 0px 0px 7px #ffd900;
  transition: .3s linear;
}
.header__nav {
  display: flex;
}
.header .nav__link {
  display: inline-flex;
  margin-right: 25px;
  padding: 5px;
}
.header__info {
  max-width: 350px;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.header__info a {
  display: flex;
  align-items: center;
  padding: 5px;
}
.header .info__adress::before {
  content: '';
  display: inline-flex;
  width: 32px;
  height: 32px;
  background: url(../img/maps.svg) no-repeat;
}
.header .info__tel::before {
  content: '';
  display: inline-flex;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  background: url(../img/phone.png) no-repeat;
}


/* ---Header adaptive */
@media screen and (min-width: 1px) {
  .header {
    padding: 15px;
  }
  .header__inner {
    flex-direction: column;
  }
  .header__logo {
    margin-bottom: 20px;
  }
  .header .logo {
    font-size: 50px;
  }
  .header__nav {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .header .nav__link {
    margin: 0px 20px 20px 0px;
    font-size: 19px;
  }
  .header .nav__link--2, 
  .header .nav__link--4 {
    margin: 0px 0px 10px 0px;
  }
  .header__info a {
    font-size: 14px;
  }
  .header .info__adress {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 380px) {
  .header .nav__link {
    font-size: 23px;
  }
  .header__info a {
    font-size: 16px;
  }
}
@media screen and (min-width: 530px) {
  .header .nav__link--2, 
  .header .nav__link--4 {
    margin: 0px 20px 20px 0px;
  }
  .header__info {
    max-width: unset;
  }
  .header .info__adress {
    margin: 0px 25px 0px 0px;
  }
}
@media screen and (min-width: 768px) {
  .header .nav__link {
    margin: 0px 35px 20px 0px;
  }
  .header .nav__link--4 {
    margin-right: 0px;
  }
}
@media screen and (min-width: 1024px) {
  .header__inner {
    flex-direction: row;
  }
  .header__logo {
    margin: 0px;
  }
  .header .logo {
    font-size: 40px;
  }
  .header__nav {
    flex-wrap: nowrap;
  }
  .header .nav__link {
    font-size: 17px;
    margin: 0px 10px 0px 0px;
  }
  .header__info {
    flex-wrap: nowrap;
  }
  .header__info a {
    font-size: 14px;
  }
  .header .info__adress {
    margin: 0px;
  }
}
@media screen and (min-width: 1200px) {
  .header .nav__link {
    font-size: 18px;
    margin: 0px 15px 0px 0px;
  }
  .header__info a {
    font-size: 15px;
  }
  .header .info__adress {
    margin-right: 10px;
  }
}
@media screen and (min-width: 1400px) {
  .header {
    padding: 10px;
  }
  .header .nav__link {
    font-size: 18px;
    margin: 0px 50px 0px 0px;
  }
  .header .nav__link--4 {
    margin: 0px;
  }
  .header__info {
    max-width: 350px;
    flex-wrap: wrap;
  }
}

/* ---Intro--- */
.intro {
  background: url(../img/bg-img1.jpg) no-repeat;
  background-size: cover;
}
.intro__content {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 75px 0px;
  margin: 0 auto;
  position: relative;
  color: #ebe3e3;
  background-color: #000000ea;
}
.intro__title {
  text-transform: uppercase;
  margin-bottom: 35px;
  font-size: 40px;
}
.intro__subtitle {
  margin-bottom: 25px;
  font-size: 24px;
  color: #0077ff;
}
.intro__subtitle--describe {
  font-size: 32px;
  margin-bottom: 0px;
}
.intro__description {
  max-width: 460px;
  margin-bottom: 40px;
  font-size: 17px;
  letter-spacing: 0.8px;
}


/* ---Intro adaptive--- */
@media screen and (min-width: 1px) {
  .intro__content {
    max-width: unset;
    padding: 45px 15px;
    margin: 0;
    background-color: rgb(0, 0, 0, 0.8);
  }
  .intro__title {
    margin-bottom: 30px;
    font-size: 46px;
  }
  .intro__subtitle {
    margin-bottom: 25px;
    font-size: 20px;
  }
  .intro__subtitle--describe {
    font-size: 25px;
    margin-bottom: 40px;
  }
  .intro__description {
    margin-bottom: 40px;
    font-size: 15px;
    letter-spacing: 0.8px;
    max-width: 370px;
  }
}
@media screen and (min-width: 768px) {
  .intro__content {
    padding: 75px 0px;
  }
  .intro__subtitle {
    font-size: 25px;
  }
  .intro__subtitle--describe {
    font-size: 32px;
  }
  .intro__description {
    font-size: 17px;
  }
}
@media screen and (min-width: 1020px) {
  .intro__title {
    margin-bottom: 45px;
  }
  .intro__subtitle {
    margin-bottom: 30px;
  }
  .intro__subtitle--describe {
    margin-bottom: 50px;
  }
}

/* ---Items--- */
.items {
  background-color: #1C1C1C;
  padding: 75px 0px;
  color: #ebe3e3;
}
.items__brand {
  margin-bottom: 65px;
  font-size: 42px;
  text-align: center;
}
.items__block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.items .block__product {
  display: flex;
  flex-direction: column;
  margin: 0px 20px 50px;
  padding: 30px;
  background-color: rgb(255, 255, 255, 0.5);
  border-radius: 8px;
}
.items .product__link {
  display: inline-flex;
  margin-bottom: 25px;
}
.items img {
  max-width: 280px;
  min-height: 100%;
  border-radius: 8px;
  border: 2px solid #00000057;
  transition: .3s linear;
}
.items img:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  transition: .3s linear;
}
.items .product__name {
  display: block;
  margin-bottom: 25px;
  font-size: 16px;
  color: #011225;
  font-weight: 700;
  transition: .2s linear;
}
.items .product__name:hover {
  color: #0059be;
  transition: .2s linear;
}
.items .product__price {
  font-size: 16px;
  color: #ffd900;
}
.items .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}


/* ---Items adaptive--- */
@media screen and (min-width: 1px) {
  .items {
    padding: 50px 20px;
  }
  .items__brand {
    font-size: 42px;
  }
  .items .block__product {
    padding: 20px;
  }
  .items img {
    max-width: 240px;
  }
}
@media screen and (min-width: 1024px) {
  .items {
    padding: 75px 0px;
  }
  .items .block__product {
    padding: 30px;
  }
  .items img {
    max-width: 280px;
  }
}

/* ---Content--- */
.content {
  background-color: #0077ffe1;
  color: #ebe3e3;
}
.content__part {
  padding: 75px 0px 25px;
}
.content__title {
  font-size: 42px;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 40px;
}
.content__caption {
  margin: 25px;
  font-size: 26px;
  letter-spacing: 1px;
  color: #ffd900;
}
.content .content__description {
  font-size: 17px;
}


/* ---Content adaptive--- */
@media screen and (min-width: 1px) {
  .content__part {
    padding: 50px 0px;
  }
  .content__caption {
    text-align: center;
    font-size: 28px;
  }
  .content__description {
    text-indent: 1em;
    padding: 20px;
  }
}
@media screen and (min-width: 768px) {
  .content__title {
    font-size: 44px;
  }
  .content__caption {
    text-indent: 1.5em;
    text-align: unset;
    font-size: 30px;
  }
  .content__description {
    padding: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .content__part {
  margin: 0 auto;
  max-width: 750px;
  box-shadow: 4px 10px 20px #036ce4;
  }
}


/* ---Form--- */
.formfield {
  padding: 50px 0px;
  background-color: #d6d0b5;
}
.form__signup {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.formfield .signup {
  font-size: 22px;
  color: #0b2e5a;
  font-weight: 700;
}
.formfield .sub {
  width: 150px;
  padding: 15px;
  border: 0;
  border-radius: 5px;
  outline: 0;
  color: #0b2e5a;
  font-size: 16px;
  transition: .1s ease-in;
}
.formfield .sub:focus {
  box-shadow: 0px 0px 10px;
  transition: .2s linear;
}
.formfield .sub::placeholder {
  color: rgb(11, 46, 90, 0.7);
}
.formfield .save {
  width: 160px;
  padding: 15px;
  border: 0;
  border-radius: 5px;
  outline: 0;
  color: #dddfe2;
  background-color: #e03434;
  font-size: 16px;
  letter-spacing: 0.5px;
  font-weight: 700;
  transition: .2s ease-in;
  cursor: pointer;
}
.formfield .save:hover {
  background-color: #910c0c;
  box-shadow: 0px 0px 5px #910c0c;
  transition: .2s linear;
}


/* ---Form adaptive--- */
@media screen and (min-width: 1px) {
  .formfield {
    padding: 50px 20px;
  }
  .form__signup {
    flex-direction: column;
    text-align: center;
  }
  .formfield .signup {
    margin-bottom: 25px;
    font-size: 25px;
  }
  .formfield .sub {
    width: 100%;
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 768px) {
  .formfield .form {
    display: flex;
    align-items: center;
  }
  .form__signup {
    flex-direction: row;
  }
  .formfield .signup {
    margin: 0px 35px 0px 0px;
  }
  .formfield .sub {
    margin: 0px 35px 0px 0px;
  }
}
@media screen and (min-width: 1380px) {
  .formfield .signup {
    font-size: 30px;
    margin: 0px 0px 0px 0px;
  }
  .formfield .sub {
    width: 360px;
  }
}

/* ---Footer--- */
.footer {
  background-color: #292727;
  padding: 30px 0px;
  color: #ebe3e3;
}
.footer__outer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
}
.footer .column__subtitle {
  margin-bottom: 20px;
  font-size: 20px;
  letter-spacing: 1px;
}
.footer a {
  color: #cec1c1;
  transition: .2s ease-in-out;
  font-size: 16px;
}
.footer a:hover {
  color: #ffd900;
  transition: .2s ease-in-out;
}
.footer .column__link {
  display: inline-block;
  margin-bottom: 10px;
}
.footer .column__list {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.footer .column__icon {
  display: inline-flex;
  opacity: 0.6;
  transition: .3s linear;
}
.footer .column__icon:hover {
  opacity: 1;
  transition: .1s linear;
}
.footer__mail {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  color: #cec1c1;
}
.footer__mail::before {
  content: '';
  display: inline-flex;
  width: 32px;
  height: 32px;
  margin-right: 5px;
  background: url(../img/email.png) no-repeat;
}


/* ---Footer adaptive--- */
@media screen and (min-width: 1px) {
  .footer {
    padding: 50px 20px;
  }
  .footer__outer {
    flex-direction: column;
  }
  .footer__column {
    text-align: center;
    margin: 0 auto 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ebe3e3;
  }
  .footer__column:last-child {
    padding: 0px;
    border-bottom: 0;
  }
  .footer .column__subtitle {
    margin-bottom: 40px;
    font-size: 28px;
  }
  .footer .column__link {
    margin-bottom: 30px;
    font-size: 18px;
  }
  .footer .column__list {
    margin-bottom: 40px;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 75px 20px;
  }
  .footer__outer {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }
    .footer__column {
      margin: 0px 50px 45px;
      padding: 0px;
      border-bottom: 0;
    }
  }
@media screen and (min-width: 1024px) {
  .footer__column {
    margin: 0px 105px 45px;
  }
}
@media screen and (min-width: 1370px) {
  .footer {
    padding: 75px 20px 40px;
  }
  .footer__column {
    margin: 0px;
    padding: 0px;
    border-bottom: 0;
  }
  .footer .column__subtitle {
    font-size: 24px;
  }
  .footer .column__link {
    margin-bottom: 25px;
    font-size: 16px;
  }
}