 @import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

 * {
     margin: 0;
     padding: 0;
 }


 @property --pos {
     syntax: '<percentage>';
     inherits: false;
     initial-value: 30%;
 }

 :root {
     --textColor: white;
     --textBlackColor: black;
     --akHeadingGap: 1rem;
     --akHeroHeading: 3rem;
     --akHeroSubHeading: 1.2rem;
     --akBorderColor: #f57e2f;
     --heroSectionImageWidth: 50vw;
     --ratedUserWidth: 30vw;
     --backgroundColorNew: linear-gradient(180deg, #558fb1 0%, #f57e2f var(--pos), #0c3ccb 100%);
     --akBoxShadow: 0px 2px 5px rgba(0, 0, 0, 0.2), 0px 5px 10px rgba(0, 0, 0, 0.3), 0px 3px 15px 1px rgba(0, 0, 0, 0.5);
     /* --akBoxShadow: 0px 2px 5px rgb(215 194 30 / 20%), 0px 5px 10px rgb(255 142 142 / 30%), 0px 3px 15px 1px rgb(245 107 107 / 50%); */
 }

 body {
     font-family: "Lato", sans-serif;
     color: var(--textColor);
     background: linear-gradient(180deg, #558fb1 0%, #f57e2f 50%, #0c3ccb 100%);
     /* animation: movePosition 20s infinite alternate ease-in-out; */
 }

 .ak-header-container {
     --akHeaderColor: #f7f7f7;
     --akHeaderLogoHeight: 4rem;
     --akHeaderMenuGap: 2rem;
     --pos: 30%;
     font-family: 'sans-serif', Tahoma, Geneva, Verdana, sans-serif;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 10px 15px;
     background: linear-gradient(90deg, #558fb1 0%, #f57e2f var(--pos), #0c3ccb 100%);
     transition: all 1s ease-in-out;
     animation: movePosition 10s infinite alternate ease-in-out;
     border-bottom: 2px solid var(--bgWhiteColor);
 }

 .ak-header-logo-img {
     height: var(--akHeaderLogoHeight);
     border-radius: 20%;
 }

 .ak-header-menu-container ul {
     display: flex;
     list-style: none;
     gap: var(--akHeaderMenuGap);
     margin-right: 2rem;
     transition: all 0.5s ease-in-out;
 }

 .ak-header-menu-container ul li {
     color: var(--akHeaderColor);
     font-size: 1.2rem;
     padding: 1rem;
     cursor: pointer;
 }

 .ak-header-menu>:last-child {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 0.2rem;
     position: relative;
 }

 .ak-header-menu>:last-child svg {
     fill: var(--bgWhiteColor);
     transition: all 0.3s ease-in-out;
 }

 .ak-header-menu-container .ak-header-submenu {
     opacity: 0;
     visibility: hidden;
     flex-direction: column;
     position: absolute;
     top: 3rem;
     width: 12rem;
     background: linear-gradient(180deg, #133ec6 0%, #8c6075 var(--pos), #0c3ccb 100%);
     box-shadow: var(--akBoxShadow);
     color: black;
     transition: all 0.3s ease-in-out;
     pointer-events: none;
     gap: 0rem;
     justify-content: center;
     align-items: center;
     transform: translateY(2rem);
     border-radius: 0;
      z-index: 10;
 }

 .ak-header-menu> :last-child:hover>.ak-header-submenu {
     opacity: 1;
     visibility: visible;
     pointer-events: auto;
     display: flex;
     transform: translateY(0rem);
     border-radius: 1rem;
 }


 .ak-header-menu>:last-child:hover svg {
     fill: var(--bgWhiteColor);
     transition: all .3s ease-out;
     transform: rotate(180deg);
 }

 .ak-header-menu-item>a,
 .ak-header-submenu-item>a {
     text-decoration: none;
     color: inherit;
 }


 .ak-header-slogan-container h2 {
     color: var(--akHeaderColor);
 }

 .ak-ham-log-container img {
     display: none;
     height: var(--akHeaderLogoHeight);
 }

 .ak-header-menu-container ul li img {
     display: none;
 }

 .ak-head-banner-container {
     display: flex;
     flex-direction: column;
     height: 100vh;

 }

 .ak-hero-section-wrapper {
     flex: 1;
     display: flex;
     /* background: url("../images/carasoul-image3.jpg"); */
     background:
         linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, .8)),
         url("../images/carasoul-image3.jpg");
     background-position: center;
     background-size: cover;
     background-repeat: no-repeat;
     justify-content: center;
     align-items: center;
     /* box-shadow: var(--akBoxShadow); */
 }

 .ak-hero-section {
     text-align: center;
     display: flex;
     flex-direction: column;
     gap: 0.3rem;
 }

 .ak-hero-section-heading {
     font-size: var(--akHeroHeading);
 }

 .ak-hero-section-subheading {
     font-size: var(--akHeroSubHeading);
     font-style: italic;
     font-weight: 700;
     padding: 0 2rem;
 }

 .ak-second-hero-container {
     padding: 1rem 0rem;
     padding-bottom: 3rem;
     text-align: center;
     box-shadow: var(--akBoxShadow);
 }

 .ak-second-hero-container .ak-heading {
     /* color: var(--textBlackColor); */
     margin-bottom: 1.5rem;
 }

 .ak-second-hero-image-container img {
     width: var(--heroSectionImageWidth);
     border-radius: 2rem;
     /* border: 2px solid black; */
     box-shadow: var(--akBoxShadow);
     padding: 2rem;
     background: white;
 }

 .ak-search-container {
     border-bottom: none;
     box-shadow: var(--akBoxShadow);
 }


 .ak-search-section {
     width: 50%;
     border-right: 0;
     color: var(--textColor);
     padding: 0;
     margin: 0 auto;
     padding-bottom: 1rem;
 }

 .ak-registration-input-fields {
     margin: 0 auto;
     margin-bottom: 1rem;
 }

 .ak-heading {
     margin: var(--akHeadingGap) 0;
 }

 .ak-rated-users-container {
     flex-wrap: nowrap;
     max-width: 50vw;
     margin: 0 auto;
     overflow-x: scroll;
     scroll-snap-type: x mandatory;
     scroll-behavior: smooth;
     white-space: nowrap;
     border-radius: 5px;
     padding: 1rem;
 }

 .ak-rated-user {
     width: var(--ratedUserWidth);
     scroll-snap-align: center;
     /* height: var(--ratedUserWidth); */
     flex: none;
     background: var(--bgWhiteColor);
     color: var(--textBlackColor);
     border-radius: 1rem;
     box-shadow: var(--akBoxShadow);
     margin-bottom: 2rem;
     flex-wrap: none;
     display: flex;
     justify-content: center;
     align-items: center;
     flex-direction: column;
 }

 .ak-rated-user-image-container {
     background: inherit;
     border-radius: inherit;
 }

 .ak-rated-user-profession {
     border: none;
 }

 .ak-rated-user-image-container {
     border: none;
 }

 .ak-rated-user-image {
     height: 12rem;
 }

 .ak-team-message {
     padding: 2rem 1rem;
     word-spacing: 2px;
     font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
     box-shadow: var(--akBoxShadow);
     margin-top: 1rem;
     font-size: var(--font14);
 }

 .ak-team-message-author {
     text-align: right;
     margin-top: 1rem;
     /* font-style: italic; */
 }

 .ak_footer_container {
     margin-top: 0;
 }

 @media screen and (max-width: 768px) {
     :root {
         --textColor: white;
         --akHeadingGap: 0.9rem;
         --akHeroHeading: 2.5rem;
         --akHeroSubHeading: 1.0rem;
         --heroSectionImageWidth: 65vw;
     }

     .ak-header-container {
         --akHeaderLogoHeight: 3rem;
         --akHeaderMenuGap: 0.5vw;
     }

     .ak-header-menu-container ul {
         margin-right: 1vw;
     }

     .ak-search-section {
         width: 100%;
         border-right: 0;
         color: var(--textColor);
         padding-bottom: 1rem;
     }

     .ak-registration-input-fields {
         margin: 0 auto;
         margin-bottom: 1rem;
     }

     .ak-rated-users-container {
         max-width: 52vw;
     }

     .ak-rated-user {
         width: 50vw;
         min-width: 17rem;
         /* height: 50vw; */
     }
 }

 @media screen and (max-width: 425px) {
     :root {
         --heroSectionImageWidth: 80vw;
         --ratedUserWidth: 95%;
     }

     .ak-header-container {
         --akHeaderLogoHeight: 3.5rem;
         --akHeaderMenuGap: 1.5rem;
     }

     .ak-ham-log-container img {
         display: block;
     }

     .ak-header-menu-container ul {
         position: fixed;
         margin-right: 0;
         top: 0;
         right: 0;
         width: 60%;
         height: 100vh;
         background: linear-gradient(180deg, #133ec6 0%, #8c6075 var(--pos), #0c3ccb 100%);
         text-align: center;
         flex-direction: column;
         gap: 0rem;
         transform: translateX(100%);
         transition: transform 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
         z-index: 10;
     }

     .ak-header-menu-container ul.active {
         transform: translateX(0);
         /* Slide in to visible */
     }

     .ak-header-menu-container ul li img {
         height: 1.4rem;
         display: inline;
         filter: invert(1);
         position: absolute;
         rotate: 180deg;
         top: 1rem;
         right: 1rem;
         /* Position the close arrow on the right now */
         cursor: pointer;
     }

     .ak-header-menu-container ul.ak-header-menu>:first-child {
         position: absolute;
         left: 1rem;
     }

     .ak-header-menu-container .ak-header-submenu {
         align-items: center;
         width: 100%;
         height: auto;
     }

     .ak-rated-users-container {
         max-width: 100vw;
     }

     .ak-rated-user {
         width: var(--ratedUserWidth);
     }
 }

 @keyframes movePosition {
     0% {
         --pos: 3%
     }

     100% {
         --pos: 100%
     }
 }