*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-weight: 600;
}
/* width */
::-webkit-scrollbar {
  width: 3px;
}

/* Track */
::-webkit-scrollbar-track {
    display: block;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #cccccc;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #cccccc;
}
#firstPart{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            -webkit-align-items: flex-start;
            align-items: flex-start;
    -ms-flex-pack:distribute;
        -webkit-justify-content:space-around;
            justify-content:space-around;
    margin: auto;
    width: 80%;
}
.page
{
    margin: 0 auto;
    max-width: 1250px;
    background: white;
}
#headlines{
    width: 60%;
    min-width: 400px;
}
#headlines h1{
    font-size: 24px;
    color: #011627;
    font-weight: 900;
    letter-spacing: -1px;
}
#headlines p{
    width: 80%;
    font-size: 14px;
    font-weight: normal;
}
#list{
    width: 25%;
    min-width: 290px;
    font-size: 18px;
    text-align: right;
    padding: 15px;
}
#list li{
    cursor:default ;
    -webkit-transition-duration: 0.2s;
         -o-transition-duration: 0.2s;
            transition-duration: 0.2s;
    -webkit-transition-timing-function: ease-in-out;
         -o-transition-timing-function: ease-in-out;
            transition-timing-function: ease-in-out;
}
#list li:hover{
    font-weight: 700;
}
/*responsive table*/
#portfoliosTable{
    font-size: 15px;
    width: 80%;
    max-width: 1150px;
    margin: auto;
    text-align: left;
    border-collapse: collapse;
}
#portfoliosTable thead{
    font-size: 15px;
    text-align: center;
    border-top: 1px solid #ccc;
}
#portfoliosTable th{
    font-size: 12px;
    width: 30vw;
    font-weight: 700;   
}
#portfoliosTable p{
    font-size: 11px;
    font-weight: normal;
    text-align: left;
}

#portfoliosTable h3{
    font-weight: 700;
}
#portfoliosTable td{
    width: 10%;
    text-align: left;
    padding: 5px;
    padding-left: 2px;
    padding-right: 2px;
    font-weight: 600;
    font-size: 12px;
}
#portfoliosTable tr:last-child{
    font-size: 12px;
}
#portfoliosTable tr{
    border-bottom: 1px solid #ccc; 
}
@media only screen and (max-width:1018px){
 
    #portfoliosTable thead{
        display: none;
    }
    #portfoliosTable{
        display: block;
        width: 80%;
    }
    #portfoliosTable tbody th,#portfoliosTable tbody tr p{
        text-align: center;
    }
    #portfoliosTable tbody,#portfoliosTable tr,#portfoliosTable td,#portfoliosTable th{
        display: inline-flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
    }
    #portfoliosTable tr{
        margin-bottom: 20px;
    }  
    #portfoliosTable tr:last-child td{
        height: 60px;
    }
    #portfoliosTable td{
        height: 40px;
        text-align: right;
        padding-left: 50%;
        text-align: right;
        position: relative;
    }
    #portfoliosTable td::before{
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        text-align: left;
        font-weight: 600;
    }   
}
#secondPart{
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    grid-column-gap: 5px;
    margin-bottom: 10px;
    
}
.part{
    width: 50%;
    padding-top: 1vh;
    border: 1px #e8e8e8 solid;
    border-radius: 3px;
    margin: 3vh auto;
    /*background-color: #c8ecfe;*/
}
.part h1{
    text-align: center;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -1px;
}
.form{
    text-align: center;
    width: 100%;
    margin: 0vh auto;
    padding-top: 10px;
    margin-top: 20px;
    font-size: 12px;
}
.form tr{
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    -ms-flex-pack: distribute;
        -webkit-justify-content: space-around;
            justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
    text-align: center;
    margin: 5px auto;
}
.form tr:nth-child(even){
    margin: 0 auto 25px;
}
.form select{
    border: 1px solid #011627;
    outline: none;
    background-color: transparent;
    font-family: 'Quicksand', sans-serif;
}
.custom-select {
  position: relative;
    
}
.custom-select select {
  display: none; /*hide original SELECT element:*/
}
.select-selected {
  background-color: transparent;
    border: 1px solid #ccc;
    color: #011627;
    width: 230px;
    text-align: center;
}
/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 8px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #011627 transparent transparent transparent;
}
/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #011627 transparent;
  top: 7px;
}
/*style the items (options), including the selected item:*/
.select-items div{
  color: #011627;
  padding: 8px 16px;
  border: 1px solid transparent;

  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.select-selected {
  color: #011627;
  padding: 8px 16px;
  border: 1px solid #ccc;
  border-radius: 3px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
          font-weight: 700;
}
/*style items (options):*/
.select-items {
    position: absolute;
    background-color: #fff;
    text-align: center;
    border: 0px solid #011627;
    border-radius: 5px;
    border-top: none;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    box-shadow: 1px 3px 5px #e8e8e8;

}
/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}
.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}
.rs-label {
    position: relative;
    bottom: 7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
    width: 45px;
    height: 45px;
    background-color: white;
    border-radius: 10%;
    padding: 20px;
    text-align: center;
    font-weight: bold;
    left: attr(value);
    color: #011627;
    font-size: 11px;
}
#rs-bullet0{
    width: 40px;
    height: 40px;
}
#rs-bullet2{
    width: 47px;
    height: 47px;
}
.slider {
    -webkit-appearance: none;
    width: 200;
    min-width: 250px;
    height: 5px;
    border-radius: 8px;
    background: #3179F5;
    outline: none;
    opacity: 1;
    -webkit-transition: .2s;
    -webkit-transition: opacity .2s;
    -o-transition: opacity .2s;
    transition: opacity .2s;
}
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background: #f7d002;
    cursor: pointer;
    outline: none;
}

.slider::-moz-range-thumb {
  width: 15px;
  height: 15px;
  background: #f7d002;
  border-radius: 100%;
  cursor: pointer;
  outline: none;
  border-color: #f7d002;
}
/*responsive*/
@media only screen and (max-width:768px){
    
    #headlines{
        text-align: center;
        min-width: 300px;
    }
    #headlines h1{
        font-size: 24px;
        color: #011627;
        font-weight: bold;
    }
    #headlines p{
        width: 80%;
        margin: auto;
    }
    #list{
        text-align: center;
    }
    .part{
    width: 85%;
    padding-top: 1vh;
    border: 1px #e8e8e8 solid;
    border-radius: 3px;
    margin: 3vh auto;
    /*background-color: #c8ecfe;*/
    }
    #headlines p {
    width: 80%;
    font-size: 12px;
    font-weight: normal;
    }
    
}