:root{
    --main-color:#179184;
    --hover-color:#14554f;
    --light-green:#6dc065;
}
@font-face {
    font-family: 'Lusail';
    src: url('/fonts/Lusail-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Lusail';
    src: url('/fonts/Lusail-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Lusail';
    src: url('/fonts/Lusail-Medium.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
  }
  
  
  body {
    font-family: 'Lusail', sans-serif;
  }
  
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    width: 100%;
    height: 100%;

}
a{
    text-decoration: none;

}
ul{
    list-style-type: none;
}
.bk{
    width: 100%;
    min-height: 100vh;
    background-image: url(/Images/bg.jpg);
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
}
.container{
    padding:0 60px 0 60px;
}