/*=======================

        General 

=======================*/



*{

  padding: 0;

  margin: 0;

  box-sizing: border-box;

    

}

html,

body {

	font-family: 'SVN-Gotham';

	font-weight: 400;

	font-size: 20px;

  line-height: 24px;

  background: #FFEBEF;

}

p{

	margin: 0 0 20px;

}

p:last-child{

  margin: 0;

}

h1, h2, h3, h4, h5, h6{

	font-family: "Beth Ellen", cursive;

	color: #C77478;

	font-weight: 400;

}

.container{

  max-width: 1580px;

  padding: 0 10px;

  margin: 0 auto;

  width: 100%;

}

a:hover{

  text-decoration: none;

}

a {

  -webkit-transition-duration: 0.3s;

  -moz-transition-duration: 0.3s;

  -ms-transition-duration: 0.3s;

  -o-transition-duration: 0.3s;

  transition-duration: 0.3s;

  text-decoration: none;

}

:focus{

	outline: none;

}

img {

  max-width: 100%;

  display: block;

  height: auto;

}

ul{

	padding: 0;

	margin: 0;

}

.btn {

  position: relative;

  display: inline-grid;

  place-items: center;

}

.absolute{

  position: absolute !important; 

}

.relative{

  position: relative !important; 

}



@media(min-width: 992px){

  .hide-pc{

    display: none !important;

  }

}

@media(max-width: 991px){

  .hide-mb{

    display: none !important;

  }

}