
.nav {
    width: 100%;
    height: auto;
    position: fixed;
    -webkit-transition: all 0.4s ease;
    line-height: 55px;
    text-align: center;
    z-index: 3048;
    transition: all ease-in-out 0.2s;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
}

.nav div.logo {
    float: left;
    width: auto;
    height: auto;
    padding-left: 1rem;
}

.nav div.logo a {
    text-decoration: none;
    color: var(--pure-white);
    font-size: 1rem;
}

.nav div.logo a:hover {
    color: var(--main-color);
}

.nav div.main_list {
    width: 100%;
    height: 0;
    overflow: hidden;
    overflow-y: auto;
    transition: all ease-in-out 0.3s;
}

.nav.show_list {
    height: 100vh;
    background-color: var(--main-bg);
    transition: all ease-in-out 0.3s;
}

.nav.show_list > div.main_list {
    height: 100vh;
    transition: all ease-in-out 0.3s;
}

.nav.show_list > div.main_list {
    height: 100vh;
    transition: all ease-in-out 0.3s;
}

.nav div.main_list ul {
    flex-direction: column;
    width: 100%;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: var(--main-bg);
    /*same background color of navbar*/
    background-position: center top;
    transition: all ease-in-out 0.3s;
}

.nav div.main_list ul li {
    margin-top: 10px;
    width: 100%;
    text-align: left;
    padding: 0;
    padding-right: 3rem;
}

.nav div.main_list ul li a {
    text-align: left;
    width: 100%;
    font-size: 20px;
    padding: 20px;
    text-decoration: none;
    color: var(--main-dark);
    transition: all linear 0.2s;
    letter-spacing: 3px;
}

.nav div.main_list ul li a:hover {
    color: var(--pure-white);
}

.navTrigger {
    display: block;
}



/* Media qurey section */

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .container {
        margin: 0;
    }
}

@media screen and (max-width:768px) {
    .navTrigger {
        display: block;
    }
    .nav div.logo {
        margin-left: 15px;
    }
    .nav div.main_list {
        width: 100%;
        height: 0;
        overflow: hidden;
    }
    .nav div.show_list {
        height: auto;
    }
}


.navTrigger {
    cursor: pointer;
    width: 30px;
    height: 25px;
    /* margin: auto; */
    position: absolute;
    right: 30px;
    top: 30px;
    bottom: 0;
}

.navTrigger i {
    border: 0.5px solid var(--main-color);
    background-color: var(--pure-white);
    border-radius: 3px;
    content: '';
    display: block;
    width: 100%;
    height: 6px;
    pointer-events: none;
}

.navTrigger i:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
    margin: 3px 0;
    -webkit-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes inM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes outM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes inT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes outT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes inBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes inBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

.affix {
    padding: 0;
    border-bottom: 1px solid var(--main-dark);
    background-color: var(--main-bg);
    color: var(--main-bg);
}

.nav.affix > .nav div.main_list ul li a {
    color: var(--main-bg);
}

.nav.affix > .nav div.main_list ul li a:hover {
    color: var(--pure-white);
}

.navlink{
    transition: all ease-in-out 0.2s;
}

.myH2 {
	text-align:center;
	font-size: 4rem;
}
.myP {
	text-align: justify;
	padding-left:15%;
	padding-right:15%;
	font-size: 20px;
}
@media all and (max-width:700px){
	.myP {
		padding:2%;
	}
}



.fullpage-menu{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    display: none;
    z-index: 1050;
}
.fullpage-menu-inner{
    display: flex;
    align-items: center;
    height: 100%;
    padding: 100px 60px;
}
.menu-bg{
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.menu-bg span{
    height: 20%;
    width: 100%;
    padding-left: 30px;
    line-height: 1.8;
    background: var(--main-color);
    color:var(--pure-white) !important;
    -webkit-text-stroke: 1.8px var(--main-dark);
    font-size: 120px;
    display: block;
}

.ccknav{
    position: relative;
    z-index: 10;
}

.ccknav ul{
    list-style-type: none;
}
nav li{
    overflow: hidden;
    transition: transform 300ms ease-in-out 0s;
}
.ccknav li + li{
    margin-top: 20px;
}
.ccknav li a{
    font-size: 4rem;
    color: var(--pure-white);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 100;
    letter-spacing: 5px;
    display: inline-block;
    line-height: 1.3;
    transition: all ease-in-out 0.3s;
}


.ccknav li:hover > body #ball{
    width: 150px;
    height: 150px;
    filter: blur(50%);
}

.ccknav li a:hover{
    mix-blend-mode: difference;
    color: var(--main-svgline);
    letter-spacing: 15px;
}

.header-nav-footer{
    position: absolute;
    z-index: 10;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 40px 60px;
}
.social-links{
    list-style-type: none;
    display: flex;
    align-items: center;
    width: 100%;
}
.social-links li{
    font-size: 18px;
    font-weight: 500;
}
.social-links li + li{
    margin-left: 16px;
}
.social-links li:last-child{
    margin-left: auto;
}
.social-links a{
    color: #ffffff;
    text-decoration: none;
}

.cck-my{
    position: absolute;
    top: 0;
    right: 0;
    width: 40vw;
    height: 100%;
    background-attachment: fixed;
    background: url("../images/cckmain2.jpg");
   /* The image used */
    background-position: center;
   /* Center the image */
    background-repeat: no-repeat;
   /* Do not repeat the image */
    background-size: cover;
   /* Resize the background image to cover the entire container */
  }

@media screen and (max-width:767px) {
    .header-row, .header-nav-footer{
        padding: 30px;
    }
    .fullpage-menu-inner{
        padding: 70px 30px;
    }
    .ccknav li a{
        font-size: 54px;
    }
    .social-links li{
        font-size: 16px;
    }

    .cck-my{
        display: none;
    }

    .ccknav li a{
        font-size: 2rem;
    }

    .social-links li{
        font-size: 12px;
        font-weight: 500;
    }
}