:root {
  --white: #ffffff;
  --black: #000000;
  --primary: #97144F;


  --Lato_Light: Lato_Light;
  --Lato_Regular: Lato_Regular;
  --Lato_Medium: Lato_Medium;
  --Lato_Semibold: Lato_Semibold;
  --Lato_Bold: Lato_Bold;

}

* {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a,
a:active,
a:focus,
a:hover {
  outline: none;
  color: initial;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}

/* MAIN FONT USED BY BODY */

@font-face {
  font-family: "Lato_Light";
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/Lato-Light.ttf) format("truetype");
}

@font-face {
  font-family: "Lato_Regular";
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/Lato-Regular.ttf) format("truetype");
}

@font-face {
  font-family: "Lato_Medium";
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/Lato-Medium.ttf) format("truetype");
}

@font-face {
  font-family: "Lato_Semibold";
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/Lato-Semibold.ttf) format("truetype");
}

@font-face {
  font-family: "Lato_Bold";
  font-style: normal;
  font-weight: normal;
  src: url(../fonts/Lato-Semibold.ttf) format("truetype");
}

/* END OF MAIN FONT USED BY BODY */

html {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  color: var(--black);
  font-family: var(--Lato_Regular);
  font-size: 15px;
}



section {
  position: relative;
}

@media screen and (min-width: 1200px) {
	
	.hidden-lg{
    display: none !important;
  }
	
}

/* 16/07/2024 added new css media query */
@media screen and (min-width: 1200px) and (max-width: 1600px){
  .wrapper-content{
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
.hidden-md {
    display: none !important;
  }
}

@media screen and (max-width: 991px) {
  .hidden-xs,
  .hidden-sm {
    display: none !important;
  }
}
