/*===========================================================
 Custom Variable
============================================================*/
:root {
    /* Hamber menu icon style */
    --hamWidth: 40px;
    --hamHeight: 4px;
    --hamMargin: 6px;
    /* summation of --hamMargin adn --hamHeight */
    --hamTranslate: 10px;
    /* summation of --hamMargin adn --hamHeight */
    --hamTranslate3: -10px;
    --hamBg: #e40422;
    /*  */
    --header-height: 0;
    /*  */
    --white: #fff;
    --black: #000;
    --yellow: #ffce00;
	--red: #e40422;

    --xs: 14px;
    --sm: 16px;
    --sm2: 18px;
    --md: 20px;
    --md2: 24px;
    --md3: 28px;
    --lg: 30px;
    --lg2: 34px;
    --lg40: 35px;
    --lg3: 46px;
    --xl: 60px;
    --xxl: 75px;

    /* padding */
    --sectionPaddingTop: 30px;
    --sectionPadding: 50px;
}

/*===========================================================
 Common CSS
============================================================*/

body {
    font-family: "Poppins", sans-serif;
    font-size: var(--sm);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: normal;
    overflow-x: hidden !important;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
ul {
    padding: 0;
    margin: 0;
}

li,
li:hover,
a:hover,
.btn,
.btn:hover {
    transition: all 0.3s ease;
}

a {
    text-decoration: underline !important;
}

a:hover {
    text-decoration: underline !important;
	color: var(--red);
}

.connection-card a {
    text-decoration: none !important;
}

.connection-card a:hover {
    text-decoration: underline !important;
}

.header-area a {
    text-decoration: none !important;
}

*:active,
*:focus {
    outline: none;
    border: 0;
}

img {
    max-width: 100%;
    height: auto;
}

img[src$='.svg'] {
	width: 100%;
}

strong {
    font-weight: 700;
}

u {
    border-bottom: 1px solid var(--white);
    line-height: 1;
    text-decoration: unset;
}

.cboth {
    overflow: hidden;
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

button {
    background-color: transparent;
    border: 0;
}

button:active,
button:focus {
    outline: 0;
    outline: 0;
}

.row {
    --gutter-x: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: calc(var(--gutter-x) * -0.5);
    margin-left: calc(var(--gutter-x) * -0.5);
}

.row > * {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--gutter-x) * 0.5);
    padding-left: calc(var(--gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

.col {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
}
.col-6 {
    flex: 0 0 auto;
    width: 50%;
}
.col-12 {
    flex: 0 0 auto;
    width: 100%;
}
.container {
    width: 100%;
    padding-right: calc(var(--gutter-x) * 0.5);
    padding-left: calc(var(--gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
    max-width: 1320px;
    padding: 0 10px;
}

/*===========================================================
 Placeholder Style
============================================================*/

::-webkit-input-placeholder {
    color: var(--black);
    font-size: var(--xs);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-moz-placeholder {
    color: var(--black);
    font-size: var(--xs);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

::-moz-placeholder {
    color: var(--black);
    font-size: var(--xs);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

:-ms-input-placeholder {
    color: var(--black);
    font-size: var(--xs);
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.39px;
}

/*===========================================================
 Scroll To Top
============================================================*/

.go-top {
    bottom: 15px;
    display: none;
    position: fixed;
    right: 15px;
    z-index: 999;
}

.go-top img {
    width: 35px;
    background: var(--white);
    border-radius: 50%;
    border: 1px solid var(--white);
}

.go-top span {
    /*background-color: #4285F4;*/
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    float: right;
    font-size: var(--sm);
    font-weight: 400;
    line-height: 22px;
    padding: 5px 10px;
}

.go-top span:hover {
    color: var(--white);
}

/*===========================================================
Loader
===========================================================*/

.preloader {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--white);
    z-index: 99999999;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 2px solid #f3f3f3;
    border-top: 3px solid #58b8cb;
    border-radius: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-animation: 1s infinite spin;
    animation: 1s infinite spin;
}

@-webkit-keyframes spin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

#loading-msg {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 25px;
    text-align: center;
    color: #333;
    font-size: 0.8em;
}

/*===========================================================
 Navigation Menu Desktop
============================================================*/
.header-area {
    padding-top: 20px;
    padding-bottom: 20px;
}

.header {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.menu-left {
}
.menu-left span {
    font-size: var(--md2);
    font-weight: 600;
    line-height: 1;
    color: var(--yellow);
}
.menu-left a {
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.menu ul {
    margin: 0;
}
.menu ul li {
    list-style: none;
    display: inline-block;
    margin: 0 !important;
}

.menu ul li a {
    font-size: var(--sm);
    font-weight: 500;
    line-height: 1.5;
    color: var(--black);
    text-decoration: none;
}

.menu ul li a:hover {
    color: #e40422;
}
.menu-list {
    display: flex;
    gap: 30px;
}
.contact {
    font-size: var(--sm);
    font-weight: 600;
    line-height: 1.5;
    color: var(--black) !important;
    width: 110px;
    height: 42px;
    padding: 10px 17px;
    background-color: var(--yellow);
    border: 2px solid transparent;
}
.contact:hover {
    border: 2px solid var(--yellow);
    background: var(--white);
}
.dropdown-menu {
    margin: 0 !important;
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 160px;
    padding: 0;
    margin: 0;
    font-size: var(--sm);
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 10px;
}
.header-area {
}
.header-right {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}

.header-right > .menu > ul > li > a {
  text-transform: uppercase;
}

.header-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.header-top p {
    margin: 0;
}
.header-top select {
    border: 0;
    font-size: var(--sm);
    font-weight: normal;
    color: #00101f;
    cursor: pointer;
}

.header-top ul {
  list-style: none;
  margin-bottom: 0;
}

.header-top ul li:not(:last-child) {
  margin-right: 15px !important;
}

.search_form {
    position: relative;
    width: 227px;
}
.search_form input {
    width: 100%;
    height: 42px;
    border: solid 1px var(--black);
    font-size: var(--sm);
    line-height: 1.5;
    color: var(--black);
    padding: 0 20px;
    padding-right: 40px;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}
.search_form i {
    position: absolute;
    color: var(--black);
    font-size: var(--sm);
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.lang-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}
/*===========================================================
 Navigation Menu slideout
============================================================*/
main .mobileMenuOpener {
    display: none;
}

.panel-header {
    display: none;
}

.slideout-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 256px;
    min-height: 100vh;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    z-index: 0;
    display: none;
}

.slideout-menu-left {
    left: 0;
}

.slideout-menu-right {
    right: 0;
}

.slideout-panel {
    position: relative;
    z-index: 1;
    background-color: var(--white);
    min-height: 100vh;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
    overflow: hidden;
}

.slideout-open .slideout-menu {
    display: block;
}

#menu {
    background: var(--black);
    padding: 100px 0;
}

.btn-hamburger {
    cursor: pointer;
}

.menu-section-list {
    padding: 25px 10px;
}

.menu-section-list li a:hover {
    color: #bdc3c7;
}

.menu-section-list li a {
    line-height: 2;
    color: var(--white);
}

.menu-section-list li {
    display: block;
}

.btn-hamburger img {
    width: 27px;
}

/*Hamburger Menu Icon*/
/* .hamburger .line {
    width: 40px;
    height: 5px;
    background-color: #34495e;
    display: block;
    margin: 8px auto;
    transition: all 0.3s ease-in-out;
} */

.hamburger:hover {
    cursor: pointer;
}

.hamburger:hover .line {
    opacity: 0.8;
}

.slideout-open .line:nth-child(2) {
    opacity: 0;
}

.slideout-open .line:nth-child(1) {
    transform: translateY(13px) rotate(45deg);
}

.slideout-open .line:nth-child(3) {
    transform: translateY(-13px) rotate(-45deg);
}

/*===========================================================
 Hamberger
===========================================================*/

.hamburger .line {
    width: var(--hamWidth);
    height: var(--hamHeight);
    background-color: var(--hamBg);
    display: block;
    margin: var(--hamMargin) auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

/* ONE */

.slideout-open .line:nth-child(2) {
    opacity: 0;
}

.slideout-open .line:nth-child(1) {
    -webkit-transform: translateY(var(--hamTranslate)) rotate(45deg);
    -ms-transform: translateY(var(--hamTranslate)) rotate(45deg);
    -o-transform: translateY(var(--hamTranslate)) rotate(45deg);
    transform: translateY(var(--hamTranslate)) rotate(45deg);
}

.slideout-open .line:nth-child(3) {
    -webkit-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    -ms-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    -o-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    transform: translateY(var(--hamTranslate3)) rotate(-45deg);
}

.menu ul li .dropdown-menu li {
    display: block;
    position: relative;
}

.menu ul li .dropdown-menu li a {
    padding: 8px 15px;
    line-height: 1.2;
    display: block;
}

.dropdown-menu {
    margin: 0;
    border: 0;
    border-radius: 0;
}

.dropdown a {
    position: relative;
}

.dropdown > a:hover::after {
    color: var(--black);
}

.dropdown > a::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}
/*===========================================================
Common Css
===========================================================*/
.experiences-area,
.contact-area,
.talent-scouting-area,
.set-goals-area,
.project-area {
    padding: 150px 0;
}
/*===========================================================
Banner Area
===========================================================*/
.banner-area {
    width: 100%;
    min-height: 750px;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: flex-end;

    position: relative;

	  overflow: hidden;
}

.banner-area img {
  object-fit: cover;
}
/*===========================================================
Set Goals Area
===========================================================*/
.set-goals-area {
}
.set-goals-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}
.set-goals-inner div {
    width: calc(50% - 8px);
}
.set-goals-img img {
    width: 100%;
}
/*===========================================================
Project Area
===========================================================*/
.project-area {
    background-color: #e6e6e6;
}
.project-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.project-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.project-card {
    display: block;
    width: 100%;
    position: relative;

    margin-bottom: 35px;
}

.loop .project-card {
    max-width: calc(33% - 6px);
}

.project-img img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}
.project-text {
    width: 336px;
    padding: 23px 34px 19px 20px;
    background-color: var(--white);
    bottom: 40px;
    position: absolute;
}
.bttn {
    width: 133px;
    line-height: 42px;
    background-color: #e40422;
    font-size: var(--sm);
    font-weight: bold;
    color: var(--white);
    display: inline-block;
    text-align: center;
    text-decoration: none;
    margin: 0;
    border: 1px solid transparent;
}
.bttn:hover {
    border: 1px solid #e40422;
    background: #fff;
    color: #e40422;
}
.project-title h3 {
    margin: 0;
}

/*===========================================================
Counter Area
===========================================================*/
.counter-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 965px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.counter-card {
  margin-bottom: 35px;
}

.counter-single {
    display: flex;
    align-items: center;
    color: #002e5a;
    font-size: var(--xxl) !important;
    margin-top: 0;
    font-weight: 300;
}

.counter-single span {
    font-size: var(--xl);
    font-weight: bold;
    line-height: 1.13;
    text-align: center;
    color: #e40422;
}

.u-text--mono {
    line-height: 1;
}

.counter-text p {
    font-size: var(--sm2);
    font-weight: normal;
    line-height: 1.44;
    text-align: center;
    color: var(--black);
    text-transform: uppercase;
}

.counter-icon {
    text-align: center;
}

.counter-single {
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 7px;
}

/*===========================================================
Contact
===========================================================*/
.contact-area {
}
.contact-inner {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    flex-wrap: wrap;
}
.contact-left {
    max-width: calc(100% - 780px);
}
.contact-left-title {
    margin-bottom: 30px;
}

.contact-right {
    max-width: 720px;
    width: 100%;
}
.contact-card {
    position: relative;
    margin-bottom: 25px;
}
.contact-card i {
    color: #e40422;
    font-size: var(--md3);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.contact-card address,
.contact-card p,
.contact-card a,
.contact-card span {
    font-size: var(--sm);
    font-weight: normal;
    line-height: 1.5;
    color: var(--black);
    text-decoration: none;
    font-style: normal;
    padding-left: 50px;
    display: block;
}

/*===========================================================
Video
===========================================================*/
.video-card {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*===========================================================
Experiences Area
===========================================================*/
.experiences-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.experiences-left,
.experiences-right {
    max-width: 50%;
    width: 100%;
}
.experiences-left {
    max-width: 520px;
    width: 100%;
}

.experiences-left p a {
    color: var(--black);
}
.experiences-right div {
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    padding: 20px 30px;
}
.experiences-right div:last-child {
    padding-bottom: 0;
}
.experiences-right div h5 {
    font-size: var(--md);
    font-weight: normal;
    line-height: 1.4;
    color: var(--black);
}
.experiences-right div p {
    font-size: var(--sm);
    font-weight: normal;
    line-height: 1.5;
    color: var(--black);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}
.experiences-right div span {
    color: #e40422;
    font-size: var(--sm);
    font-weight: normal;
    line-height: 1.5;
}
.experiences-right div button {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.experiences-right div i {
    font-size: var(--md2);
    color: #e40422;
}

/*===========================================================
 Client Area
===========================================================*/
.client-area {
    padding: 60px 0;
}
.client-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*===========================================================
 Connection Area
===========================================================*/
.connection-area {
    background-color: #e6e6e6;
    padding: var(--sectionPadding) 0;
}
.connection-inner {
    display: flex;
    justify-content: space-around;
}
.connection-icon {
    margin-bottom: 15px;
}
.connection-icon i {
    font-size: var(--xl);
    color: var(--black);
}
.connection-card {
    text-align: center;
}
.connection-card address,
.connection-card a {
    font-size: var(--sm);
    font-weight: normal;
    line-height: 1.5;
    text-align: center;
    color: var(--black);
    text-decoration: none;
    font-style: normal;
}
.contact-card a:hover,
.connection-card a:hover {
    color: #e40422;
}
/* ========== */
.slick-prev:before,
.slick-next:before {
    color: #000;
}
.slick-prev {
}
.wrap {
    position: relative;
    z-index: 100;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    overflow: hidden;
}

.wrap:after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.item {
    border: 30px solid #fff;
}

.slider {
    position: relative;
    z-index: 200;
    padding: 0 0px;
    width: 100%;
}

.slick-arrow {
    width: 84px;
    height: 52px;

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #fff;
    font-family: monospace;
    font-size: var(--xxl);
    z-index: 300;
    outline: none;
}
.slick-arrow i {
    background: #e40422;
    border: 1px solid #e40422;
    font-size: var(--lg);
    padding: 10px 28px;
}

.slick-arrow:hover i {
    background: #fff;
    color: #e40422;
}

.slick-arrow.slick-prev {
    left: 90px;
}
.slick-arrow.slick-next {
    right: 90px;
}
.slick-prev:before,
.slick-next:before {
    content: "";
}

.item.slick-slide {
    width: 900px;
    transition: transform 0.4s;
    position: relative;
}

.slider .slick-slide:after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 8%;
    left: 0;
    right: 0;
    bottom: 8%;
    background: rgba(0, 0, 0, 0.5);
    transition: transform 0.4s;
}

.item.slick-slide {
    transform: scale(0.7) translate(640px);
}

.item.slick-slide.slick-center + .slick-slide {
    transform: scale(0.8) translate(-250px);
    z-index: 10;
}

.item.slick-slide.slick-center + .slick-slide + .item.slick-slide {
    transform: scale(0.7) translate(-640px);
    z-index: 5;
}

.item.slick-slide.slick-active {
    transform: scale(0.8) translate(250px);
}

.item.slick-slide.slick-center {
    /* margin: 0 -10%; */
    transform: scale(1);
    z-index: 30;
}

.slick-center:after {
    opacity: 0;
}
/*===========================================================
 Footer
===========================================================*/
.footer-area {
    padding: 20px 0;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}
.footer-inner div {
    display: flex;
    align-items: center;
    gap: 35px;
}
.footer-inner div a {
    font-size: var(--xs);
    font-weight: normal;
    line-height: 1.57;
    color: var(--black);
    text-decoration: none;
}
.footer-inner div a:hover {
    color: #e40422;
}
.footer-inner p {
    margin: 0;
}
/*===========================================================
 Player
===========================================================*/
.player-area,
.video-player-container {
    margin-bottom: 35px;
}
.player-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.vol-download {
    display: flex;
    align-items: center;
    gap: 25px;
}
.volume-control {
    position: relative; /* Position relative for the slider to be positioned */
}

.volume-button {
    cursor: pointer;
    padding: 5px 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.volume-button:hover {
    background-color: #0056b3;
}

.volume-slider-container {
    /* display: none; */
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    height: 70px;
}

.volume-control:hover .volume-slider-container {
    display: block;
}

#volumeSlider {
    -webkit-appearance: slider-vertical;
    appearance: slider-vertical;
    writing-mode: bt-lr;
    width: 6px;
    height: 70px;
    color: #00b3ff;
}

#volumeSlider::-webkit-slider-thumb {
    -webkit-appearance: slider-thumb;
    background: #007bff;
    cursor: pointer;
}

#volumeSlider::-moz-range-thumb {
    background: #007bff;
    cursor: pointer;
}

.play-pause i {
    font-size: var(--lg) !important;
}
.play-pause i,
.mute i {
    cursor: pointer;
    color: white;
    border: none;
}

.play-pause:hover,
.mute:hover {
    color: #0056b3;
}
/* Container for the progress bar */
.play-bar {
    width: 100%;
    height: 6px;
    background: #fff;
    position: relative;
    margin-top: 10px;
    position: relative;
}

/* The progress fill */
.progress-fill {
    height: 100%;
    background: #bfcebc;
    width: 0%;
    transition: width 0.2s;

    cursor: pointer;
}

.player-container {
    background: #e40422;
    padding: 70px var(--sectionPadding);
    text-align: center;

    margin-bottom: 35px;
}
.player-filename {
    font-size: var(--lg2);
    font-weight: 500;
    line-height: 1.24;
    text-align: center;
    color: var(--white);
    margin-bottom: 25px;
}
.duration {
    font-size: var(--sm);
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    color: var(--white);
}
.play-desc {
    margin-top: 30px;
    max-width: 760px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.play-desc p {
    font-size: var(--sm);
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    color: var(--white);
    margin: 0;
}
.play-pause,
.mute {
    color: #fff;
}
.download i {
    color: #fff;
}
.download i:hover {
    color: #0056b3;
}
.player-controls i {
    font-size: var(--md2);
}

.play-pause:hover {
    border-color: #0056b3;
}

/*===========================================================
 Responsive Menu
===========================================================*/
@media (min-width: 1400px) {
}

@media (min-width: 992px) {
    .dropdown:hover > a + .dropdown-menu {
        display: block;
    }

    .dropdown-menu .dropdown-menu {
        position: absolute;
        left: 100%;
        top: 0;
    }

    .dropdown .dropdown > a::after {
        transform: rotate(-90deg);
        margin-top: -4px;
    }
}

@media (max-width: 991px) {
    .mobile-logo {
        max-width: 60px;
    }
    #main {
        padding-top: 0;
    }
    .search_form {
        width: 100%;
        padding: 0 10px;
    }
    .menu-section .bttn {
        width: calc(100% - 20px);
        margin-left: auto;
        margin-right: auto;
        margin-top: 15px;
        display: block;
    }
    .header-area {
        display: none;
    }

    .dropdown-menu {
        padding-top: 0;
    }

    .menu ul li .dropdown-menu li {
        padding-left: 10px;
    }

    .menu ul li .dropdown-menu li a {
        padding-left: 0;
        padding-right: 0;
    }

    .dropdown-menu {
        width: 100%;
        background-color: transparent;
        background-clip: padding-box;
        border: none;
        position: unset;
        top: unset;
    }

    main .mobileMenuOpener {
        display: block;
        position: absolute;
        width: 20px;
        height: 100%;
        z-index: 10;
    }

    .menu ul li {
        display: block;
    }

    .menu ul li a {
        color: var(--white);
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        line-height: 2;
    }

    .menu ul li .dropdown-menu li a {
        line-height: 2;
    }

    .dropdown > a::after {
        right: 10px;
        position: absolute;
        top: 50%;
        margin-top: -1px;
    }

    /*Menu Activation*/
    .panel-header {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--white);
        box-shadow: 0px 1px 3px #eee;
        padding: 10px 15px;
    }
}

/*===========================================================
Containers
============================================================*/

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
@media (max-width: 1399px) {
    .contact-right {
        max-width: 56%;
    }
    .contact-left {
        max-width: 44%;
    }
    .header-area {
        padding: 30px 0;
    }
}

@media (max-width: 1199px) {
    .item {
        border: 10px solid #fff;
    }
    .item.slick-slide {
        width: 800px;
    }
    .slick-prev i {
        right: -165px;
    }
    .slick-next i {
        right: 118px;
    }
    .experiences-left {
        max-width: calc(50% - 25px);
        width: 100%;
    }
    .project-text {
        width: 275px;
        padding: 10px;
        bottom: 30px;
        position: absolute;
    }
    .project-text p {
        margin: 0;
    }
    :root {
        /* padding */
        --sectionPadding: 70px;
    }
}
@media (max-width: 991px) {
    :root {
        /* padding */
        --sectionPadding: 50px;
    }
    .experiences-inner,
    .set-goals-inner {
        flex-direction: column;
    }
    .set-goals-inner div {
        width: 100%;
    }
    .contact-left,
    .experiences-right,
    .set-goals-text {
        margin-top: 25px;
    }
    .item.slick-slide {
        width: 500px;
    }
    .counter-single span {
        font-size: 40px;
    }
    .counter-inner {
        gap: 20px 0;
    }
    .slick-next i {
        right: 148px;
    }
    .client-inner {
        gap: 30px;
    }
    .counter-card {
        max-width: 50%;
        width: 100%;
    }
    .experiences-area,
    .contact-area,
    .talent-scouting-area,
    .set-goals-area,
    .project-area {
        padding: var(--sectionPadding) 0;
    }

    .wrap {
      overflow: unset;
    }

    .slick-arrow {
      width: 47px;
      height: 30px;
    }

    .slick-next i,
    .slick-prev i {
        font-size: 18px;
        padding: 5px 15px;
    }
    .contact-left,
    .contact-right,
    .experiences-left,
    .experiences-right {
        max-width: 100%;
        width: 100%;
    }
    .video-card {
        min-height: 550px !important;
    }
    .project-card {
        max-width: calc(50% - 8px);
    }
    .project-inner {
        gap: 10px 0;
    }

    .connection-icon i {
        font-size: 40px;
        color: var(--black);
    }
    .player-container {
        padding: 60px 40px;
    }
    .player-filename {
        font-size: var(--md3);
    }
    .player-controls i {
        font-size: var(--md);
    }
    .play-pause {
        width: 40px;
        height: 40px;
    }
    .vol-download {
        gap: 20px;
    }
    .play-desc {
        margin-top: 20px;
    }
}
@media (max-width: 767px) {
    .banner-area {
        min-height: 550px;
        padding-bottom: var(--sectionPadding);
    }
    .slick-prev i {
        right: -75px;
    }
    .slick-next i {
        right: 60px;
    }
    .item.slick-slide {
        width: 500px;
    }
    .video-card a {
        width: 130px;
    }
    .video-card {
        min-height: 500px !important;
    }
    .project-card {
        max-width: 100%;
    }
    .client-inner {
        flex-direction: column;
    }
    .client-logo a {
        display: flex;
    }
    .connection-inner {
        flex-direction: column;
        gap: 35px 0;
    }
    .player-container {
        padding: 50px 20px;
    }
}

@media (max-width: 575px) {
    .talent-scouting {
        flex-direction: column;
    }
    .talent-scouting div {
        width: 100%;
    }
    .experiences-area,
    .contact-area,
    .talent-scouting-area,
    .set-goals-area,
    .project-area {
        padding: 70px 0;
    }
    .talent-scouting {
        flex-direction: column;
        gap: 15px 0;
    }
    .counter-card {
        max-width: 100%;
        width: 100%;
    }
    .counter-area {
        padding-bottom: 70px;
    }
    .experiences-right div {
        padding: 15px 10px;
    }
    .video-card {
        min-height: 400px !important;
    }
    .connection-area {
        padding: 70px 0;
    }
    .footer-inner {
        flex-direction: column;
        gap: 15px 0;
    }
    .counter-single span {
        font-size: var(--lg2);
    }
    .player-container {
        padding: 40px 15px;
    }
    .player-filename {
        font-size: var(--md2);
    }

    .player-controls i {
        font-size: var(--sm2);
    }
    .vol-download {
        gap: 10px;
    }
}
