
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: #f1f1f1;
}

.container {
    max-width: var(--container-width);
    width: 100%;
}

a {
    color: var(--color-body);
    text-decoration: none;
}

.btn {
    color: var(--color-white);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    display: inline-block;
    background-color: var(--color-primary);
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: none;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
    padding: 15px 35px;
    cursor: pointer;
}

.btn::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--color-secondary);
    visibility: hidden;
    transition: all 0.5s ease;
    border-radius: 5px;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
    visibility: visible;
    background-color: var(--hover-color);
}

.btn,
input {
    overflow: visible;
}

.btn-white {
    background-color: transparent;
    border: 2px solid var(--color-white);
}

.btn-white:hover {
    background-color: var(--color-white);
    border: 2px solid transparent;
    color: var(--hover-color)
}

.btn-white::before {
    background: var(--color-white);
}

.blog-blog {
    background: var(--color-primary-10);
    color: var(--color-secondary);
    z-index: 0;
}

.blog-blog:hover {
    color: var(--color-white);
}

.blog-blog::before {
    background: var(--color-primary);
}

ul {
    list-style-type: none;
}

img {
    max-width: 100%;
}

section {
    display: flex;
    justify-content: center;
}

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


/* animation */

/* ----- KEYFRAMES----- */

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}


/* Rotate Me */

@keyframes rotate-me {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg)
    }
}

@keyframes float-x {
    0% {
        transform: translateX(-20px)
    }
    50% {
        transform: translateX(-10px)
    }
    100% {
        transform: translateX(-20px)
    }
}

@keyframes float-y {
    0% {
        transform: translateY(-20px)
    }
    50% {
        transform: translateY(-10px)
    }
    100% {
        transform: translateY(-20px)
    }
}

@keyframes zoom-fade {
    0% {
        transform: scale(0.9)
    }
    50% {
        transform: scale(1.01)
    }
    100% {
        transform: scale(0.9)
    }
}

@keyframes sticky {
    0% {
        top: -200px;
    }
    100% {
        top: 0;
    }
}


.animate-rotate-me {
    animation-name: rotate-me;
    animation-duration: 24s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.animate-float-x {
    animation-name: float-x;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.animate-float-y {
    animation-name: float-y;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.animate-fade {
    animation-name: zoom-fade;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.wow {
    visibility: hidden;
}


/* ----- GLOBAL RESET ----- */

body {
font-size: 16px;
/* color: var(--color-body); */
font-weight: normal;
font-family: var(--font-nunito);
overflow-x: hidden;
}


/* ----- FONTS ----- */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700&family=Quicksand:wght@300;400;500;600;700&display=swap');

/* ----- GLOBAL VARRIABLES ----- */

:root {
    --container-width: 1200px;
    --color-certificate: #f6b103;
    --color-certificate-hover: #ffc83e;
    --color-primary: #f6b103;
    --hover-color: #ffc83e;
    --color-secondary: #f6b103;
    --color-tertiary: #6ef1b2;
    --color-body: #5c6185;
    --color-white: #fff;
    --color-black: #000000;
    --color-off-white: #f6f9fb;
    --color-primary-7: rgba(38, 103, 255, 0.07);
    --color-primary-10: rgba(38, 103, 255, 0.1);
    --color-secondary-10: rgba(11, 20, 96, 0.1);
    --color-white-10: rgba(255, 255, 255, 0.1);
    --color-white-60: rgba(255, 255, 255, 0.6);
    --color-white-70: rgba(255, 255, 255, 0.7);
    --color-dark: #151516;
    --color-deep-dark: #0b0b0b;
    --font-nunito: 'Nunito', sans-serif;
    --font-quicksand: 'Quicksand', sans-serif;
}


/* table */
.table{
	width: 80%;
    margin: 0 auto;
    border-collapse: collapse;
}

.table td,.table th{
  padding:12px 15px;
  border:1px solid #ddd;
  text-align: center;
  font-size:16px;
  font-family: var(--font-quicksand);
}

.table td:last-child {
    background-color: var(--color-certificate);
    color: white;
}

.table th{
	background-color: var(--color-certificate);
	color:#ffffff;
}

.table tbody tr:nth-child(even){
	background-color: #f5f5f5;
}

/*responsive*/

@media(max-width: 500px){
	.table thead{
		display: none;
	}

	.table, .table tbody, .table tr, .table td{
		display: block;
		width: 100%;
	}
	.table tr{
		margin-bottom:15px;
	}
	.table td{
		text-align: right;
		padding-left: 50%;
		text-align: right;
		position: relative;
	}
	.table td::before{
		content: attr(data-label);
		position: absolute;
		left:0;
		width: 50%;
		padding-left:15px;
		font-size:15px;
		font-weight: bold;
		text-align: left;
	}
}

/* ----- FOOTER SECTION ----- */

.footer {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1rem;
    background-color: white;
    text-align: center;
    z-index: 999;
    margin-top: 50px;
  }
  
  .footer .share a {
      color: var(--color-primary);
  }
  
  .foooter .share a:hover {
      color: var(--hover-color);
  }

/* nav */
/* ----- HEADER SECTION ----- */

header {
    display: flex;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

header .logo {
    margin-right: 140px;
}

header .header {
    display: flex;
    align-items: center;
    width: 80%;
    justify-content: center;
    z-index: 9999;
}

header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: sticky 1.2s;
    box-shadow: 0 8px 20px rgb(55 125 255 / 8%);
    background: var(--color-white);
    z-index: 9999;
    background-color: #ffffff;
}

.nav-menu ul {
    margin-right: 85px;
}

.nav-menu ul li {
    border-radius: 8px;
    height: 45px;
    display: inline-block;
    background-color: #f6b103;
}

.nav-menu ul li a {
    display: inline-block;
    font-size: 18px;
    color: white;
    font-weight: 700;
    line-height: 1.4;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.nav-menu ul li.active a,
.nav-menu ul li a:hover {
    color: #fff6df;
}

.mobile-menu-panel {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    display: flex;
    justify-content: flex-end;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.mobile-menu-panel.show-panel {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-panel .mobile-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 998;
    cursor: pointer;
    background: var(--color-secondary);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.mobile-menu-panel.show-panel .mobile-overlay {
    opacity: 0.2;
    visibility: visible;
}

.mobile-menu-panel .side-panel {
    position: relative;
    z-index: 999;
    background: var(--color-white);
    width: 380px;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: visible;
    padding: 40px 30px;
    opacity: 0;
    visibility: hidden;
    margin-right: -380px;
    transition: all 0.4s ease;
}

.mobile-menu-panel.show-panel .side-panel {
    opacity: 1;
    visibility: visible;
    margin-right: -0;
    z-index: 99999;
}

.mobile-menu-panel .menu-area ul li a {
    display: block;
    padding: 15px 45px 15px 0;
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 15px;
    font-family: var(--font-nunito);
    border-bottom: 1px solid var(--color-primary-10);
    transition: all 0.4s;
}

.mobile-menu-panel .menu-area ul li a:hover {
    color: var(--color-primary);
}

.mobile-menu-panel .menu-area ul li.active a {
    color: var(--color-primary);
    background-color: white;
}

.mobile-menu-panel .side-panel button#hide-panel {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 28px;
    color: var(--color-secondary);
    background: none;
    border: none;
    cursor: pointer;
}

.toggle-bar button#menu-toggle {
    font-size: 45px;
    color: var(--color-secondary);
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 999;
    display: none;
}

/* .topimg {
    width: 80px;
    margin: 0 auto;
    display: flex;
    background-color: var(--color-primary);
    border-radius: 8%;
    padding: 3px;
    transition: all 0.3s ease;
}

.topimg:hover {
    transform: scale(1.06);
}

nav {
    padding: 4px;
    background-color: white;
    position: sticky;
    top: 0;
    border: var(--color-primary) solid 1px;
    z-index: 9999;
} */

/* main */

img{
    max-width: 100%;
}
.main-wrapper{
    margin-top: 50px;
    /* background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)), url(assets/bg-img.jpg) center/cover no-repeat; */
    color: #fff;
}
.showcase-container{
    width: 90vw;
    margin: 0 auto;
}
.brand-name{
    display: flex;
    align-items: center;
    padding: 30px 0;
}
.brand-name span:first-child{
    font-size: 36px;
    padding-right: 10px;
}
.brand-name span:last-child{
    font-weight: 700;
    font-size: 26px;
}





@keyframes moveImg{
    0%{transform: translate(-40%, -50%);}
    50%{transform: translate(-50%, -50%);}
    100%{transform: translate(-40%, -50%);}
}


@media screen and (min-width: 992px){
    .main-wrapper{
        height: 100vh;
    }
    .showcase-container{
        width: 84vw;
    }
    .main-content{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
        align-items: center;
        padding: 0;
        height: calc(100vh - 114px);
    }
    .content-left h1{
        font-size: 48px;
    }
    .store-icons img{
        margin: 0;
    }
    .store-icons{
        display: flex;
    }
    .content_right img{
        width: 100%;
        min-width: 40%;
    }
}


@media screen and (max-width: 508px){
.store-icons a{
    margin: 5px 0px;
}
}

@media screen and (max-width: 524px){
    .heroTextContainer h1 {
        font-size: 44px;
    }

}

@media screen and (max-width: 1848px){
    .btn-hero:last-child {
        margin-top: 5px;
    }
}

@media screen and (max-width: 1070px){
    .btn-hero:nth-child(2) {
        margin-top: 5px;
    }
}

/* certificate */
.certificate-container {
    background-color: var(--color-certificate);
    margin: 0 auto;
    border-radius: 20px;
    width: 50%;
    height: 80  0px;
    width: 550px;
    padding: 15px;
}

.certificate-container img {
    display: block;
    width: 100%;
    margin: 0 auto;
    border-radius: 20px;
}

@media screen and (max-width: 548px) {
    .certificate-container {
        width: 100%;
    }
}

@media screen and (max-width: 498px) {
    .content_right i {
        font-size: 300px;
    }
}

@media screen and (max-width: 412px) {
    .content_right i {
        font-size: 200px;
        position: relative;
        top: 150px;
    }
}



/* ----- PROJECTS SECTION ----- */

.projects .section-title {
    text-align: center;
}

.projects .portfolio .filter {
    text-align: center;
    margin-top: 50px;
}

.projects .portfolio .filter ul li {
    display: inline-block;
    font-family: var(--font-quicksand);
    font-weight: 700;
    font-size: 17px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid transparent;
    color: var(--color-secondary);
    margin: 3px;
    border-radius: 5px;
    cursor: pointer;
}

.projects .portfolio .filter ul li.active {
    background: var(--color-white);
    border-color: var(--color-secondary);
}

.projects .portfolio .items-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-top: 65px;
}

.projects .portfolio .items-wrapper .single-items {
    flex-basis: calc(33% - 120px);
    margin: 0 15px;
    position: relative;
    z-index: 1;
}

.projects .portfolio .items-wrapper .single-items .img-box {
    position: relative;
    z-index: 1;
}

.projects .portfolio .items-wrapper .single-items .img-box .portfolio-details {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-certificate-hover);
    z-index: 2;
    opacity: 0;
    transition: all 0.4s ease;
}

.projects .portfolio .items-wrapper .single-items .img-box .portfolio-details::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 80px;
    height: 2px;
    background-color: var(--color-white);
    transform: translate(-50%, -50%) scale(0.6);
    transition: all 0.4s ease;
}

.projects .portfolio .items-wrapper .single-items .img-box .portfolio-details::after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 2px;
    height: 80px;
    background-color: var(--color-white);
    transform: translate(-50%, -50%) scale(0.6);
    transition: all 0.4s ease;
}

.projects .portfolio .items-wrapper .single-items:hover .img-box .portfolio-details {
    opacity: 0.75;
}

.projects .portfolio .items-wrapper .single-items:hover .img-box .portfolio-details::before {
    transform: translate(-50%, -50%) scale(1);
}

.projects .portfolio .items-wrapper .single-items:hover .img-box .portfolio-details::after {
    transform: translate(-50%, -50%) scale(1);
}

.projects .portfolio .items-wrapper .single-items .bottom-contents {
    text-align: center;
}

.projects .portfolio .items-wrapper .single-items .bottom-contents {
    margin-top: 30px;
    margin-bottom: 50px;
}

.projects .portfolio .items-wrapper .single-items .bottom-contents h4 {
    font-weight: 24px;
    margin-bottom: 5px;
}

.projects .portfolio .items-wrapper .single-items .bottom-contents p {
    font-weight: 200;
    line-height: 1.4;
}


/* cards */
.container-cards {
    width: 100%;
    margin: 90px auto;
  }
  .heading {
    text-align: center;
    font-size: 20px;
    margin-bottom: 50px;
    font-family: var(--font-quicksand);
  }
  
  .row {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-flow: wrap;
}
  
  .card {
    width: 20%;
    background: #fff;
    border: 1px solid #ccc;
    margin-bottom: 50px;
    transition: 0.3s;
    margin-inline: 0.1mm;
  }
  
  .card-header {
    text-align: center;
    padding: 10px 10px;
    /* background: linear-gradient(to right, var(--color-primary), var(--hover-color)); */
    background: var(--color-certificate);
    color: #fff;
  }
  
  .card-body {
    padding: 10px 10px;
    text-align: center;
    font-size: 18px;
    justify-content: space-between;
    flex-direction: column;
    display: flex;
  }
  
  .card-body .btn {
    color: #fff;
    text-align: center;
    background: linear-gradient(to right, var(--color-primary), var(--hover-color));
    /* background: var(--color-certificate); */
    margin-top: 30px;
    text-decoration: none;
    padding: 10px 5px;
    justify-content: center;
    flex-direction: column;
    justify-content: flex-end;
    display: flex;
  }

  
  .card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px -10px rgba(0, 0, 0, 0.25);
  }
  
  @media screen and (max-width: 1000px) {
    .card {
      width: 40%;
    }
  }
  
  @media screen and (max-width: 620px) {
    .container-cards {
      width: 100%;
    }
  
    .heading {
      padding: 20px;
      font-size: 20px;
    }
  
    .card {
      width: 80%;
    }
  }
  
/* to top */
#myBtn {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: var(--color-primary);
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
  transition: 0.3s ease-in-out;
}

#myBtn:hover {
  background-color: var(--hover-color);
}

/* 386px */
@media screen and (max-width: 386px) {
    #myBtn {
        bottom: 130px;

    }
}

/* fontawesome */
.fa-certificate {
  font-weight: 700;
font-size: 350px;
margin: 0 auto;
display: flex;
justify-content: center;
margin-top: 100px;
transition: all 0.9s ease;
color: var(--color-white);
width: 100%;
}

.fa-certificate:hover {
  transform: rotateY(360deg);
}


/* english */
.english-container {
    margin: 0 auto;
    text-align: center;
    max-width: 100%;
    width: 100%;
    background-color: var(--color-certificate);
    margin-bottom: 70px;
    padding: 8px;
}

.english-container h4 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 30px;
    padding: 10px;
}

/*HERO SECTION*/
.heroSection{
    height: 100vh;
    width: 100%;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    position: relative;
}

.backgroundVideo{
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5;
    min-width: 100%;
    min-height: 100%;
}

.leftSide{
    width: 80%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.heroTextContainer{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    font-family: var(--font-quicksand);
    width: 100%;
    background-color: var(--color-certificate);
    border-radius: 20px;
    white-space: normal;
    overflow: hidden;
    height: 500px;
    padding: 10px
}

.mainTextHero{
    font-size: 70px;
    font-weight: 900;
    color: white;
    margin-bottom: 0;
    padding: 10px;
}

.secondTextHero{
    font-size: 24px;
    font-weight: 900;
    color: white;
    margin-top: 0;
    text-transform: none;
    margin-bottom: 1rem;
}

.buttonHero{
    color: white;
    background-color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
    padding: 15px 25px;
    border-radius: 25px;
    transition: all 0.5s;

}

.buttonHero:hover{
    background-color: var(--hover-color);
}

.logologo{
    /* width: 344px; */
    height: 384px;
    margin-bottom: 100px;
    margin-top: -90px;
    max-width: 100%;
    animation: animate 5s linear infinite;
}

.btn-white1 {
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    display: inline-block;
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: none;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
    padding: 15px 35px;
    cursor: pointer;
    background-color: white;
}

.btn-white1::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: white;
    visibility: hidden;
    transition: all 0.5s ease;
    border-radius: 5px;
    z-index: -1;
}

.btn-hero:hover::before {
    width: 100%;
    visibility: visible;
    background-color: white;
}


.btn-hero {
    color: white;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    display: inline-block;
    background-color: white;
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: none;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
    padding: 15px 35px;
    cursor: pointer;
    background-color: var(--color-primary);
}

.btn-hero::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--hover-color);
    visibility: hidden;
    transition: all 0.5s ease;
    border-radius: 5px;
    z-index: -1;
}

.btn-hero:hover::before {
    width: 100%;
    visibility: visible;
    background-color: var(--hover-color);
}

.btn-hero,
input {
    overflow: visible;
}

.btn-container {
    padding: 10px; 
    background-color: white; 
    border-radius: 20px; 
    width: 40%;
}

/* small panel */
@media screen and (max-width: 1200px) {
    .mobile-menu-panel.show-panel .side-panel {
        width: 75vw;
        margin-right: 0;
    }    
}

@media screen and (max-width: 1144px) {
    .btn-container {
        width: 80%;
    }

}

@media screen and (max-width: 586px) {
    .btn-container {
        width: 90%;
    }

}

@media screen and (max-width: 524px) {
    .btn-container {
        width: 100%;
    }

@media screen and (max-width: 486px) {
    .btn-container {
        width: 100%;
    }

}

    /*  */
@media screen and (max-width: 484px) {
    .btn-container {
        width: 80%;
    }
}

@media screen and (max-width: 336px) {
    .btn-container {
        width: 90%;
    }
}

@media screen and (max-height: 672px) {
    .heroTextContainer {
        height: 70%;
    }
    .btn-container {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 539px) {

    .heroTextContainer .mainTextHero {
        font-size: 30px;
    }
    .heroTextContainer .secondTextHero {
        font-size: 15px;
    }

}

@media screen and (max-width: 419px) {

    .heroTextContainer .mainTextHero {
        font-size: 30px;
    }

}


@media screen and (max-width: 347px) {

.btn-container {
    width: 100%;
}

}
