:root{
    --primary-color: #ff6c28;
    --second-color: #164657;
}


ul{
    list-style: none;
    padding: 0;
    margin: 0;
}


.container{
    width: calc(100% - 1.5rem);
    padding-right: .75rem;
    padding-left: .75rem;
    margin-right: auto;
    margin-left: auto
}

@media(min-width:576px) and (max-width:768px) {
    .container{
        max-width: 540px
    }
}


@media(min-width:769px) and (max-width:992px) {
    .container{
        max-width: 720px
    }
}


@media(min-width:993px) and (max-width:1240px){
    .container{
        max-width: 960px
    }
}

@media(min-width:1241px){
    .container{
        max-width: 1170px
    }
}





.svg-list {
    height: 0;
    width: 0;
    position: absolute;
    visibility: hidden;
    z-index: -1;
    display: none;
}


.d-none{
    display: none;
}


@media(max-width:768px){

   .d-xs-block{
      display: inline-block;
   }

}


@media(min-width:768px) and (max-width:992px){
    .d-sm-block{
        display: inline-block;
    }
}

@media(min-width:992px){

    .d-md-block{
        display: inline-block;
    }
}


input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}


::selection {
  color: #fff;
  background: #3b464f;
}

.mb-1{
    margin-bottom: 1rem;
}

.mb-2{
    margin-bottom: 2rem;
}

.mt-2{
    margin-top: 2rem;
}