@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


    .homeslider-container {
      width: 100%;
      background: #4a4a4a;
      display: flex;
      justify-content: center;
      padding:0;
    }

    .homeslider {
      position: relative;
      width: 100%;
      max-width: 1200px;
      overflow: hidden;
    }

    .slides {
      display: flex;
      transition: transform 0.6s ease-in-out;
      will-change: transform;
    }

    .slide {
      min-width: 100%;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .slide a picture,
    .slide a img {
      display: block;
      width: 100%;
      height: auto;
    }

    .slide a img {
      object-fit: cover;
      object-position: center;
    }

    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 40px;
      color: white;
      background: rgba(0, 0, 0, 0.4);
      padding: 10px;
      cursor: pointer;
      z-index: 10;
      display: none;
      user-select: none;
    }

    .homeslider:hover .arrow {
      display: block;
    }

    .arrow.left { left: 10px; }
    .arrow.right { right: 10px; }

    .dots {
      text-align: center;
      padding: 10px;
	  background-color:#4a4a4a;
    }

    .dot {
      height: 12px;
      width: 12px;
      margin: 0 5px;
      background-color: #bbb;
      border-radius: 50%;
      display: inline-block;
      cursor: pointer;
    }

    .dot.active {
      background-color: white;
    }


/* iphone Landscape  [HORIZONTAL] CSS Start here */
@media only screen and (max-width :768px)
{
.homeslider-container {
	background-image: url("https://lyndseyphilipps.com/Portals/_default/skins/lyndseyphilipps-responsive/images/slide-bg.png") !important;  background-repeat: repeat-x !important; background-position: center top;
      width: 100%;
      background: #4a4a4a;
	background-size: contain;
    }
	
}
    