@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


.under img{
    display: block;
    max-width: 80%;
    height: auto;
    margin-top: 50px;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 25px;
    
}
.under{

    margin-top: 50px;
    text-align: center;
 
}



h4{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-decoration: solid;
    color: #029EEE;
}

  nav{
    background-color: rgba(255, 255, 255, 255);
    font-weight: bold;
  }
  nav ul{  
    width: 100%;
    list-style: none;
    display: flex;
    position: absolute;
  }

  nav li{
    height: 40px;  
  }

  nav a{
    height: 100%;
    width: auto;
    padding: 10px 0px 10px 10px;
    text-decoration: none;
    display: flex;
    justify-content: flex-start;
    align-items: center; 
    background-color: rgba(255, 255, 255, 0);   
  }
  nav a:hover{
    background-color: 0;
    color: #0ebbff;

  }
  nav li:first-child{
    margin-right: auto;
  }  

  .logo{ 
     padding-left: 0px;
     margin-top: -7px;
     padding-right: 10px;
     width: 4.5rem;
   }


  .sidebar{
    position: fixed;
    top: 0px; 
    right: 0px; 
    height: 100vh;
    width: 250px;
    z-index: 150;
    background-color: rgba(50, 122, 216, 0.589);
    backdrop-filter: blur(12px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    list-style: none;
    display: none;
    flex-direction: column;
    align-items: flex-start;  
    justify-content: flex-start; 
  }
  .sidebar li{
    width: 100%;
  }
  .sidebar a{
    width: 100%;
  }
  .menu-button{
    display: none;
  }
  @media(max-width: 800px){
    .hideOnMobile{
      display: none;
    }
    .menu-button{
      display: block;
    }
    .logo{
        width: 6rem;
    }
  }
  @media(max-width: 400px){
    .sidebar{
      width: 100%;
    }
    .logo{
        width: 6rem;
    }
  }



body{
    
    margin: 0;
    background-color: #ffffff;
    color: #033a6d;
    font-family: Poppins;
    font-size: 14px;
    min-height: 100vh;

}

a{
    text-decoration: none;  
}
header{
    width: 1140px;
    max-width: 80%;
    margin: auto;
    height: 70px;
    display: flex;
    align-items: baseline;
    position: absolute;
    z-index: 100;
}
header a{
    color: #ffffff;
    text-shadow: 1.5px 1px 1.5px rgba(0,0,0,0.95);
    width: 10vw;
} 


/* carousel */
.carousel{
    height: 100vh;
    margin-top: 0px;
    width: 100vw;
    overflow: hidden;
    position: relative;
}
.carousel .list .item{
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;
}
.carousel .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel .list .item .content{
    position: absolute;
    top: 20%;
    width: 1140px;
    max-width: 80%;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 30%;
    box-sizing: border-box;
    color: #fff;
    text-shadow: 0 5px 10px #0004;
}
.carousel .list .item .author{
    font-size: 1.7em;
    font-weight: bold;
    letter-spacing: 2px;
}
.carousel .list .item .title,
.carousel .list .item .topic{
    font-size: 3em;
    font-weight: bold;
    line-height: 1.3em;
}
.carousel .list .item .topic{
    color: #ffffff;
}
.carousel .list .item .buttons{
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 5px;
    margin-top: 20px;
}
.carousel .list .item .buttons a{
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    color: #000000;
    user-select: none;
}
.carousel .list .item .buttons button{
    border: none;
    background-color: #eee;
    letter-spacing: 3px;
    font-family: Poppins;
    font-weight: 500;
}
.carousel .list .item .buttons button:nth-child(2){
    background-color: transparent;
    border: 1px solid #fff;
    color: #eee;
}
/* thumbail */
.thumbnail{
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: max-content;
    z-index: -1;
    display: flex;
    gap: 20px;
}
.thumbnail .item{
    width: 150px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
}
.thumbnail .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.thumbnail .item .content{
    color: #fff;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}
.thumbnail .item .content .title{
    font-weight: 500;
}
.thumbnail .item .content .description{
    font-weight: 300;
}


/* arrows */
.arrows{
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}
.arrows button{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eee4;
    border: none;
    color: #fff;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
}
.arrows button:hover{
    background-color: #fff;
    color: #000;
}

/* animation */
.carousel .list .item:nth-child(1){
    z-index: 1;
}

/* animation text in first item */

.carousel .list .item:nth-child(1) .content .author,
.carousel .list .item:nth-child(1) .content .title,
.carousel .list .item:nth-child(1) .content .topic,
.carousel .list .item:nth-child(1) .content .des,
.carousel .list .item:nth-child(1) .content .buttons
{
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s 1s linear 1 forwards;
}
@keyframes showContent{
    to{
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}
.carousel .list .item:nth-child(1) .content .title{
    animation-delay: 1.2s!important;
}
.carousel .list .item:nth-child(1) .content .topic{
    animation-delay: 1.4s!important;
}
.carousel .list .item:nth-child(1) .content .des{
    animation-delay: 1.6s!important;
}
.carousel .list .item:nth-child(1) .content .buttons{
    animation-delay: 1.8s!important;
}
/* create animation when next click */
.carousel.next .list .item:nth-child(1) img{
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage .5s linear 1 forwards;
}
@keyframes showImage{
    to{
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.carousel.next .thumbnail .item:nth-last-child(1){
    overflow: hidden;
    animation: showThumbnail .5s linear 1 forwards;
}
.carousel.prev .list .item img{
    z-index: 100;
}
@keyframes showThumbnail{
    from{
        width: 0;
        opacity: 0;
    }
}
.carousel.next .thumbnail{
    animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext{
    from{
        transform: translateX(150px);
    }
}

/* running time */

.carousel .time{
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 3px;
    background-color: #029EEE;
    left: 0;
    top: 0;
}

.carousel.next .time,
.carousel.prev .time{
    animation: runningTime 3s linear 1 forwards;
}
@keyframes runningTime{
    from{ width: 100%}
    to{width: 0}
}


/* prev click */

.carousel.prev .list .item:nth-child(2){
    z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img{
    animation: outFrame 0.5s linear 1 forwards;
    position: absolute;
    bottom: 0;
    left: 0;
}
@keyframes outFrame{
    to{
        width: 150px;
        height: 220px;
        bottom: 50px;
        left: 50%;
        border-radius: 20px;
    }
}

.carousel.prev .thumbnail .item:nth-child(1){
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail .5s linear 1 forwards;
}
.carousel.next .arrows button,
.carousel.prev .arrows button{
    pointer-events: none;
}
.carousel.prev .list .item:nth-child(2) .content .author,
.carousel.prev .list .item:nth-child(2) .content .title,
.carousel.prev .list .item:nth-child(2) .content .topic,
.carousel.prev .list .item:nth-child(2) .content .des,
.carousel.prev .list .item:nth-child(2) .content .buttons
{
    animation: contentOut 1.5s linear 1 forwards!important;
}

@keyframes contentOut{
    to{
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}
@media screen and (max-width: 678px) {
    .carousel .list .item .content{
        padding-right: 0;
    }
    .carousel .list .item .content .title{
        font-size: 30px;
    }
}


/*----------------- part1 ---------------*/

.part1{

width: 80%;
margin: auto;
text-align: center;
padding-top: 30px;

}
h1{
    font-size: 28px;
    font-weight: 400;
}

p{
    color: #383838;
    font-size: 18px;
    font-weight: 300;
    line-height: 27px;
    padding: 10px;
}
.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}
.part1-colom{
    flex-basis: 45%;
    background: #ececec;
    border-radius: 20px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}
h3{
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: #029EEE;
    margin: 10px 0;
}
.part1-colom:hover{
    box-shadow: 0 0 20px 0px rgba(3, 3, 3, 0.3);
}
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}

/*--------------- part2 ------------------*/

.part2{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 0;

}
.part2-colom{
    flex-basis: 32%;
    border: 1px solid #bbbbbb;
    border-radius: 0;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.part2-colom img{
    width: 100%;
    display: block;
    padding-bottom: 0%;
    margin-left: auto;
    margin-right: auto;
}
.layer{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;

}
.layer:hover{
    background: rgba(225, 225, 225, 0.7);
}
.layer h3{
    width: 100%;
    color: #acacac;
    background-color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    transition: 0.5s;
}
.layer:hover h3{
    bottom: 30%;
    opacity: 1;
    color: #000000;
    background-color: rgba(255, 255, 255, 0.7);
}



/* ------------------ part3 ------------------- */

.part3{

    display: grid;
    place-items: center;
    width: 100%;
    min-height: 100vh;
    
} 

.row3{
    width: 90%;
    max-width: 1170px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 50px;
    overflow-x: hidden;
    padding: 1.5rem 0;

}
.row3 .imgwrapper{
    overflow: hidden;
}
.row3 .imgwrapper img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.3s;
}
.row3 .imgwrapper:hover img{
    transform: scale(1.25);
}
.row3 .contentwrapper{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 30px;
}
.row3 .contentwrapper span.textwrapper{
    display: block;
    font-size: 20px;
    text-transform: capitalize;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.row3 .contentwrapper span.textwrapper span{
    display: inline-block;
    background: #029EEE;
    width: 70px;
    height: 5px;

}
.row3 .contentwrapper h2{
    font-size: 26px;
    font-weight: 600;
    color: #24262b;
    padding-bottom: 10px;    
}
.row3 .contentwrapper p{
    font-size: 18px;
    line-height: 25px;
    padding-bottom: 0px;
}
.row3 .contentwrapper a{
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    background: #24262b;
    color: #fff;
    padding: 15px 40px;
    letter-spacing: 1px;
    user-select: none;
}
.row3 .contentwrapper ul{
    list-style: none;
    padding: 0;
    margin: 0;

}
.row3 .contentwrapper ul li{
    font-size: 18px;
}
.row3 .contentwrapper ul li::before{
    content: '>';
    display: inline-block;
    font-size: 28px;
    font-weight: 900;
    color: #029EEE;
    padding: 0;
    padding-right: 10px;
    margin-top: 0;

}

@media(max-width: 991px){
    .row3{
        grid-template-columns: 1fr;
        grid-gap: 50px;
    }
    .row3 .contentwrapper{
        padding-left: 0;
    } 
}

@media(max-width: 768px){
    .row3{
        width: 90%;
    }
    .row3 .contentwrapper h2{
        font-size: 30px;
        padding-bottom: 20px; 
    }
    .row3 .contentwrapper p{
        line-height: 24px;
    }
}
@media(max-width: 575px){
    .row3 .contentwrapper span.textwrapper{
        font-size: 25px;
    }
    .row3 .contentwrapper h2{
        font-size: 26px;
        padding-bottom: 5px; 
    }
    .row3 .contentwrapper p{
        font-size: 15px;
        line-height: 22px;
    }
    .row3 .contentwrapper a{
        font-size: 15px;
        padding: 10px 20px;

    }
}


/* --------------------- top link ---------------*/


.toplink{

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;  
    margin-top: 0.5rem; 
    margin-bottom: 0.5rem;
    margin-right: 1rem;

}
.topbtn.btnt1{
    position: relative;
    color: #ffffff;
    background-color: #033a6d;
    width: 12rem;
    margin-top: 0.5rem;
    margin-left: 0.5rem;    
    padding: 1rem 0;
    border-radius: 0px 20px 0px 20px;
    border: none;
    outline: none;
    font-size: 1rem;
    font-weight: 400;
    box-shadow: 
    0 10px 4px rgba(214, 12, 12, 0.045),
    0 2px 10px rgba(170, 170, 170, 0.865),
    0 5px 0px rgba(207, 207, 207, 0.01),
    0 5px 8px rgba(156, 156, 156, 0.013);
    cursor: default;
    z-index: -1;
}

.topbtn{
    position: relative;
    color: #ffffff;
    background-color: #0d66b9;
    width: 12rem;
    margin-top: 0.5rem;
    margin-left: 0.5rem;    
    padding: 1rem 0;
    border-radius: 0px 20px 0px 20px;
    border: none;
    outline: none;
    font-size: 1rem;
    font-weight: 400;
    box-shadow: 
    0 10px 4px rgba(214, 12, 12, 0.045),
    0 2px 10px rgba(170, 170, 170, 0.865),
    0 5px 0px rgba(207, 207, 207, 0.01),
    0 5px 8px rgba(156, 156, 156, 0.013);
    cursor: pointer;
    z-index: 1;
}

.topbtn:hover{
    color: #001646;
}

.topbtn::before{
    content: '';
    position: absolute;
    border-radius: 0px 20px 0px 20px;
    top: 0;
    bottom: 0;
    left: 50%;
    right: 50%;
    opacity: 0;
    background: #55adff;

}

.topbtn:hover::before{
    transition: all 0.5s ease-in-out;
    left: 0;
    right: 0;
    opacity: 1;
    z-index: -1;

}


@media(max-width: 450px){
    .toplink{
        flex-direction: column;
    }
}

/* ----------------  pragraph  -----------------*/
.werppar img{
width: 100%;
max-width: 500px;
border-radius: 0px 25px 0px 25px;
object-fit: cover;
vertical-align: middle;
}
.werppar {
    padding: 10px 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    gap: 5rem;
}
.intro {
    flex: 1;
}

@media(max-width: 450px){
    .werppar{
        flex-direction: column; 
    }
    .intro{
        padding: 10px 20px;
    }
}

/* ------------------ contact us -------------- */


.cta{
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(image/contact.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    text-align: center;
    padding: 100px 0;
}
.cta h1{
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}

.cta-btn{
  border: none;
  color: #000000;
  padding: 16px 32px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}
.cta-btn:hover{
    
    background-color: #029EEE;
    color: #eee;

}



  

/* -------------- footer ----------------- */


.continer{
    max-width: 1170px;
    margin: auto;
}  

.rowfooter{
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.footer-colom ul{
    list-style: none;
}
.footer{
    background-color: #033a6d;
    padding: 50px; 
    line-height: 1.5;
}

.footer-colom{
    width: 30%;
    padding: 0 10px;
}
.footer-colom h6{
    font-size: 18px;
    font-weight: 300;
    color: #ffffff;
    text-transform: capitalize;
    position: relative;

}
.footer-colom h6::before{
    content: '';
    position: absolute;
    left: 0px;
    bottom: -10px;
    background-color: #029EEE;
    height: 2px;
    box-sizing: border-box;
    width: 55px;
}
.footer-colom ul li:not(:last-child){
    margin-bottom: 10px;
}
.footer-colom ul li a{
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #d6d6d6;
    display: block;
    transition: all 0.3s ease;
}
.footer-colom ul li a:hover{
    color: #6dc9ff;
    padding-left: 10px;
}

.footer-colom .social-links a{
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.5s ease;
}
.footer-colom .social-links a:hover{
    color: #24262b;
    background-color: #ffffff;

}

@media(max-width: 800px){
    .footer-colom{
        width: 50%;
        margin-bottom: 0px;
    }
}
@media(max-width: 600px){
    .footer-colom{
        width: 100%;
        
    }
}

.copywrite{
    text-align: center;
    font-size: 0.8rem;
    color: #383838;
    margin-top: 20px;
}



.iframecontiner{
    position: relative;
    width: 900px;
    height: 900px;
    overflow: hidden;

}
.iframecontent{
    position: absolute;
    top: -50px;
    left: -10px;
    width: 800px;
    height: 900px;
}