/* Global classes */
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
  padding:0;
  margin:0;
  box-sizing: border-box;
}
::selection{
  background-color: #a97fca;
  color:whitesmoke;
}
html{
  min-width:300px;
}
body {
  font-size: 1rem;
  font-family: "Montserrat";
}
.current{color: #990953 !important;; }

h2,span{
  color:#990953;
}
.clearfix{
  overflow:hidden;
}

/* Navigator top Big screen */
header{
  width:100%;
}
header {
  top: 0;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.932);
  box-shadow: 0px 0px 3px black;
  width: 100%;
}
main {
  padding-top: 64px;
}
nav{
  min-height: 64px;
}
nav img {height: 60px;}
.container{
  max-width: 1400px;
  margin: auto;
  padding: 0 5%;
}
nav .branding{float:left;}
nav ul{
  margin-top:25px;
  float:right;
  cursor: default;
}
nav ul li{display: inline;}
nav ul a{
  text-transform: uppercase;
  font-weight: 600;
  color:black;
  margin:5px 0;
  margin-left:30px;
  text-decoration: none;
}
nav ul a:hover{
  border-bottom: 3px #990953 solid;
}

select{
  font-weight: bold;
  border:none;
  background-color: transparent;
  color: black;
  appearance: none;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABmJLR0QA/wD/AP+gvaeTAAAAb0lEQVRIie2PsQ2AMAwELyyWcVIyCqSCaQmNI1kIRwEF0fjq998bHMf5lQDEjlyU7OPyDBzA3MglyeyWZGocFzlaDEkCNqu4hwCsIrp+UpcXGuvfSoaVa0lWklqeR5RrSf1k2HJL8km5lnxW7jj3nAwCHOMFhaBLAAAAAElFTkSuQmCC");
  background-repeat: no-repeat;
  background-position: bottom right;
  margin-left: 30px;
  padding:0;
  padding-right: 20px;
  font-size: 17px;
}
select option{
  color:black;
}
select:focus{
  outline:none;
  border-radius: 10px;
}
/* Navigator top Small screen*/
.openbtn{
  display:none;  
  color:black;
} 
.smallNavScreen {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
}
#smallNav select {
  color: white !important;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABmJLR0QA/wD/AP+gvaeTAAAAcUlEQVRIie2Puw2AMBQDHRZjnJSMAqlgWo6CIEFEIj5BNO9qy2dLhmH8B+CA9kKuBdyT8gDMQFfI+ZiZcpKm5JHkJPVnEsBLGmPmPvHFwMrhyW45pfWPJNXKE0nYSbby8Lo886TO8oKkfnki+abcMLIsXdC+QY2m3bcAAAAASUVORK5CYII=") !important;
}
.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}
.smallNavScreen a {
  padding: 10px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 36px;
  color: #818181;
  display: block;
  transition: 0.3s;
}
.smallNavScreen a:hover, .smallNavScreen a:focus {
  color: #990953;
}
.smallNavScreen .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

@media screen and (max-width:1044px){
  nav ul{display:none;}
  .openbtn{
    font-size:30px;
    cursor:pointer;
    display:block;
    float:right;
  }
  nav a{
    margin-top:10px;
  }
  nav a:hover{
    color: #990953;
  }
}
@media screen and (max-height: 450px) {
  .smallNavScreen a {font-size: 20px}
  .smallNavScreen .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}

/* Footer */
footer {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: rgb(139, 139, 224);  
  box-shadow: 0 0 5px black;
}

footer ul {
  list-style-type: none;
}

footer li {
  color: whitesmoke;
  margin-bottom: 0.1rem;
}

footer a {
  text-decoration: none;
  color: whitesmoke;
}

footer a:hover {
  color: #990953;
}

footer h2 {
  color: whitesmoke;
  margin-bottom: 0.25rem;
  font-size: 1.2rem;
}

footer p {
  margin-top: 3rem;
  color: whitesmoke;
}

footer p a {
  color: #990953;
}

footer a img:hover {
  transform: scale(1.03);
}

footer .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .col {
  flex-basis: 33.33%;
}

footer .centerflex {
  align-self: center;
}

footer .center {
  text-align: center;
  margin-top:20px;
}

footer .right {
  text-align: right;
}
@media only screen and (max-width:850px){
  footer .row {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  footer a{
    margin-top: 50px;
    margin-bottom: 50px;
  }
  footer .right {
    text-align: center;
  }
  footer .col h2 {
    font-size: 1.4rem;
  }
  footer .col a {
    font-size: 1.15rem;
  }
}