@import url("https://fonts.googleapis.com/css2?family=Rakkas&family=Signika+Negative:wght@300;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;600;800&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  scroll-behavior: unset;
  background: rgb(44, 44, 44);
}

body::-webkit-scrollbar {
  width: 15px;
}

body::-webkit-scrollbar-thumb {
  background: rgb(95, 95, 95);
  border-radius: 20px;
  height: 100px;
}

body::-webkit-scrollbar-thumb:hover {
  background: rgb(50, 50, 50);
  height: 150px;
}

.grid__container {
  width: 100%;
  max-width: 1440px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  grid-template-areas: "grid__header          grid__header          grid__header          grid__header" "grid__banner          grid__banner          grid__banner          grid__banner" "grid__sectionImage    grid__sectionImage    grid__sectionFashion  grid__sectionFashion" "grid__sectionCards    grid__sectionCards    grid__sectionCards    grid__sectionCards" "grid__blocks          grid__blocks          grid__blocks          grid__blocks" "grid__news            grid__news            grid__news            grid__designer" "grid__footer          grid__footer          grid__footer          grid__footer";
}
.grid__container .grid__header {
  height: 60px;
  background: white;
  grid-area: grid__header;
}
.grid__container .grid__banner {
  background: white;
  grid-area: grid__banner;
}
.grid__container .grid__sectionImage {
  background: white;
  grid-area: grid__sectionImage;
}
.grid__container .grid__sectionFashion {
  background: white;
  grid-area: grid__sectionFashion;
}
.grid__container .grid__sectionCards {
  background: rgb(255, 255, 255);
  grid-area: grid__sectionCards;
}
.grid__container .grid__blocks {
  background: rgb(255, 255, 255);
  grid-area: grid__blocks;
}
.grid__container .grid__news {
  background: rgb(255, 255, 255);
  grid-area: grid__news;
}
.grid__container .grid__designer {
  background: rgb(255, 255, 255);
  grid-area: grid__designer;
}
.grid__container .grid__footer {
  background: rgb(255, 255, 255);
  grid-area: grid__footer;
}

/*******************************
**********************************
************************/
@media (min-width: 500px) and (max-width: 1024px) {
  .grid__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: "grid__header            grid__header" "grid__banner            grid__banner" "grid__sectionImage      grid__sectionFashion" "grid__sectionCards      grid__sectionCards" "grid__blocks            grid__blocks" "grid__news              grid__news" "grid__designer          grid__designer" "grid__footer            grid__footer";
  }
}
/*******************************
**********************************
************************/
@media (min-width: 320px) and (max-width: 499px) {
  .grid__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: "grid__header            grid__header" "grid__banner            grid__banner" "grid__sectionFashion    grid__sectionFashion" "grid__sectionImage      grid__sectionImage" "grid__sectionCards      grid__sectionCards" "grid__blocks            grid__blocks" "grid__news              grid__news" "grid__designer          grid__designer" "grid__footer            grid__footer";
  }
}
.contHeader {
  width: 100%;
  background: rgb(221, 221, 221);
  padding: 10px 0px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 10;
  box-shadow: 0px 0px 2px rgb(180, 180, 180);
}
.contHeader .contHeader__logo {
  margin-left: 30px;
  width: 55px;
  height: 55px;
  background-image: url(../images/logo_black.png);
  background-size: 100% 100%;
}
.contHeader .contHeader__ul {
  width: 500px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  background: rgb(221, 221, 221);
}
.contHeader .contHeader__ul .contHeader__li {
  width: 150px;
  padding: 10px 0px;
  text-align: center;
  position: relative;
  background-color: rgb(221, 221, 221);
}
.contHeader .contHeader__ul .contHeader__li .contHeader__a {
  text-decoration: none;
  color: rgb(114, 114, 114);
  font-weight: 600;
}
.contHeader .contHeader__ul .contHeader__li .contHeader__a .arrow {
  font-size: 15px;
}
.contHeader .contHeader__ul .contHeader__li .ul_action {
  padding: 3px 0px;
  width: 100%;
  transition: 0.5s all;
  background: rgb(221, 221, 221);
  position: absolute;
  top: 35px;
  left: 30px;
  opacity: 0;
  visibility: hidden;
}
.contHeader .contHeader__ul .contHeader__li .ul_action .li_action {
  list-style: none;
  padding: 10px 20px;
  margin: 2px;
  text-align: start;
}
.contHeader .contHeader__ul .contHeader__li .ul_action .li_action .a_action {
  text-decoration: none;
  color: rgb(26, 26, 26);
}
.contHeader .contHeader__ul .contHeader__li .ul_action .li_action:hover {
  background: rgb(50, 50, 50);
}
.contHeader .contHeader__ul .contHeader__li .ul_action .li_action:hover .a_action {
  color: white;
}
.contHeader .contHeader__ul .contHeader__li:hover .ul_action {
  opacity: 1;
  visibility: visible;
}
.contHeader .contHeader__boxes {
  width: 120px;
  padding: 5px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-right: 30px;
}
.contHeader .contHeader__boxes .contHeader__box {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contHeader .contHeader__boxes .contHeader__box .boxIcon {
  color: grey;
  font-size: 25px;
}
.contHeader .contHeader__boxes .contHeader__box .boxIcon:hover {
  color: rgb(50, 50, 50);
  cursor: pointer;
}
.contHeader .contHeader__btn {
  display: none;
}

/********************************************
********************
********************/
@media (min-width: 320px) and (max-width: 899px) {
  .contHeader {
    width: 100%;
    background: rgb(221, 221, 221);
    padding: 10px 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
  }
  .contHeader .contHeader__logo {
    margin-left: 30px;
    width: 60px;
    height: 60px;
  }
  .contHeader .contHeader__ul {
    /**/
    width: 250px;
    position: absolute;
    top: 80px;
    right: -100%;
    /*JS*/
    background: rgb(221, 221, 221);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    transition: 0.2s ease-in all;
  }
  .contHeader .contHeader__ul .contHeader__li {
    padding: 10px 0px;
    text-align: center;
    position: relative;
    background-color: rgb(221, 221, 221);
    /***/
    width: 100%;
  }
  .contHeader .contHeader__ul .contHeader__li .contHeader__a {
    text-decoration: none;
    color: rgb(114, 114, 114);
    font-weight: 600;
  }
  .contHeader .contHeader__ul .contHeader__li .contHeader__a .arrow {
    font-size: 15px;
  }
  .contHeader .contHeader__ul .contHeader__li .ul_action {
    padding: 3px 0px;
    width: 120px;
    transition: 0.5s all;
    position: absolute;
    top: 35px;
    opacity: 0;
    visibility: hidden;
    /**/
    background: rgb(97, 97, 97);
    left: initial;
    right: 180px;
    z-index: 100;
  }
  .contHeader .contHeader__ul .contHeader__li .ul_action .li_action {
    list-style: none;
    padding: 10px 20px;
    margin: 2px;
    text-align: start;
  }
  .contHeader .contHeader__ul .contHeader__li .ul_action .li_action .a_action {
    /**/
    color: white;
    font-weight: 600;
  }
  .contHeader .contHeader__ul .contHeader__li .ul_action .li_action:hover {
    background: rgb(50, 50, 50);
  }
  .contHeader .contHeader__ul .contHeader__li .ul_action .li_action:hover .a_action {
    color: white;
  }
  .contHeader .contHeader__ul .contHeader__li:hover {
    background: rgb(97, 97, 97);
    color: white;
  }
  .contHeader .contHeader__ul .contHeader__li:hover .contHeader__a {
    text-decoration: none;
    color: rgb(114, 114, 114);
  }
  .contHeader .contHeader__ul .contHeader__li:hover .contHeader__a .arrow {
    font-size: 15px;
  }
  .contHeader .contHeader__ul .contHeader__li:hover .contHeader__a {
    color: white;
  }
  .contHeader .contHeader__ul .contHeader__li:hover .contHeader__a .arrow {
    font-size: 15px;
  }
  .contHeader .contHeader__ul .contHeader__li:hover .ul_action {
    opacity: 1;
    visibility: visible;
  }
  .contHeader .contHeader__ul_js {
    right: 0;
    /*JS*/
  }
  .contHeader .contHeader__boxes {
    width: 120px;
    padding: 5px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-right: 30px;
    /**/
    /**/
    position: absolute;
    top: 0;
    left: 0;
    display: none;
  }
  .contHeader .contHeader__boxes .contHeader__box {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .contHeader .contHeader__boxes .contHeader__box .boxIcon {
    color: grey;
    font-size: 25px;
  }
  .contHeader .contHeader__boxes .contHeader__box .boxIcon:hover {
    color: rgb(50, 50, 50);
    cursor: pointer;
  }
  .contHeader .contHeader__btn {
    width: 40px;
    height: 40px;
    margin-right: 20px;
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
  }
  .contHeader .contHeader__btn .btnIcon {
    cursor: pointer;
  }
}
.contBanner {
  width: 100%;
  height: 500px;
  padding: 10px 0px;
  background: white;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.contBanner .contBanner__boxLeft {
  width: 650px;
  padding: 10px 0px;
  margin-left: 80px;
  z-index: 1;
}
.contBanner .contBanner__boxLeft .contBanner__title {
  font-size: 90px;
  font-family: "Rakkas", cursive;
  color: rgb(0, 0, 0);
}
.contBanner .contBanner__boxLeft .contBanner__description {
  margin-top: -20px;
  color: rgb(97, 97, 97);
  font-size: 60px;
  font-weight: 800;
}
.contBanner .contBanner__boxLeft .contBanner__line {
  width: 80%;
  margin-top: 20px;
  height: 1px;
  border: none;
  background: rgb(97, 97, 97);
}
.contBanner .contBanner__boxLeft .contBanner__btn {
  margin-top: 40px;
  width: 200px;
  padding: 10px;
  border: 2px solid transparent;
  background: rgb(20, 17, 57);
  color: white;
  cursor: pointer;
}
.contBanner .contBanner__boxLeft .contBanner__btn:hover {
  background: rgb(46, 39, 125);
}
.contBanner .contBanner__boxRight {
  width: 500px;
  height: 550px;
  background: url(../images/img_men.png);
  background-size: 100% 100%;
  position: absolute;
  top: 50px;
  right: 80px;
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .contBanner {
    width: 100%;
    height: 500px;
    padding: 10px 0px;
    background: white;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .contBanner .contBanner__boxLeft {
    width: 55%;
    padding: 10px 0px;
    margin-left: 40px;
    z-index: 1;
  }
  .contBanner .contBanner__boxLeft .contBanner__title {
    font-size: 80px;
    font-family: "Rakkas", cursive;
    color: rgb(0, 0, 0);
  }
  .contBanner .contBanner__boxLeft .contBanner__description {
    margin-top: -20px;
    color: rgb(97, 97, 97);
    font-size: 50px;
    font-weight: 800;
  }
  .contBanner .contBanner__boxLeft .contBanner__line {
    width: 80%;
    margin-top: 20px;
    height: 1px;
    border: none;
    background: rgb(97, 97, 97);
  }
  .contBanner .contBanner__boxLeft .contBanner__btn {
    margin-top: 40px;
    width: 200px;
    padding: 10px;
    border: 2px solid transparent;
    background: rgb(20, 17, 57);
    color: white;
    cursor: pointer;
  }
  .contBanner .contBanner__boxLeft .contBanner__btn:hover {
    background: rgb(46, 39, 125);
  }
  .contBanner .contBanner__boxRight {
    width: 500px;
    height: 500px;
    background: url(../images/img_men.png);
    background-size: 100% 100%;
    position: absolute;
    top: 50px;
    right: 20px;
  }
}
@media (min-width: 900px) and (max-width: 1024px) {
  .contBanner {
    width: 100%;
    height: 500px;
    padding: 10px 0px;
    background: white;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .contBanner .contBanner__boxLeft {
    width: 55%;
    padding: 10px 0px;
    margin-left: 40px;
    z-index: 1;
  }
  .contBanner .contBanner__boxLeft .contBanner__title {
    font-size: 70px;
    font-family: "Rakkas", cursive;
    color: rgb(0, 0, 0);
  }
  .contBanner .contBanner__boxLeft .contBanner__description {
    margin-top: -20px;
    color: rgb(97, 97, 97);
    font-size: 40px;
    font-weight: 800;
  }
  .contBanner .contBanner__boxLeft .contBanner__line {
    width: 80%;
    margin-top: 20px;
    height: 1px;
    border: none;
    background: rgb(97, 97, 97);
  }
  .contBanner .contBanner__boxLeft .contBanner__btn {
    margin-top: 40px;
    width: 200px;
    padding: 10px;
    border: 2px solid transparent;
    background: rgb(20, 17, 57);
    color: white;
    cursor: pointer;
  }
  .contBanner .contBanner__boxLeft .contBanner__btn:hover {
    background: rgb(46, 39, 125);
  }
  .contBanner .contBanner__boxRight {
    width: 500px;
    height: 500px;
    background: url(../images/img_men.png);
    background-size: 100% 100%;
    position: absolute;
    top: 60px;
    right: 30px;
  }
}
@media (min-width: 770px) and (max-width: 899px) {
  .contBanner {
    width: 100%;
    height: 500px;
    padding: 10px 0px;
    background: white;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .contBanner .contBanner__boxLeft {
    width: 60%;
    padding: 10px 0px;
    margin-left: 30px;
    z-index: 1;
  }
  .contBanner .contBanner__boxLeft .contBanner__title {
    font-size: 60px;
    font-family: "Rakkas", cursive;
    color: rgb(0, 0, 0);
  }
  .contBanner .contBanner__boxLeft .contBanner__description {
    margin-top: -10px;
    color: rgb(97, 97, 97);
    font-size: 30px;
    font-weight: 800;
  }
  .contBanner .contBanner__boxLeft .contBanner__line {
    width: 80%;
    margin-top: 20px;
    height: 1px;
    border: none;
    background: rgb(97, 97, 97);
  }
  .contBanner .contBanner__boxLeft .contBanner__btn {
    margin-top: 40px;
    width: 200px;
    padding: 10px;
    border: 2px solid transparent;
    background: rgb(20, 17, 57);
    color: white;
    cursor: pointer;
  }
  .contBanner .contBanner__boxLeft .contBanner__btn:hover {
    background: rgb(46, 39, 125);
  }
  .contBanner .contBanner__boxRight {
    width: 400px;
    height: 400px;
    background: url(../images/img_men.png);
    background-size: 100% 100%;
    position: absolute;
    top: 60px;
    right: 30px;
  }
}
@media (min-width: 641px) and (max-width: 769px) {
  .contBanner {
    width: 100%;
    height: 500px;
    padding: 10px 0px;
    background: white;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .contBanner .contBanner__boxLeft {
    width: 80%;
    padding: 10px 0px;
    margin-left: 30px;
    z-index: 1;
  }
  .contBanner .contBanner__boxLeft .contBanner__title {
    font-size: 55px;
    font-family: "Rakkas", cursive;
    color: rgb(0, 0, 0);
  }
  .contBanner .contBanner__boxLeft .contBanner__description {
    margin-top: -10px;
    color: rgb(97, 97, 97);
    font-size: 30px;
    font-weight: 800;
  }
  .contBanner .contBanner__boxLeft .contBanner__line {
    width: 80%;
    margin-top: 20px;
    height: 1px;
    border: none;
    background: rgb(97, 97, 97);
  }
  .contBanner .contBanner__boxLeft .contBanner__btn {
    margin-top: 40px;
    width: 200px;
    padding: 10px;
    border: 2px solid transparent;
    background: rgb(20, 17, 57);
    color: white;
    cursor: pointer;
  }
  .contBanner .contBanner__boxLeft .contBanner__btn:hover {
    background: rgb(46, 39, 125);
  }
  .contBanner .contBanner__boxRight {
    width: 350px;
    height: 350px;
    background: url(../images/img_men.png);
    background-size: 100% 100%;
    position: absolute;
    top: 60px;
    right: 20px;
  }
}
@media (min-width: 481px) and (max-width: 640px) {
  .contBanner {
    width: 100%;
    height: initial;
    padding: 10px 10px;
    background: white;
    position: initial;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .contBanner .contBanner__boxLeft {
    width: 100%;
    padding: 10px 0px;
    margin-left: initial;
    z-index: 1;
  }
  .contBanner .contBanner__boxLeft .contBanner__title {
    font-size: 70px;
    font-family: "Rakkas", cursive;
    color: rgb(0, 0, 0);
  }
  .contBanner .contBanner__boxLeft .contBanner__description {
    margin-top: -15px;
    color: rgb(97, 97, 97);
    font-size: 30px;
    font-weight: 800;
  }
  .contBanner .contBanner__boxLeft .contBanner__line {
    width: 80%;
    margin-top: 20px;
    height: 1px;
    border: none;
    background: rgb(97, 97, 97);
  }
  .contBanner .contBanner__boxLeft .contBanner__btn {
    margin-top: 40px;
    width: 200px;
    padding: 10px;
    border: 2px solid transparent;
    background: rgb(20, 17, 57);
    color: white;
    cursor: pointer;
  }
  .contBanner .contBanner__boxLeft .contBanner__btn:hover {
    background: rgb(46, 39, 125);
  }
  .contBanner .contBanner__boxRight {
    width: 75%;
    height: 75%;
    position: initial;
    top: initial;
    right: initial;
  }
}
@media (min-width: 320px) and (max-width: 480px) {
  .contBanner {
    width: 100%;
    height: initial;
    padding: 30px 10px;
    background: white;
    position: initial;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .contBanner .contBanner__boxLeft {
    width: 100%;
    padding: 20px 0px;
    margin-left: initial;
    z-index: 1;
  }
  .contBanner .contBanner__boxLeft .contBanner__title {
    width: 50%;
    font-size: 85px;
    font-family: "Rakkas", cursive;
    color: rgb(0, 0, 0);
    line-height: 75px;
  }
  .contBanner .contBanner__boxLeft .contBanner__description {
    margin-top: 10px;
    color: rgb(97, 97, 97);
    font-size: 30px;
    font-weight: 800;
  }
  .contBanner .contBanner__boxLeft .contBanner__line {
    width: 80%;
    margin-top: 20px;
    height: 1px;
    border: none;
    background: rgb(97, 97, 97);
  }
  .contBanner .contBanner__boxLeft .contBanner__btn {
    margin-top: 40px;
    width: 200px;
    padding: 10px;
    border: 2px solid transparent;
    background: rgb(20, 17, 57);
    color: white;
    cursor: pointer;
  }
  .contBanner .contBanner__boxLeft .contBanner__btn:hover {
    background: rgb(46, 39, 125);
  }
  .contBanner .contBanner__boxRight {
    width: 95%;
    height: 95%;
    position: initial;
    top: initial;
    right: initial;
  }
}
.contSectionImage {
  width: 400px;
  height: 250px;
  margin: 100px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: rgb(20, 17, 57);
}
.contSectionImage .subContSectionImage {
  width: 400px;
  height: 250px;
  margin-top: -60px;
  margin-left: -60px;
  transition: 0.5s all;
}
.contSectionImage:hover .subContSectionImage {
  width: 400px;
  height: 250px;
  margin-top: -100px;
  margin-left: -100px;
  transition: 0.5s all;
}

/***********************************
*******************
************************************/
@media (min-width: 770px) and (max-width: 899px) {
  .contSectionImage {
    width: 300px;
    height: 250px;
    margin: 100px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: rgb(20, 17, 57);
  }
  .contSectionImage .subContSectionImage {
    width: 300px;
    height: 250px;
    margin-top: -40px;
    margin-left: -40px;
    transition: 0.5s all;
  }
  .contSectionImage:hover .subContSectionImage {
    width: 300px;
    height: 250px;
    margin-top: -50px;
    margin-left: -50px;
    transition: 0.5s all;
  }
}
/***********************************
*******************
************************************/
@media (min-width: 500px) and (max-width: 769px) {
  .contSectionImage {
    margin: 50px auto;
    width: 80%;
  }
  .contSectionImage .subContSectionImage {
    width: 100%;
    margin-top: -30px;
    margin-left: -30px;
  }
  .contSectionImage:hover .subContSectionImage {
    width: 100%;
    margin-top: -50px;
    margin-left: -50px;
  }
}
/***********************************
*******************
************************************/
@media (min-width: 320px) and (max-width: 499px) {
  .contSectionImage {
    margin: 20px auto;
    width: 80%;
  }
  .contSectionImage .subContSectionImage {
    width: 100%;
    margin-top: -30px;
    margin-left: -30px;
  }
  .contSectionImage:hover .subContSectionImage {
    width: 100%;
    margin-top: -50px;
    margin-left: -50px;
  }
}
.contSectionFashion {
  margin-top: 60px;
  width: 90%;
  padding: 20px;
  background: white;
}
.contSectionFashion .contSectionFashion__title {
  color: rgb(50, 50, 50);
  font-size: 35px;
  font-weight: 600;
}
.contSectionFashion .contSectionFashion__parraf {
  margin-top: 20px;
  color: rgb(97, 97, 97);
}
.contSectionFashion .contSectionFashion__btn {
  margin-top: 25px;
  width: 200px;
  padding: 10px 0px;
  border: none;
  background: rgb(50, 50, 50);
  color: white;
  cursor: pointer;
}
.contSectionFashion .contSectionFashion__btn:hover {
  background: rgb(97, 97, 97);
}

/***********************************
*******************
************************************/
@media (min-width: 770px) and (max-width: 899px) {
  .contSectionFashion {
    width: 100%;
  }
  .contSectionFashion .contSectionFashion__title {
    line-height: 40px;
  }
}
/***********************************
*******************
************************************/
@media (min-width: 500px) and (max-width: 769px) {
  .contSectionFashion {
    margin-top: 0;
    width: 100%;
  }
  .contSectionFashion .contSectionFashion__title {
    line-height: 40px;
    line-height: 35px;
  }
}
/***********************************
*******************
************************************/
@media (min-width: 320px) and (max-width: 499px) {
  .contSectionFashion {
    margin-top: 0;
    width: 100%;
  }
  .contSectionFashion .contSectionFashion__title {
    line-height: 40px;
    line-height: 35px;
  }
}
html,
body {
  position: relative;
  height: 100%;
  background: #eee;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
}
html .contSectionCards,
body .contSectionCards {
  width: 100%;
  padding: 10px 0px;
}
html .contSectionCards .contCards__title,
body .contSectionCards .contCards__title {
  color: rgb(50, 50, 50);
  margin-left: 60px;
  font-size: 35px;
  font-weight: 600;
}
html .contSectionCards .contCards,
body .contSectionCards .contCards {
  width: 90%;
  height: 380px;
  margin: 10px auto;
}
html .contSectionCards .contCards .swiper,
body .contSectionCards .contCards .swiper {
  margin-top: 20px;
  width: 100%;
  height: 100%;
}
html .contSectionCards .contCards .swiper .swiper-wrapper,
body .contSectionCards .contCards .swiper .swiper-wrapper {
  background: transparent;
}
html .contSectionCards .contCards .swiper .swiper-wrapper .swiper-slide,
body .contSectionCards .contCards .swiper .swiper-wrapper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: rgb(221, 221, 221);
  border: 2px solid rgb(221, 221, 221);
  border-radius: 10px;
  overflow: hidden;
}
html .contSectionCards .contCards .swiper .swiper-wrapper .swiper-slide .cont__slide,
body .contSectionCards .contCards .swiper .swiper-wrapper .swiper-slide .cont__slide {
  width: 100%;
  height: 100%;
  padding: 10px 0px;
  border: 2px solid transparent;
  transition: 0.5s linear;
}
html .contSectionCards .contCards .swiper .swiper-wrapper .swiper-slide .cont__slide .slide__image,
body .contSectionCards .contCards .swiper .swiper-wrapper .swiper-slide .cont__slide .slide__image {
  width: 100%;
  height: 280px;
  padding: 20px 10px;
  transition: 0.5s all 0.2s;
}
html .contSectionCards .contCards .swiper .swiper-wrapper .swiper-slide .cont__slide .slide__name,
body .contSectionCards .contCards .swiper .swiper-wrapper .swiper-slide .cont__slide .slide__name {
  margin-top: 10px;
  color: rgb(50, 50, 50);
  font-size: 18px;
  font-weight: 600;
}
html .contSectionCards .contCards .swiper .swiper-wrapper .swiper-slide .cont__slide .slide__description,
body .contSectionCards .contCards .swiper .swiper-wrapper .swiper-slide .cont__slide .slide__description {
  color: rgb(97, 97, 97);
}
html .contSectionCards .contCards .swiper .swiper-wrapper .swiper-slide:hover .cont__slide,
body .contSectionCards .contCards .swiper .swiper-wrapper .swiper-slide:hover .cont__slide {
  background: white;
}
html .contSectionCards .contCards .swiper .swiper-wrapper .swiper-slide:hover .cont__slide .slide__image,
body .contSectionCards .contCards .swiper .swiper-wrapper .swiper-slide:hover .cont__slide .slide__image {
  transform: scale(1.1);
}
html .contSectionCards .contCards .swiper .swiper-button-next,
body .contSectionCards .contCards .swiper .swiper-button-next {
  color: rgb(20, 17, 57);
}
html .contSectionCards .contCards .swiper .swiper-button-prev,
body .contSectionCards .contCards .swiper .swiper-button-prev {
  color: rgb(20, 17, 57);
}

@media (min-width: 320px) and (max-width: 423px) {
  body .contSectionCards {
    width: 100%;
    padding: 40px 0px;
  }
  body .contSectionCards .contCards__title {
    color: rgb(50, 50, 50);
    margin-left: 20px;
    font-size: 35px;
    font-weight: 600;
  }
  body .contSectionCards .contCards {
    width: 90%;
    height: initial;
    margin: 10px auto;
  }
  body .contSectionCards .contCards .swiper {
    margin-top: initial;
    width: 100%;
    height: initial;
  }
  body .contSectionCards .contCards .swiper .swiper-wrapper {
    height: initial;
  }
  body .contSectionCards .contCards .swiper .swiper-wrapper .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: rgb(221, 221, 221);
    border: 2px solid rgb(221, 221, 221);
    border-radius: 10px;
    overflow: hidden;
  }
  body .contSectionCards .contCards .swiper .swiper-wrapper .swiper-slide .cont__slide {
    width: 100%;
    height: initial;
    padding: 30px 0px;
    border: 2px solid transparent;
    transition: 0.5s linear;
  }
  body .contSectionCards .contCards .swiper .swiper-wrapper .swiper-slide .cont__slide .slide__image {
    width: 90%;
    margin: auto;
    height: initial;
    padding: 0px 10px;
    transition: 0.5s all 0.2s;
  }
  body .contSectionCards .contCards .swiper .swiper-wrapper .swiper-slide .cont__slide .slide__name {
    margin-top: 15px;
    color: rgb(50, 50, 50);
    font-size: 18px;
    font-weight: 600;
  }
  body .contSectionCards .contCards .swiper .swiper-wrapper .swiper-slide .cont__slide .slide__description {
    color: rgb(97, 97, 97);
  }
  body .contSectionCards .contCards .swiper .swiper-button-next {
    color: rgb(20, 17, 57);
  }
  body .contSectionCards .contCards .swiper .swiper-button-prev {
    color: rgb(20, 17, 57);
  }
}
.contBlocks {
  margin: 50px auto;
  width: 90%;
  padding: 10px 0px;
  background: white;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}
.contBlocks .contBlocks__block {
  width: 350px;
  height: 280px;
  background: rgb(208, 208, 208);
  background: linear-gradient(90deg, rgb(208, 208, 208) 0%, rgb(255, 255, 255) 50%, rgb(212, 211, 211) 100%, rgb(255, 255, 255) 100%);
  box-shadow: 0px 5px 10px rgb(221, 221, 221);
  margin: 20px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  border-radius: 3px;
  transition: 0.2s linear;
}
.contBlocks .contBlocks__block .contBlocks__title {
  color: rgb(50, 50, 50);
  font-size: 35px;
  margin-left: 20px;
  z-index: 1;
  font-weight: 600;
}
.contBlocks .contBlocks__block .contBlocks__contDesc {
  width: 130px;
  padding: 5px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 20px;
  z-index: 1;
}
.contBlocks .contBlocks__block .contBlocks__contDesc .line {
  width: 50px;
  height: 3px;
  background: rgb(97, 97, 97);
}
.contBlocks .contBlocks__block .contBlocks__contDesc .text {
  color: rgb(97, 97, 97);
  font-size: 18px;
}
.contBlocks .contBlocks__block .contBlocks__image {
  width: 200px;
  height: 100%;
  position: absolute;
  right: 0;
}
.contBlocks .contBlocks__block .contBlocks__btn {
  margin-top: 10px;
  margin-left: 20px;
  width: 100px;
  padding: 10px 0px;
  background: rgb(50, 50, 50);
  color: white;
  border: none;
}
.contBlocks .contBlocks__block .contBlocks__btn:hover {
  background: rgb(97, 97, 97);
  cursor: pointer;
}
.contBlocks .contBlocks__block:hover {
  background: rgb(208, 208, 208);
  background: linear-gradient(90deg, rgb(141, 141, 141) 0%, rgb(255, 255, 255) 50%, rgb(212, 211, 211) 100%, rgb(255, 255, 255) 100%);
  transform: scale(1.03, 1.03);
  z-index: 1;
}

@media (min-width: 1050px) and (max-width: 1200px) {
  .contBlocks {
    margin: 50px auto;
    width: 90%;
    padding: 10px 0px;
    background: white;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
  }
  .contBlocks .contBlocks__block {
    width: calc(42% - 100px);
    height: 280px;
    background: rgb(208, 208, 208);
    background: linear-gradient(90deg, rgb(208, 208, 208) 0%, rgb(255, 255, 255) 50%, rgb(212, 211, 211) 100%, rgb(255, 255, 255) 100%);
    box-shadow: 0px 5px 10px rgb(221, 221, 221);
    margin: 20px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    border-radius: 3px;
    transition: 0.2s linear;
  }
  .contBlocks .contBlocks__block .contBlocks__title {
    color: rgb(50, 50, 50);
    font-size: 35px;
    margin-left: 20px;
    z-index: 1;
    font-weight: 600;
  }
  .contBlocks .contBlocks__block .contBlocks__contDesc {
    width: 130px;
    padding: 5px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 20px;
    z-index: 1;
  }
  .contBlocks .contBlocks__block .contBlocks__contDesc .line {
    width: 50px;
    height: 3px;
    background: rgb(97, 97, 97);
  }
  .contBlocks .contBlocks__block .contBlocks__contDesc .text {
    color: rgb(97, 97, 97);
    font-size: 18px;
  }
  .contBlocks .contBlocks__block .contBlocks__image {
    width: calc(75% - 50px);
    height: 100%;
    position: absolute;
    right: 0;
  }
  .contBlocks .contBlocks__block .contBlocks__btn {
    margin-top: 10px;
    margin-left: 20px;
    width: 100px;
    padding: 10px 0px;
    background: rgb(50, 50, 50);
    color: white;
    border: none;
    z-index: 10;
  }
  .contBlocks .contBlocks__block .contBlocks__btn:hover {
    background: rgb(97, 97, 97);
    cursor: pointer;
  }
  .contBlocks .contBlocks__block:hover {
    background: rgb(208, 208, 208);
    background: linear-gradient(90deg, rgb(141, 141, 141) 0%, rgb(255, 255, 255) 50%, rgb(212, 211, 211) 100%, rgb(255, 255, 255) 100%);
    transform: scale(1.03, 1.03);
    z-index: 1;
  }
}
@media (min-width: 770px) and (max-width: 1049px) {
  .contBlocks {
    margin: 50px auto;
    width: 90%;
    padding: 10px 0px;
    background: white;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
  }
  .contBlocks .contBlocks__block {
    width: calc(58% - 100px);
    height: 300px;
    background: rgb(208, 208, 208);
    background: linear-gradient(90deg, rgb(208, 208, 208) 0%, rgb(255, 255, 255) 50%, rgb(212, 211, 211) 100%, rgb(255, 255, 255) 100%);
    box-shadow: 0px 5px 10px rgb(221, 221, 221);
    margin: 20px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    border-radius: 3px;
    transition: 0.2s linear;
  }
  .contBlocks .contBlocks__block .contBlocks__title {
    color: rgb(50, 50, 50);
    font-size: 35px;
    margin-left: 20px;
    z-index: 1;
    font-weight: 600;
  }
  .contBlocks .contBlocks__block .contBlocks__contDesc {
    width: 130px;
    padding: 5px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 20px;
    z-index: 1;
  }
  .contBlocks .contBlocks__block .contBlocks__contDesc .line {
    width: 50px;
    height: 3px;
    background: rgb(97, 97, 97);
  }
  .contBlocks .contBlocks__block .contBlocks__contDesc .text {
    color: rgb(97, 97, 97);
    font-size: 18px;
  }
  .contBlocks .contBlocks__block .contBlocks__image {
    width: calc(75% - 50px);
    height: 100%;
    position: absolute;
    right: 0;
  }
  .contBlocks .contBlocks__block .contBlocks__btn {
    margin-top: 10px;
    margin-left: 20px;
    width: 100px;
    padding: 10px 0px;
    background: rgb(50, 50, 50);
    color: white;
    border: none;
    z-index: 10;
  }
  .contBlocks .contBlocks__block .contBlocks__btn:hover {
    background: rgb(97, 97, 97);
    cursor: pointer;
  }
  .contBlocks .contBlocks__block:hover {
    background: rgb(208, 208, 208);
    background: linear-gradient(90deg, rgb(141, 141, 141) 0%, rgb(255, 255, 255) 50%, rgb(212, 211, 211) 100%, rgb(255, 255, 255) 100%);
    transform: scale(1.03, 1.03);
    z-index: 1;
  }
}
@media (min-width: 600px) and (max-width: 769px) {
  .contBlocks {
    margin: 50px auto;
    width: 95%;
    padding: 10px 0px;
    background: white;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .contBlocks .contBlocks__block {
    width: calc(56% - 50px);
    height: 300px;
    background: rgb(208, 208, 208);
    background: linear-gradient(90deg, rgb(208, 208, 208) 0%, rgb(255, 255, 255) 50%, rgb(212, 211, 211) 100%, rgb(255, 255, 255) 100%);
    box-shadow: 0px 5px 10px rgb(221, 221, 221);
    margin: 20px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    border-radius: 3px;
    transition: 0.2s linear;
  }
  .contBlocks .contBlocks__block .contBlocks__title {
    color: rgb(50, 50, 50);
    font-size: 35px;
    margin-left: 20px;
    z-index: 1;
    font-weight: 600;
  }
  .contBlocks .contBlocks__block .contBlocks__contDesc {
    width: 130px;
    padding: 5px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 20px;
    z-index: 1;
  }
  .contBlocks .contBlocks__block .contBlocks__contDesc .line {
    width: 50px;
    height: 3px;
    background: rgb(97, 97, 97);
  }
  .contBlocks .contBlocks__block .contBlocks__contDesc .text {
    color: rgb(97, 97, 97);
    font-size: 18px;
  }
  .contBlocks .contBlocks__block .contBlocks__image {
    width: calc(75% - 50px);
    height: 100%;
    position: absolute;
    right: 0;
  }
  .contBlocks .contBlocks__block .contBlocks__btn {
    margin-top: 10px;
    margin-left: 20px;
    width: 100px;
    padding: 10px 0px;
    background: rgb(50, 50, 50);
    color: white;
    border: none;
    z-index: 10;
  }
  .contBlocks .contBlocks__block .contBlocks__btn:hover {
    background: rgb(97, 97, 97);
    cursor: pointer;
  }
  .contBlocks .contBlocks__block:hover {
    background: rgb(208, 208, 208);
    background: linear-gradient(90deg, rgb(141, 141, 141) 0%, rgb(255, 255, 255) 50%, rgb(212, 211, 211) 100%, rgb(255, 255, 255) 100%);
    transform: scale(1.03, 1.03);
    z-index: 1;
  }
}
@media (min-width: 481px) and (max-width: 599px) {
  .contBlocks {
    margin: 50px auto;
    width: 95%;
    padding: 10px 0px;
    background: white;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .contBlocks .contBlocks__block {
    width: calc(100% - 100px);
    height: 320px;
    background: rgb(208, 208, 208);
    background: linear-gradient(90deg, rgb(208, 208, 208) 0%, rgb(255, 255, 255) 50%, rgb(212, 211, 211) 100%, rgb(255, 255, 255) 100%);
    box-shadow: 0px 5px 10px rgb(221, 221, 221);
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    border-radius: 3px;
    transition: 0.2s linear;
  }
  .contBlocks .contBlocks__block .contBlocks__title {
    color: rgb(50, 50, 50);
    font-size: 35px;
    margin-left: 20px;
    z-index: 1;
    font-weight: 600;
  }
  .contBlocks .contBlocks__block .contBlocks__contDesc {
    width: 130px;
    padding: 5px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 20px;
    z-index: 1;
  }
  .contBlocks .contBlocks__block .contBlocks__contDesc .line {
    width: 50px;
    height: 3px;
    background: rgb(97, 97, 97);
  }
  .contBlocks .contBlocks__block .contBlocks__contDesc .text {
    color: rgb(97, 97, 97);
    font-size: 18px;
  }
  .contBlocks .contBlocks__block .contBlocks__image {
    width: calc(75% - 50px);
    height: 100%;
    position: absolute;
    right: 0;
  }
  .contBlocks .contBlocks__block .contBlocks__btn {
    margin-top: 10px;
    margin-left: 20px;
    width: 100px;
    padding: 10px 0px;
    background: rgb(50, 50, 50);
    color: white;
    border: none;
    z-index: 10;
  }
  .contBlocks .contBlocks__block .contBlocks__btn:hover {
    background: rgb(97, 97, 97);
    cursor: pointer;
  }
  .contBlocks .contBlocks__block:hover {
    background: rgb(208, 208, 208);
    background: linear-gradient(90deg, rgb(141, 141, 141) 0%, rgb(255, 255, 255) 50%, rgb(212, 211, 211) 100%, rgb(255, 255, 255) 100%);
    transform: scale(1.03, 1.03);
    z-index: 1;
  }
}
@media (min-width: 320px) and (max-width: 480px) {
  .contBlocks {
    margin: 0px auto;
    width: 100%;
    padding: 0px 20px;
    background-image: url(../images/background_movil.png);
    background-repeat: repeat-y;
    background-attachment: fixed;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .contBlocks .contBlocks__block {
    width: 100%;
    height: 320px;
    background: rgb(208, 208, 208);
    background: linear-gradient(90deg, rgb(208, 208, 208) 0%, rgb(255, 255, 255) 50%, rgb(212, 211, 211) 100%, rgb(255, 255, 255) 100%);
    box-shadow: 0px 5px 10px rgb(221, 221, 221);
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    border-radius: 3px;
    transition: 0.2s linear;
  }
  .contBlocks .contBlocks__block .contBlocks__title {
    color: rgb(50, 50, 50);
    font-size: 35px;
    margin-left: 20px;
    z-index: 1;
    font-weight: 600;
  }
  .contBlocks .contBlocks__block .contBlocks__contDesc {
    width: 130px;
    padding: 5px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 20px;
    z-index: 1;
  }
  .contBlocks .contBlocks__block .contBlocks__contDesc .line {
    width: 50px;
    height: 3px;
    background: rgb(97, 97, 97);
  }
  .contBlocks .contBlocks__block .contBlocks__contDesc .text {
    color: rgb(97, 97, 97);
    font-size: 18px;
  }
  .contBlocks .contBlocks__block .contBlocks__image {
    width: calc(75% - 50px);
    height: 100%;
    position: absolute;
    right: 0;
  }
  .contBlocks .contBlocks__block .contBlocks__btn {
    margin-top: 10px;
    margin-left: 20px;
    width: 100px;
    padding: 10px 0px;
    background: rgb(50, 50, 50);
    color: white;
    border: none;
    z-index: 10;
  }
  .contBlocks .contBlocks__block .contBlocks__btn:hover {
    background: rgb(97, 97, 97);
    cursor: pointer;
  }
  .contBlocks .contBlocks__block:hover {
    background: rgb(208, 208, 208);
    background: linear-gradient(90deg, rgb(141, 141, 141) 0%, rgb(255, 255, 255) 50%, rgb(212, 211, 211) 100%, rgb(255, 255, 255) 100%);
    transform: scale(1.03, 1.03);
    z-index: 1;
  }
}
.contNews {
  margin-top: 10px;
  margin-right: 30px;
  width: 90%;
  padding: 10px 0px;
  float: right;
  background: rgb(221, 221, 221);
}
.contNews .contNews__title {
  text-align: center;
  color: rgb(50, 50, 50);
  font-size: 35px;
  font-weight: 600;
}
.contNews .contNews__block {
  margin-top: 20px;
  width: 100%;
  padding: 10px 0px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
}
.contNews .contNews__block .contNews__boxLeft {
  width: 300px;
  height: 200px;
}
.contNews .contNews__block .contNews__boxRight {
  width: calc(60% - 10px);
}
.contNews .contNews__block .contNews__boxRight .contNews__boxRight__title {
  color: rgb(50, 50, 50);
  font-size: 20px;
  font-weight: 600;
}
.contNews .contNews__block .contNews__boxRight .contNews__description {
  margin-top: 10px;
}
.contNews .contNews__block .contNews__boxRight .contNews__btn {
  margin-top: 20px;
  width: 200px;
  padding: 10px 0px;
  border: none;
  background: rgb(50, 50, 50);
  color: white;
}
.contNews .contNews__block .contNews__boxRight .contNews__btn:hover {
  background: rgb(97, 97, 97);
  cursor: pointer;
}

/******************************************
******************************
******************************************/
@media (min-width: 770px) and (max-width: 1200px) {
  .contNews {
    margin-top: 10px;
    margin-right: initial;
    margin-left: 30px;
    width: 95%;
    padding: 10px 0px;
    float: initial;
  }
  .contNews .contNews__title {
    text-align: center;
    color: rgb(50, 50, 50);
    font-size: 35px;
    font-weight: 600;
  }
  .contNews .contNews__block {
    margin-top: 20px;
    width: 100%;
    padding: 10px 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
  }
  .contNews .contNews__block .contNews__boxLeft {
    width: 250px;
    height: 200px;
  }
  .contNews .contNews__block .contNews__boxRight {
    width: calc(60% - 10px);
  }
  .contNews .contNews__block .contNews__boxRight .contNews__boxRight__title {
    color: rgb(50, 50, 50);
    font-size: 20px;
    font-weight: 600;
  }
  .contNews .contNews__block .contNews__boxRight .contNews__description {
    margin-top: 10px;
  }
  .contNews .contNews__block .contNews__boxRight .contNews__btn {
    margin-top: 20px;
    width: 200px;
    padding: 10px 0px;
  }
}
/******************************************
******************************
******************************************/
@media (min-width: 481px) and (max-width: 769px) {
  .contNews {
    margin-top: 10px;
    margin-right: initial;
    margin-left: initial;
    margin: auto;
    width: 95%;
    padding: 10px 0px;
    float: initial;
  }
  .contNews .contNews__title {
    text-align: center;
    color: rgb(50, 50, 50);
    font-size: 35px;
    font-weight: 600;
  }
  .contNews .contNews__block {
    margin-top: 20px;
    width: 100%;
    padding: 10px 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
  }
  .contNews .contNews__block .contNews__boxLeft {
    width: 35%;
    height: 200px;
  }
  .contNews .contNews__block .contNews__boxRight {
    width: calc(60% - 10px);
  }
  .contNews .contNews__block .contNews__boxRight .contNews__boxRight__title {
    color: rgb(50, 50, 50);
    font-size: 20px;
    font-weight: 600;
  }
  .contNews .contNews__block .contNews__boxRight .contNews__description {
    margin-top: 8px;
  }
  .contNews .contNews__block .contNews__boxRight .contNews__btn {
    margin-top: 18px;
    width: 200px;
    padding: 8px 0px;
  }
}
/******************************************
******************************
******************************************/
@media (min-width: 320px) and (max-width: 480px) {
  .contNews {
    margin-top: 10px;
    margin-right: initial;
    margin-left: initial;
    margin: auto;
    width: 95%;
    padding: 10px 0px;
    float: initial;
  }
  .contNews .contNews__title {
    text-align: center;
    color: rgb(50, 50, 50);
    font-size: 35px;
    font-weight: 600;
  }
  .contNews .contNews__block {
    margin-top: 20px;
    width: 100%;
    padding: 10px 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .contNews .contNews__block .contNews__boxLeft {
    width: 100%;
    height: 200px;
  }
  .contNews .contNews__block .contNews__boxRight {
    margin-top: 20px;
    width: 100%;
  }
  .contNews .contNews__block .contNews__boxRight .contNews__boxRight__title {
    color: rgb(50, 50, 50);
    font-size: 20px;
    font-weight: 600;
  }
  .contNews .contNews__block .contNews__boxRight .contNews__description {
    margin-top: 8px;
  }
  .contNews .contNews__block .contNews__boxRight .contNews__btn {
    margin-top: 18px;
    width: 200px;
    padding: 8px 0px;
  }
}
.contDesigner {
  margin-top: 10px;
  width: 80%;
  height: 300px;
  padding: 30px;
  text-align: center;
  background: rgb(221, 221, 221);
}
.contDesigner .contDesigner__image {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
  margin: auto;
}
.contDesigner .contDesigner__title {
  margin-top: 10px;
  color: rgb(50, 50, 50);
  font-size: 22px;
  line-height: 25px;
  font-weight: 600;
}
.contDesigner .contDesigner__description {
  margin-top: 10px;
  color: rgb(97, 97, 97);
}

/****************************************
**************************************
***************************************/
@media (min-width: 1025px) and (max-width: 1200px) {
  .contDesigner {
    margin-top: 10px;
    width: 90%;
    height: initial;
    padding: 30px;
    text-align: center;
  }
  .contDesigner .contDesigner__image {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
    margin: auto;
  }
  .contDesigner .contDesigner__title {
    margin-top: 10px;
    color: rgb(50, 50, 50);
    font-size: 22px;
    line-height: 25px;
    font-weight: 600;
  }
  .contDesigner .contDesigner__description {
    margin-top: 10px;
    color: rgb(97, 97, 97);
  }
}
/****************************************
**************************************
***************************************/
@media (min-width: 320px) and (max-width: 1024px) {
  .contDesigner {
    margin: 10px auto;
    width: 90%;
    height: initial;
    padding: 30px;
    text-align: center;
  }
  .contDesigner .contDesigner__image {
    width: 100px;
    height: 100px;
    margin: auto;
  }
  .contDesigner .contDesigner__title {
    margin-top: 10px;
    color: rgb(50, 50, 50);
    font-size: 22px;
    line-height: 25px;
    font-weight: 600;
  }
  .contDesigner .contDesigner__description {
    margin-top: 10px;
    color: rgb(97, 97, 97);
  }
}
.contFooter {
  margin-top: 100px;
  width: 100%;
  padding: 50px 40px;
  background: rgb(50, 50, 50);
}
.contFooter .blockFooter {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.contFooter .blockFooter .contFooter__image {
  width: 55px;
  height: 55px;
  background-image: url(../images/logo_white.png);
  background-size: 100% 100%;
}
.contFooter .blockFooter .cont__block {
  width: 500px;
  padding: 10px 0px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.contFooter .blockFooter .cont__block .cont__list {
  width: 100px;
}
.contFooter .blockFooter .cont__block .cont__list .cont__item {
  list-style: none;
}
.contFooter .blockFooter .cont__block .cont__list .cont__item .cont__link {
  text-decoration: none;
  color: rgb(221, 221, 221);
}
.contFooter .blockFooter .cont__block .cont__list .cont__item .cont__link:hover {
  color: rgb(97, 97, 97);
  font-weight: 600;
}
.contFooter .footerLine {
  width: 80%;
  height: 1.5px;
  margin: 10px auto;
  background: rgb(97, 97, 97);
  border: none;
}
.contFooter .blockPie {
  width: 100%;
  padding: 5px 0px;
}
.contFooter .blockPie .pie__copyRight {
  text-align: center;
  color: white;
}

/********************************************
*************************************
********************************************/
@media (min-width: 320px) and (max-width: 640px) {
  .contFooter {
    margin-top: 10px;
    width: 100%;
    padding: 10px 0px;
  }
  .contFooter .blockFooter {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .contFooter .blockFooter .contFooter__image {
    width: 70px;
    height: 70px;
  }
  .contFooter .blockFooter .cont__block {
    width: 100%;
    padding: 30px 0px;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .contFooter .blockFooter .cont__block .cont__list {
    width: 70px;
  }
  .contFooter .blockFooter .cont__block .cont__list .cont__item {
    list-style: none;
  }
  .contFooter .blockFooter .cont__block .cont__list .cont__item .cont__link {
    text-decoration: none;
  }
  .contFooter .blockFooter .cont__block .cont__list .cont__item .cont__link:hover {
    font-weight: 600;
  }
  .contFooter .footerLine {
    width: 80%;
    height: 1.5px;
    margin: 10px auto;
  }
  .contFooter .blockPie {
    width: 100%;
    padding: 5px 0px;
  }
  .contFooter .blockPie .pie__copyRight {
    text-align: center;
  }
}
.btnTop {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 50px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  animation-name: moverArrow;
  animation: moverArrow;
  animation-duration: 0.8s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  opacity: 0;
  transition: 0.5s all;
}

@keyframes moverArrow {
  from {
    transform: translateY(-5px);
  }
  to {
    transform: translateY(5px);
  }
}
.btnTop_JS {
  opacity: 1;
}

/*# sourceMappingURL=main.css.map */
