body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.announcement-bar {
    width: 100%;
    background-color: rgb(48, 119, 152);
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   
   padding: 10px;
}

.fixed-text {
    flex: none;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 30px;
}

.marquee {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 15s linear infinite;
    font-size: 1.2rem;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
.logobox {
    display: flex;
    justify-content: center; /* Center the logo box */
    align-items: center; /* Center items vertically */
    overflow-x: hidden;
}


.logo {
    display: flex;
    justify-content: space-around; /* Space the text elements evenly */
    align-items: center; /* Center text vertically */
    flex: 1;
    color: black;
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 10px;
    height: 100px;
}

.logo-text {
    margin-bottom: 45px; /* Add some margin to ensure there's space between texts */
    font-weight: 800px;
}

.apply-btn1 {
    display: block;
    color: black;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid orange;
    padding: 10px 20px;
    border-radius: 25px;
    text-transform: uppercase;
    transition: 0.5s;
}

.apply-btn1:hover {
    background: orange;
    color: white;
}

.apply-btn1::before {
    background: orange;
    content: "";
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: -1;
    transition: all 0.6s ease;
    width: 100%;
    height: 0;
}

.apply-form {
    display: none;
    width: 80%;
    max-width: 600px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1003;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

form {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
}

form h3 {
    color: #555;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
}

form input, form textarea {
    border: 1px solid #ccc;
    margin: 10px 0;
    padding: 15px;
    background: #f5f5f5;
    font-size: 16px;
    border-radius: 5px;
}

form button {
    padding: 15px;
    background: #ff5361;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    border: none;
    margin-top: 20px;
}

.icon-close-form {
    position: absolute;
    top: 10px;
    right: 10px;
    color: black;
    cursor: pointer;
}
/* Header Styles */
/* === HEADER STYLES === */
header {
    position: sticky ;
    top: 0;
    width: 100%;
    height: 80px;
    background-color:   #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 1001;
    overflow: visible;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
  
  header ul {
    flex: 2;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
  }
  
  header ul li {
    position: relative;
  }
  
  header ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: black;
    font-weight: 900;
    text-transform: uppercase;
    padding: 10px 15px;
    font-size: 1.2em;
    overflow: hidden;
  }
  
  header ul li a span {
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.5s;
    text-shadow: 0 0 5px #ffffff;
  }
  /* Header Styles */
  header ul li a:before,
  header ul li a:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 0;
    background-color: #0A1F44;
    transition: width 0.5s;
    z-index: 0; /* Ensure the lines are behind the text */
  }
  
  header ul li a:before {
    left: 0;
    top: 0;
  }
  
  header ul li a:after {
    right: 0;
    bottom: 0;
  }
  
  header ul li:hover > a:before,
  header ul li:hover > a:after {
    width: 100%;
  }
  
  /* Dropdown Content */
  header ul li .dropdown-content {
    display: none;
    position: absolute;
    background-color: #d9e2e3;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  header ul li:hover .dropdown-content {
    display: block;
  }
  
  header ul li .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.5s;
  }
  
  header ul li .dropdown-content a:hover {
    background-color: #f1f1f1;
  }
  
  /* Blink Effect */
  @keyframes blink {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  
  header ul li .dropdown-content a:hover span {
    animation: blink 0.8s;
  }
  
  /* Remove green line hover effect for dropdown-content links */
  header ul li .dropdown-content a:before,
  header ul li .dropdown-content a:after {
    width: 0; /* Ensure no green line */
    transition: none; /* Disable width transition */
  }
  
  header ul li .dropdown-content a:hover:before,
  header ul li .dropdown-content a:hover:after {
    width: 0; /* Ensure no green line on hover */
  }
  
  /* Dropdown Styles */
  .menu-items .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f7f2f2;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(114, 112, 112, 0.2);
    top: 100%;
    left: 0;
    z-index: 1002; /* Increased z-index to ensure it appears in front */
  }
  
  .menu-items .dropdown-content li {
    display: block;
  }
  
  .menu-items .dropdown-content li a {
    padding: 10px 20px;
    text-decoration: none;
    color: rgb(5, 4, 4);
    display: block;
  }
  
  .menu-items .dropdown:hover .dropdown-content {
    display: block;
  }
  /* === HAMBURGER ICON === */
  .hamburger {
    cursor: pointer;
    position: absolute;
    left: 20px;     /* This puts it 20px from the right edge */
    top: 40px;       /* Adjust this value to move it further down */
    display: none;   /* hidden by default, shown on mobile with media query */
    z-index: 1100;
  }
  
  
  .hamburger input {
    display: none;
  }
  
  .hamburger svg {
    height: 3em;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .line {
    fill: none;
    stroke: black;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
                stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .line-top-bottom {
    stroke-dasharray: 12 63;
  }
  
  .hamburger input:checked + svg {
    transform: rotate(-45deg);
  }
  
  .hamburger input:checked + svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
  }
  
  /* === MEDIA QUERIES === */
  @media screen and (max-width: 1024px) {
    .hamburger {
      display: block;
      position: sticky;
      transform: translatex(40%);
      top: 30px;          /* Move it down */
      right: 10px;        /* Move it to the right */
      background-color: rgb(96, 206, 223);
      border-radius: 25px;
      width:-200px;        /* Remove full width */
      height:50px ;       /* No forced height */
      z-index: 1100;
      
      
    }
  
  
    
    .hamburger svg {
      display: block;
      margin: 0 auto;
    }
  
    header {
      transform: translateY(-100%);
      opacity: 0;
      position: fixed;
      top: 0;
      left: 0;
      background-color: #d9e2e3;
      flex-direction: column;
      height: auto;
      padding: 20px;
      z-index: 1000;
    }
  
    header.active {
      transform: translateY(0);
      opacity: 1;
    }
  
    header ul {
      flex-direction: column;
      gap: 10px;
      padding: 10px 0;
    }
  }
  
  
  @media screen and (max-width: 1024px) {
    header {
      transform: translateY(-120%);
      opacity: 0;
      position: fixed;
      top: 220px; /* Push it down a bit from top */
      left: 0;
      background-color: #d9e2e3;
      flex-direction: column;
      height: auto;
      padding: 20px;
      transition: transform 0.4s ease, opacity 0.4s ease;
      z-index: 1000;
    }
  
    header.active {
      transform: translateY(0);
      opacity: 1;
    }
  
    .hamburger {
      display: block;
      position: fixed;
      top: 150px;
      right: 20px;
      background-color: #64cbeb;
      padding: 5px;
      border-radius: 20px;
      z-index: 1100;
    }
  }
  


.text h1 {
    font-size: 50px;
    text-align: center;
    color: #0A1F44; /* Adjust the color as needed */
    margin-bottom: 20px;
    font-weight: bold;
   
}
.text1 h1 {
    font-size: 50px;
    text-align: center;
    color: #333; /* Adjust the color as needed */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 0 0 10px #69cffa;
  
}
.text1 {
    background: linear-gradient(to right, #7fa7ff, #a0d3ff, #8ac3c9, #5b9988);
    padding: 20px; /* Adjust padding as needed */
    }
.textup{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    font-size: 30px;
    background-color:#0A1F44 ;
    height: 60vh;
    padding: 20px;
    color: #f8fbff;
}
.pup {
    text-align: center;
    font-size: clamp(1rem, 3vw, 2rem); /* Adjusted clamp() values for smaller font size */
    max-height: calc(1.2em * 3); /* Adjust based on your line-height */
    line-height: 1.2em; /* Adjust line-height as needed */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* For WebKit browsers */
    -webkit-box-orient: vertical;
}



.h2up{
    font-size: 35px;
}
.container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.box {
    background-color: #fff;
    border: 3px solid #3498db; /* Border color */
    border-radius: 10px;
    padding: 20px;
    width: 25%;
    min-width: 300px;
    height: 600px;
    box-shadow:0 18px 18px rgba(0, 0, 0, 0.1);
    margin: 10px;
    position: relative;
    overflow: hidden; /* Ensure the scroll effect is contained within the box */
}

.container h1 {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 0;
    background-color:#0A1F44 ;
    color: #fff;
    position: relative;
    z-index: 2; /* Ensure h1 is above the scrolling content */
    padding: 10px;
    width: 100%;
    font-size: 2.5em;
    box-sizing: border-box;
    border-radius: 5px;
    text-shadow: 0 0 10px #000000;
}

.content {
    text-align: center;
}

.events-box, .programs-box, .done-box {
    height: 100%;
    position: relative;
}

.events-box ul, .programs-box ul, .done-box ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: absolute;
    width: 100%;
    animation: scroll 20s linear infinite;
}

.events-box li, .programs-box li, .done-box li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.5em ;
}

.events-box li:last-child, .programs-box li:last-child, .done-box li:last-child {
    border-bottom: none;
}

/* Add automatic scroll effect */
@keyframes scrollEvents {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}

.events-box ul {
    animation: scrollEvents 20s linear infinite;
}
.programs-box ul {
    animation: scrollEvents 20s linear infinite;
}
.done-box ul {
    animation: scrollEvents 20s linear infinite;
}

/* Create a masking effect to cover the h1 tag and extend above it */
.box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px; /* Adjust height to cover the h1 tag and extend above */
    background-color: #fff; /* Same color as box background */
    z-index: 1;
}
:root {
    --dark-text: #f8fbff;
    --light-body: #f3f8fe;
    --light-main: #fdfdfd;
    --light-second: #c3c2c8;
    --light-hover: #f0f0f0;
    --light-text: #151426;
    --light-btn:  #0A1F44 ;
    --blue: #0000ff;
    --white: #fff;
    --shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    --font-family: consolas;
  }
 
 .celanderbody {
    place-items: center;
    font-family: var(--font-family);
    background: #0A1F44 ;

    overflow: hidden;
    display: flex;
    justify-content: center; /* Center the container */
    align-items: center; /* Center the container */
    height: 100vh; /* Full viewport height */
    font-family: var(--font-family);
    
    overflow: hidden;
  }
 
.container1 {
    width: 20vw; /* Use 80% of the viewport width */
    height: 100vh; /* Use 80% of the viewport height */
    position: relative;
    display: flex;
    padding: 2% 0px 0px 0px;
    justify-content: center;
    align-items: center;
    background: var(--white); /* Background color for better visibility */
    box-shadow: var(--shadow);
    border-radius: 25px;
}
.calendar {
    height: 90%;
    width: 80vh;
    background-color: white;
    border-radius: 30px;
    overflow: hidden;
    padding: 30px 50px 0px 50px;
}
.calendar {
    box-shadow: var(--shadow);
}
.calendar-header {
    background: #0A1F44 ;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    padding: 10px;
}
.calendar-body {
    padding: 5px;
}
.calendar-week-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    font-size: 25px;
    font-weight: 600;
    cursor: pointer;
    color: rgb(104, 104, 104);
}
.calendar-week-days div:hover {
    color: black;
    transform: scale(1.5);
    transition: all .15s ease-in-out;
}
.calendar-week-days div {
    display: grid;
    place-items: center;
    color: var(--bg-second);
    height: 70px;
}
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    color: var(--color-txt);
    font-size: 25px;
    font-family: Nunito;
    font-weight: 550;
}
.calendar-days div {
    width: 37px;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    position: relative;
    cursor: pointer;
    animation: to-top 1s forwards;
}
.month-picker {
    padding: 5px 10px;
    border-radius: 10px;
    cursor: pointer;
}
.month-picker:hover {
    background-color: var(--color-hover);
}
.month-picker:hover {
    color: var(--color-txt);
}
.year-picker {
    display: flex;
    align-items: center;
}
.year-change {
    height: 30px;
    width: 30px;
    border-radius: 20%;
    display: grid;
    place-items: center;
    margin: 0px 30px;
    cursor: pointer;
}

.year-change:hover {
    background-color: var(--light-btn);
    transition: all .2s ease-in-out;
    transform: scale(1.12);
}
pre{
    color: #fffdfd;
    margin: -10px 20px 0 0px; /* Adjust the top margin to bring it up */
}
.year-change:hover pre {
    color: #000000
}
.calendar-footer {
    padding: 10px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
#year:hover {
    cursor: pointer;
    transform: scale(1.2);
    transition: all 0.2 ease-in-out;
}
.calendar-days div span {
    position: absolute;
}
.calendar-days div:hover {
    transition: width 0.2s ease-in-out, height 0.2s ease-in-out, transform 0.2s ease-in-out;
    background-color: #000000;
    border-radius: 20%;
    color: var(--dark-text);
    transform: scale(1.12);
}

.calendar-days div.current-date {
    color: var(--dark-text);
    background-color: var(--light-btn);
    border-radius: 20%;
}
.month-list {
    position: relative;
    left: 0;
    top: -50px;
    background-color: #ebebeb;
    color: var(--light-text);
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 5px;
    border-radius: 20px;
}
.month-list > div {
    display: grid;
    place-content: center;
    margin: 5px 10px;
    transition: all 0.2s ease-in-out;
}
.month-list > div > div {
    border-radius: 15px;
    padding: 10px;
    cursor: pointer;
}
.month-list > div > div:hover {
    background-color: var(--light-btn);
    color: var(--dark-text);
    transform: scale(0.9);
    transition: all 0.2s ease-in-out;
}
.month-list.show {
    visibility: visible;
    pointer-events: visible;
    transition: 0.6s ease-in-out;
    animation: to-left .71s forwards;
}
.month-list.hideonce {
    visibility: hidden;
}
.month-list.hide {
    animation: to-right 1s forwards;
    visibility: none;
    pointer-events: none;
}
.date-time-formate {
    width: max-content;
    height: max-content;
    font-family: Dubai Light, Century Gothic;
    position: relative;
    display: inline;
    top: 140px;
    justify-content: center;
}
.day-text-formate {
    font-family: Microsoft JhengHei UI;
    font-size: 2.5rem;
    padding-right: 5%;
    border-right: 3px solid  #0A1F44 ;
    margin-left: 200px;
    position: absolute;
    left: -1rem;
}
.date-time-value {
    display: block;
    height: max-content;
    width: max-content;
    position: relative;
    left: 50%;
    top: -18px;
    text-align: center;
}
.time-formate {
    font-size: 2.7rem;
}
.date-formate {
    font-size: 2rem;
}
.time-formate.hideTime {
    animation: hidetime 1.5s forwards;
}
.day-text-formate.hidetime {
    animation: hidetime 1.5s forwards;
}
.date-formate.hideTime {
    animation: hidetime 1.5s forwards;
}
.day-text-formate.showtime {
    animation: showtime 1s forwards;
}
.time-formate.showtime {
    animation: showtime 1s forwards;
}
.date-formate.showtime {
    animation: showtime 1s forwards;
}
@keyframes to-top {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    100% {
        transform: translateY(100%);
        opacity: 1;
    }
}
@keyframes to-left {
    0% {
        transform: translatex(230%);
        opacity: 1;
    }
    100% {
        transform: translatex(0);
        opacity: 1;
    }
}
@keyframes to-right {
    10% {
        transform: translatex(0);
        opacity: 1;
    }
    100% {
        transform: translatex(-150%);
        opacity: 1;
    }
}
@keyframes showtime {
    0% {
        transform: translatex(250%);
        opacity: 1;
    }
    100% {
        transform: translatex(0%);
        opacity: 1;
    }
}
@keyframes hidetime {
    0% {
        transform: translatex(0%);
        opacity: 1;
    }
    100% {
        transform: translatex(-370%);
        opacity: 1;
    }
}
@media (max-width: 850px) {
    .container1 {
        width: 100%; /* Adjusted width for responsiveness */
        padding: 2% 5px; /* Adjusted padding for responsiveness */
    }

    .calendar {
        width: 100%; /* Adjusted width for responsiveness */
        max-width: 90%; /* Maximum width for smaller screens */
        padding: 20px; /* Adjusted padding for responsiveness */
    }

    .calendar-header {
        font-size: 1.8rem; /* Adjusted font size for smaller screens */
    }

    .calendar-week-days {
        font-size: 1.5rem; /* Adjusted font size for smaller screens */
    }

    .calendar-days {
        font-size: 1.5rem; /* Adjusted font size for smaller screens */
    }

    .day-text-formate {
        font-size: 1.8rem; /* Adjusted font size for smaller screens */
        border-right: 2px solid #9593f6; /* Adjusted border size */
        margin-left: 50px; /* Adjusted margin for smaller screens */
    }

    .time-formate {
        font-size: 1.4rem; /* Adjusted font size for smaller screens */
        margin-left: -100px
    }

    .date-formate {
        font-size: 1.35rem; /* Adjusted font size for smaller screens */
        margin-left: -10px
    }
}
.ourteam{
    color: #000000;
    font-size: 60px;
    font-weight: 600;
    display: flex;
    justify-content: center; /* Center text horizontally */
    align-items: center; /* Center text vertically */
    margin-top: 40px;
    text-shadow: 0 0 10px #69cffa;
}
   /* Footer */


 /* Footer */


footer {
    width: 100%;
    height: 450px;
    margin-top: 50px; 
   background: #0A1F44;
    color: #fff;
    padding: 10px 0 15px;
    border-top-left-radius: 300px;
    font-size: 13px;
    line-height: 20px;
    position: relative;
}
footer h2{
     font-weight: 200;
    font-size: 18px;
}
.row {
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.col {
    flex-basis: 25%;
    padding: 10px;
}

.col:nth-child(2), .col:nth-child(3) {
    flex-basis: 15%;
}
.col li a{
    color: #ffffff;
}

.logo111 {
    width: 150px;
    margin-bottom: 30px;
    background-color: #0A1F44;
}

.col h3 {
    width: fit-content;
    margin-bottom: 20px;
    
    position: relative;
    padding-bottom: 10px;
    
    
}
.logo111{
    width: 400px;
    height: 100px;
}
.logo111fot{
      width: 400px;
    height: 100px;
    margin-top: 150px;
}
.underline {
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    margin-top: 5px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.underline span {
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
}
.col h3 {
  font-size: 30px;  /* Adjust size as needed */
  font-weight: 700; /* 700 = bold, can also use 'bold' */
}

@keyframes moving {
    0% {
        left: -20px;
    }
    100% {
        left: 100%;
    }
}

.email-id {
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
}

ul li {
    list-style: none;
    margin-bottom: 12px;
    
}

ul li a {
    text-decoration: none;
    color: #000000;
    font-weight: 300;
    font-size: 20px;
    
}

.newsletter-form {
  display: flex;
  flex-direction: row;         /* Ensures horizontal layout */
  align-items: center;         /* Vertical alignment */
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 30px;
  gap: 10px;                   /* Spacing between items */
}

.newsletter-form i {
  font-size: 18px;
  color: #000000;
}

.newsletter-form input {
  flex: 1;                     /* Takes up remaining space */
  background: transparent;
  border: none;
  outline: none;
  color: #000000;
  font-size: 18px;
}

.newsletter-form input::placeholder {
  color: #000000; /* Change to any color you prefer */
  opacity: 1;     /* Ensures full opacity */
}

.newsletter-form button {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.newsletter-form button i {
  font-size: 18px;
  color: #000000;
}



.social-icons .fab {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background: #fff;
    margin-right: 15px;
    cursor: pointer;
}



.social-icons a:hover i {
    color: rgb(0, 0, 0);
      background-color: #111;
    transform: scale(1.1);
}

hr {
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}

.copyright {
    text-align: center;
}

@media(max-width: 700px) {
    
    .col {
        flex-basis: 100%;
    }
    .col:nth-child(2), .col:nth-child(3) {
        flex-basis: 100%;
    }
    footer{
        height: 130vh;
    }
}



.loader {
  position: relative;
  width: 75px;
  height: 100px;
  margin-left: 175px;
  margin-top: 150px;
}

.loader__bar {
  position: absolute;
  bottom: 0;
  width: 10px;
  height: 50%;
  background: rgb(0, 0, 0);
  transform-origin: center bottom;
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

.loader__bar:nth-child(1) {
  left: 0px;
  transform: scale(1, 0.2);
  -webkit-animation: barUp1 4s infinite;
  animation: barUp1 4s infinite;
}

.loader__bar:nth-child(2) {
  left: 15px;
  transform: scale(1, 0.4);
  -webkit-animation: barUp2 4s infinite;
  animation: barUp2 4s infinite;
}

.loader__bar:nth-child(3) {
  left: 30px;
  transform: scale(1, 0.6);
  -webkit-animation: barUp3 4s infinite;
  animation: barUp3 4s infinite;
}

.loader__bar:nth-child(4) {
  left: 45px;
  transform: scale(1, 0.8);
  -webkit-animation: barUp4 4s infinite;
  animation: barUp4 4s infinite;
}

.loader__bar:nth-child(5) {
  left: 60px;
  transform: scale(1, 1);
  -webkit-animation: barUp5 4s infinite;
  animation: barUp5 4s infinite;
}

.loader__ball {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  background: rgb(44, 143, 255);
  border-radius: 50%;
  -webkit-animation: ball624 4s infinite;
  animation: ball624 4s infinite;
}

@keyframes ball624 {
  0% {
    transform: translate(0, 0);
  }

  5% {
    transform: translate(8px, -14px);
  }

  10% {
    transform: translate(15px, -10px);
  }

  17% {
    transform: translate(23px, -24px);
  }

  20% {
    transform: translate(30px, -20px);
  }

  27% {
    transform: translate(38px, -34px);
  }

  30% {
    transform: translate(45px, -30px);
  }

  37% {
    transform: translate(53px, -44px);
  }

  40% {
    transform: translate(60px, -40px);
  }

  50% {
    transform: translate(60px, 0);
  }

  57% {
    transform: translate(53px, -14px);
  }

  60% {
    transform: translate(45px, -10px);
  }

  67% {
    transform: translate(37px, -24px);
  }

  70% {
    transform: translate(30px, -20px);
  }

  77% {
    transform: translate(22px, -34px);
  }

  80% {
    transform: translate(15px, -30px);
  }

  87% {
    transform: translate(7px, -44px);
  }

  90% {
    transform: translate(0, -40px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@-webkit-keyframes barUp1 {
  0% {
    transform: scale(1, 0.2);
  }

  40% {
    transform: scale(1, 0.2);
  }

  50% {
    transform: scale(1, 1);
  }

  90% {
    transform: scale(1, 1);
  }

  100% {
    transform: scale(1, 0.2);
  }
}

@keyframes barUp1 {
  0% {
    transform: scale(1, 0.2);
  }

  40% {
    transform: scale(1, 0.2);
  }

  50% {
    transform: scale(1, 1);
  }

  90% {
    transform: scale(1, 1);
  }

  100% {
    transform: scale(1, 0.2);
  }
}

@-webkit-keyframes barUp2 {
  0% {
    transform: scale(1, 0.4);
  }

  40% {
    transform: scale(1, 0.4);
  }

  50% {
    transform: scale(1, 0.8);
  }

  90% {
    transform: scale(1, 0.8);
  }

  100% {
    transform: scale(1, 0.4);
  }
}

@keyframes barUp2 {
  0% {
    transform: scale(1, 0.4);
  }

  40% {
    transform: scale(1, 0.4);
  }

  50% {
    transform: scale(1, 0.8);
  }

  90% {
    transform: scale(1, 0.8);
  }

  100% {
    transform: scale(1, 0.4);
  }
}

@-webkit-keyframes barUp3 {
  0% {
    transform: scale(1, 0.6);
  }

  100% {
    transform: scale(1, 0.6);
  }
}

@keyframes barUp3 {
  0% {
    transform: scale(1, 0.6);
  }

  100% {
    transform: scale(1, 0.6);
  }
}

@-webkit-keyframes barUp4 {
  0% {
    transform: scale(1, 0.8);
  }

  40% {
    transform: scale(1, 0.8);
  }

  50% {
    transform: scale(1, 0.4);
  }

  90% {
    transform: scale(1, 0.4);
  }

  100% {
    transform: scale(1, 0.8);
  }
}

@keyframes barUp4 {
  0% {
    transform: scale(1, 0.8);
  }

  40% {
    transform: scale(1, 0.8);
  }

  50% {
    transform: scale(1, 0.4);
  }

  90% {
    transform: scale(1, 0.4);
  }

  100% {
    transform: scale(1, 0.8);
  }
}

@-webkit-keyframes barUp5 {
  0% {
    transform: scale(1, 1);
  }

  40% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1, 0.2);
  }

  90% {
    transform: scale(1, 0.2);
  }

  100% {
    transform: scale(1, 1);
  }
}

@keyframes barUp5 {
  0% {
    transform: scale(1, 1);
  }

  40% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1, 0.2);
  }

  90% {
    transform: scale(1, 0.2);
  }

  100% {
    transform: scale(1, 1);
  }
}


.social-icons .fab {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background: #fff;
    margin-right: 15px;
    cursor: pointer;
}



.social-icons a:hover i {
    color: rgb(0, 0, 0);
      background-color: #111;
    transform: scale(1.1);
}

hr {
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}

.copyright {
    text-align: center;
}

@media(max-width: 700px) {
    
    .col {
        flex-basis: 100%;
    }
    .col:nth-child(2), .col:nth-child(3) {
        flex-basis: 100%;
    }
    footer{
        height: 130vh;
    }
}

.create{
    color: #ffffff;
}
