.banner
{
 position: relative;
 width: 100%;
 padding: 0;
 margin: 0;
 overflow: hidden;
}

.banner_wrap
{
 position: relative;
 display: flex;
 width: 100%;
 height: 100%;
 max-height: 765px;
 padding: 0;
 margin: 0 auto;
 align-items: center;
 -webkit-align-items: center;
 box-sizing: border-box;
 -webkit-box-sizing: border-box;
}

.banner_wrap img
{
 width: 100%;
 object-fit: cover;
}

.banner_slider
{
 width: 100%;
 height: 100%;
 visibility: hidden;
 transition: opacity 1s ease-in;
 -webkit-transition: opacity 1s ease-in;
 overflow: hidden;
}

.banner_slider.slick-initialized
{
 visibility: visible;
 opacity: 1;
}

.banner_video
{
 width: 100%;
 height: auto;
 height: calc(var(--full-height) - 75px);
 object-fit: cover;
}

.mobile_banner
{
 display: none
}

.sections_utp
{
 position: relative;
 max-width: 1400px;
 padding: 0;
 margin: 0 auto;
 background: #F4F4F4;
}

@media screen and (max-width: 2100px)
{
 .sections_utp
 {
  max-width: 1200px;
  padding: 0 50px;
 }
}

@media screen and (max-width: 990px)
{
 .sections_utp
 {
  padding: 0 30px;
 }
}

@media screen and (max-width: 990px)
{
 .sections_utp
 {
  padding: 0 20px;
 }
}

.sections_utp_row
{
 display: flex;
 display: -webkit-flex;
 gap: 35px;
 position: relative;
 padding: 0;
 margin-top: 120px;
 margin-left: auto;
 margin-right: auto;
 margin-bottom: 90px;
 justify-content: center;
 -webkit-justify-content: center;
}

@media screen and (max-width: 2100px)
{
 .sections_utp_row
 {
  gap: 30px;
  margin: 50px auto;
 }
}

@media screen and (max-width: 990px)
{
 .banner
 {
  display: none
 }


 .mobile_banner
 {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0
 }

 .banner_wrap
 {
  height: auto;
  max-height: none
 }

 .banner_wrap img
 {
  height: auto;
  object-fit: unset
 }

 .sections_utp_row
 {
  gap: 20px;
  flex-wrap: wrap;
 }
}

@media screen and (max-width: 780px)
{
 .sections_utp_row
 {
  gap: 30px;
  margin: 30px 0;
 }
}

.sections_utp_item
{
 display: flex;
 display: -webkit-flex;
 width: 33%;
 padding-top: 60px;
 padding-left: 60px;
 padding-right: 60px;
 padding-bottom: 45px;
 background: #FFFFFF;
 border-radius: 30px;
 -webkit-border-radius: 30px;
 flex-direction: column;
 align-items: center;
 -webkit-align-items: center;
 justify-content: space-between;
 -webkit-justify-content: space-between;
 box-sizing: border-box;
 -webkit-box-sizing: border-box;
 transition: background-color 0.3s ease-out, color 0.3s ease-out;
 -webkit-transition: background-color 0.3s ease-out, color 0.3s ease-out;
}

.sections_utp_item.active
{
 background: #ECFF76;
 transition: background-color 0.3s ease-in, color 0.3s ease-in;
 -webkit-transition: background-color 0.3s ease-in, color 0.3s ease-in;
}

.sections_utp_item.active .sections_utp_image img
{
 opacity: 0;
 will-change: opacity;
}

.sections_utp_item.active .sections_utp_image .sections_utp_image_hidden
{
 opacity: 1;
 will-change: opacity;
}

.sections_utp_item.active .sections_utp_buttons a
{
 border-color: #917EE3;
 background: #917EE3;
 color: #FFFFFF;
 transition: background-color 0.3s ease-in, color 0.3s ease-in, border-color 0.3s ease-in;
 -webkit-transition: background-color 0.3s ease-in, color 0.3s ease-in, border-color 0.3s ease-in;
}

@media (hover: hover)
{
 .sections_utp_item:hover
 {
  background: #ECFF76;
  transition: background-color 0.3s ease-in, color 0.3s ease-in;
  -webkit-transition: background-color 0.3s ease-in, color 0.3s ease-in;
 }

 .sections_utp_item:hover .sections_utp_image img
 {
  opacity: 0;
  will-change: opacity;
 }

 .sections_utp_item:hover .sections_utp_image .sections_utp_image_hidden
 {
  opacity: 1;
  will-change: opacity;
 }

 .sections_utp_item:hover .sections_utp_buttons a
 {
  border-color: #917EE3;
  background: #917EE3;
  color: #FFFFFF;
  transition: background-color 0.3s ease-in, color 0.3s ease-in, border-color 0.3s ease-in;
  -webkit-transition: background-color 0.3s ease-in, color 0.3s ease-in, border-color 0.3s ease-in;
 }
}

@media screen and (max-width: 2100px)
{
 .sections_utp_item
 {
  display: flex;
  display: -webkit-flex;
  width: 33%;
  padding-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 30px;
 }
}

@media screen and (max-width: 990px)
{
 .sections_utp_item
 {
  width: 40%;
 }
}

@media screen and (max-width: 780px)
{
 .sections_utp_item
 {
  width: 70%;
 }
}

@media screen and (max-width: 680px)
{
 .sections_utp_item
 {
  width: 85%;
 }
}

@media screen and (max-width: 480px)
{
 .sections_utp_item
 {
  width: 100%;
  gap: 25px;
 }
}

.sections_utp_image
{
 position: relative;
 height: 260px;
 width: auto;
 margin-bottom: 70px;
}

.sections_utp_image img
{
 width: auto;
 height: 100%;
 margin: auto;
 object-fit: fill;
 opacity: 1;
}

.sections_utp_image .sections_utp_image_hidden
{
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 opacity: 0;
}

@media screen and (max-width: 2100px)
{
 .sections_utp_image
 {
  height: 120px;
  margin-bottom: 50px;
 }
}

@media screen and (max-width: 480px)
{
 .sections_utp_image
 {
  height: 100px;
  margin-bottom: 30px;
 }
}

.sections_utp_text
{
 text-align: center;
}

.sections_utp_text h1
{
 font-size: 2.5rem;
 font-weight: 800;
 color: #323137;
 line-height: 82%;
 margin-bottom: 20px;
}

@media screen and (max-width: 2100px)
{
 .sections_utp_text h1
 {
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 15px;
 }
}

@media screen and (max-width: 480px)
{
 .sections_utp_text h1
 {
  font-size: 1rem;
 }
}

.sections_utp_text p
{
 font-size: 1.13rem;
 font-weight: 400;
 line-height: 107%;
 letter-spacing: 0.02em;
 color: #323137;
 margin-bottom: 30px;
}

@media screen and (max-width: 2100px)
{
 .sections_utp_text p
 {
  font-size: 0.988rem;
  font-weight: 400;
  line-height: 1.2;
 }
}

@media screen and (max-width: 480px)
{
 .sections_utp_text p
 {
  font-size: 0.875rem;
 }
}

.sections_utp_buttons
{
 display: flex;
 display: -webkit-flex;
 gap: 10px;
 flex-wrap: wrap;
}

.sections_utp_buttons a
{
 font-size: 1.125rem;
 font-weight: 800;
 line-height: 97%;
 color: #323137;
 text-transform: uppercase;
 text-decoration: none;
 padding: 8px 10px;
 border: 1.2px solid #323137;
 border-radius: 190px;
 -webkit-border-radius: 190px;
 background: #FFF;
 transition: background-color 0.4s ease-out, color 0.4s ease-out, border-color 0.4s ease-out;
 -webkit-transition: background-color 0.4s ease-out, color 0.4s ease-out, border-color 0.4s ease-out;
 box-sizing: border-box;
 -webkit-box-sizing: border-box;
 cursor: pointer;
}

@media screen and (max-width: 2100px)
{
 .sections_utp_buttons a
 {
  font-size: 0.75rem;
  line-height: 1;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 8px;
 }
}

.quality_background
{
 background: #FFFFFF;
}

.quality_wrap
{
 max-width: 1400px;
 padding-top: 135px;
 padding-left: 0;
 padding-right: 0;
 padding-bottom: 60px;
 margin: 0 auto;
}

@media screen and (max-width: 2100px)
{
 .quality_wrap
 {
  max-width: 1200px;
  padding-top: 70px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 90px;
 }
}

@media screen and (max-width: 990px)
{
 .quality_wrap
 {
  padding-left: 0;
  padding-right: 0;
 }
}

@media screen and (max-width: 480px)
{
 .quality_wrap
 {
  padding-top: 40px;
 }
}

.quality_text
{
 position: relative;
 padding-top: 0;
 padding-left: 0;
 padding-right: 0;
 padding-bottom: 90px;
 margin: 0;
}

@media screen and (max-width: 990px)
{
 .quality_text
 {
  padding-left: 50px;
  padding-right: 50px;
 }
}

.quality_text h2, .quality_text h3
{
 font-size: 4.63rem;
 font-weight: 400;
 line-height: 110%;
 text-align: left;
 margin-bottom: 0;
 color: #323137;
}

@media screen and (max-width: 2100px)
{
 .quality_text h2, .quality_text h3
 {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.2;
 }
}

@media screen and (max-width: 480px)
{
 .quality_text h2, .quality_text h3
 {
  font-size: 1.5rem;
 }
}

.quality_text p
{
 font-size: 1.69rem;
 font-weight: 400;
 line-height: 110%;
 max-width: 765px;
 text-align: left;
 margin-top: 30px;
 margin-bottom: 0;
 color: #323137;
}

@media screen and (max-width: 2100px)
{
 .quality_text p
 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
 }
}

@media screen and (max-width: 480px)
{
 .quality_text p
 {
  font-size: 0.988rem;
  margin-top: 20px;
 }
}

.quality_text strong
{
 font-weight: 900;
 text-transform: uppercase;
}

@media screen and (max-width: 480px)
{
 .quality_text
 {
  padding: 0 30px;
 }
}

.quality_items
{
 display: flex;
 display: -webkit-flex;
 gap: 30px;
 padding: 0;
 align-items: flex-start;
 -webkit-align-items: flex-start;
 overflow: hidden;
}

@media screen and (max-width: 2100px)
{
 .quality_items
 {
  gap: 20px;
 }
}

@media screen and (max-width: 990px)
{
 .quality_items
 {
  align-items: center;
  -webkit-align-items: center;
  flex-direction: column;
 }
}

@media screen and (max-width: 480px)
{
 .quality_items
 {
  padding-top: 60px;
 }
}

.quality_items_columns
{
 position: relative;
 display: flex;
 display: -webkit-flex;
 gap: 30px;
 width: 33%;
 padding: 0;
 margin: 0;
 justify-content: center;
 -webkit-justify-content: center;
 flex-direction: column;
}

.quality_items_columns:nth-child(1) .quality_item:not(:nth-child(3n + 1))
{
 display: none;
}

@media screen and (max-width: 990px)
{
 .quality_items_columns:nth-child(1) .quality_item:not(:nth-child(3n + 1))
 {
  display: flex;
  display: -webkit-flex;
 }
}

@media screen and (max-width: 990px)
{
 .quality_items_columns:nth-child(1)
 {
  width: 100%;
  flex-direction: row;
 }
}

.quality_items_columns:nth-child(2) .quality_item
{
 height: 520px;
}

@media screen and (max-width: 2100px)
{
 .quality_items_columns:nth-child(2) .quality_item
 {
  height: 420px;
 }
}

.quality_items_columns:nth-child(2) .quality_item:not(:nth-child(3n + 2))
{
 display: none;
}

@media screen and (max-width: 990px)
{
 .quality_items_columns:nth-child(2)
 {
  display: none;
 }
}

.quality_items_columns:nth-child(3) .quality_item:not(:nth-child(3n + 3))
{
 display: none;
}

@media screen and (max-width: 990px)
{
 .quality_items_columns:nth-child(3)
 {
  display: none;
 }
}

.quality_item
{
 display: flex;
 display: -webkit-flex;
 padding-top: 30px;
 padding-left: 40px;
 padding-right: 55px;
 padding-bottom: 35px;
 margin: 0;
 border-radius: 25px;
 -webkit-border-radius: 25px;
 background: #ECECEC;
 flex-direction: column;
 justify-content: space-between;
 -webkit-justify-content: space-between;
 box-sizing: border-box;
 -webkit-box-sizing: border-box;
 gap: 30px;
 height: 390px;
 transition: background-color 0.3s ease-out;
 -webkit-transition: background-color 0.3s ease-out;
}

.quality_item h3
{
 font-size: 2.5rem;
 font-weight: 700;
 line-height: 110%;
 text-align: left;
 padding: 0;
 margin: 0;
 text-transform: uppercase;
 color: #323137;
 box-sizing: border-box;
 -webkit-box-sizing: border-box;
}

@media screen and (max-width: 2100px)
{
 .quality_item h3
 {
  font-size: 1.25rem;
  line-height: 1.5;
 }
}

.quality_item p
{
 font-size: 1.25rem;
 font-weight: 400;
 line-height: 1.63rem;
 padding: 0;
 margin: 0;
 text-align: left;
 color: #323137;
}

@media screen and (max-width: 2100px)
{
 .quality_item p
 {
  font-size: 0.988rem;
  font-weight: 400;
  line-height: 1.5;
 }
}

@media screen and (max-width: 2100px)
{
 .quality_item
 {
  padding-bottom: 30px;
 }
}

@media screen and (max-width: 990px)
{
 .quality_item
 {
  padding-left: 40px;
  padding-right: 40px;
 }
}

@media screen and (max-width: 480px)
{
 .quality_item
 {
  padding-left: 30px;
  padding-right: 30px;
  background: var(--hover-color);
 }
 
 .quality_item .quality_item_text_hidden
 {
  opacity: 1;
  transition: opacity 0.4s ease-in;
  -webkit-transition: opacity 0.4s ease-in;
 }
 
 .quality_item .quality_item_text_visible
 {
  opacity: 0;
  transition: opacity 0.4s ease-out;
  -webkit-transition: opacity 0.4s ease-out;
 }
}

.quality_item.active
{
 background: var(--hover-color);
 transition: background-color 0.3s ease-in;
 -webkit-transition: background-color 0.3s ease-in;
}

.quality_item.active .quality_item_text_hidden
{
 opacity: 1;
 transition: opacity 0.4s ease-in;
 -webkit-transition: opacity 0.4s ease-in;
}

.quality_item.active .quality_item_text_visible
{
 opacity: 0;
 transition: opacity 0.4s ease-out;
 -webkit-transition: opacity 0.4s ease-out;
}

@media screen and (max-width: 2100px)
{
 .quality_item
 {
  height: 350px;
 }
}

@media screen and (max-width: 990px)
{
 .quality_item
 {
  display: flex !important;
  gap: 20px;
  width: 100%;
  height: 100%;
  margin: 0 10px;
 }
}

@media (hover: hover)
{
 .quality_item:hover
 {
  background: var(--hover-color);
  transition: background-color 0.3s ease-in;
  -webkit-transition: background-color 0.3s ease-in;
 }

 .quality_item:hover .quality_item_text_hidden
 {
  opacity: 1;
  transition: opacity 0.4s ease-in;
  -webkit-transition: opacity 0.4s ease-in;
 }

 .quality_item:hover .quality_item_text_visible
 {
  opacity: 0;
  transition: opacity 0.4s ease-out;
  -webkit-transition: opacity 0.4s ease-out;
 }
}

.quality_top
{
 box-sizing: border-box;
 -webkit-box-sizing: border-box;
}

.quality_item_orders
{
 font-size: 2.5rem;
 font-weight: 600;
 line-height: 110%;
 color: #323137;
 display: flex;
 width: 58px;
 height: 58px;
 padding: 0;
 margin-bottom: 35px;
 border-radius: 190px;
 -webkit-border-radius: 190px;
 border: 2.4px solid #323137;
 align-items: center;
 -webkit-align-items: center;
 justify-content: center;
 -webkit-justify-content: center;
 box-sizing: border-box;
 -webkit-box-sizing: border-box;
}

@media screen and (max-width: 2100px)
{
 .quality_item_orders
 {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
 }
}

@media screen and (max-width: 480px)
{
 .quality_item_orders
 {
  font-size: 1.2rem;
  width: 38px;
  height: 38px;
  border: 1.8px solid #323137;
 }
}

.quality_item_text_visible
{
 position: absolute;
 bottom: 0;
 transition: opacity 0.3s ease-out;
 -webkit-transition: opacity 0.3s ease-out;
}

.quality_item_text_hidden
{
 opacity: 0;
 transition: opacity 0.3s ease-out;
 -webkit-transition: opacity 0.3s ease-out;
}

.quality_bottom
{
 position: relative;
 box-sizing: border-box;
 -webkit-box-sizing: border-box;
}

.six_reasons_background
{
 background: #8978D0;
 overflow: hidden;
}

.six_reasons_wrap
{
 position: relative;
 max-width: 1400px;
 padding-top: 95px;
 padding-left: 0;
 padding-right: 0;
 padding-bottom: 120px;
 margin: 0 auto;
}

@media screen and (max-width: 2100px)
{
 .six_reasons_wrap
 {
  max-width: 1200px;
  padding-top: 90px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 90px;
 }
}

@media screen and (max-width: 990px)
{
 .six_reasons_wrap
 {
  padding-left: 0;
  padding-right: 0;
 }
}

.six_reasons_text
{
 width: 100%;
 margin-bottom: 100px;
 box-sizing: border-box;
}

.six_reasons_text h2, .six_reasons_text h3
{
 font-size: 4.6rem;
 font-weight: 400;
 line-height: 110%;
 text-align: left;
 margin-bottom: 0;
 color: #FFFFFF;
}

@media screen and (max-width: 2100px)
{
 .six_reasons_text h2, .six_reasons_text h3
 {
  font-size: 1.7rem;
 }
}

.six_reasons_text strong
{
 font-weight: 900;
 text-transform: uppercase;
}

@media screen and (max-width: 2100px)
{
 .six_reasons_text
 {
  margin-bottom: 70px;
 }
}

@media screen and (max-width: 990px)
{
 .six_reasons_text
 {
  padding-left: 50px;
  padding-right: 50px;
 }
}

@media screen and (max-width: 480px)
{
 .six_reasons_text
 {
  padding: 0 30px;
 }
}

.six_reasons_items
{
 position: relative;
 display: flex;
 display: -webkit-flex;
 flex-wrap: nowrap;
}

.six_reasons_items .six_reasons_item:nth-child(2)
{
 position: absolute;
 left: 180px;
 top: 0;
 z-index: 4;
}

@media screen and (max-width: 990px)
{
 .six_reasons_items .six_reasons_item:nth-child(2)
 {
  position: relative;
  left: unset;
  top: unset;
  z-index: 1;
 }
}

.six_reasons_items .six_reasons_item:nth-child(3)
{
 position: absolute;
 left: 360px;
 top: 0;
 z-index: 3;
}

@media screen and (max-width: 990px)
{
 .six_reasons_items .six_reasons_item:nth-child(3)
 {
  position: relative;
  left: unset;
  top: unset;
  z-index: 1;
 }
}

.six_reasons_items .six_reasons_item:nth-child(4)
{
 position: absolute;
 left: 540px;
 top: 0;
 z-index: 2;
}

@media screen and (max-width: 990px)
{
 .six_reasons_items .six_reasons_item:nth-child(4)
 {
  position: relative;
  left: unset;
  top: unset;
  z-index: 1;
 }
}

.six_reasons_items .six_reasons_item:nth-child(5)
{
 position: absolute;
 left: 720px;
 top: 0;
 z-index: 1;
}

@media screen and (max-width: 990px)
{
 .six_reasons_items .six_reasons_item:nth-child(5)
 {
  position: relative;
  left: unset;
  top: unset;
  z-index: 1;
 }
}

.six_reasons_items .six_reasons_item:nth-child(6)
{
 position: absolute;
 left: 900px;
 top: 0;
 z-index: 0;
}

@media screen and (max-width: 990px)
{
 .six_reasons_items .six_reasons_item:nth-child(6)
 {
  position: relative;
  left: unset;
  top: unset;
  z-index: 1;
 }
}

@media screen and (max-width: 2100px)
{
 .six_reasons_items .six_reasons_item:nth-child(2)
 {
  position: absolute;
  left: 160px;
  top: 0;
  z-index: 4;
 }

 .six_reasons_items .six_reasons_item:nth-child(3)
 {
  position: absolute;
  left: 320px;
  top: 0;
  z-index: 3;
 }

 .six_reasons_items .six_reasons_item:nth-child(4)
 {
  position: absolute;
  left: 480px;
  top: 0;
  z-index: 2;
 }

 .six_reasons_items .six_reasons_item:nth-child(5)
 {
  position: absolute;
  left: 640px;
  top: 0;
  z-index: 1;
 }

 .six_reasons_items .six_reasons_item:nth-child(6)
 {
  position: absolute;
  left: 800px;
  top: 0;
  z-index: 0;
 }
}

@media screen and (max-width: 2100px) and (max-width: 990px)
{
 .six_reasons_items .six_reasons_item:nth-child(2)
 {
  position: relative;
  left: unset;
  top: unset;
  z-index: 1;
 }
}

@media screen and (max-width: 2100px) and (max-width: 990px)
{
 .six_reasons_items .six_reasons_item:nth-child(3)
 {
  position: relative;
  left: unset;
  top: unset;
  z-index: 1;
 }
}

@media screen and (max-width: 2100px) and (max-width: 990px)
{
 .six_reasons_items .six_reasons_item:nth-child(4)
 {
  position: relative;
  left: unset;
  top: unset;
  z-index: 1;
 }
}

@media screen and (max-width: 2100px) and (max-width: 990px)
{
 .six_reasons_items .six_reasons_item:nth-child(5)
 {
  position: relative;
  left: unset;
  top: unset;
  z-index: 1;
 }
}

@media screen and (max-width: 2100px) and (max-width: 990px)
{
 .six_reasons_items .six_reasons_item:nth-child(6)
 {
  position: relative;
  left: unset;
  top: unset;
  z-index: 1;
 }
}

@media screen and (max-width: 1350px)
{
 .six_reasons_items .six_reasons_item:nth-child(2)
 {
  position: absolute;
  left: 120px;
  top: 0;
  z-index: 4;
 }

 .six_reasons_items .six_reasons_item:nth-child(3)
 {
  position: absolute;
  left: 240px;
  top: 0;
  z-index: 3;
 }

 .six_reasons_items .six_reasons_item:nth-child(4)
 {
  position: absolute;
  left: 360px;
  top: 0;
  z-index: 2;
 }

 .six_reasons_items .six_reasons_item:nth-child(5)
 {
  position: absolute;
  left: 480px;
  top: 0;
  z-index: 1;
 }

 .six_reasons_items .six_reasons_item:nth-child(6)
 {
  position: absolute;
  left: 600px;
  top: 0;
  z-index: 0;
 }
}

@media screen and (max-width: 1350px) and (max-width: 990px)
{
 .six_reasons_items .six_reasons_item:nth-child(2)
 {
  position: relative;
  left: unset;
  top: unset;
  z-index: 1;
 }
}

@media screen and (max-width: 1350px) and (max-width: 990px)
{
 .six_reasons_items .six_reasons_item:nth-child(3)
 {
  position: relative;
  left: unset;
  top: unset;
  z-index: 1;
 }
}

@media screen and (max-width: 1350px) and (max-width: 990px)
{
 .six_reasons_items .six_reasons_item:nth-child(4)
 {
  position: relative;
  left: unset;
  top: unset;
  z-index: 1;
 }
}

@media screen and (max-width: 1350px) and (max-width: 990px)
{
 .six_reasons_items .six_reasons_item:nth-child(5)
 {
  position: relative;
  left: unset;
  top: unset;
  z-index: 1;
 }
}

@media screen and (max-width: 1350px) and (max-width: 990px)
{
 .six_reasons_items .six_reasons_item:nth-child(6)
 {
  position: relative;
  left: unset;
  top: unset;
  z-index: 1;
 }
}

@media screen and (max-width: 990px)
{
 .six_reasons_items .six_reasons_item:nth-child(2)
 {
  position: relative;
  left: 0px;
  top: 0;
  z-index: -2;
 }

 .six_reasons_items .six_reasons_item:nth-child(1)
 {
  position: relative;
  left: 0px;
  top: 0;
  z-index: -1;
 }

 .six_reasons_items .six_reasons_item:nth-child(0)
 {
  position: relative;
  left: 0px;
  top: 0;
  z-index: 0;
 }
}

@media screen and (max-width: 990px) and (max-width: 990px)
{
 .six_reasons_items .six_reasons_item:nth-child(2)
 {
  position: relative;
  left: unset;
  top: unset;
  z-index: 1;
 }
}

@media screen and (max-width: 990px) and (max-width: 990px)
{
 .six_reasons_items .six_reasons_item:nth-child(1)
 {
  position: relative;
  left: unset;
  top: unset;
  z-index: 1;
 }
}

@media screen and (max-width: 990px) and (max-width: 990px)
{
 .six_reasons_items .six_reasons_item:nth-child(0)
 {
  position: relative;
  left: unset;
  top: unset;
  z-index: 1;
 }
}

.six_reasons_item
{
 display: flex;
 display: -webkit-flex;
 padding-top: 30px;
 padding-left: 40px;
 padding-right: 55px;
 padding-bottom: 35px;
 margin: 0;
 border-radius: 25px;
 -webkit-border-radius: 25px;
 background: #ECECEC;
 flex-direction: column;
 justify-content: space-between;
 -webkit-justify-content: space-between;
 box-sizing: border-box;
 -webkit-box-sizing: border-box;
 position: relative;
 width: 40%;
 height: 580px;
 background: var(--color);
 transition: transform 0.6s ease-out;
 -webkit-transition: transform 0.6s ease-out;
 will-change: transform;
 z-index: 100;
}

.six_reasons_item h3
{
 font-size: 2.5rem;
 font-weight: 700;
 line-height: 110%;
 text-align: left;
 padding: 0;
 margin: 0;
 text-transform: uppercase;
 color: #323137;
 box-sizing: border-box;
 -webkit-box-sizing: border-box;
}

@media screen and (max-width: 2100px)
{
 .six_reasons_item h3
 {
  font-size: 1.25rem;
  line-height: 1.5;
 }
}

.six_reasons_item p
{
 font-size: 1.25rem;
 font-weight: 400;
 line-height: 1.63rem;
 padding: 0;
 margin: 0;
 text-align: left;
 color: #323137;
}

@media screen and (max-width: 2100px)
{
 .six_reasons_item p
 {
  font-size: 0.988rem;
  font-weight: 400;
  line-height: 1.5;
 }
}

@media screen and (max-width: 2100px)
{
 .six_reasons_item
 {
  padding-bottom: 30px;
 }
}

@media screen and (max-width: 990px)
{
 .six_reasons_item
 {
  padding-left: 40px;
  padding-right: 40px;
 }
}

@media screen and (max-width: 480px)
{
 .six_reasons_item
 {
  padding-left: 30px;
  padding-right: 30px;
 }
}

@media screen and (max-width: 2100px)
{
 .six_reasons_item
 {
  height: 450px;
 }
}

.six_reasons_item h3
{
 width: 100%;
}

.six_reasons_item.shift-left
{
 transform: translate3d(calc(-1 * var(--reasons-item-width) + 35%), 0, 0);
 -webkit-transform: translate3d(calc(-1 * var(--reasons-item-width) + 35%), 0, 0);
 will-change: transform;
}

.six_reasons_item:not(:first-child) h3
{
 text-align: right;
}

@media screen and (max-width: 990px)
{
 .six_reasons_item:not(:first-child) h3
 {
  text-align: left;
 }
}

.six_reasons_item:not(:first-child) .six_reasons_item_orders
{
 margin-left: auto;
}

@media screen and (max-width: 990px)
{
 .six_reasons_item:not(:first-child) .six_reasons_item_orders
 {
  margin-left: 0;
 }
}

@media screen and (max-width: 990px)
{
 .six_reasons_item
 {
  display: flex !important;
  gap: 20px;
  height: 100%;
  margin: 0 10px;
 }
}

.six_reasons_top
{
 box-sizing: border-box;
 -webkit-box-sizing: border-box;
}

.six_reasons_item_orders
{
 font-size: 2.5rem;
 font-weight: 600;
 line-height: 110%;
 color: #323137;
 display: flex;
 width: 58px;
 height: 58px;
 padding: 0;
 margin-bottom: 35px;
 border-radius: 190px;
 -webkit-border-radius: 190px;
 border: 2.4px solid #323137;
 align-items: center;
 -webkit-align-items: center;
 justify-content: center;
 -webkit-justify-content: center;
 box-sizing: border-box;
 -webkit-box-sizing: border-box;
 transition: transform 0.6s ease-out;
 -webkit-transition: transform 0.6s ease-out;
}

@media screen and (max-width: 2100px)
{
 .six_reasons_item_orders
 {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
 }
}

@media screen and (max-width: 480px)
{
 .six_reasons_item_orders
 {
  font-size: 1.2rem;
  width: 38px;
  height: 38px;
  border: 1.8px solid #323137;
 }
}

.six_reasons_bottom
{
 position: relative;
 box-sizing: border-box;
 -webkit-box-sizing: border-box;
}

.we_fancyarmor_background
{
 position: relative;
 background: #fff;
 overflow: hidden;
}

.we_fancyarmor_top_img
{
 position: absolute;
 top: -20%;
 right: 0;
}

.we_fancyarmor_top_img img
{
 width: 500px;
 height: auto;
}

@media screen and (max-width: 480px)
{
 .we_fancyarmor_top_img img
 {
  width: 250px;
 }
}

@media screen and (max-width: 480px)
{
 .we_fancyarmor_top_img
 {
  top: -10%;
 }
}

.we_fancyarmor_wrap
{
 position: relative;
 max-width: 1400px;
 padding-top: 140px;
 padding-left: 0;
 padding-right: 0;
 padding-bottom: 200px;
 margin: 0 auto;
}

@media screen and (max-width: 2100px)
{
 .we_fancyarmor_wrap
 {
  max-width: 1200px;
  padding-top: 90px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 90px;
 }
}

@media screen and (max-width: 480px)
{
 .we_fancyarmor_wrap
 {
  padding: 60px 30px;
 }
}

.we_fancyarmor_text
{
 position: relative;
 max-width: 100%;
 margin-bottom: 70px;
 z-index: 1;
}

.we_fancyarmor_text h2
{
 font-size: 4.6rem;
 font-weight: 900;
 line-height: 110%;
 text-align: left;
 margin-bottom: 50px;
 text-transform: uppercase;
 color: #323137;
}

@media screen and (max-width: 2100px)
{
 .we_fancyarmor_text h2
 {
  font-size: 1.7rem;
 }
}

@media screen and (max-width: 480px)
{
 .we_fancyarmor_text h2
 {
  font-weight: 600;
  margin-bottom: 20px;
 }
}

.we_fancyarmor_text p
{
 font-size: 3.3rem;
 font-weight: 400;
 line-height: 1.5;
 text-align: left;
 margin-bottom: 0;
 color: #323137;
}

@media screen and (max-width: 2100px)
{
 .we_fancyarmor_text p
 {
  font-size: 1rem;
 }
}

@media screen and (max-width: 2100px)
{
 .we_fancyarmor_text
 {
  max-width: 60%;
 }
}

@media screen and (max-width: 1100px)
{
 .we_fancyarmor_text
 {
  padding: 20px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 0 4px 30px rgba(255, 255, 255, 0.1);
 }
}

@media screen and (max-width: 480px)
{
 .we_fancyarmor_text
 {
  margin-bottom: 30px;
 }
}

.we_fancyarmor_items
{
 position: relative;
 display: flex;
 display: -webkit-flex;
 column-gap: 15px;
 row-gap: 20px;
 padding-bottom: 140px;
 flex-wrap: wrap;
 z-index: 1;
}

@media screen and (max-width: 480px)
{
 .we_fancyarmor_items
 {
  column-gap: 12px;
  row-gap: 20px;
  padding-bottom: 40px;
 }
}

.we_fancyarmor_item
{
 font-size: 2.16rem;
 font-weight: 600;
 line-height: 110%;
 text-align: center;
 color: #323137 !important;
 position: relative;
 display: flex;
 display: -webkit-flex;
 padding-top: 15px;
 padding-left: 30px;
 padding-right: 30px;
 padding-bottom: 20px;
 background: rgba(255, 255, 255, 0.1);
 backdrop-filter: blur(6px);
 -webkit-backdrop-filter: blur(6px);
 border: 1px solid #323137;
 border-radius: 58px;
 -webkit-border-radius: 58px;
 user-select: none;
 -webkit-user-select: none;
 transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
 -webkit-transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
 box-sizing: border-box;
 text-decoration: none;
 -webkit-box-sizing: border-box;
}

@media screen and (max-width: 2100px)
{
 .we_fancyarmor_item
 {
  font-size: 1.064rem;
  padding-top: 17px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 15px;
 }
}

.we_fancyarmor_item.active
{
 background: var(--color);
 border-color: var(--color);
 backdrop-filter: blur(10px);
 -webkit-backdrop-filter: blur(10px);
 transition: background-color 0.3s ease-in, border-color 0.3s ease-in;
 -webkit-transition: background-color 0.3s ease-in, border-color 0.3s ease-in;
}

@media (hover: hover)
{
 .we_fancyarmor_item:hover
 {
  text-decoration: none;
  background: var(--color);
  border-color: var(--color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 0.3s ease-in, border-color 0.3s ease-in;
  -webkit-transition: background-color 0.3s ease-in, border-color 0.3s ease-in;
  cursor: pointer;
 }
}

@media screen and (max-width: 480px)
{
 .we_fancyarmor_item
 {
  padding-top: 12px;
  padding-left: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
 }
}

.we_fancyarmor_text_bottom_wrap
{
 display: flex;
 display: -webkit-flex;
 justify-content: flex-end;
 -webkit-justify-content: flex-end;
}

.we_fancyarmor_bottom_img
{
 position: absolute;
 bottom: 3%;
 left: -2%;
}

.we_fancyarmor_bottom_img img
{
 width: 300px;
 height: auto;
}

.we_fancyarmor_text_bottom
{
 max-width: 690px;
}

.we_fancyarmor_text_bottom p
{
 position: relative;
 font-size: 1.69rem;
 font-weight: 400;
 line-height: 110%;
 text-align: left;
 color: #323137;
 z-index: 1;
}

@media screen and (max-width: 2100px)
{
 .we_fancyarmor_text_bottom p
 {
  font-size: 0.988rem;
  line-height: 1.5;
 }
}

.we_fancyarmor_text_bottom strong
{
 font-weight: 700;
}

@media screen and (max-width: 1100px)
{
 .we_fancyarmor_text_bottom
 {
  max-width: 100%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: 0 4px 30px rgba(255, 255, 255, 0.1);
  z-index: 1;
 }
}

.home_gallery_background
{
 background: #FFF;
}

.home_gallery_wrap
{
 position: relative;
 max-width: 1900px;
 padding: 0;
 margin: 0 auto;
}

@media screen and (max-width: 2100px)
{
 .home_gallery_wrap
 {
  max-width: 1400px;
 }
}

.home_gallery_items
{
 display: grid;
 width: 100%;
 grid-template-columns: repeat(5, 1fr);
 padding-top: 50px;
 box-sizing: border-box;
 -webkit-box-sizing: border-box;
}

.home_gallery_items *:nth-child(10n+9)
{
 grid-column: 1;
}

.home_gallery_items *:nth-child(10n+6)
{
 grid-column: 2;
}

@media screen and (max-width: 480px)
{
 .home_gallery_items
 {
  grid-template-columns: repeat(2, 1fr);
 }

 .home_gallery_items .home_gallery_image
 {
  grid-column: 1;
 }

 .home_gallery_items .home_gallery_image:has(+ .home_gallery_image img), .home_gallery_items .home_gallery_image:last-child
 {
  display: none;
 }
}

.home_gallery_text
{
 width: auto;
 height: 100%;
 display: flex;
 display: -webkit-flex;
 padding: 35px;
 gap: 30px;
 align-items: center;
 -webkit-align-items: center;
 justify-content: center;
 -webkit-justify-content: center;
 flex-direction: column;
 box-sizing: border-box;
 -webkit-box-sizing: border-box;
}

@media screen and (max-width: 2100px)
{
 .home_gallery_text
 {
  gap: 15px;
  padding: 20px;
 }
}

@media screen and (max-width: 480px)
{
 .home_gallery_text
 {
  width: 100%;
 }
}

.home_gallery_text p
{
 margin: 0;
}

.home_gallery_text p:first-child
{
 font-size: 6.25rem;
 font-weight: 900;
 line-height: 78%;
 text-align: center;
 color: #323137;
}

@media screen and (max-width: 2100px)
{
 .home_gallery_text p:first-child
 {
  font-size: 2.5rem;
 }
}

@media screen and (max-width: 480px)
{
 .home_gallery_text p:first-child
 {
  font-weight: 600;
 }
}

.home_gallery_text p:last-child
{
 font-size: 1.69rem;
 font-weight: 600;
 line-height: 100%;
 text-align: center;
 color: #323137;
}

@media screen and (max-width: 2100px)
{
 .home_gallery_text p:last-child
 {
  font-size: 1rem;
 }
}

.home_gallery_image
{
 position: relative;
 width: auto;
}

.home_gallery_image img
{
 width: 100%;
 height: 100%;
 object-fit: cover;
}

.home_gallery_image img:first-child
{
 opacity: 1;
}

.home_gallery_image img:last-child
{
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 opacity: 0;
 transition: opacity 0.3s ease-out;
 -webkit-transition: opacity 0.3s ease-out;
}

@media screen and (max-width: 480px)
{
 .home_gallery_image
 {
  width: 100%;
 }
}

.home_gallery_image.active img:first-child
{
 opacity: 0;
 transition: opacity 0.3s ease-out;
 -webkit-transition: opacity 0.3s ease-out;
}

.home_gallery_image.active img:last-child
{
 opacity: 1;
 transition: opacity 0.3s ease-in;
 -webkit-transition: opacity 0.3s ease-in;
}

@media (hover: hover)
{
 .home_gallery_image:hover img:first-child
 {
  opacity: 0;
  transition: opacity 0.3s ease-out;
  -webkit-transition: opacity 0.3s ease-out;
 }

 .home_gallery_image:hover img:last-child
 {
  opacity: 1;
  transition: opacity 0.3s ease-in;
  -webkit-transition: opacity 0.3s ease-in;
 }
}

.home_brands_background
{
 background: #FFF;
}

.home_brands_wrap
{
 max-width: 1400px;
 padding-top: 200px;
 padding-left: 0;
 padding-right: 0;
 padding-bottom: 120px;
 margin: 0 auto;
 overflow: hidden;
}

@media screen and (max-width: 2100px)
{
 .home_brands_wrap
 {
  max-width: 1400px;
  padding: 120px 50px;
 }
}

@media screen and (max-width: 480px)
{
 .home_brands_wrap
 {
  padding: 90px 30px;
 }
}

.home_brands_slider
{
 display: flex;
 display: -webkit-flex;
 justify-content: center;
 -webkit-justify-content: center;
}

.home_brands_slider .slick-slide
{
 display: flex;
 display: -webkit-flex;
 margin: 0 40px;
 justify-content: center;
 -webkit-justify-content: center;
 align-items: center;
 -webkit-align-items: center;
}

@media screen and (max-width: 780px)
{
 .home_brands_slider .slick-slide
 {
  gap: 60px;
 }
}

@media screen and (max-width: 480px)
{
 .home_brands_slider .slick-slide
 {
  gap: 70px;
  margin: 0;
  flex-direction: column;
 }
}

.home_brand_item
{
 position: relative;
 display: flex !important;
 width: auto;
 height: auto;
 justify-content: center;
 -webkit-justify-content: center;
 align-items: center;
 -webkit-align-items: center;
 overflow: hidden;
}

.home_brand_item img
{
 display: block;
 width: 100%;
 height: auto;
 object-fit: contain;
}

@media screen and (max-width: 2100px)
{
 .home_brand_item img
 {
  max-width: 200px;
  height: 70px;
 }
}

.home_reviews_background
{
 background: #FFF;
}

.home_reviews_container
{
 background: #F4F4F4;
 border-radius: 35px 35px 0px 0px;
 -webkit-border-radius: 35px 35px 0px 0px;
 overflow: hidden;
}

.home_reviews_wrap
{
 max-width: 1800px;
 padding-top: 100px;
 padding-left: 0;
 padding-right: 0;
 padding-bottom: 50px;
 margin: 0 auto;
}

@media screen and (max-width: 2100px)
{
 .home_reviews_wrap
 {
  max-width: 1800px;
  padding: 60px 50px;
 }
}

@media screen and (max-width: 480px)
{
 .home_reviews_wrap
 {
  padding-top: 50px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 40px;
 }
}

.home_reviews_text
{
 max-width: 1400px;
 font-size: 4.5rem;
 font-weight: 400;
 line-height: 110%;
 text-align: left;
 color: #323137;
 margin-top: 0;
 margin-left: auto;
 margin-right: auto;
 margin-bottom: 50px;
}

@media screen and (max-width: 2100px)
{
 .home_reviews_text
 {
  max-width: 1200px;
  font-size: 1.5rem;
  line-height: 1.2;
 }
}

@media screen and (max-width: 480px)
{
 .home_reviews_text
 {
  margin-bottom: 0;
 }
}

.home_reviews_text p
{
 margin: 0;
}

.home_reviews_text strong
{
 font-weight: 900;
}

@media screen and (max-width: 480px)
{
 .home_reviews_text strong
 {
  font-weight: 600;
 }
}

.home_reviews_slider
{
 position: relative;
 width: 100%;
 max-width: 1800px;
 padding: 100px 0;
 overflow: visible;
}

@media screen and (max-width: 2100px)
{
 .home_reviews_slider
 {
  padding: 50px 0;
 }
}

@media screen and (max-width: 480px)
{
 .home_reviews_slider
 {
  padding-top: 90px;
 }
}

.home_reviews_slider .slick-slide
{
 margin: 0 10px;
}

.home_reviews_slider .slick-list
{
 overflow: visible;
}

.home_review_item
{
 display: flex !important;
 display: -webkit-flex !important;
 gap: 30px;
 height: 460px;
 width: 430px;
 padding: 43px 20px 36px 35px;
 background: #fff;
 border-radius: 26px;
 -webkit-border-radius: 26px;
 box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
 -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
 flex-direction: column;
 justify-content: space-between;
 -webkit-justify-content: space-between;
 user-select: none;
 -webkit-user-select: none;
 box-sizing: border-box;
 -webkit-box-sizing: border-box;
}

@media screen and (max-width: 2100px)
{
 .home_review_item
 {
  height: 430px;
 }
}

@media screen and (max-width: 480px)
{
 .home_review_item
 {
  width: 95%;
  height: 330px;
  padding: 30px;
 }
}

.home_review_item_icon
{
 box-sizing: border-box;
 -webkit-box-sizing: border-box;
}

.home_review_item_icon img
{
 width: 66px;
 height: 66px;
 padding: 19px;
 border: 1.3px solid #917EE3;
 border-radius: 190px;
 -webkit-border-radius: 190px;
 object-fit: cover;
}

@media screen and (max-width: 480px)
{
 .home_review_item_icon img
 {
  width: 44px;
  height: 44px;
  padding: 12px;
 }
}

.home_review_item_bottom
{
 height: 100%;
}

.home_review_item_name
{
 font-size: 1.8rem;
 font-weight: 900;
 line-height: 102%;
 padding-bottom: 20px;
 text-align: left;
 color: #917EE3;
}

@media screen and (max-width: 2100px)
{
 .home_review_item_name
 {
  font-size: 1.125rem;
 }
}

@media screen and (max-width: 480px)
{
 .home_review_item_name
 {
  font-weight: 600;
 }
}

.home_review_item_text
{
 font-size: 1rem;
 font-weight: 400;
 line-height: 120%;
 text-align: left;
 color: #917EE3;
 display: -webkit-box;
 -webkit-line-clamp: 7;
 -webkit-box-orient: vertical;
 overflow: hidden;
}

@media screen and (max-width: 2100px)
{
 .home_review_item_text
 {
  font-size: 0.813rem;
  line-height: 1.5;
 }
}

.utp_bottom_background
{
 background: #F4F4F4;
}

.utp_bottom_container
{
 background: #FFFFFF;
 border-radius: 35px 35px 0px 0px;
 -webkit-border-radius: 35px 35px 0px 0px;
}

.utp_bottom_wrap
{
 max-width: 1400px;
 width: 100%;
 padding-top: 150px;
 padding-left: 0;
 padding-right: 0;
 padding-bottom: 150px;
 margin: 0 auto;
 box-sizing: border-box;
 -webkit-box-sizing: border-box;
}

@media screen and (max-width: 2100px)
{
 .utp_bottom_wrap
 {
  max-width: 1200px;
  padding-top: 90px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 90px;
 }
}

@media screen and (max-width: 480px)
{
 .utp_bottom_wrap
 {
  padding: 60px 30px;
 }
}

.utp_bottom_items
{
 width: 100%;
 display: grid;
 column-gap: 20px;
 row-gap: 15px;
 grid-template-columns: 2fr 2fr;
 grid-template-rows: 1fr 1fr;
 box-sizing: border-box;
 -webkit-box-sizing: border-box;
}

@media screen and (max-width: 990px)
{
 .utp_bottom_items
 {
  grid-template-columns: 1fr;
 }
}

.utp_bottom_item
{
 display: flex;
 display: -webkit-flex;
 padding-top: 35px;
 padding-left: 35px;
 padding-right: 50px;
 padding-bottom: 40px;
 border-radius: 30px;
 -webkit-border-radius: 30px;
 background: var(--color);
 flex-direction: column;
 justify-content: space-between;
 -webkit-justify-content: space-between;
 align-items: flex-start;
 -webkit-align-items: flex-start;
}

.utp_bottom_item:nth-child(1)
{
 grid-row: span 2;
}

.utp_bottom_item p
{
 font-size: 2.2rem;
 font-weight: 700;
 line-height: 100%;
 text-align: left;
 margin-bottom: 70px;
 color: #323137;
}

@media screen and (max-width: 2100px)
{
 .utp_bottom_item p
 {
  font-size: 1.5rem;
 }
}

@media screen and (max-width: 990px)
{
 .utp_bottom_item p
 {
  margin-bottom: 60px;
 }
}

@media screen and (max-width: 480px)
{
 .utp_bottom_item p
 {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
 }
}

.utp_bottom_item a
{
 font-size: 1.13rem;
 font-weight: 700;
 line-height: 97%;
 padding: 16px 18px;
 padding-top: 16px;
 padding-left: 16px;
 padding-right: 16px;
 padding-bottom: 12px;
 border: 1.2px solid #323137;
 border-radius: 192px;
 -webkit-border-radius: 192px;
 text-transform: uppercase;
 color: #323137;
 text-decoration: none;
 text-align: center;
 box-sizing: border-box;
 -webkit-box-sizing: border-box;
}

@media screen and (max-width: 2100px)
{
 .utp_bottom_item a
 {
  font-size: 0.75rem;
  line-height: 1.5;
 }
}

@media screen and (max-width: 480px)
{
 .utp_bottom_item a
 {
  font-size: 0.688rem;
  font-weight: 700;
  line-height: 1;
  padding: 12px 15px;
 }
}

@media screen and (max-width: 375px)
{
 .utp_bottom_item a
 {
  font-size: 0.625rem;
 }
}

@media (hover: hover)
{
 .utp_bottom_item a:hover
 {
  background: #323137;
  color: #FFFFFF;
 }
}

@media screen and (max-width: 480px)
{
 .utp_bottom_item
 {
  font-weight: 500;
  padding-top: 30px;
  padding-left: 25px;
  padding-bottom: 25px;
 }
}

