@font-face {
    font-family: 'oran';
    src: url(fonts/Oranienbaum-Regular.ttf) format('truetype');
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;

    font-family: 'oran';
}

body{
    width: 100%;
    overflow-x: hidden;
}

.container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    grid-template-rows: auto auto 40vh; /*55*/ /*230*/
}

header {
    background: white;
    grid-column-start: 1;
    grid-column-end: 3;

    /*border-bottom: 3px solid  black;*/
    height: auto;
    max-width: 100%;
}

main {
    background: rgb(255, 255, 255);
    grid-column-start: 1;
    grid-column-end: 3;

    height: auto;

    position: relative;
    /*top: -118px;*/
    max-width: 100%;
}

/*aside {
    background: rgb(255, 255, 255);
    /*grid-column-start: 2;
    grid-column-end: 3;*/

    /*font-family: Verdana, Geneva, Tahoma, sans-serif;
    /*overflow: auto;*/
   /* height: auto;
}*/

footer {
    background: rgb(255, 255, 255);
    grid-column-start: 1;
    grid-column-end: 3;

    height: auto;
}

/*end grid*/
/*start header*/

a{
    color: black;
    text-decoration: none;
     transition: 0.3s;
     cursor: pointer;
}

a:hover{
    opacity: 0.7;
}

.nav-main{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    border-top: 1px solid black;
    border-bottom:1px solid black ;
    height: 4.8vh; /*5.4*/
}

.nav-list{
    list-style: none;
    display: flex;
}

.nav-list li{
    margin-left: 32px;
}

.mobile-menu{
    cursor: pointer;
    display: none;
}

.mobile-menu div{
    width: 32px;
    height: 3px;
    background-color: #000;
    margin: 6px;
    transition: 0.3s;
}

.mobile-menu.active .line1{
   transform: rotate(-45deg) translate(-8px, 8px);
}

.mobile-menu.active .line2{
    opacity: 0;
 }

.mobile-menu.active .line3{
    transform: rotate(45deg) translate(-6px, -4px);
 }



.social-media-nav{
    display: flex;
    list-style: none;
}

.social-media-nav li{
    margin-right: 20px;
}

.nav-list.active{
    transform: translateX(0);
}

@media (max-width: 999px){
    .nav-main{
        height: 5.4vh;
    }

    .nav-list{
        position: absolute;
        top: 5.4vh;
        left: 0;
        width: 50vw;
        height: 94.6vh;
        background-color: rgb(255, 255, 255);
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        transform: translateX(-100%);
        transition: transform 0.4s ease-in;
    }

    .nav-list li{
        margin-left: 0;
        opacity: 0;
    }

    .mobile-menu{
        display: block;
        margin-left: 20px;
    }
}

@keyframes navLinkFade{
    from{
      opacity: 0;
      transform: translateX(-50px);
    }
    to{
      opacity: 1;
      transform: translateX(0);
    }
}
/*start middle*/

.middle{
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    width: 100%;
    height: 26.4vh;
    background-color: black;
    border-bottom: 1px solid black;

    font-family: 'oran';
}

.wpp{
    grid-column-start: 1;
    grid-column-end: 2;
    background-color: white;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.logo{
    grid-column-start: 2;
    grid-column-end: 3;
    background-color: white;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.table{
    grid-column-start: 3;
    grid-column-end: 4;
    background-color: white;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cont img{
    width: 100%;
    height: 100%;
}

.wpp p a{
    text-decoration: none;
    color: black;
    font-size: 15px;
}

.wpp p{
   text-align: center;
   font-size: 14px;

   margin: 8px 0;
}

.p22{
    font-size: 14px;
    position: absolute;
    margin-top: 135px;
    left: 40px;
}

@media (max-width: 900px){
   .middle{
       display: flex;
       flex-direction: column;
       height: auto;
   }

   .wpp{
       height: 120px;
   }

   .logo{
       height: 120px;
   }

   .table{
       height: 120px;
   }

   .cont{
       width: 70%;
   }

   .p22{
       display: none;
   }
}


/*start drop*/

.nav-nav{
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: white;
        border-bottom:1px solid black ;
        height: 4.8vh;
}

.nav-list-2{
    display: flex;
    list-style: none;
}

.nav-list-2 li{
    margin: 0 19px;
}

.li2::after{
content: '|';
font-weight: bold;
position: relative;
left: 15px;
bottom: 2px;
}

.mobile-menu-2{
    display: none;
    cursor: pointer;
}

.mobile-menu-2 div{
    width: 32px;
    height: 3px;
    background-color: #000;
    margin: 6px;
    transition: 0.3s;
}

.nav-list-2.active{
    transform: translateX(0);
}

.mm-mm{
    cursor: pointer;
    display: none;
}

.mm-mm div{
    width: 32px;
    height: 3px;
    background-color: #000;
    margin: 6px;
    transition: 0.3s;
}

@media (max-width: 999px){
    .nav-nav{
        height: 5.4vh;
        justify-content: left;
    }

    .nav-list-2{
        position: absolute;
        top: 78vh;
        left: 0;
        width: 50vw;
        height: 94.6vh;
        background-color: rgb(255, 255, 255);
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        transform: translateX(-100%);
        transition: transform 0.4s ease-in;
        z-index: 8000;
    }

    .nav-list-2 li{
        margin-left: 0;
        opacity: 0;
        border-bottom: 2px solid currentColor;
    }

    .mobile-menu-2{
        display: block;
        margin-left: 20px;
    }

    .mm-mm{
        display: block;
        margin-left: 20px;
    }

    .li2::after{
        content: '';
    }
}

.mm-mm.active .line1-{
   transform: rotate(-45deg) translate(-8px, 8px);
}

.mm-mm.active .line2-{
    opacity: 0;
 }

.mm-mm.active .line3-{
    transform: rotate(45deg) translate(-6px, -4px);
 }



/*end drop*/

/*banner*/

  .banner-ads{
      background-color: transparent;
      height: 137px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  @media (max-width:765px){
      .banner-ads{
          margin: 0 15px;
      }
  }

/*slider*/

.item{
    /* background: #157bad;*/
    min-width: 319px;
    min-height: 100px;
    display: flex;

    margin-top: 9px;

 }
 .sub-item-new{
     display: flex;
     flex-direction: row;
     width: 100%;
 }

 .img-in-np{
      background-color: black;
      width: 127px; /*40%*/
      height: 74px; /*100px*/
      margin: 0;
      padding: 0;

      margin-left: 10px;
 }

 .img-in-np img{
     width: 100%;
     height: 100%;
 }

 .text-in-np{
     width: 170px; /*60%*/
     height: 100px; /*114*/
     /*background-color: burlywood;*/
 }

 .p-in-np{
margin-top: -0px;
margin-left: 13px;
font-weight: bold;

font-size: 15px;
}


.h4-in-np{
margin-top: 3px;
margin-left: 13px;
font-size: 15.5px;
}

.data-in-np{
margin-left: 13px;
margin-top: 3px; /*18*/
font-weight: bold;

font-size: 14px;
}

.owl-theme{
height: 95px; /*132*/
border: 1px solid lightgrey;

margin-bottom: 16px;
}

/*end last*/
/*start main*/


.container1{
    background-color: rgb(255, 255, 255);
    height: auto; /**100vh*/
    display: flex;
    justify-content: center;
    align-items: center;

    margin: 20px 0;
}

.container1-content{
    background-color: rgba(68, 207, 49, 0);
    height: auto; /*600px*/
    width: 97%;

    display: grid;
    grid-template-columns: 43.8% 22.4% 33.9%; /*33.9%*/
}

#sec1{
    background-color: #fff;
    grid-column-start: 1;
    grid-column-end: 2;
}

#sec2{
    background-color: #fff;
    grid-column-start: 2;
    grid-column-end: 3;
}

#sec3{
    background-color: #fff;
    grid-column-start: 3;
    grid-column-end: 4;
}

@media (max-width: 999px){
   .container1-content{
       display: flex;
       flex-direction: column;
   }

   #sec1{
       height: auto;
   }

   #sec2{
       height: auto;
       margin-top: 27px;
   }

   #sec3{
       height: auto;
       margin-top: 27px;
   }

   .eof-box{
      position: absolute !important;
      width: 180px !important;
   }
}

.sec-bord{
    border: 1px solid lightgray;
    height: 100%;
    margin: 0 10px;
}

.cont-img-cont1{
    width: 96.7%; /*533, 95.4%*/
    height: 355px;
    /*background-color: black;*/
    margin-top: 10px;
   margin-left: 9px;
}

.cont-img-cont1 img{
    width: 100%;
    height: 100%;
}

.cont-text-b{
    margin-top: 30px;
    margin-left: 12.5px;
}

.sec1-cont-s{
    display: flex;
    flex-direction: row;
}

.cont-readmore{
    width: 85px;
    height: 85px;
    background-color: black;
    margin-left: 12.5px;
}

.cont-readmore img{
    width: 100%;
    height: 100%;
}

.cont-text-s{
    width: 440px;
    height: auto;
    background-color: white;
    margin-left: 10px;
    margin-bottom: 5px;
}

.bord-sec-2{
    border: 1px solid lightgray;
    height: 100%;
    margin: 0 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.news-column-sec2{
    width: 267px;
    height: 198px;
    background-color: white;
}

  .column-sec1-news::after{
    content: '';
    width: 100%;
    height: 1px;
    background-color: rgba(211, 19, 19, 0);
    display: block;
    margin: 0 auto;
    margin-top: 15px;
}

.news-column-sec2 h4{
    font-weight: bold;
    text-transform: uppercase;
    padding-left: 5px;
    padding-top: 10px;
}

.news-column-sec2 h3{
    font-weight: normal;
    padding-left: 5px;
    font-size: 25px;
}

.news-column-sec2 p{
    font-size: 14px;
    padding-left: 5px;
}

.cont1-data{
    font-weight: bold;
}

.border-sec3{
    border: 1px solid lightgray;
    height: 255px;
    margin: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.border-sec3-2{
    border: 1px solid lightgray;
    height: 377px;
    margin: 0 10px;
    margin-top: 45px;

}

.border-inside-con1{
    border: 1px solid transparent; /*lightgray*/
    width: 94%;
    height: 94%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sml-con1{
    background-color: white;
    width: 75%;
}

.sml-con1 p{
    padding-left: 10px;
    color: gray;
}

.eof-box{
    background-color: lightgray;
    width: 13%;
    height: 45px;
    position: absolute;
    margin-left: 120px;
    transform: skew(-20deg);
    margin-top: -22.5px;
    color: gray;
    display: flex;
    justify-content: space-between;
}

.banner-cont1{
    width: 100%;
    height: 138px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*end container1*/
/*start container2*/

.container2{
    background-color: rgb(255, 255, 255);
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;


}

.title-container{
    width: 95.5%; /*75%, 99.9%*/
    height: 35px;
    /*background-color: brown;*/
    align-self: center; /*flex-start*/
    margin-top: 270px !important; /*27*/
    margin-bottom: 56px ;
    border-top: 1px solid lightgray;
    display: flex;
    justify-content: space-around;
   /* margin-left: 9px; /*12.5%, 9px*/
}

.h3-contnr{
    font-weight: bold;
    text-transform: uppercase;
    color: #000;
   padding-top: 5px; /*5px*/
   text-emphasis-position: over;
   padding-left: 5px;
   font-size: 24px;

    background-color: lightgray;
    width: 100px;
    transform: skewX(0deg, 20deg);

   margin-left: -100px;
   height: 39px;
}

/*.h3-contnr::after{
   content: '';
   display: inline-block;
   width: 50px;
   background-color: lightgrey;
   height: 30px; /*w relative 34px*/
 /*  position: absolute;
   left: 379px; /*w relative 40px*/
 /* margin-top: -5px;
  transform: skewX(-30deg);
}*/



.a-contnr{
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    color: rgb(37, 86, 175);
    margin-top: 5px;
}

.fa-chevron-circle-right{
    margin: 0 8px;
}

/*start content*/

.container2-content{
    background-color: white;
    width: 97.5%; /*75%*/
    min-height: 635px; /*635*/
    margin-top: 27px; /*20px*/

    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.sec-cont2-1{
    grid-column-start: 1;
    grid-column-end: 2;
    background-color: rgb(255, 255, 255);
    height: auto;
}

.sec-cont2-2{
    grid-column-start: 2;
    grid-column-end: 3;
    background-color: white;
}

.sec-cont2-3{
    grid-column-start: 3;
    grid-column-end: 4;
    background-color: white;
}

.sec-cont2-4{
    grid-column-start: 4;
    grid-column-end: 5;
    background-color: white;
}

@media (max-width: 999px){
    .container2-content{
        display: flex;
        flex-direction: column;
        width: 65%;
    }

    .title-container{
        width: 65%;
        display: flex;
        align-self: center;
    }

    .sec-cont2-2{
        margin-top: 27px;
    }

    .sec-cont2-3{
        margin-top: 27px;
    }

    .sec-cont2-4{
        margin-top: 27px;
    }

    .sec2-af{
        font-size: 17px !important;
    }

    .h3-contnr{
        margin-left: 0;
    }

    .skew-box{
        display: none !important;
    }


}

.sec2-af{
    font-size: 16px !important;
}

/**/

.sec2-main{
    height: 48%;
    background-color: white;
    margin: 0 11px;
    border: 1px solid lightgrey;
}

.sec2-second{
    height: 48%;
    background-color: white;
    margin: 23px 11px;
    border: 1px solid lightgrey;
}

.sec2-img{
    width: 100%;
    height: 50%;


}

.sec2-img img{
    width: 97%;
    height: 97%;

    margin: 8px 0px;
    margin-left: 4px;
}

.sec2-txt{
    width: 100%;
    height: 50%;
}

.sec2-h3{
    font-size: 22px;
    padding-top: 5px;
    padding-left: 5px;
}

.sec2-p{
    font-size: 18px;
    padding-top: 6px;
    padding-left: 5px;
}

.sec2-infos{
    width: 100%;
    height: 21px;
    display: flex;
    background-color: white;
    margin-top: 5px;
    align-items: center;
    justify-content: space-between;
}

.sec2-infos p{
    font-size: 18px;
    padding-top: 8px;
}

.sec2-infos-p{
    padding-left: 5px;
}

.sec2-infos-p2{
    padding-right: 30px;
}

.bannervertsec{
    width: 90%;
    margin-left: 5%;
    height: 70%;
}

.bannervertsec img{
    width: 100%;
    height: 100%;
}

.bannervertsec2{
    width: 90%;
    margin-left: 5%;
    height: 28%;
    margin-top: 4%;
}

.bannervertsec2 img{
    width: 100%;
    height: 100%;
}

/*end container2*/
/*start container3*/

.container3{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(255, 255, 255);
    margin: 30px 0;
    height: auto;

    margin-top: 580px;
}

.container3-grid{
    width: 98.5%;
    height: 700px;
    background-color: rgb(255, 255, 255);

    display: grid;
    grid-template-columns: 2.5fr 1.1fr 1.1fr;
}

.section-cont3-1{
    grid-column-start: 1;
    grid-column-end: 2;
    background-color: rgb(255, 255, 255);

    height: auto;
}

.section-cont3-2{
    grid-column-start: 2;
    grid-column-end: 3;
    background-color: rgb(255, 255, 255);
}

.section-cont3-3{
    grid-column-start: 3;
    grid-column-end: 4;
    background-color: rgb(255, 255, 255);
}

.cont3-sec1-content{
    width: 95%;
    height: 316px; /*46%, auto*/
    max-width: 100%;
    margin:0 2.5%;
    border: 1px solid lightgray;

    display: grid;
    grid-template-columns: 1fr 1fr;
}

.cont3-sec1-content-resp{
    margin-top: 33px !important; /*39px*/
}

.cont3-sec1-content-left{
    grid-column-start: 1;
    grid-column-end: 2;
    background-color: rgb(255, 255, 255);
}

.cont3-sec1-content-right{
    grid-column-start: 2;
    grid-column-end: 3;
    background-color: white;
}

.cont3-sec2-content-big{
    height: auto; /*60%*/
    width: 96%;
    margin: 0 2%;
    border: 1px solid lightgray;
}

.cont3-sec2-content-small{
    height: auto; /*36%*/
    width: 96%;
    margin:0 2%;
    margin-top: 7%;
    border: 1px solid lightgray;
}

.cont3-banner{
    width: 90%; /*90%*/
    margin: 0 5%;
    height: 662px; /*85%*/
    background-color: black;
}

.cont3-banner img{
  width: 100%;
  height: 100%;
}

.img-in-sont3-sec1{
    width: 96%;
    margin: 0 2%;
    height: 60%; /*60%, 202x*/
    margin-top: 2%;
    background-color: thistle;
}

.ccont3-img-last{
    height: 202px; /*60%*/
}

.img-in-sont3-sec1 img{
    width: 100%;
    height: 100%;
}

.txt-in-sont3-sec1{
    width: 96%;
    margin: 0 2%;
    height: auto; /*38*/
}

.txt-in-sont3-sec1 i {
    font-size: 17px;
    position: relative;
    top: 20px;
}

.txt-title-cont3{
    width: 96%;
    margin: 0 2%;
    margin-top: 2%;
}

.txt-title-cont3 h2{
   font-size: 29px;
}

.txt-subtitle-cont3{
    width: 96%;
    margin: 0 2%;
    margin-top: 10px;
}

.txt-subtitle-cont3 p{
    font-size: 14.5px;
}

.img-cont3-sec2-in{
    width: 96%;
    height: 40%;
    margin: 0 2%;
    margin-top: 2%;
    background-color: green;
}

.img-cont3-sec2-in img{
    width: 100%;
    height: 100%;
}


@media (max-width: 999px){
   .container3{
       margin-top: 2980px;
   }

    .container3-grid{
        display: flex;
        flex-direction: column;
    }

    .cont3-sec1-content{
        margin-top: 1.5% !important;
    }

    .section-cont3-2{
        margin-top: 30px;
    }

    .section-cont3-3{
        margin-top: 30px;
    }

    .resp-h2-cont3{
        font-size: 21px !important;
    }

    .resp-p-cont3{
        font-size: 14px !important;
    }

    .cont3-sec1-content-resp{
        margin-top: 60px !important;
        margin-bottom: 30px !important;
    }

    .first-h2-resp-cont3{
        font-size: 21px !important;
    }

    .firstp-resp-cont3{
        font-size: 14px !important;
    }


    .spacer3{
        top: 2780px !important;
    }
}

.spacer3{
    width: 95.5%; /*75%, 99.9%*/
    height: 35px;
    /*background-color: brown;*/
    align-self: center; /*flex-start*/
    margin-top: 110px !important; /*27*/
    margin-bottom: -120px ;
    border-top: 1px solid lightgray;
    display: flex;
    justify-content: space-around;
   margin-left: 2.2%; /*12.5%, 9px*/

   position: relative;
   top: 377px;
}

.h3-contr3{
    font-weight: bold;
    text-transform: uppercase;
    color: #000;
   padding-top: 5px; /*5px*/
   text-emphasis-position: over;
   padding-left: 5px;
   font-size: 24px;

    background-color: lightgray;
    width: 100px;
    transform: skewX(0deg, 20deg);

   margin-left: 0px;
   height: 39px;
}




.a-contr3{
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    color: rgb(37, 86, 175);
    margin-top: 5px;
}

/*end container3*/
/*start container4*/

.sub-item-cont4{
    border: 1px solid lightgray;
    height: 274px;
    width: 290px;

   margin: 8px 35px;
}

.owl-second{
    border-top: 3px solid lightgrey;
    border-bottom: 3px solid lightgrey;

    height: auto;
    margin-top: 80px;
}

.sub-item-cont4-img{
    height: 60%;
    background-color: lightpink;
    width: 97%;
    margin: 5% 1.5%;
}

.sub-item-cont4-img img{
   width: 100%;
   height: 100%;
}

.sub-item-cont4-specs{
    width: 97%;
    margin: 0 1.5%;
}

.sub-item-cont4-specs p{
  padding-left: 30px;
  padding-top: 5px;
}

@media(max-width: 999px){
   .owl-second{
       margin-top: 1700px;
   }
}

/*end cntainer4*/
/*start cntainer5*/

.container2{
    background-color: rgb(255, 255, 255);
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;


}

.title-container5{
    width: 95.5%; /*75%, 99.9%*/
    height: 35px;
    /*background-color: brown;*/
    align-self: center; /*flex-start*/
    margin-top: 30px !important; /*27*/
    margin-bottom: 56px ;
    border-top: 1px solid lightgray;
    display: flex;
    justify-content: space-around;
    margin-left: 2%; /*12.5%, 9px*/
}

.h3-contnr5{
    font-weight: bold;
    text-transform: uppercase;
    color: #000;
   padding-top: 5px; /*5px*/
   text-emphasis-position: over;
   padding-left: 5px;
   font-size: 24px;

    background-color: lightgray;
    width: 110px;
    transform: skewX(0deg, 20deg);

   margin-left: -100px;
   height: 39px;
}

.a-contnr5{
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    color: rgb(37, 86, 175);
    margin-top: 5px;
}

.container5{
    background-color: #ffffff;
    width: 95.5%;
    height: auto; /*770*/
   margin-left: 2%;
   display: flex;
   justify-content: center;
   align-items: center;
}

.container5-grid{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1.2fr 2.5fr 1.2fr;
}

.cont5-sec1{
    grid-column-start: 1;
    grid-column-end: 2;
    background-color: rgb(255, 255, 255);
}

.cont5-sec2{
    grid-column-start: 2;
    grid-column-end: 3;
    background-color: rgb(255, 255, 255);
}

.cont5-sec3{
    grid-column-start: 3;
    grid-column-end: 4;
    background-color: rgb(255, 255, 255);
}

.bannercont5{
    width: 100%;
    height: 130px;
    background-color: rgb(255, 255, 255);
    margin-top: 70px;
    margin-bottom: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.boxnews-cont5-parent{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 25px 0;
}

.boxnews-cont5{
    width: 296px;
    height: 270px;
    border: 1px solid lightgray;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px 3px;
    flex-direction: column;
    padding: 0 8px;
}

.boxnews-cont5-small{
    width: 296px;
    height: 224px;
    border: 1px solid lightgray;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px 3px;
    flex-direction: column;
    padding: 0 8px;
}

/*align text start*/

.title-boxnews-cont5-first{
    font-size: 29px;
}

.subtitle-boxnews-cont5-first{
    font-size: 14px;
}

.infos-boxnews-cont5-first{
    display: flex;
    height: 20px;
    width: 100%;
    justify-content: space-evenly;
    padding-right: 100px;
    padding-top: 10px;
}

.data-boxnews-cont5-first{
    font-size: 12px;
}

.views-boxnews-cont5-first{
    font-size: 12px;
    position: relative;
    left: 40px;
}

.views-boxnews-cont5-first i{
    padding: 0 8px;
}

/*align text end*/

.boxnews-cont5-parent-middle{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 25px 0;
}

.boxnews-middle-cont5-b{
    width: 620px;
    height: 519px;
    border: 1px solid lightgray;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.img-boxnews-cont5-middle{
    width: 596px;
    height: 334px;
    margin-top: 10px;
}

.img-boxnews-cont5-middle img{
    width: 100%;
    height: 100%;
}

.text-boxnews-cont5-middle{
    display: flex;
    margin-top: 22px;
    margin: 22px 10px;
    flex-direction: column;
}

.infos-boxnews-cont5-middle{
    display: flex;
    height: 20px;
    width: auto;
    justify-content: right;
    justify-self: right;
    font-size: 13px;


   padding-right: 40px;
   margin-top: -10px;
}

.data-boxnews-cont5-middle{
    padding-right: 40px;
}

.infos-boxnews-cont5-middle i{
    padding: 0 8px;
}

.title-boxnews-cont5-middle{
    font-size: 29px;
}

.cont5-row-b{
    display: flex;
    flex-direction: row;
    gap: 0 28px;
}

.boxnews-last-cont5-parent{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 25px 0;
}

.boxads-cont5{
    height: 239px;
    width: 292px;
}

.boxads-cont5 img{
    width: 100%;
    height: 100%;
}


@media (max-width: 999px) {
    .cont5-sec2{
        margin-top: 25px;
    }

    .cont5-sec3{
        margin-top: 25px;
    }

    .boxnews-middle-cont5-b{
        width: auto;
    }

    .cont5-row-b{
        flex-direction: column;
        gap: 28px 0;
    }

    .img-boxnews-cont5-middle{
        width: 100%;
    }

    .img-boxnews-cont5-middle img{
        padding: 0 10px;
    }

    .img-boxnews-cont5-middle b{
        padding: 10px;
    }

    .infos-boxnews-cont5-middle{
        margin-top: 0px;
        position: relative;
        top: -12px;
    }
}

@media (max-width: 600px){
    .infos-boxnews-cont5-middle{
        margin-top: 0px;
        top: -1px;
    }
}

/*end container 5*/
/*start container 6*/

.container6{
    background-color: #ffffff;
    width: 95.5%;
    height: auto; /*770px*/
   margin-left: 2%;
   display: flex;
   justify-content: center;
   align-items: center;
}

.container6-grid{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 2.2fr 1.2fr 1fr;
}

.cont6-sec1{
    grid-column-start: 1;
    grid-column-end: 2;
    background-color: rgb(255, 255, 255);
}

.cont6-sec2{
    grid-column-start: 2;
    grid-column-end: 3;
    background-color: rgb(255, 255, 255);
}

.cont6-sec3{
    grid-column-start: 3;
    grid-column-end: 4;
    background-color: rgb(255, 255, 255);
}

.cont6-boxnews-parent{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px 0;
}

.boxnews-cont6-first{
    width: 620px;
    height: 214px;
    border: 1px solid lightgray;

    display: flex;
    justify-content: center;
    align-items: center;
}

.img-boxnews-cont6-first{
    height: 191px;
    width: 296px;
}

.img-boxnews-cont6-first img{
    width: 100%;
    height: 100%;
    padding-left: 5px;
}

.text-boxnews-cont6-first{
    height: 200px;
    width: 296px;

    display: flex;
    justify-content: left;
    align-items: flex-start;
    flex-direction: column;
}

.boxnews-cont6-first-b{
    width: 620px;
    height: 252px;
    border: 1px solid lightgray;

    display: flex;
    justify-content: center;
    align-items: center;
}

.img-boxnews-cont6-middle{
    height: 234px;
    width: 304px;
}

.img-boxnews-cont6-middle img{
    width: 100%;
    height: 100%;
}

.text-boxnews-cont6-middle{
    height: 234px;
    width: 296px;

    display: flex;
    justify-content: left;
    align-items: flex-start;
    flex-direction: column;
}

.boxnews-cont6-first-m{
    width: 620px;
    height: 228px;
    border: 1px solid lightgray;

    display: flex;
    justify-content: center;
    align-items: center;
}

.img-boxnews-cont6-last{
    height: 206px;
    width: 301px;
}

.img-boxnews-cont6-last img{
   width: 100%;
   height: 100%;
}

.text-boxnews-cont6-last{
    height: 206px;
    width: 296px;

    display: flex;
    justify-content: left;
    align-items: flex-start;
    flex-direction: column;
}

.cont6-boxnews-parent-middle{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px 0px;

    margin-right: 10px;
}

.boxnews-cont6-middle{
    width: 298px;
    height: 214px;
    border: 1px solid lightgray;
}

.boxnews-cont6-middle-b{
    width: 298px;
    height: 252px;
    border: 1px solid lightgray;
}

.boxnews-cont6-middle-m{
    width: 298px;
    height: 228px;
    border: 1px solid lightgray;
}

.cont6-boxnews-parent-last{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px 0;
}

.boxads-cont6{
    width: 294px;
    height: 580px;
}

.boxads-cont6 img{
    width: 100%;
    height: 100%;
}

.boxads-cont6-s{
   height: 402px; /*238px*/
   width: 294px;
}

.boxads-cont6-s img{
    width: 100%;
    height: 100%;
}

@media (max-width: 999px){
    .bnc6f{
        width: auto;
    }

    .cont6-boxnews-parent-middle{
        margin-right: 0;
    }

    .boxnews-cont6-first{
       width: 100%;
    }

    .img-boxnews-cont6-first{
        width: 50%;
    }

   /* .text-boxnews-cont6-first{
        width: 50%;
    }*/

    .tltle-cont6-f{
        font-size: 17px !important;
    }

    .subtitle-cont6-f{
        font-size: 12px !important;
    }

    .boxnews-cont6-first-b{
        width: 100%;
     }

     .img-boxnews-cont6-middle{
         width: 50%;
     }

     .img-boxnews-cont6-middle img{
         padding-left: 5px;
     }

     /*.text-boxnews-cont6-middle{
         width: 50%;
     }*/

     .boxnews-cont6-first-m{
        width: 100%;
     }

     .img-boxnews-cont6-last{
         width: 50%;
     }

     .img-boxnews-cont6-last img{
         padding-left: 5px;
     }

     .cont6-sec2{
         margin-top: 30px;
     }

     .cont6-sec3{
         margin-top: 30px;
     }

     .title-cont6-resp{
         font-size: 23px !important;
     }

     .subtitle-cont6-resp{
         font-size: 16px !important;
     }

}

/*end container 6*/
/*start container 7*/

.container7{
    background-color: #ffffff;
    width: 95.5%;
    height: auto;
   margin-left: 2%;
   display: flex;
   justify-content: center;
   align-items: center;
}

.container7-grid{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 2.2fr 1.1fr 1.1fr;
}

.cont7-sec1{
    grid-column-start: 1;
    grid-column-end: 2;
    background-color: rgb(255, 255, 255);
}

.cont7-sec2{
    grid-column-start: 2;
    grid-column-end: 3;
    background-color: rgb(255, 255, 255);
}

.cont7-sec3{
    grid-column-start: 3;
    grid-column-end: 4;
    background-color: rgb(255, 255, 255);
}

.cont7-boxnews-parent{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 41px 0px;
}

.boxnews-cont7-first{
    width: 620px;
    height: 524px;
    border: 1px solid lightgray;

    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
}

.img-boxnews-cont7-big{
    width: 605px;
    min-height: 336px; /*286px, 320px*/
    margin-top: 6px;
}

.img-boxnews-cont7-big img{
    width: 100%;
    height: 100%;
}

.text-boxnews-cont7-big{
    width: 605px;
    height: 170px;
    margin-top: 9px; /*49px, 29px*/
}

.title-boxnews-cont-first-big{
    font-size: 31px;
}

.subtitles-boxnews-cont7-first{
    height: 85px;
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.text-left-cont7-big{
    grid-column-start: 1;
    grid-column-end: 2;
}

.text-left-cont7-big p{
    font-size: 13px;
}

.text-right-cont7-big{
    grid-column-start: 2;
    grid-column-end: 3;
}

.sub-cont7-right{
    font-size: 13.5px;
    padding-left: 10px;
}


.cont7-contboxs{
    display: flex;
    flex-direction: row;
    gap: 0 30px;
    margin-top: 5px;
}

.boxnews-cont7-first-s{
    width: 295px;
    height: 417px;
    border: 1px solid lightgray;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

.cont7-boxnews-parent-middle{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 31px 0px;
}

.boxnews-cont7-middle{
    width: 299px;
    height: 258px; /*231px*/
    border: 1px solid lightgray;
}

.cont7-boxnews-parent-last{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 40px 0px;
}

.boxnews-cont7-last{
    width: 295px;
    height: 763px; /*763*/
    border: 1px solid lightgray;
}

.boxads-cont7-last{
    width: 295px;
    height: 610px; /*563px*/
}

.boxads-cont7-last img{
    width: 100%;
    height: 100%;
}

.img-cont7-first{
    width: 282px;
    height: 146px;
    margin-top: 12px;
}

.img-cont7-first img{
    width: 100%;
    height: 100%;
}

.text-cont7-first{
    width: 282px;
    height: 230px;
}

.title-cont7-first{
    text-align: center;
    padding-top: 10px;
    font-size: 21px
}

.subtitle-cont7-first{
    padding-top: 25px;
    padding-left: 7px;
    font-size: 14px;
}

.title-boxnews-cont7-last{
    height: 38px;
    border-bottom: 1px solid lightgray;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title-boxnews-cont7-last h3{
    padding-top: 5px;
}

.h3-left-cont7{
    padding-left: 6px;
}

.h3-right-cont7{
    padding-right: 20px;
}

.block-boxnews-cont7-last{
    height: 84px;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-bottom: 1px solid lightgray;
}

.number-block-cont7{
    height: 40px;
    width: 40px;
}

.number-block-cont7 h2{
    font-size: 32px;
    text-align: center;
}

.content-block-cont7{
    height: 53px;
    width: 250px;
}

.cont7-big-infos-on{
    display: none;
}

@media (max-width: 999px){
    .boxnews-cont7-first{
        width: auto;
    }

    .cont7-contboxs{
        flex-direction: column;
        gap: 27px 0;
    }

    .cont7-sec2{
        margin-top: 30px;
    }

    .cont7-sec3{
        margin-top: 30px;
    }

    .boxnews-cont7-first{
        width: 100%;
    }

    .img-boxnews-cont7-big img{
        padding: 5px;
    }

    .img-boxnews-cont7-big{
        width: 100%;
    }

    .text-boxnews-cont7-big{
        width: 100%;
        margin-top: 10px;
    }

    .title-boxnews-cont-first-big{
        font-size: 26px;
    }
}

@media (max-width: 600px){
    .title-boxnews-cont-first-big{
        font-size: 20px;
    }

    .sub-cont7-right{
       font-size: 12.5px;
  }

   .text-left-cont7-big p{
       font-size: 12.5px;
    }

    .cont7-big-infos{
        display: none;
    }

    .cont7-big-infos-on{
        display: flex;
        margin-top: 50px;
    }
}

/*end container 7*/
/*start container 8*/

.container8{
    background-color: gray;
    width: 95.5%;
    height: auto; /*423*/
   margin-left: 2%;
   display: flex;
   justify-content: center;
   align-items: center;

   padding-bottom: 15px;
}

.container8-grid{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr;
}

.cont8-sec1{
    grid-column-start: 1;
    grid-column-end: 2;
    background-color: gray;
}

.cont8-sec2{
    grid-column-start: 2;
    grid-column-end: 3;
    background-color: gray;
}

.cont8-sec3{
    grid-column-start: 3;
    grid-column-end: 4;
    background-color: gray;
}

.cont8-boxnews-parent{
    display: flex;
    align-items: center;
    justify-content: center;
}

.boxnews-cont8-first{
    width: 620px; /*600*/
    height: 375px; /*357*/
     margin-top: 27px;
}

.boxnews-cont8-first img{
    width: 100%;
    height: 100%;
}

.cont8-boxnews-parent-middle{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 25px 0px;

    margin-top: 27px;
}

.boxnews-cont8-middle{
    height: 185px;
    width: 295px;
}

.boxnews-cont8-middle-s{
    height: 175px;
    width: 295px;
}

.margin-cont8-mid{
    margin-right: 25px;
}

@media (max-width: 999px){
    .boxnews-cont8-first{
        width: auto;
    }

    .margin-cont8-mid{
       margin-right: 0;
    }

    .boxnews-cont8-first img{
        padding: 8px;
    }

    .last-cont8-infos{
        margin-top: -10px;
    }
}

.img-boxnews-cont8-middle{
    width: 295px;
    height: 148px;
}

.img-boxnews-cont8-middle img{
    width: 100%;
    height: 100%;
}

.text-boxnews-cont8-middle{
    width: 295px;
    height: 32px;
    margin-top: 3px;
}

.img-boxnews-cont8-middle-s{
    width: 295px;
    height: 136px;
    background-color: indigo;
}

.img-boxnews-cont8-middle-s img{
    width: 100%;
    height: 100%;
}

/*end container 8*/
/*start container 9*/

.container9{
    background-color: #ffffff;
    width: 95.5%;
    height: auto; /*770*/
   margin-left: 2%;
   display: flex;
   justify-content: center;
   align-items: center;
}

.container9-grid{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 2.2fr 1.1fr 1.1fr;
}

.cont9-sec1{
    grid-column-start: 1;
    grid-column-end: 2;
    background-color: rgb(255, 255, 255);
}

.cont9-sec2{
    grid-column-start: 2;
    grid-column-end: 3;
    background-color: rgb(255, 255, 255);
}

.cont9-sec3{
    grid-column-start: 3;
    grid-column-end: 4;
    background-color: rgb(255, 255, 255);
}

.cont9-boxnews-parent{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px 0px; /*40px 0px*/
}

.boxnews-cont9-first{
    width: 622px; /*602px*/
    height: 755px; /*746px*/

    border: 1px solid lightgray;
}

.wrap-boxnews-cont9{
    display: flex;
    flex-direction: row;
    gap: 0 25px;
}

.boxnews-cont9-first-s{
    width: 298px;
    height: 232px;
    border: 1px solid lightgray;
}

.cont9-boxnews-parent-middle{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px 0px;
}

.boxnews-cont9-middle{
    width: 298px;
    height: 232px;
    border: 1px solid lightgray;
}

.cont9-boxnews-parent-last{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 24px 0px;
}

.boxads-cont9-last{
    width: 294px;
    height: 560px;
}

.boxads-cont9-last img{
    width: 100%;
    height: 100%;
}

.boxads-cont9-last-s{
    width: 294px;
    height: 435px; /*366*/
}

.boxads-cont9-last-s img{
    width: 100%;
    height: 100%;
}

.img-boxnews-cont9-big{
    width: 602px;
    height: 598px;

    padding: 8px;
}

.img-boxnews-cont9-big img{
    width: auto; /*100%*/
    height: 100%;
}

.text-boxnews-cont9-big{
    width: 100%;
    height: 138px;
    margin-top: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;

    padding: 5px;
}

.content-left-cont9-big{
    grid-column-start: 1;
    grid-column-end: 2;
}

.content-right-cont9-big{
    grid-column-start: 2;
    grid-column-end: 3;
}

.cont9-infos-on{
    display: none !important;
}

    @media (max-width: 999px){
        .boxnews-cont9-first{
            width: auto;
        }

        .wrap-boxnews-cont9{
            flex-direction: column;
            gap: 25px 0;

            margin-top: 0px; /*50px*/
        }

        .h3-last-cont9{
            width: 120px !important;
        }

        .boxnews-cont9-first{
            width: 100%;
        }

        .img-boxnews-cont9-big{
            width: 100%;
           /* height: 60%; */
        }

        .text-boxnews-cont9-big{
            display: flex;
            flex-direction: column;
        }

        .subtitle-boxnews-cont9-big{
            font-size: 12px !important;
        }

        .cont9-sec2{
            margin-top: 25px;
        }

        .cont9-sec3{
            margin-top: 25px;
        }
    }

/*end container 9*/
/*start container 10*/

.container10{
    background-color: #ffffff;
    width: 95.5%;
    height: auto; /*770, auto*/
   margin-left: 2%;
   display: flex;
   justify-content: center;
   align-items: center;
}

.container10-grid{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.sec10-sec1{
    grid-column-start: 1;
    grid-column-end: 2;
    background-color: #ffffff;
}

.sec10-sec2{
    grid-column-start: 2;
    grid-column-end: 3;
    background-color: #ffffff;
}

.sec10-sec3{
    grid-column-start: 3;
    grid-column-end: 4;
    background-color: #ffffff;
}

.sec10-sec4{
    grid-column-start: 4;
    grid-column-end: 5;
    background-color: #ffffff;
}

.cont10-boxnews-parent{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 25px 0px;
}

.boxnews-cont10-big{
    width: 294px;
    height: 617px;
    border: 1px solid lightgray;

    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px 0;
}

.boxnews-cont10-s{
    width: 294px;
    height: 406px;
    border: 1px solid lightgray;

    display: flex;
    align-items: center;
    flex-direction: column;
}

.cont10-boxnews-parent-last{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 13px 0px;
}

.boxads-cont10-big{
    width: 294px;
    height: 544px;
}

.boxads-cont10-big img{
    width: 100%;
    height: 100%;
}

.boxads-cont10-s{
    height: 239px;
    width: 294px;
}

.boxads-cont10-s img{
    width: 100%;
    height: 100%;
}

.img-boxnews-cont10-b{
    width: 278px;
    height: 408px;
}

.img-boxnews-cont10-b img{
    width: 100%;
    height: 100%;
    padding-top: 6px;
}

.text-boxnews-cont10-b{
    width: 100%;
    height: 189px;
}

.img-boxnews-cont10-s{
    width: 279px;
    height: 185px;
    background-color: #793737;
    margin-top: 5px;
}

.img-boxnews-cont10-s img{
    width: 100%;
    height: 100%;
}

@media (max-width: 999px){
    .h3-cont10{
        width: auto !important;
    }

    .sec10-sec2{
        margin-top: 30px;
    }

    .sec10-sec3{
        margin-top: 30px;
    }

    .sec10-sec4{
        margin-top: 30px;
    }

    .cont10-big-title{
        font-size: 22px !important;
    }

    .cont10-big-subtitle{
        font-size: 14px !important;
    }
}
/*end container10*/
/*start container 11*/

.container11{
    background-color: #ffffff;
    width: 95.5%;
    height: 1064px; /*1064, auto*/
   margin-left: 2%;
   display: flex;
   justify-content: center;
   align-items: center;
}

.container11-grid{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.cont11-sec1{
    grid-column-start: 1;
    grid-column-end: 2;
    background-color: #ffffff;
}

.cont11-sec2{
    grid-column-start: 2;
    grid-column-end: 3;
    background-color: #ffffff;
}

.cont11-sec3{
    grid-column-start: 3;
    grid-column-end: 4;
    background-color: #ffffff;

    /*height: auto; /*200%*/
    grid-row: 1/3;
}

.cont11-sec4{
    grid-column-start: 1;
    grid-column-end: 3;
    background-color: #ffffff;
}

.parent-connt11-sec1{
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.boxnews-cont11-sec1-big{
    width: 619px;
    height: 602px;
    border: 1px solid lightgray;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.img-cont11-sec1-big{
    width: 600px;
    height: 376px;
    margin-top: 8px;
}

.img-cont11-sec1-big img{
    width: 100%;
    height: 100%;
}

.text-cont11-sec1-big{
    width: 600px;
    height: 198px;
    margin-top: 8px;
}

.title-text-cont11-sec1-b{
    width: 100%;
}

.title-text-cont11-sec1-b h3{
    padding-left: 8px;
    font-size: 24px;
}

.title-text-cont11-sec1-b h6{
    padding-left: 7px;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: 300;
    padding-top: 5px;
}

.subtitle-text-cont11-sec1-b{
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 13px 7px;
}

.text-left-cont11-sec1{
    grid-column: 1/2;
    display: flex;
    justify-content: left;
}

.text-right-cont11-sec1{
    grid-column: 2/3;
    display: flex;
    justify-content: right;
}

.cont-text-cont11-sec1{
    width: 90%;
}

.parent-cont11-sec2{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px 0;
}

.boxnews-cont11sec2-small{
    width: 293px;
    height: 290px;
    border: 1px solid lightgray;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.img-cont11-sec2-small{
    width: 269px;
    height: 171px;
    margin-top: 8px;
}

.img-cont11-sec2-small img{
    width: 100%;
    height: 100%;
}

.text-cont11-sec2-small{
    width: 269px;
    margin-top: 3px;
}

.parent-cont11-sec3{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 19.5px 0;
}

.boxads-cont11-big{
    width: 292px ;
    height: 545px;
}

.boxads-cont11-big img{
    width: 100%;
    height: 100%;
}

.boxads-cont11-s{
    width: 292px ;
    height: 239px;
}

.boxads-cont11-s img{
    width: 100%;
    height: 100%;
}

.wrap-sec4-cont11{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.bbox-sec4-cont11{
    width: 97%;
    margin: 0 1.5%;
    background-color: #ffffff;
    height: 97%;
}

.title-bbox-sec4-cont11{
    width: 100%;
    height: 135px;
    background-color: white;
    display: flex;
    justify-content: center;
}

.content-title-sec4-cont11{
    width: 400px;
    height: 100%;
    background-color: rgb(255, 255, 255);
   display: flex;
   flex-direction: column;
 align-items: center;
}

.img-cont11-sec4{
    width: 47px;
    height: 43px;
    background-color: rgb(255, 255, 255);
}

.img-cont11-sec4 img{
    width: 100%;
    height: 100%;
}

.text-cont11-sec4{
    width: 100%;
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cards-cont11-sec4{
    width: 100%;
    height: 313px;
    background-color: rgb(255, 255, 255);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;

    position: relative;
}

.theblack{
    grid-column: 1/4;
    position: absolute;
    background-color: black;
    height: 200px;
    z-index: 0;
    width: 100%;
    display: flex;
    align-self: flex-end;
}

.card1-box-cont11-1{
    grid-column-start: 1;
    grid-column-end: 2;
    background-color: rgb(255, 255, 255);

    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.card1-box-cont11-2{
    grid-column-start: 2;
    grid-column-end: 3;
    background-color: rgb(255, 255, 255);

    display: flex;
    flex-direction: column;
    align-items: center;
}

.card1-box-cont11-3{
    grid-column-start: 3;
    grid-column-end: 4;
    background-color: rgb(255, 255, 255);

    display: flex;
    flex-direction: column;
     align-items: flex-start;
}

.card-img-cont11{
    width: 259px;
    height: 173px;

    position: relative;
    display: flex;
    justify-content: center;
}

.card-img-cont11 img{
    width: 100%;
    height: 100%;
}

.card-text-cont11{
    width: 259px;
    height: 80px;
    color: white;
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 10;
}

.card-text-cont11 p{
    color: rgba(211, 211, 211, 0.76);
}

@media (max-width: 999px){
    .boxnews-cont11-sec1-big{
        width: 100%;
    }

    .container11{
        height: auto;
    }

    .cards-cont11-sec4{
        display: flex;
        flex-direction: column;
    }

    .cards-cont11-resp{
        align-items: center;
        background-color: black;

    }

    .img-cont11-sec1-big{
        width: 95%;
    }

    .text-cont11-sec1-big{
        width: 95%;
    }

    .subtitle-text-cont11-sec1-b{
        display: flex;
        flex-direction: column;
    }

    .text-cont11-sec1-big{
        height: auto;
    }

    .text-left-cont11-sec1{
        justify-content: center;
    }

    .text-right-cont11-sec1{
        justify-content: center;
    }

    .cont11-sec1{
        margin-top: 35px;
    }

    .cont11-sec2{
        margin-top: 35px;
    }

    .cont11-sec3{
        margin-top: 591px;
    }

    .cont11-sec4{
        margin-top: 35px;
    }
}

@media (max-width: 362px){
    .h3-cont11-resp{
       font-size: 18px;
        width: auto !important;
    }
}
/*end container 11*/
/*end main*/

/*start footer*/

.footer-wrap{
    height: 580px; /*612*/
    width: 100%;

    background-color: #ffffff;
    padding: 0 5px; /*maybe remove*/
}

.footer-navbar{
    width: 100%;
    height: 38px;

    background-color: black;
    border-bottom: 4px solid white;
}

.nav-footer{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.ul-footer{
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 0 80px;
    overflow: hidden;
}

.ul-footer li a{
  color: rgb(255, 255, 255);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
}

.ul-footer li .after-icon-li-footer::after{
    content: '|';
    position: relative;
    left: 40px;
    top: -2px;
}

.footer-grid{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;

    background-color:  #484848;
}

.sec1-footer{
    grid-column: 1/2;
    background-color: #484848;

    margin-left: 20px;
    position: relative;
}

.sec1-footer::after{
    content: '';
    display: inline-block;
    height: 80%;
    background-color: gray;
    width: .5px;
    position: absolute;
    top: 10px;
    left: 320px;
}

.sec2-footer{
    grid-column: 2/3;
    background-color: #484848;
    overflow: hidden;
}

.sec2-footer::after{
    content: '';
    display: inline-block;
    height: 80%;
    background-color: gray;
    width: .5px;
    position: relative;
    top: -570px;
    left: 332px;
}

.sec3-footer{
    grid-column: 3/4;
    background-color: #484848;
    overflow: hidden;
}

.sec3-footer::after{
    content: '';
    display: inline-block;
    height: 80%;
    background-color: gray;
    width: .5px;
    position: relative;
    top: -465px;
    left: 320px;
}

.sec4-footer{
    grid-column: 4/5;
    background-color: #484848;

    margin-right: 20px;
}

.footer-last{
    width: 100%;
    height: 40px;

    background-color: #000000;
    display: flex;
    border-top: 2px solid red;
   /* overflow: hidden;*/
}

.nav-last-footer{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.ul-last-footer{
    display: flex;
    list-style: none;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}

.ul-last-footer li{
   margin: 0 30px;
   color: #fff;
   font-size: 14px;
   text-align: center;
   position: relative;
}

.img-li-footer-last{
    width: 53px;
    height: 38px;
    position: absolute;
    left: -60px;
    top: -1px;
}

.img-li-footer-last img{
    width: 100%;
    height: 100%;
}

.img-screen-footer-last{
    width: 32px;
    height: 28px;
    background-color: #ff69;
}

.img-screen-footer-last img{
    width: 100%;
    height: 100%;
}

.footer-list-sec3 nav{
    margin-left: 40px;
    margin-top: 20px;
}

.footer-list-sec3 ul{
    list-style: none;
    display: flex;
    gap: 5px 0;
    flex-direction: column;
}

.footer-list-sec3 ul li a{
    font-size: 15px;
    color: gray;
}

.fa-angle-double-right{
    padding: 0 3px;
}

.banner-footer-sec4{
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: flex-end;

    position: relative;
}

.banner-inside-cont4{
    width: 299px;
    height: 560px; /*470px*/
    background-color: white;
    margin-bottom: 10px;
}

.banner-inside-cont4 img{
    width: 100%;
    height: 100%;
}

.wpp-footer{
    width: 99px;
    height: 115px;
    position: absolute;
    bottom: 8px;
    margin-left: 210px;
}

.wpp-footer img{
    width: 100%;
    height: 85%;
    margin-top: 20px;
}

.content-footer-sec2{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.div-text-footer-sec2{
   width: 250px;
   color: gray;
   font-size: 14.5px;
   margin-bottom: 15px;
}

.map-footer{
    width: 285px;
    height: 207px;
}

.map-footer img{
   width: 100%;
   height: 100%;
}

.content-footer-sec1{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 12px 0;
}

.infos-footer-sec1{
    color: gray;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 15px;
    width: 290px;
    margin-bottom: 20px;
}

.contact-footer{
    width: 187px;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-footer a{
    color: gray;
    margin-top: 3px;
}

@media (max-width: 999px){
    .footer-grid{
        display: flex;
        flex-direction: column;
    }

    .footer-wrap{
        height: auto;
    }

    .sec1-footer::after{
       content: none;
    }

    .sec2-footer::after{
        content: none;
     }

     .sec3-footer::after{
        content: none;
     }

     .sec1-footer{
         margin-top: 40px;
     }

     .sec2-footer{
        margin-top: 40px;
    }

    .sec3-footer{
        margin-top: 40px;
    }

    .sec4-footer{
        margin-top: 40px;
    }

    .img-li-footer-last img{
        display: none;
    }

    .footer-last{
        overflow: hidden;
    }

    .ul-footer{
        display: block;
        height: auto;
        margin: 10px 5px;
    }

    .nav-footer{
        height: auto;
    }

    .footer-navbar{
        height: auto;
    }

    .ul-footer li .after-icon-li-footer::after{
        content: none;
    }

    /*---*/

    .ul-last-footer{
        height: auto;
        display: block;
    }

    .ul-last-footer li{
        margin: 10px 0;
        display: flex;
        justify-content: center;
    }

    .nav-last-footer{
        height: auto;
    }

    .footer-last{
        height: auto;
    }
}

/*end footer*/

/*responsive last containers start*/

@media (max-width: 999px){
    .cont-resp-last{
        display: flex;
        flex-direction: column;
    }
}

/*responsive last containers end*/

/*----------------------------------------------------*/

/*fix text first containers start*/

@media (max-width: 600px){

    /*container 1*/
    .h3-ins1{
        padding-top: 5px !important;
    }

    .tv-cont1{
        width: 100% !important;
    }

    .eof-box{
        margin-left: 70px;
    }

    .sml-con1{
        margin:30px 0 !important;
    }

    .banner-ads-img{
        margin: 0 10px !important;
    }

    /*container 2*/
    .title-container{
        width: 330px;
    }

    .container2-content{
        width: 330px;
    }

    .banner-cont1{
        top: 2900px !important;
    }

    /*container 3*/
    .spacer3{
        margin-top: 160px !important;
    }

    .firstp-resp-cont3{
        font-size: 13px !important;
    }

    .banner-cont2-resp{
        position: relative !important;
        top: 1500px !important;
    }

    .txt-in-sont3-sec1 i{
        font-size: 15px !important;
    }

    /*container 4*/
    .owl-second{
       position: relative;
       top: -90px;
    }

    /*new containers banner and spacer*/

    .bannercont5 img{
        width: 100% !important;
        padding:0 10px !important;
        height: 95px;
    }

    .h3-contnr5{
        margin-left: 10px;
    }
}

/*fix text first container end*/

/*----------------------------------------------------------------*/

/*resp mobile start*/

@media (max-width: 500px){ /*400*/

    .img-boxnews-cont9-big{
        height: 30%;
    }

    .boxnews-cont9-first{
        height: auto;
    }

    /*resp fix width*/

    .wrap-boxnews-cont9{
        width: auto;
    }

    .boxnews-cont9-first-s{
        width: 100%;
    }

    .boxnews-cont9-middle{
        width: 100%;
    }

    .boxads-cont9-last{
        width: 100%;
    }

    .boxads-cont9-last-s{
        width: 95%;
    }

    .boxnews-cont10-big{
        width: 100%;
    }

    .img-boxnews-cont10-b{
        width: 100%;
        padding: 0 5px;
    }

    .boxnews-cont10-s{
        width: 100%;
    }

    .img-boxnews-cont10-s{
        width: 100%;
        padding: 0 5px;
        background-color: #fff;
    }

    .boxads-cont10-big{
        width: 100%;
    }

    .boxads-cont10-s{
        width: 100%;
    }

    .boxnews-cont11sec2-small{
        width: 100%;
    }

    .img-cont11-sec2-small{
        width: 100%;
        padding: 0 10px;
    }

    .text-cont11-sec2-small{
        width: 100%;
        padding: 0 10px;
    }

    .boxads-cont11-big{
        width: 100%;
    }

    .boxads-cont11-s{
        width: 100%;
    }

    .cont7-contboxs{
        width: 100%;
    }

    .boxnews-cont7-first-s{
        width: 100%;
    }

    .img-cont7-first{
        width: 100%;
        padding: 0 5px;
    }

    .text-cont7-first{
        width: 100%;
    }

    .infos-boxnews-cont5-first{
        width: 100%;
    }

    .boxnews-cont7-middle{
        width: 100%;
    }

    .boxnews-cont7-last{
        width: 100%;
    }

    .boxads-cont7-last{
        width: 100%;
    }

    .boxnews-cont6-middle{
        width: 100%;
    }

    .boxnews-cont6-middle-b{
        width: 100%;
    }

    .middle-spacer-cont6{
        width: 100%;
    }

    .boxnews-cont6-middle-m{
        width: 100%;
    }

    .boxads-cont6{
        width: 100%;
    }

    .boxads-cont6-s{
        width: 100%;
    }

    .boxnews-cont6-first{
        height: auto;
        flex-direction: column;
    }

    .boxnews-cont6-first-b{
        height: auto;
        flex-direction: column;
    }

    .boxnews-cont6-first-m{
            height: auto;
            flex-direction: column;
    }

    .img-boxnews-cont6-first{
        width: 100%;
        padding: 5px;
    }

    .img-boxnews-cont6-first img{
        padding: 0;
    }

    .text-boxnews-cont6-first{
        width: 100%;
    }

    .text-boxnews-cont6-first h3{
        font-size: 25px !important;
    }

    .text-boxnews-cont6-first p{
        font-size: 15px !important;
    }

    /*---*/

    .img-boxnews-cont6-middle{
        width: 100%;
        padding: 5px;
    }

    .img-boxnews-cont6-middle img{
        padding: 0;
    }

    .text-boxnews-cont6-middle{
        width: 100%;
    }

    .text-boxnews-cont6-middle h3{
        font-size: 25px !important;
    }

    .text-boxnews-cont6-middle p{
        font-size: 15px !important;
    }

    /*---*/

    .img-boxnews-cont6-last{
        width: 100%;
        padding: 5px;
    }

    .img-boxnews-cont6-last img{
        padding: 0;
    }

    .text-boxnews-cont6-last{
        width: 100%;
    }

    .text-boxnews-cont6-last h3{
        font-size: 25px !important;
    }

    .text-boxnews-cont6-last p{
        font-size: 14px !important;
    }

    .boxnews-cont5-small{
        width: 100%;
    }

    .boxnews-cont5{
        width: 100%;
    }

    .boxads-cont5{
        width: 100%;
    }

    .cont3-banner{
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 0;
    }

    .cont3-sec1-content{
        display: flex;
        flex-direction: column;
    }

    .cont3-sec1-content-resp{
        display: flex;
        flex-direction: column-reverse;
    }

    .container3-grid{
        height: 900px;
    }

    .cont3-sec1-content-right{
        margin-top: 13px;
    }
}

/*resp mobile end*/

/*----------------------------------------------*/

/*animation start*/

[data-anime] {
    opacity: 0;
    transition: .7s;
}

[data-anime="left"] {
    transform: translate3d(-150px, 0, 0);
}

[data-anime="right"] {
    transform: translate3d(150px, 0, 0);
}

[data-anime="top"] {
    transform: translate3d(0, 80px, 0);
}

[data-anime="bottom"] {
    transform: translate3d(0, -80px, 0);
}

[data-anime].animate{
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
}

/*animation end*/

/*-----*/

.news-column-sec2{
    height: auto !important;
    width: auto !important;
    border: 1px solid lightgray;
}

.bord-sec-2{
    border: none !important;
}

/*---*/

#screen-li{
    position: fixed;
    right: 0;
    bottom: 5px;
    margin-right: 15px;
    padding-bottom: 2px;
    background-color: transparent;
}

@media (max-width: 999px){
    #screen-li{
        right: 40px;
        bottom: 0;
    }
}

@media (max-width: 600px){
    #screen-li{
        right: 160px;
    }

    .wpp-footer{
        width: 80px;
        height: 80px;
    }
}

/*----*/

.relative-all{
    position: relative;
}

.relative-all img{
    opacity: 0;
    position: absolute;
    transition: ease-in 1s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.relative-all img.selected{
    opacity: 1;
}

/*---*/

@media (max-width: 999px){
    .tv-cont1{
        width: 96% !important;
        height:93% !important;
    }
}

/*---2*/ /*m*/

@media (max-width: 999px){
    .bannervertsec{
        height: 564px !important;
    }

    .bannervertsec2{
        height: 226px;
    }

    .cont3-banner{
        height: 400px;
    }
}

/*--m*/

@media (max-width: 500px){
    main{
        width: 100%;
        overflow-x: hidden;
    }
}

/*--- cont4*/

@media (max-width: 999px){
    .cont4-cars{
        position: relative;
        top: 1550px;
    }
}

/*plugin*/

.fb_iframe_widget{
    min-height: 560px; /*471px*/
}

.fb_iframe_widget span{
    min-height: 560px; /*471px*/
}

.fb_iframe_widget iframe{
    min-height: 560px; /*471px*/
}

/*---*/

.cont7-boxnews-parent{
    gap: 23px 0 !important;
}


@media (max-width: 999px){
.boxnews-cont8-first{
    width: 98% !important;
    height: 200px !important;
}

.boxnews-cont8-first img{
    padding: 0 !important;
}
}

/*c9 fix*/
/*@media (max-width: 999px){
.boxnews-cont9-first{
    border: none !important;
}

.img-boxnews-cont9-big{
    padding: 0 !important;
}

.text-boxnews-cont9-big{
 padding: 0 !important;
}
}*/

/*teste*/

@media (max-width: 999px){
    @media (max-width: 999px){
        .boxnews-cont9-first{
            height: auto !important;
        }

        .img-boxnews-cont9-big{
           height: auto !important;
        }

        .text-boxnews-cont9-big{
            height: auto !important;
        }
        }
}

@media (max-width: 999px){
    .cont3-sec1-content{
        height: auto;
    }
}

@media (max-width: 999px){
    .img-boxnews-cont7-big{
        min-height: 286px;
    }
}

/*---------------------*/

/*fix resp 2.0*/

@media (max-width: 550px){
  .cont-text-b{
      margin-top: -70px;
  }

  #jssor_1{ /*maybe remove*/
      position: relative;
      left: -3px;
  }
}

@media (max-width: 600px){
    .container2-content{
        width: 100% !important;
    }
}

@media (max-width: 800px){
    .img-boxnews-cont9-big img{
        width: 100%;
    }
}

/*---after---*/  /*maybe remove*/

@media (max-width: 550px){
    .img-boxnews-cont6-first{
        height: 265px;
    }

    .img-boxnews-cont6-last{
        height: 265px;
    }

    .img-cont7-first{
        min-height: 280px !important; /*only height*/
    }

    .boxnews-cont7-first-s{
        height: auto; /*450px*/
        padding-bottom: 10px;
    }

    .text-cont7-first{
        height: auto;
    }

    .boxnews-cont11sec2-small{
        height: auto;
        padding-bottom: 10px;
    }

    .h3-cont11-sec2-small{
        font-size: 37px !important;
    }


    .img-cont11-sec2-small{
        height: 245px;
    }


      /*----*/
       .sec2-img{
           height: 60%;
       }

       .sec2-h3{
           font-size: 18px;
       }

       .sec2-txt p{
           font-size: 12px !important;
       }


    .sec2-main-resp{
        position: relative;
        /*top: -30px;*/
        height: auto;
    }

    .sec-cont2-2{
        margin-top: 40px; /*70px*/
    }

    .wrap-cont3{
       /* position: relative;
        top: -350px;*/
        margin-top: -3800px; /*350*/
    }

    .banner-cont1 {
        top: -900px !important; /*2500*/
    }

    .cont3-banner-side{
       top: 1450px !important;
    }

    /*.spacer3 {
        margin-top: -160px !important;
    }*/
}

/*--- second resp fix*/

@media (max-width: 550px){
    .item{
        min-width: 100%;
    }

    .sub-item-cont4{
        min-width: 100%;
        min-height: 250px; /*350px*/
        margin: 8px 9px;
    }

    .img-boxnews-cont6-middle{
        height: 300px;
    }

    .text-boxnews-cont6-middle{
        height: auto;
        padding-bottom: 10px;
    }

    .text-boxnews-cont6-last{
        height: auto;
        padding-bottom: 10px;
    }

    .boxnews-cont6-middle{
        height: auto;
        padding-bottom: 10px;
    }

    .boxnews-cont6-middle h3{
        font-size: 35px !important;
    }

    .tltle-cont6-f{
        font-size: 17px !important;
    }

    .boxnews-cont6-middle-m{
        height: auto;
        padding-bottom: 10px;
    }

    .boxnews-cont6-middle-m h3{
        font-size: 35px !important;
    }

    .text-boxnews-cont6-first{
        height: auto;
        padding-bottom: 10px;
    }

    .boxnews-cont7-middle{
        height: auto;
        padding-bottom: 10px;
    }

    .boxnews-cont7-middle h3{
        font-size: 37px !important;
    }

    .boxnews-cont9-first-s{
        height: auto;
        padding-bottom: 10px;
    }

    .boxnews-cont9-first-s h3{
        font-size: 37px !important;
    }

    .boxnews-cont9-middle{
        height: auto;
        padding-bottom: 10px;
    }

    .boxnews-cont9-middle h3{
        font-size: 37px !important;
    }


    .boxnews-cont10-big{
        height: auto;
    }

    .text-boxnews-cont10-b{
        height: auto;
        padding-bottom: 10px;
    }

    .img-boxnews-cont10-b{
        height: 264px; /*280px*/
    }

    .boxnews-cont10-s{
        height: auto;
        padding-bottom: 30px;
    }

    .img-boxnews-cont10-s{
        height: 260px;
    }

    /**/

    .boxnews-cont8-middle{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .img-boxnews-cont8-middle{
        width: 95%;
        height: 217px; /*280px*/
    }

    .text-boxnews-cont8-middle{
        height: auto;
        width: 95%;
    }

    .text-boxnews-cont8-middle p{
        font-size: 37px !important;
    }

    .boxnews-cont8-middle-s{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;

        margin-bottom: 40px;
    }

    .img-boxnews-cont8-middle-s{
        width: 95%;
        height: 217px; /*280px*/
    }

    .cont8-boxnews-parent-middle{
        gap: 55px 0;
    }

    /*CC*/

    .img-in-sont3-sec1{
        background-color: transparent;
        height: 300px !important;
    }

    .ccont3-img-last{
        height: 280px;
    }

    .img-cont3-sec2-in{
        background-color: transparent;
    }

    /*the most CC*/

    .container2{
        margin-bottom: 1000px;
    }

    .sec2-main{
        height: auto;

        margin-top: 25px;
    }

    .sec-cont2-4{
        margin-top: 47px;
    }

    .sec2-img{
        height: 300px;
    }

    .sec2-txt{
        height: auto;
        padding-bottom: 10px;
    }

    .sec2-txt h3{
        font-size: 28px;
    }

    .sec2-txt p{
        font-size: 17px !important;
    }
}

/*--- third resp fix*/

@media (max-width: 550px){
    .boxnews-cont5{
        height: auto;
        padding-bottom: 10px;
    }

    .boxnews-cont5 h3{
        font-size: 38px;
    }

    .boxnews-cont5-small{
        height: auto;
        padding-bottom: 10px;
    }

    .boxnews-cont5-small h3{
        font-size: 38px;
    }

    .boxnews-cont6-middle-b{
        height: auto;
        padding-bottom: 10px;
    }

    .boxnews-cont6-middle-b h3{
        font-size: 35px !important;
    }

    /*maybe remove it, CC stuff*/

    .wrap-cont3 .cont3-banner-side{
        transform: translateY(100px);
    }

    /*---*/

    .sec2-second{
        height: auto;
    }

    .text-boxnews-cont10-b h3{
        font-size: 31px !important;
    }

    .tltle-cont6-f{
        font-size: 37px !important;
    }



    .container7 h3{
        font-size: 37px;
    }

    /*--*/

    .first-h2-resp-cont3{
        font-size: 27px;
    }

    .resp-h2-cont3{
        font-size: 27px;
    }

    .sml-con1 p{
        font-size: 19px;
    }

    .border-sec3-2{
        height: auto;
    }
}

/*----*/

/*Fix title*/

@media (max-width: 550px){
    .boxnews-middle-cont5-b{
        height: auto;
    }

    .title-boxnews-cont5-middle{
        font-size: 37px;
    }

    .text-boxnews-cont6-first h3{
        font-size: 37px !important;
    }

    .text-boxnews-cont6-middle h3{
        font-size: 37px !important;
    }

    .text-boxnews-cont6-last h3{
        font-size: 37px !important;
    }

    .img-boxnews-cont7-big{
        height: 286px !important;
    }

    .boxnews-cont7-first{
        height: auto;
        padding-bottom: 10px;
    }

    .text-boxnews-cont7-big{
        height: auto;
    }

    .text-boxnews-cont7-big .cont7-big-infos-on{
        margin-top: 3px;
    }

    .h3-left-cont7{
        font-size: 27px !important;
    }

    .h3-right-cont7{
        font-size: 27px !important;
    }

    .block-boxnews-cont7-last{
        height: auto !important;
        padding: 5px 0;
    }

    .boxnews-cont7-last{
        height: auto;
    } 

    .content-block-cont7{
        height: auto !important;
    }

    .subtitle-block-cont7-last{
       font-size: 21px !important;
    }

    .title-text-cont11-sec1-b h6{
        font-size: 37px;
        font-weight: bold;
    }

    .boxnews-cont11-sec1-big{
        height: auto;
    }

    .card-img-cont11{
        width: 85%;
    }

    .cards-cont11-resp{
        height: auto;
        padding-bottom: 15px;
    }

    .card-text-cont11{
        height: auto;
    }

    .title-card-cont11-sec4{
        font-size: 37px;
    }

    .cards-cont11-sec4{
        height: auto;
    }

    .cont11-sec3{
        margin-top: 25px;
    }

    .wpp-footer{
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    }

    .talk-with-us-footer{
        margin-left: 0;
    }

    .wpp-footer img{
        width: 45px;
    }

    /*CC Stuffs*/

    .news-column-sec2 h3{
        font-size: 37px;
    }

    .sml-con1{
        width: auto;
        height: auto;
    }

    .p-in-smlcon1-main{
        font-size: 37px !important;
    }

    .sec2-txt h3{
        font-size: 33px !important;
    }

    /*.bc1-t{
        transform: translateY(300px) !important;
    }*/

    .container3 h2{
        font-size: 37px !important; /*maybe remove srsly*/
    }

    .container3-grid{
        height: auto; /*maybe remove srsly*/
    }

    .wrap-cont3 .cont3-banner-side{
        margin-top: -1550px; /*maybe remove srsly*/
    }

    .sub-item-cont4-img{
        height: 280px;
    }

    .sub-item-cont4{
        height: auto;
    }

    .wrap-cont3{
        margin-top: -3800 !important;  /*maybe remove srsly*/
        /*position: relative;
        top: -80px;*/
    }

    .container2{
        height: auto; 
       margin-top: -180px;
    }

}

.img-in-np{
    height: 86px;
    margin-top: -5px;
}