@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}
/*
#09122C - Blue
#872341 - Maroon
#BE3144 - Red
#E17564 - Orange
*/
:root {
    font-size: 14px;
    scroll-behavior: smooth;
    --primary: #D35400;
    --secondary: #E1AD01;
    --accent: #6B8E23;
    --cream: #FFF5E1;
    --warm-black: #2C2C2C;
    --yellow: #FFB200;
    --white: #ffffff;
    --red: #ff0000;
    --text: #9b9b9b;
    --success: #5ad235;
    --gradient: linear-gradient(to top, #FFF5E1 0%, white 100%);
  }
  body {
    margin: 0;
    font-family: "Poppins";
    font-weight: 400;
    line-height: 1.2;
    background-color: var(--white);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(var(--primary), 0);
  }
  li {
    list-style: none;
  }
  
  ol,
  ul,
  dl,
  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  figure {
    padding: 0;
    margin: 0;
  }
  h1,
  h2,
  h3,
  h4,
  h5 {
    font-weight: 500;
    line-height: 24px;
  }
  h1,
  h2 {
    font-size: 18px;
    margin-bottom: 2rem;
  }
  a {
    text-decoration: none;
    outline: 0;
  }
  
  p {
    font-size: 14px;
    line-height: 24px;
  }
  
  [hidden] {
    display: none !important;
  }
  .main {
    padding: 4rem 0 0;
    overflow: hidden;
  }
  canvas {
    width: 100% !important;
    height: 100% !important;
  }
  hr {
    border: 0;
    border-bottom: 1px solid #d7d7d7;
  }
  
  /* Flex */
  .flex {
    display: flex;
  }
  .justify-content-center {
    justify-content: center;
  }
  .justify-space-between {
    justify-content: space-between;
  }
  .flex-wrap{
    flex-wrap: wrap;
  }
  .gap-3 {
    gap: 1rem;
  }
  .gap-4 {
    gap: 1.5rem;
  }
  .gap-5 {
    gap: 3rem;
  }
  .flex-column-row{
    flex-direction: column;
  }
  .column-reverse{
    flex-direction: column-reverse;
  }
  
  .pos-r {
    position: relative;
  }
  .items-center {
    align-items: center;
  }
  .items-top {
    align-items: start;
  }
  .d-inline-block {
    display: inline-block;
  }
  .d-block {
    display: block;
  }
  .d-none {
    display: none;
  }
  .hide {
    display: none !important;
  }
  .overflow-hiidle {
    overflow: hidden;
  }
  
  /* Buttons */
  .btn {
    display: inline-block;
    font-weight: 500;
    padding: 8px 20px;
    text-align: center;
    border-radius: 4px;
    color: var(--blue);
    background-color: var(--white);
    vertical-align: middle;
    user-select: none;
    border: 0;
    font-size: 16px;
    cursor: pointer;
    font-family: "Poppins";
    box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, 0.15),
    0 1px 1px rgba(38, 31, 68, 0.075);
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.round {
    border-radius: 25px;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
}
.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}
.btn-success {
    background: var(--success);
    color: var(--white);
}
.btn-secondary-border {
    border: 1px solid var(--secondary);
    color: var(--secondary);
    background: var(--white);
} 
.btn-primary-border {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: var(--white);
}
.btn-light {
    background-color: #f2f2f2;
    color: #212121;
}
.btn-group {
    column-gap: 20px;
}
.btn-next {
    width: 100%;
}
.btn.disabled {
    cursor: not-allowed;
    opacity: 0.65;
    pointer-events: none;
}
  
  /* Text */
  .text {
    color: #747579;
  }
  .t-primary {
    color: var(--primary);
  }
  .t-secondary {
    color: var(--secondary);
  }
  .t-red {
    color: var(--red);
  }
  .t-right {
    text-align: right;
  }
  .t-left {
    text-align: left;
  }
  .t-center {
    text-align: center;
  }
  .t-white {
    color: var(--white);
  }
  .t-upper {
    text-transform: uppercase;
  }
  .t-sm {
    font-size: 14px;
  }
  .fw-medium {
    font-weight: 500;
  }
  .small {
    font-size: 10px;
    line-height: 14px;
  }
  
  /* Background */
  .bg-primary {
    background: var(--primary);
  }
  .bg-accent {
    background: var(--accent);
  }
  .bg-light {
    background: #dfe9f3;
  }
  .bg-gradient {
    background-image: var(--gradient);
  }
  
  /* Margin */
  .mt-2 {
    margin-top: 0.5rem;
  }
  .mt-3 {
    margin-top: 1rem;
  }
  .mt-4 {
    margin-top: 1.5rem;
  }
  .mt-5 {
    margin-top: 3rem;
  }
  .mb-2 {
    margin-bottom: 0.5rem;
  }
  .mb-3 {
    margin-bottom: 1rem;
  }
  .mb-4 {
    margin-bottom: 1.5rem;
  }
  .mb-5 {
    margin-bottom: 3rem;
  }
  .ml-2 {
    margin-left: 0.5rem;
  }
  .ml-4 {
    margin-left: 1.5rem;
  }
  .mr-2 {
    margin-right: 0.5rem;
  }
  .mr-4 {
    margin-right: 1.5rem;
  }
  .my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
/* col */
[class*="col-"] {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
}
.col-12 {
    width: 100%;
}
.row {
    display: flex;
    margin-right: -0.625rem;
    margin-left: -0.625rem;
}

.container{
    padding-right: 16px;
    padding-left: 16px;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
}
.section {
    padding: 40px 0;
    overflow: hidden;
}
.sec-title {
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary);
}
.page-title {
    font-size: 32px;
    line-height: 36px;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.img {
    width: 100%;
    display: block;
}
.is-web {
    display: none;
}
/* Header */
.header {
  border-bottom: 1px solid #e5e7eb;
}
.header.with-bg{
background-color: #640d5f17;
box-shadow: 0 4px 14px 0 #640d5f3d;
}
.header-wrap{
  height: 55px;
}
.brand-logo {
  font-size: 18px;
  font-weight: bold;
  color: var(--secondary);
}
.header nav li{
  position: relative;
}
.header nav li.active{
  font-weight: 600;
}
.header nav ul {
  column-gap: 60px;
}
.header nav a{
  color: var(--warm-black);
  font-size: 14px;
}

.why-kiwee-wrap{
  justify-content: center;
  column-gap: 100px;
}
.why-kiwee img{
  height: 350px;
  width: 220px;
  border-radius: 150px;
  object-fit: cover;
}
.why-kiwee ul{
  flex-direction: column;
}
.why-kiwee li{
  padding: 18px 0;
  border-bottom: 1px solid #dfdfdf;
}

/* card */
.card {
border-radius: 4px;
background-color: var(--white);
box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
}
.card-body {
padding: 10px;
}

/* Rating Star */
.rating span {
font-size: 10px;
color: #757575;
margin-left: 6px;
}
.rating.flex {
column-gap: 5px;
align-items: center;
}
.rating i{
color: var(--orange);
}

/* Social Media */

.social-media {
margin-top: 15px;
column-gap: 15px;
color: var(--text);
}
.social-media i {
color: var(--cream);
cursor: pointer;
}
.social-media.border i{
width: 35px;
height: 35px;
font-size: 22px;
text-align: center;
line-height: 35px;
border-radius: 4px;
border: 1px solid var(--cream);
}
.social-media.sm i{
width: 30px;
height: 30px;
line-height: 30px;
}

/* Rating Star */
.rating span {
  font-size: 10px;
  color: #757575;
  margin-left: 6px;
}
.rating.flex {
  column-gap: 5px;
  align-items: center;
}
.rating i{
  color: var(--primary);
}

/* Banner */
.hero-banner {
  background-image: var(--gradient);
}
.hero-banner .content h1 {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 700;
  max-width: 300px;
  color: var(--primary);
}
.hero-banner .content p {
  margin-bottom: 2rem;
}
.hero-banner .bnr-img{
  width: 100%;
  object-fit: cover;
  border-radius: 2px;
  position: relative;
}

/* Product card */
.best-seller .container-full{
  padding: 0 20px;
}
.prod-card {
  text-align: center;
  padding: 12px;
}
.prod-card img {
  border-radius: 4px;
  object-fit: cover;
  object-position: top;
}
.prod-card h4 {
  color: var(--blue);
  font-size: 14px;
  margin: 0 auto 8px;
  line-height: 1.5;
}
.prod-card .card-footer {
  border-top: 1px solid #e5e7eb;
  padding: 8px 12px 0;
  margin: 0 -12px;
}
.prod-card .card-footer .time {
  font-size: 12px;
}
.prod-card .rating{
  justify-content: center;
}
.prod-card .card-footer .btn {
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
}

/* About Us */
.about-details h4 {
  font-size: 18px;
  margin: 24px 0 18px;
}
.about-details ul {
  flex-flow: column;
  row-gap: 20px;
  margin-bottom: 40px;
}
.about-details ul i {
  color: var(--accent);
  margin-right: 10px;
}
#about-us .about-img {
  position: relative;
}
#about-us h2{
  margin: 5px 0 20px;
}
#about-us .about-img img {
  border-radius: 6px;
  max-height: 600px;
  object-fit: cover;
}
#about-us .about-wrap {
  row-gap: 30px;
  align-items: center;
  flex-direction: column;
}
#about-us .experiences {
  background-color: var(--cream);
  position: absolute;
  padding: 15px;
  align-items: center;
  column-gap: 20px;
  text-align: left;
  left: 20px;
  bottom: 20px;
  color: var(--warm-black);
  border-radius: 6px;
}
#about-us .experiences img {
  width: 35px;
  filter: brightness(0);
}
#about-us .experiences span {
  font-size: 22px;
  font-weight: 700;
}
#about-main .about-details ul {
  margin-bottom: 0;
}
#testimonials .card{
  padding: 14px 18px;
  border-radius: 12px;
}
#testimonials p{
  margin: 8px 0 10px;
  font-size: 12px;
  line-height: 18px;
  min-height: 90px;
}
#testimonials h4{
  color: var(--accent);
}

/* statistics */

#statistics h4{
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary);
}
#statistics p{
  font-size: 12px;
  line-height: 14px;
  margin-top: 10px;
}

/* Our Team */
.team-card{
  overflow: hidden;
  border-radius: 8px;
}
.team-card.even{
  margin-top: 40px;
}
.team-card h2{
  color: var(--primary);
  margin-bottom: initial;
}
.team-card .img-holder img{
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top;
}
.team-card .info{
  background: #f8f9fa;
  padding: 1.5rem;
  display: flex ;
  flex-direction: column;
  justify-content: center;
}
.team-card .info span{
  margin: 0.8rem 0;
  display: block;
}
.team-card .info p{
  margin-top: 12px;
}
.team-card .social-link{
  margin-top: 1.8rem;
}
.team-card .social-link a {
  width: 40px;
  height: 40px;
  margin-right: 1.5rem;
  display: inline-block;
  line-height: 40px;
  color: var(--secondary);
  background: #e1ad0130;
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
}

/* Listing Page */
.listing-wrap {
  gap: 30px;
}

/* Footer */
.footer {
  padding-top: 30px;
  color: var(--cream);
  background-color: var(--primary);
}
.footer-wrap {
  gap: 20px;
  padding-bottom: 20px;
}
.link-wrap ul {
  flex-flow: column;
  row-gap: 15px;
}
.footer a {
  color: var(--cream);
  font-size: 14px;
}
.footer .copyright {
  padding: 20px 0;
  padding: 10px 16px;
  font-size: 12px;
}
.footer .social-media .icon-social{
  color: var(--text);
  border-color: var(--text);
}
.link-wrap h4,
.link-wrap h2 {
  margin-bottom: 20px;
  color: var(--secondary);
  font-weight: 600;
}

.checkout-form .row {
  flex-wrap: wrap;
  row-gap: 20px;
}

.product-details {
  border: 1px solid #d4d4e1;
  padding: 18px 16px;
  border-radius: 4px;
}
.contact-details li {
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.product-details li {
  border-bottom: 1px solid #d4d4e1;
  padding-bottom: 25px;
  margin-bottom: 25px;
  flex-direction: column;
  row-gap: 22px;
}
.contact-details .prod-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.contact-details .icon {
  width: 35px;
  height: 35px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 4px;
  line-height: 35px;
  text-align: center;
  font-size: 20px;
}
.contact-details .prod-wrap .content {
  width: 80%;
}
.contact-details .prod-wrap h4 {
  color: var(--primary);
}
.contact-details .prod-wrap .price {
  font-size: 12px;
}
.product-details li:last-child {
  border: 0;
  margin: 0;
  padding: 0;
}
.map-wrap iframe {
  width: 100%;
  height: 500px;
  border: 0;
}

/* About us page */
.reason-wrap {
  flex-direction: column;
  row-gap: 40px;
  justify-content: space-between;
  margin-top: 40px;
}
.reason-wrap .reason-icon {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 50%;
  font-size: 24px;
  color: var(--white);
  background: var(--secondary);
}
.reason-wrap li {
  text-align: left;
  align-items: center;
  column-gap: 20px;
}
.reason-wrap li h4 {
  font-size: 16px;
  font-weight: 500;
}
.reason-wrap li p {
  font-size: 12px;
  color: var(--text);
  line-height: 20px;
}
.reason-wrap .desc{
  width: 80%;
}


/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.modal.fade {
  visibility: visible;
  opacity: 1;
}
.modal-body {
  max-width: 800px;
  width: 100%;
  transition: all 0.3s ease-in-out;
  background: #fff;
  z-index: 602;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 4px;
}
.modal.message .modal-body {
  max-width: 400px;
}
#modal-measure.message .modal-body {
  max-width: 600px;
}
.modal:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  z-index: 601;
}
.modal-content {
  max-height: 80vh;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}
.modal-close {
  position: absolute;
  top: -20px;
  right: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: #fff;
  border: 0;
  z-index: 999;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.modal.message .modal-close {
  box-shadow: none;
  top: 0;
  right: 0;
}
.modal-close:after,
.modal-close:before {
  content: "";
  position: absolute;
  background: #959595;
  height: 1px;
  left: 12px;
  top: 19px;
  width: 17px;
}
.modal-close:after {
  transform: rotate(45deg);
}
.modal-close:before {
  transform: rotate(-45deg);
}
.modal h4{
  font-size: 24px;
  color: var(--secondary);
}
.modal .icon{
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  display: flex ;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 26px;
  color: var(--white);
  background-color: var(--secondary);
}
.modal .btn{
  font-size: 12px;
}

/* slider */
.swiper{
  padding: 3px !important;
}
.swiper.overflow-inherit{
  overflow: inherit !important;
}
.swiper .swiper-pagination{
  bottom: -30px !important;
}
.swiper .swiper-pagination-bullet-active{
  background-color: var(--secondary);
}
.swiper .swiper-button-next, .swiper .swiper-button-prev{
  color: var(--primary);
}
.swiper-slide-thumb-active img{
  border: 2px solid var(--primary);
  border-radius: 6px;
}

/* Form Input */
.form-group{
  position: relative;
}
.form-control {
  border: 1px solid #d1d5db;
  font-size: 14px;
  padding: 10px 1rem;
  width: 100%;
  font-family: Poppins;
  background-color: transparent;
  border-radius: 4px;
  outline: 0;
}
.select-custom .form-control {
  color: #757575;
}
.form-label {
  margin-bottom: 8px;
  display: block;
  font-weight: 300;
  font-size: 14px;
}
.custom-indicator {
  position: absolute;
  border: 1px solid #ccc;
  border-radius: 50%;
  top: 23px;
  left: 10px;
  height: 14px;
  width: 14px;
}
.custom-radio {
  position: relative;
  color: #616161;
  font-size: 14px;
  width: 100%;
  padding: 20px 15px 20px 38px;
  font-family: "Poppins";
  z-index: 1;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 18px;
}
.custom-radio input:checked~.custom-indicator {
  background: var(--purple);
  border-color: purple;
}
.custom-radio input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.custom-indicator:after {
  position: absolute;
  left: 2px;
  top: 2px;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: #021c32;
}
.custom-radio input:checked~.custom-indicator:after {
  content: '';
  display: block;
}
.custom-radio .label-border {
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  border-radius: 4px;
  border: 1px dashed #dfdfdf;
  transform: translate(-50%, -50%);
}
.custom-radio input:checked~.label-border {
  border: 1px solid var(--purple);
}
.field-error {
  font-size: 12px;
  color: #f44336;
  position: absolute;
  margin-top: 3px;
}

@media only screen and (max-width: 768px) {
  .header .icon-group{
    font-size: 28px;
    column-gap: 15px;
    color: var(--secondary);
  }
  .header .icon-group a{
    color: var(--secondary);
  }
  .nav-menu {
    position: fixed;
    background: var(--white);
    width: 80%;
    height: 100%;
    top: 0;
    right: -100%;
    box-shadow: -2px 0 4px rgb(29 47 39 / 10%);
    padding: 4rem 0 0 3rem;
    border-radius: 1rem 0 0 1rem;
    transition: 0.3s;
    z-index: 100;
  }
  .why-kiwee-wrap{
    row-gap: 30px;
  }
  .show-menu {
    right: 0;
  }
  .nav-menu ul {
    display: flex ;
    flex-direction: column;
    row-gap: 1.5rem;
  }
  .nav-menu a {
    color: var(--secondary);
    font-weight: 500;
    transition: 0.3s;
  }
  .nav-close {
    font-size: 1.5rem;
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    cursor: pointer;
  }
  .bnr-img-wrap{
    justify-content: space-between;
    column-gap: 20px;
  }
  .bnr-wrap{
    flex-direction: column-reverse;
    row-gap: 30px;
  }
  #listing .listing-wrap {
    gap: 16px;
  }
  #listing .prod-card {
    width: calc(50% - 8px);
    padding: 8px;
  }
  #listing .card-body {
    padding: 6px;
  }
  #listing .prod-card h4 {
    font-size: 12px;
    margin: 0 auto 2px;
  }
  #listing .prod-card .card-footer {
    padding: 6px 12px 0;
  }
}
@media only screen and (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media only screen and (min-width: 768px) {
  .container {
    max-width: 720px;
  }
  .is-mobile {
    display: none;
  }
  .is-web {
    display: initial;
  }
  #about-us .about-wrap {
    row-gap: 40px;
  }
  .about-details li {
    display: flex;
    font-size: 14px;
  }
}
@media only screen and (min-width: 992px) {
  :root {
    font-size: 16px;
  }
  .container {
    max-width: 960px;
  }
  .main {
    padding: 8rem 0 0;
  }
  .section {
    padding: 70px 0;
  }
  .btn{
    padding: 10px 20px;
  }
  h1,
  h2 {
    font-size: 24px;
  }
  .col-lg-6 {
    width: 50%;
  }
  .sec-title {
    font-size: 34px;
    line-height: 1.4;
    margin-bottom: 3.5rem;
  }
  .sec-desc {
    font-size: 16px;
    max-width: 750px;
    margin: 0 auto;
  }
  .page-title {
    font-size: 70px;
    line-height: 96px;
  }
  .flex-column-row{
    flex-direction: row;
  }
  .header-wrap{
    height: 80px;
  }
  .header nav li.active:after{
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
  }
  .brand-logo {
    font-size: 24px;
  }
  .hero-banner .content h1 {
      font-size: 50px;
      max-width: 100%;
    }
    .hero-banner .content {
      width: 410px;
    }
    .hero-banner .bnr-img{
      width: 90%;
      margin-left: auto;
    }
  .why-kiwee img{
    height: 500px;
    width: 330px;
  }
  .why-kiwee li{
    padding: 30px 0;
  }
  #about-us .about-wrap {
    column-gap: 120px;
    flex-flow: row;
  }
  #about-us .about-details {
    width: 50%;
  }
  #about-us .about-img {
    width: 50%;
  }
  .about-details h4 {
    font-size: 26px;
    margin: 35px 0 20px;
  }
  #about-us-main .about-details h4 {
    font-size: 22px;
  }
  #about-us .experiences {
    bottom: 30px;
    left: 30px;
    padding: 20px;
  }
  #about-us .experiences img {
    width: 50px;
  }
  #about-us .experiences span {
    font-size: 30px;
  }
  #statistics h4{
    font-size: 52px;
    line-height: 60px;
  }
  #statistics li p{
    font-size: 20px;
  }
  .checkout-form .row {
    row-gap: 30px;
}
.summary-main {
  padding-left: 80px;
  margin: 0 0 0 80px;
  border-left: 1px solid #d4d4e1;
}
.product-details {
  padding: 18px 25px;
  margin-top: 40px;
}
.contact-details .product-details {
  padding: 25px;
  margin-top: 0;
}
.product-details li {
  flex-direction: row;
}

.reason-wrap {
  flex-direction: row;
  margin-top: 80px;
  flex-wrap: wrap;
  row-gap: 70px;
}
.reason-wrap li{
  width: calc(50% - 20px);
  justify-content: space-between;
}
.reason-wrap .reason-icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 32px;
}
.questions-header h3 {
  font-size: 14px;
}
.reason-wrap li h4 {
  font-size: 20px;
}
.reason-wrap li p {
  font-size: 14px;
  margin-top: 6px;
}
.team-card{
  height: 400px;
}
.team-card.even{
  margin-top: 60px;
}
.team-card .img-holder{
  width: 50%;
}
.team-card .info{
  width: 50%;
}

  .footer {
    padding-top: 70px;
  }
  .footer-wrap {
    padding-bottom: 40px;
  }
  .link-wrap ul {
    row-gap: 25px;
  }
  .footer .link-wrap {
    width: 25%;
  }
  .footer .link-wrap:nth-child(2) {
    width: 20%;
  }
  .footer .link-wrap:nth-child(3) {
    width: 20%;
  }
  .link-wrap h4,
  .link-wrap h2 {
    margin-bottom: 30px;
  }
  .footer .copyright {
    padding: 20px 0;
    font-size: 14px;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media only screen and (min-width: 1600px) {
  .container {
    max-width: 1400px;
  }
}
@keyframes but-loader{
  0% {
    opacity: .4;
    transform: scale(1, 1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2, 1.2);
  }
  100% {
    opacity: .4;
    transform: scale(1, 1);
  }
}