<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&amp;display=swap');

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #9f9f9f;
}
    
 a:hover {
    color: #fff;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: 35px;
    color: white;
}

h2 {
    font-size: 25px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

p {
    line-height: 1.6;
    font-size: 16px;
}


body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    color: #9f9f9f;
    background: #0F0F0F;
    
}

@media (min-width: 768px) and (max-width: 991px) {
    p {
        font-size: 16px;
    }

}

@media (max-width: 767px) {
    p {
        font-size: 15px;
    }

    h1 {
        font-size: 20px;
        line-height: 30px;
    }

    h5 {
        font-size: 14px;
    }
}

/*/////////////// loading page animation ///////////////////// */ 

#loading-page {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #0f0f0f;
}


.loading-animation {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInAndMove 1.4s ease-in-out, bounceAndFade 1.4s ease-in-out;
    /* background-image: url('wood_texture.jpg');  */
    background-size: cover;
    
  }

.loading-animation i {
  font-size: 80px;
  color: #FFF; 
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3); 
}

/* @keyframes fadeInAndMove {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
} */

@keyframes bounceAndFade {
    0%, 100% {
      opacity: 0;
      transform: translateY(0);
    }
    25%, 75% {
      opacity: 1;
      transform: translateY(-15px);
    }
    50% {
      opacity: 0.7;
      transform: translateY(-5px);
    }
  }

@keyframes scaleUp {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
  
}


header {
    position: relative;
    width: 100%;
    z-index: 30;
    background: #0F0F0F;
}

.menuSection {
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
}

.menu {
    list-style: none;
    padding: 26px 0;
    display: flex;
    align-items: center;
    gap: 50px;
}

.menu li {
    transition: .3s;
}

.menu li:hover {
    color: #fff;
}

.logo {
    display: flex;
    align-items: center; 
   
}
.logoUppercase {
    width: 130px;
    height: 71px;
}

.logo img {
    width: 130px; 
}
 
.menuButton {
    background: #323232;
    color: #fff;
    display: inline-block;
    transition: .3s;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 30px;
}

.menuButton:hover {
    background: #fff;
    color: #323232;
}

.hamburger {
	position: relative;
	display: block;
	width: 25px;
	cursor: pointer;
	appearance: none;
	background: none;
	outline: none;
	border: none;
}

.hamburger .bar, .hamburger:after, .hamburger:before {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background-color: #FFF;
	margin: 6px 0px;
	/* transition: 0.4s; */
}

.hamburger .bar:focus-visible, .hamburger:after:focus-visible, .hamburger:before:focus-visible {
    outline: none;
}

.hamburger.is-active:before {
	transform: rotate(-45deg) translate(-10px, 6px);
    transition: 0.4s;
}

.hamburger.is-active:after {
	transform: rotate(45deg) translate(-4px, 1px);
    transition: 0.4s;
}

.hamburger.is-active .bar {
	opacity: 0;
}

.mobileMenu {
    position: absolute;
    top: calc(0% - 222px);
    width: 100%;
    background: #0F0F0F;
    transition: 0.7s;
    z-index: 20;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
    gap: 30px;
}


.mobileMenu a {
	display: block;
	text-align: center;
	color:#9f9f9f;
	text-decoration: none;
    margin: 0 auto;
}

.mobileMenu a:hover {
	background-color: #132e1a;
}

.mobileMenu.is-active {
	top: calc(0% + 67px);
}
/*///////////////////// Responsive menu design ///////////////////// */

/* for dekstop */
@media (min-width: 992px) {

    .mobileMenu {
        display: none;
    }
    .hamburger {
        display: none;
    }
}
/* for tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .menu {
        gap: 30px
    }
    .menuSection {
        padding: 20px 20px;
    }
    .menuSection nav {
        display: none;
}   
    .menuButton {
        display: none;
}}

/* for mobile */
@media (max-width: 767px) {
    .menu {
        gap: 30px
    }
    .menuSection {
        padding: 20px 20px;
    }
    .menuSection nav {
        display: none;
}   
    .menuButton {
        display: none;
}
}

/*//////////////////////// body elements /////////////////////// */

.mainSections {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    gap: 24px;
    padding: 24px 12px 0 12px;
}
.shadowBox {
    padding: 30px 30px;
    border-radius: 30px;
    gap: 30px;
    background-color: #0F0F0F;
    position: relative;
    border: 0.1px solid;
    border-color: #dfdede26;
}

.shadowBox::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(120deg, rgba(255,255,255,0.3), rgba(255,255,255,0.05));
    border-radius: 30px;
    opacity: 0.25;
    pointer-events: none;
}
.simpleBox {
    padding: 30px 30px;
    border: none !important;

    

}
.simpleBox::before {
    background: none !important;
    
}

#content {
    margin-top: 100px;
}
.mainHeading {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #e9e9e9;
}

.topicTitle {
    text-align: center;
    color: #e9e9e9;
    font-size: 20px;
}
.headingRook {
    font-size: 25px;
    padding: 0 10px;
    color: #9f9f9f;
   
}

#cookieConsent {
    display: none;
    position: fixed; 
    bottom: 0;
    width: 100%;
    padding: 10px; 
    text-align: center; 
    z-index: 1000; 
    background-image: url(Images/chess-rook-solid.webp);
    background-size: 15px;
    height: 80px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #0F0F0F;
    
}

#cookieConsent p a {
    color: white;
}

#cookieConsent::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* background: linear-gradient(120deg, rgba(255,255,255,0.3), rgba(255,255,255,0.05)); */
    border-radius: 30px;
    opacity: 0.25;
    pointer-events: none;
}

#acceptCookie {
    font-size: 15px;
    padding: 10px 60px;
    border-radius: 16px;
    border: none;
    background-color: rgb(24,88,113);
    color: white;
    margin-left: 20px;
    cursor: pointer;
}
@media (min-width: 768px) and (max-width: 991px) {
    #content {
        margin-top: 60px;
    }
    .mainHeading {
        font-size: 30px;
        }
    .mainSections {
        padding: 24px 25px 0 25px;
    }
    #cookieConsent {
        height: 100px;
        padding: 10px 25px;
        
    }
    #acceptCookie {
        padding: 10px 60px;
    }
   
    
    

}
@media (max-width: 767px) {
    #content {
        margin-bottom: 40px;
        margin-top: 40px;
    }
    .mainSections {
        padding: 0px 12px 0 12px;
        
    }
    .shadowBox {
        padding: 25px 20px;
    }
    .simpleBox {
        padding: 25px 20px;
    }
    .mainHeading {
        padding: 15px 0;
    }
    #cookieConsent {
        height: 150px;
        flex-direction: column;
    }
    #acceptCookie {
        margin-left: 0;
        margin-top: 15px;
        padding: 10px 60px;
    }
    #cookieConsent p {
        font-size: 14px;
    }


}

/*///////////////////// footer //////////////////////*/

footer {
    position: relative;
    width: 100%;
    z-index: 30;
    background: #0F0F0F;
    padding-top: 40px;
    padding-bottom: 78px;
}

.footerSection {
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
}

.footerMenu {
    display: flex;
    margin: 33px 0 37px 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 44px;
    flex-wrap: wrap;
    list-style: none;

}

.footerMenu p {
    margin: 0;
    color: #727272;
    font-size: 14px;
    font-weight: 500;
}

.copyRight {
    font-size: 13px;
}


@media (min-width: 768px) and (max-width: 991px) {
    footer {
        padding-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .footerSection {
        gap: 20px;
    }
    footer {
        padding-bottom: 30px;
        padding-top: 0;
    }
    .footerMenu {
        /* gap: 25px; */
        display: none;
        
    }
    .workTogether h1 span {
     font-size: 25px;
    }

    
}</pre></body></html>