@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');

*{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}
header {
  display: flex;
  margin-top: 0%;
  justify-content: space-between;
  align-items: center;
  background-color: #2c3e50;
  color: white;
  padding: 0px 100px;
  border-top: solid crimson 4px;
  position: fixed;
  width: 100%;
}
header a {
    color: white;
    text-decoration: none;
    margin-right: 10px;
    font-size: 20px;
    transition: 1s;
}
header a:hover {
    color: yellow(96, 128, 0);
    font-size: 22px;
}

.logo{
   text-decoration: none;
   color: #3a6cf4
   text-transform: uppercase
   font-weight: 700;
   font-size: 1.8em;  
}


.slider {
    height: 100vh;
    display: flex;
    align-items: center ;
    color: white;
    font-size: 25px;
    padding: 0px 40px 340px 100px;
    background-size: cover;
    background-image: url(Pictures/trip2.jpg);
    background-attachment: fixed;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.1);
    background-position: center;
}
.slider span {
   color: red; 
}
.slider a {
 color: white;   
 text-decoration: none;
 background-color: #f2d620;
 padding: 10px;
 border-radius: 10px;
 display: inline-block;
 margin: 20px;
 font-size: 20px;
 transition: ease 1s;
 align-items: center
}
.slider a:hover {
    font-size: 25px;
    background-color: blue;
}


html{
   width: 100%;
   min-height: 100vh;
   display: flex;
   align-items: center;
   background: url(images/trip2.jpg) no-repeat;
   background-size: cover;
   background-position: center;
   background-attachment: fixed;
   
}

.main h2 {
   color: #fff;
   font-size: 1.4em;
   font-weight: 500;
   
}

.main h2 span {
   display: inline-block;
   margin-top: 10px
   color:auto
   font-size: 30em;
   font-weight: 600;
   
} 

.main h3 {
   color: #c1110b;
   font-size: 2em;
   font-weight: 700;
   letter-spacing: 1px;
   margin-top: 10px;
   margin-bottom: 30px
  
   

}

.main-btn {
   color: #ece934;
   display: inline-block;
   background-color: #0a49f6;
   text-decoration: none;
   font-size: 1.1em;
   font-weight: 600; 
   padding: 0.9375em;
   letter-spacing: 1px
   border-radius: 15px
   margin-bottom: 40px;
   transition: 0.7s ease;
}

.main-btn:hover {
    background-color: hsl(243, 89%, 36%);
    transform: scale(1.1); 
}

.social-icons a {
    color: #fff;
    font-size: 2.7em;
    padding-right: 30px;
   
}

.title {
   display: flex;
   justify-content: center;
   color: White;
   font-size: 3.2em;
   font-weight: 800;
   margin-bottom: 30px;
   
}

.content {
   display: flex;
   justify-content: center;
   flex-direction: row;
   flex-wrap: wrap;

}

.card {
    background-color:#333;
    width: 25.25em;
    box-shadow: 0 5px 25px rgba(1 1 1 / 15%);
    display: inline-block;
    position: relative;
    border-radius: 0.25em;
    padding: 25px;
    margin: 15px;
    transition: 0.7s ease;
    border: var(--clr-card) 0.125em solid;
 }
 
 .card:hover {
     transform: scale(1.1); 
 }
 
 .icon {
     color: hwb(47 40% 6%);
     font-size: 8em;
     text-align: center;
 }
 
 .info {
     text-align: center;
 }
 
 .info h3 {
    
     color: yellow;
     font-size: 1.2em;
     font-weight: 700;
     margin: 10px;
 }

 .Trips {
}

.Trips h2 {
    text-align: center;
    font-size: 25px;
    margin: 30px 0px;
     color: white;
}
.Trips .container {
    display: flex;
    flex-wrap: wrap;
    padding: 0px 80px;
    justify-content: center;
   
}
.Trips .card {
    margin: 0px 20px;
    padding: 10px;
    width: 20em;
    margin-bottom: 50px;
    text-align: center;
    margin-right: 20px;
    border-radius: 20px;
    border: solid;
    background-color: white;
    padding-bottom: 10px;
    overflow: hidden;
}
.card h3 {
    color: red;
    text-align: center;
}
.card p{
    font-size: 20px;
}
.Trips button {
    border-radius: 0px 10px;
    color: white;
    background-color: #1abc9c;
    padding: 0px 30px;
    border: none;
}

.main1{
    border: red;
   padding-top: 0%; 
   margin-top: 0px;  
}
.Musa{
    position: fixed;
    top: 0px;}
    
    
@property --angle{
   syntax: "<angle>";
initial-value: 0deg;
inherits: false;
}
 .card::after, .card::before{
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: conic-gradient(from var(--angle), #ff4545, #00ff99, #006aff, #ff0095, #ff4545);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
  padding: 3px;
  border-radius: 10px;
  animation: 3s spin limear infinite;
 }
 @keyframes spin{
  from{
    --angle: 0deg;
  }
  to{
    --angle: 360deg;

  }
 }
 .card::before{
  filter: blur(1.5rem);
  opacity: 0.5;
  
 }
 .card:hover {
     transform: scale(1.1); 
 }

 
 .icon {
     color: #3a6cf4;
     font-size: 8em;
     text-align: center;
 }
 
 .info {
     text-align: center;
 }
 
 .info h3 {
     color: #fff;
     font-size: 1.2em;
     font-weight: 700;
     margin: 10px;
 }


 
/* button */
.btn1 {
    margin: 100px;
    padding: 15px 40px;
    border: none;
    outline: none;
    color: #FFF;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 12px;
  }
  .btn1::after {
    content: "";
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #333;
    left: 0;
    top: 0;
    border-radius: 10px;
  }
  /* glow */
  .btn1::before {
    content: "";
    background: linear-gradient(
      45deg,
      #FF0000, #FF7300, #FFFB00, #48FF00,
      #00FFD5, #002BFF, #FF00C8, #FF0000
    );
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 600%;
    z-index: -1;
    width: calc(100% + 4px);
    height:  calc(100% + 4px);
    filter: blur(8px);
    animation: glowing 20s linear infinite;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
    opacity: 0;
  }
  
  @keyframes glowing {
    0% {background-position: 0 0;}
    50% {background-position: 400% 0;}
    100% {background-position: 0 0;}
  }
  
  /* hover */
  .btn1:hover::before {
    opacity: 1;
  }
  
  .btn1:active:after {
    background: transparent;
  }
  
  .btn1:active {
    color: #fff;
    font-weight: bold;
    
 *main-btn1 {
    color: #FFF;
    font-size: 25px;
    text-decoration: none;
}

.btn1:hover {
   transform: scale(1.1); 
}
