@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  color: #fff;
  min-height: 100vh;
  background: url(../images/body-bg.jpg) no-repeat center bottom /cover;
  /* background-attachment: fixed; */
}

a,
button,
input,
select,
textarea {
  text-decoration: none;
  outline: none;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
  box-shadow: none;
}

a {
  color: #fff;
}

img {
  max-width: 100%;
  -moz-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
h1,h2,h3,h4,h5,h6 {
  margin: 0;
}

p:last-child {
  margin-bottom: 0;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl,
.row > * {
  padding-right: 15px;
  padding-left: 15px;
}
.page-wrapper {
  padding-top: 90px;
  padding-bottom: 90px;
}
.swami-img {
  box-shadow: 0px 25px 50px rgba(0, 0, 0, 0.25);
  border-radius: 25px;
}
.btn-green {
  padding: 10px 20px;  
  background: #97AF70;
  border-radius: 5px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  text-shadow: 0px 0.5px 0.5px rgba(0, 0, 0, 0.25);
}

.btn-green:hover {
  background: #8DAE56;  
}
.welcome-text {
  padding: 10px; 
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.25) 49.56%, rgba(255, 255, 255, 0) 100%);
  text-align: center;
  font-weight: 700;
  font-size: 30px;
  line-height: 45px;
  color: #F5F5F5;
  margin-top: 20px;
  margin-bottom: 25px; 
}
.three-sites-single {
  padding: 10px 20px; 
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  text-align: center;
}
.three-sites-single h5 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-transform: capitalize;
  color: #FFFFFF;
  margin-top: 10px;
}
.row.three-sites {
  margin-right: -8px;
  margin-left: -8px;
  margin-bottom: 40px;
}
.three-sites [class*="col-sm"] {
  padding-left: 8px;
  padding-right: 8px;
}
.flower-list li a {
  position: relative;
  padding: 10px 45px 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-transform: capitalize;
  color: #FFFFFF;
  transition: all .5s;
}
.flower-list li a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  /*background: url(../images/arrow.png) no-repeat left top;*/
  width: 17px;
  height: 12px;
  overflow: hidden;
  transition: all .5s;
}
.flower-list li a:hover {
  background: #FFFFFF;
  color: #38152D;
  border: 1px solid rgba(245, 245, 245, 0.1);
}
.flower-list li a:hover:after {
  background-position: 0 100%;
}
.flower-icon {
  display: block;
  min-width: 30px;
  height: 30px;
  overflow: hidden;
  transition: all .5s;
}
.flower-list li a:hover .flower-icon img {
  transform: translateY(0%);
}


/* media */
@media (min-width:1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1200px;
  }
}

@media (min-width:1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1200px;
  }
}

@media (max-width:991px) {
  .page-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width:767px) {
  .page-wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .welcome-text {    
    font-size: 24px;
    line-height: 120%;   
  }
  .flower-list li a {
    line-height: 120%;
  }
  .flower-list li a {
    padding: 10px 45px 10px 15px;    
  }
  .flower-list li a:after {
    right: 15px;
  }
}

@media (max-width:575px) {  
  .row.three-sites {
    gap: 20px;
  }
}