{% load static %}
ul{
  padding: unset;
}
html{
  scroll-behavior: smooth
}
:root
{
    --sky-blue:rgb(7, 150, 245);
    --sflc-sky-blue:rgb(40, 151, 241);
    --light-sky-blue: rgb(73, 182, 255);
    --light-blue:rgb(209, 232, 253);
    --purple: #7088ff;
    --light-purple: #eaebfc;
    --dark-purple: #4d6cfd;

    --orange-red: #ff3300;
    --maroom: #770000;

  --light-red: #ff7a7a;
  --dark-red: #fa6363;

    --white:white;

    --black:black;
    --soft-grey:rgb(61, 61, 61);
    --dark-grey: #242424;
    --grey:rgb(112, 117, 124);
    --light-grey: #bababa;
    --white-grey: rgb(245, 245, 245);

}


*{
  margin: unset;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
      -webkit-font-smoothing: antialiased;

}

body{
  /*font-family: sans-serif;*/
   font-family: 'Atkinson'!important;
}
.main-body
{
    max-width: 1382px;
    margin: auto;
}
nav{
  background: #ffffff;
  height: 75px;
  width: 100%;
  max-width: 100%;
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: grey 0px 11px 10px -16px;
  /*font-family: 'Atkinson'!important;*/
  /*overflow: hidden;*/
    /*font-family: 'Work Sans', sans-serif;*/
}

label.logo{
  color: white;
  font-size: 35px;
  line-height: 100px;
  padding: 0 100px;
  font-weight: bold;
}

label.logo img{

  margin-top: 10px;
  max-width: 100%;

}

nav ul{
  float: right;
  margin-right: 20px;
  margin-top: 9px;
}

nav ul li{
  display: inline-block;
  line-height: 80px;
  margin: 0 5px;

}

nav ul li a{
  color: #1c1b1b;
  font-size: 17px;
  padding: 7px;
  border-radius: 3px;
  font-weight: bold;
      font-family: 'Atkinson';
    /*font-family: 'Work Sans', sans-serif;*/
}

.nav-dropdown ul{
  position: absolute;
  top: 90px;
  opacity: 1;
  visibility: hidden;
  transition: top .3s;
  /*background: #7088ff;*/
  background: white;
  padding-left: unset;
}

nav ul li:hover > ul{
  top: 61px;
  opacity: 1;
  visibility: visible;
}

.nav-dropdown ul li{

  position: relative;
  margin: 0px;
  width: 200px;
  float: none;
  display: list-item;
  border-bottom: 1px solid rgba(0,0,0,0.3);
}


.nav-dropdown ul li a{
  line-height: 50px;

}
.nav-dropdown-outer
{
  background: white;
}
.nav-items.active, .nav-items:hover{
  background: #7088ff;
  transition: .5s;
  color: white;
}

.checkbtn{
  font-size: 30px;
  color: var(--dark-grey);
  float: right;
  line-height: 80px;
  margin-right: 16px;
  cursor: pointer;
  display: none;
}

.page-heading
{
  width: 70%;
  text-align: center;
  margin: auto;
}

@media (max-width: 800px) {
  .page-heading
{
  width: 96%;
  margin: auto;
}
}
#check{
  display: none;
}

@media(min-width:858px)
{
  .nav-dropdown ul{
/*padding-right:21px*/
  }
  label.logo img {
    max-width: 16%;
}
  nav
  {
    height: 75px;
  }

  nav ul li {
    line-height: 62px;
}
  nav ul li a {
    font-size: 16px;
    font-weight: 600;
}

}
@media(max-width: 952px){
  label.logo{
    font-size: 30px;
    padding-left: 50px;
  }
  nav ul li a{
    font-size: 16px;
  }
}

@media(max-width: 858px){
  .checkbtn{
    display: block;
    color: var(--dark-grey);
  }
  .nav-items-outer{
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #2c3e50;
    top: 65px;
    left: -100%;
    text-align: center;
    transition: all .5s;
    overflow: scroll;
  }

  nav ul li{
    display: block;
    margin: 50px 0;
    line-height: 30px;
  }
  nav ul li a{
    font-size: 20px;
    color: white;
    font-weight: normal;
  }
  a:hover, a.active{
    background: none;
    color: #7088ff;
  }
  #check:checked ~ ul{
    left: 0;
  }
  .nav-dropdown ul{
    position: relative;
    opacity: 1;
    visibility: visible;
    display: none;
    transition: top .3s;
    background: #0082e600;
    width: 100%;
    opacity: 1;
    top: unset;
  }
  .nav-dropdown ul:hover
  {
    display: unset;
  }
  .nav-dropdown ul li {
    position: relative;
    margin:unset;
    margin: 50px 0;
    width: unset;
    float: none;
    display: list-item;
    border-bottom: unset;

}
nav ul li:hover > ul{
  top: unset;
}
.nav-dropdown-outer
{
  padding: unset;
  margin: unset;

}
}

@media(max-width:600px)
{
  label.logo
  {
    padding: unset;
  }
  label.logo img
  {
    width: 65%;
    margin-top: 17px;
  }
}
