/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
@import url("https://db.onlinewebfonts.com/c/5a55b4ee85cb635347d040dfbf1b2039?family=EngraversGothic+BT+W08+Regular");
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 4.5rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(220, 68%, 54%);
  --first-color-lighten: hsl(220, 68%, 97%);
  --title-color: #697498;
  --text-color: hsl(220, 12%, 45%);
  --nav-color: #121d3d;
  --body-color: #FFFFFF;
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "EngraversGothic BT W08 Regular";
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

@font-face {
  font-family: 'Trajan Pro Regular';
  font-style: normal;
  font-weight: normal;
  src: local('Trajan Pro Regular'), url('TrajanPro-Regular.woff') format('woff');
  }
  

  @font-face {
  font-family: 'Trajan Pro Bold';
  font-style: normal;
  font-weight: normal;
  src: local('Trajan Pro Bold'), url('TrajanPro-Bold.woff') format('woff');
  }

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

:root{
    --heading: 'Montserrat', sans-serif;
}

body{
    font-family: 'Raleway', sans-serif;
    background: #fff;
}

/* global styling */

img{
    width: 100%;
}
ul{
    list-style: none;
}

a{
    text-decoration: none;
    color: #000;
}

hr{
    width: 95vw;
    margin: 0 auto;
}

.header{
    position: fixed;
    background: var(--nav-color);
    box-shadow: 0 2px 8px hsla(220, 68%, 12%, 0.1);
    background-color: var(--nav-color);
    padding: 30px 6%;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    align-items: center;
    height: 7.5rem;
    justify-content: space-between;
    z-index: var(--z-fixed);
    font-family: 'EB Garamond';
  }
  
  
  .header .logo{
    font-weight: bolder;
    font-size: 25px;
    color: #333;
  }
  
  .logo img{
    width: 100%;
    height: 100px;
  }
  
  .header .navbar ul{
    list-style: none;
  }
  
  .header .navbar ul li{
    position: relative;
    float: left;
  }
  
  .header .navbar ul li a{
    font-size: 15x;
    padding: 20px;
    color: var(--title-color);
    display: block;
    font-family: var(--body-font);
    text-decoration: none;
  }
  
  .header .navbar ul li a:hover{
    color: #FFFFFF;
  }
  .header .navbar ul li ul{
    position: absolute;
    left: 0;
    width: 200px;
    background:var(--nav-color);
    display: none;
  }
  
  .header .navbar ul li ul li{
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, .1);
  }
  
  .header .navbar ul li ul li ul{
    left: 200px;
    top: 0;
  }
  
  .header .navbar ul li:focus-within > ul,
  .header .navbar ul li:hover > ul{
    display: initial;
  }
  .hamburger{
    display: none;
    cursor: pointer;
  }
  
  .bar{
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: white;
  }
  .header label{
    font-size: 20px;
    color: black;
    font-weight: 900;
    cursor: pointer;
    display: none;
  }
  
  
  ul {
    list-style: none;
  }
  
  a {
    text-decoration: none;
  }
  
  

/* header */

.top-head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    background: #252525;
    color: #fff;
    padding: 20px 30px;
}

.top-head .fas{
    font-size: 2rem;
    cursor: pointer;
}

/******* js related styling *****/

.times-btn{
    display: none;
}

.nav-bar{
    background: #333;
    height: 0;
    overflow: hidden;
}

.show-nav{
    height: auto;
}

/********************/

.nav-bar ul li{
    text-align: center;
    display: block;
    padding: 15px 0;
    transition: all 1s ease-in-out;
}

.nav-bar ul li:hover{
    background: #0e0e0e;
}

.nav-bar ul li a{
    color: #fff;
    text-transform: uppercase;
}

.nav-bar ul li a:hover{
    text-decoration: underline;
}

/* social -icons */

.social-icons{
    display: none;
}

.container200 {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.blog-header {
  background: #f4f4f4;
  padding: 20px;
  text-align: center;
}

.content200 {
  display: flex;
  margin-top: 20px;
  
}

.blog-content200 {
  flex: 3;
  background: #f9f9f9;
  padding: 20px;
  margin-right: 20px;
}

.sidebar {
  flex: 1;
  background: #f4f4f4;
  padding: 20px;
}

.sidebar-item ul {
  list-style: none;
  padding: 0;
}

.sidebar-item ul li {
  margin: 10px 0;
}

.sidebar-item ul li a {
  text-decoration: none;
  color: #333;
}


/*NEW TABS */

/* styles.css */


.container130 {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.blog-header130 {
  background: #f4f4f4;
  padding: 120px;
  text-align: center;
}

.content130 {
  display: flex;
  margin-top: 20px;
}

.blog-content130 {
  flex: 3;
  background: #f9f9f9;
  padding: 20px;
  margin-right: 20px;
}

.sidebar130 {
  flex: 1;
  background: #f4f4f4;
  padding: 20px;
}

.sidebar-item130 ul {
  list-style: none;
  padding: 0;
}

.sidebar-item130 ul li {
  margin: 10px 0;
}

.sidebar-item130 ul li a {
  text-decoration: none;
  color: #333;
}

.footer130 {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  margin-top: 20px;
}



/* banner */

.slideshow{
  position: relative;
  width: 100%;
  margin-left: 250px;
  max-width: 500px;
  height: 300px;
  overflow: hidden;
}

.slide{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fade 4s infinite;
}

.slide:nth-child(1) {
  animation-delay: 0s;
}

.slide:nth-child(2) {
  animation-delay: 2s;
}

@keyframes fade{
  0%, 100% {opacity: 0;}
  50% {opacity:1;}
}

.banner{
    min-height: auto;
    background-image: url(../IMG-20250201-WA0000.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.50;
    display: grid;
    color: white;;
    border-bottom: 2px solid #444;
    grid-template-columns: 1fr;
    align-items: center;
    padding: 40px 0;
    margin-top: 100px;
}



.banner-main-content{
    margin-left: 40px;
    line-height: 1.7;
}

.banner-main-content h2{
    font-size: 3rem;
    font-family: var(--heading);
}

.banner-main-content h3{
    padding: 1rem 0;
}

.banner-main-content button{
    border: none;
    background: #252525;
    padding: 14px 18px;
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    transition: background 1s ease;
}

.banner-main-content button a{
    color: #f3f3f3f3;
    transition: color 1s ease;
}

.banner-main-content button:hover{
    background: #fff;
}

.banner-main-content button:hover a{
    color: #0d0a0b;
}

.header100 {
  display: flex;
  font-size: 20px;
  color: #000000;
  background-color: #797878;
  border: 30px solid #797878;
  padding: 1px;
  position: relative;
  width: 100%;
  margin-top: 100px;
}
.header100 img {
  width: 16px;
  margin-right: 5px;
}
.dropdown100 {
  position: relative;
  display: inline-block;
}
.dropdown-button100 {
  margin-left: 5px;
  background: none;
  border: none;
  font-size: 20px;
  color: #0056b3;
  cursor: pointer;
  text-decoration: underline;
}
.dropdown-content100 {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #f9f9f9;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px;
  border-left: 4px solid #0078D4;
  box-sizing: border-box;
}
.dropdown-content100 p {
  font-size: 14px;
  margin: 5px 0;
  margin-top: 100px;
  width: 1000px;
  text-align: left;
}
.dropdown-content100 strong {
  font-weight: bold;
}
.dropdown-content100 .icon {
  margin-right: 5px;
}
.dropdown100:hover .dropdown-content100 {
  display: block;
}

.current-news-head{
    background: #fff;
    font-size: 15px;
    margin: 20px 0;
    max-width: 2000px;
}

.current-news-head h3{
    padding: 6px;
    margin-left: 30px;
    cursor: pointer;
    position: relative;
}

.current-news-head h3:hover::before{
    content: ">> ";
    color: red;
    position: absolute;
    left: -20px;
}

.current-news-head span{
    display: block;
    font-family: var(--heading);
    font-weight: 300;
    color: #0056b3;
    text-transform: uppercase;
}

.hot-topic{
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 3px;
    height: 250px;
}

.hot-topic img{
  display: block;
  width: 100%;
  height: auto;
}

.hot-topic-content{
    bottom: 0;
    left: 20px;
    right: 20px;
    padding: 10px 20px;
    line-height: 1.3;
    color: #f3f3f3;
}

.hot-topic h2{
    padding: 10px 0;
    font-size: 18px;
    text-shadow: 0 0 2px #000;
}

.hot-topic h3{
    padding: 10px 0;
    font-size: 16px;
    text-shadow: 0 0 2px #000;
}

.hot-topic p{
    padding: 10px 0;
    font-size: 15px;
    text-shadow: 0 0 2px #000;
    padding: 12px 10px;
}

.hot-topic-content a{
    display: block;
    background: #f3f3f3;
    border: none;
    width: 95px;
    border-radius: 2px;
    text-align: center;
    padding: 7px 10px;
    font-size: 14px;
    margin: 10px 0 10px 10px;
}

.hot-topic-content a:hover{
    text-decoration: underline;
}


.hot-topic1{
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 12px;
  height: 300px;
}

.hot-topic1 img{
  display: block;
}

.hot-topic-content1{
  position: relative;
  bottom: 0;
  margin-bottom: 1px;
  line-height: 1;
  color: #f3f3f3;
}

.hot-topic1 h2{
  margin-top: 15px;
  font-size: 16px;
  color: #000;
}

.hot-topic1 h3{
  padding: 10px 0;
  font-size: 16px;
  color: #000;
}

.hot-topic1 p{
  padding: 10px 0;
  font-size: 15px;
  color: #000;
  padding: 12px 10px;
}

.hot-topic-content1 a{
  display: block;
  background: #f3f3f3;
  border: none;
  width: 95px;
  border-radius: 2px;
  text-align: center;
  padding: 7px 10px;
  font-size: 14px;
  margin: 10px 0 10px 10px;
}

.hot-topic-content1 a:hover{
  text-decoration: underline;
}

.readmore1{
  width: 150px;
  height: 30px;
  border-radius: 30px;
  margin-left: -18px;
}

/** main ***/

main a{
    padding: 15px 0;
    display: block;
    transition: all 0.5s;
}

main span{
    transition: padding-left 0.5s;
}

main a:hover span{
    padding-left: 5px;
}

main a:hover{
    color: #7ac64d;
}

/* main container left */

.main-container-left{
    padding: 30px 10px;
}

.main-container-left > h2{
    padding: 15px 0 15px 30px;
}

.main-container-left h3{
    padding: 10px 0;
    font-size: 18px;
    font-family: var(--heading);
}

.main-container-left p{
    font-size: 15px;
    font-weight: 300;
}

.main-container-left article{
    padding: 10px;
}

.container-top-left{
    padding: 15px 30px;
}

.container-bottom-left{
    background: #f3f3f3;
    margin: 15px 30px;
}

/*** main container right */

.main-container-right{
    padding: 30px 10px;
}

.main-container-right > h2{
    padding: 15px 0 15px 30px;
}

.main-container-right article{
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    padding: 15px 0;
    border-bottom: 1px solid #7ac64d;
}

.main-container-right article:last-child{
    border-bottom: none;
}

.main-container-right img{
    width: 100px;
    height: 100px;
    align-self: center;
}

.main-container-right h4{
    text-align: center;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 12px;
    align-self: center;
}

.main-container-right article h2{
    font-size: 18px;
    padding: 10px 0;
    font-family: var(--heading);
}

.main-container-right article p{
    font-size: 15px;
    font-weight: 300;
}

.main-container-right article div{
    margin-right: 10px;
}

.container101{
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 30px 0;
  margin-top: 100px;
}

.container-main-content{
  padding: 0 2rem;
  line-height: 1.7;
}

.banner-main-content h2{
  font-size: 2rem;
  font-family: var(--heading);
}

.blog-actions{
  display: flex;
  align-items: end;
  gap: 30px;
  margin-top: 50px;
}

.action{
  display: flex;
  align-items: center;
  gap: 5px;
  color: #333;
}

.action i{
  display: inline-block;
  width: 20px;
  height: 20px;
  font-size: 20px;
  background-size: contain;
  background-repeat: no-repeat; 
}



.hamburger:hover {
  background-color: #333;
}

.type1{
  font-size: 2rem;
  font-family: var(--heading);
  color: #3F71EA;
  font-weight: 900;
  text-align: left;
  margin-bottom: 20px;
}

.type2{
  font-size: 15px;
  color: #000000;
  text-align: left;
  margin-bottom: 20px;
}

.type3{
  font-size: 13px;
  text-align: left;
  margin-bottom: 20px;
}

.type4{
  color: #505050;
}

.hr1{
  width: 1000px;
}

.type5{
  font-size: 20px;
  text-align: left;
  font-weight: 900;
  margin-top: 15px;
  margin-bottom: 20px;
  color: #3F71EA;
}

.bullet1{
  color: #000;
  font-size: 17px;
  margin-bottom: 20px;
}

.bullet2{
  color: #000;
  font-size: 17px;
  margin-bottom: 20px;
  margin-top: 15px;
}

.bullet3{
  color: #000;
  font-size: 13px;
  margin-bottom: 20px;
  margin-top: 15px;
  margin-left: 15px;
}

.gates{
  width: 600px;
  height: 60vh;

  margin-top: 30px;
  margin-bottom: 30px;
  margin-left: 10px;
}

.brain1{
  margin-top: 30px;
  margin-left: 5px;
  height: 150px;
  width: 100%; 
}

.brain2{
  margin-top: 30px;
  margin-left: 5px;
  height: 150px;
  width: 100%; 
}


.bullet4{
  color: #000;
  font-size: 13px;
  list-style: none;
  margin-bottom: 20px;
  margin-top: 15px;
  margin-left: 15px;
}

.type9{
  font-size: 15px;
}


.type7{
  font-size: 15px;
  text-align: left;
  font-weight: 400;
  margin-top: 30px;
  margin-bottom: 20px;

}


.type8{
  font-size: 15px;
  text-align: left;
  font-weight: 400;
  margin-top: 15px;
  margin-bottom: 10px;
}


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

.gotobtn{
    position: fixed;
    width: 40px;
    height: 40px;
    background: rgb(255 255 255/var(--tw-bg-opacity));
    bottom: 40px;
    border-radius: 20px;
    right: 50px;
    text-decoration: none;
    text-align: center;
    line-height: 50px;
    color: rgb(18 28 61/var(--tw-text-opacity));
    font-size: 25px;
  }
  
  /* The footer is fixed to the bottom of the page */
  
  footer {
    position: relative;
    bottom: 0;
  }
  
  
  
  .footer-distributed {
    background-color: #121d3d;
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    font: bold 16px sans-serif;
    padding: 50px 50px 60px 50px;
    margin-top: 80px;
  }
  
  .footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
    display: inline-block;
    vertical-align: top;
  }
  
  /* Footer left */
  
  .footer-distributed .footer-left {
    width: 30%;
  }
  
  .footer-distributed h3 {
    color: #ffffff;
    font: normal 36px 'Cookie', cursive;
    margin: 0;
  }
  
  
  .footer-distributed h3 span {
    color: #e0ac1c;
  }
  
  /* Footer links */
  
  .footer-distributed .footer-links {
    color: #ffffff;
    margin: 20px 0 12px;
  }
  
  .footer-distributed .footer-links a {
    display: inline-block;
    line-height: 1.8;
    text-decoration: none;
    color: inherit;
  }
  
  .footer-distributed .footer-company-name {
    color: #697498;
    font-size: 14px;
    font-weight: normal;
    font-family: 'Eb Garamond';
    margin: 0;
  }
  
  /* Footer Center */
  
  .footer-distributed .footer-center {
    width: 35%;
  }
  
  .footer-distributed .footer-center i {
    background-color: white;
    color: #121d3d;
    font-size: 15px;
    width: 38px;
    height: 39px;
    border-radius: 50%;
    text-align: center;
    line-height: 42px;
    margin: 10px 15px;
    vertical-align: middle;
  }
  
  .footer-distributed .footer-center i.fa-envelope {
    font-size: 17px;
    line-height: 38px;
  }
  
  .footer-distributed .footer-center p {
    display: inline-block;
    color: #8A8FA4;
    vertical-align: middle;
    margin: 0;
    font-family: 'Eb Garamond';
  }
  
  .footer-distributed .footer-center p span {
    display: block;
    font-weight: 100;
    font-size: 14px;
    line-height: 2;
  }
  
  .footer-distributed .footer-center p a {
    color: #8A8FA4;
    text-decoration: none;
    ;
  }
  
  /* Footer Right */
  
  .footer-distributed .footer-right {
    width: 30%;
  }
  
  .footer-distributed .footer-company-about {
    line-height: 20px;
    color: #92999f;
    font-size: 13px;
    font-weight: normal;
    margin: 0;
    font-family: 'Eb Garamond';
  }
  
  .footer-distributed .footer-company-about span {
    display: block;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .footer-distributed .footer-icons {
    margin-top: 25px;
  }
  
  .footer-distributed .footer-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    cursor: pointer;
    background-color: #33383b;
    border-radius: 2px;
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    line-height: 35px;
    margin-right: 3px;
    margin-bottom: 5px;
  }
  
  .footer-distributed .footer-icons a:hover {
    background-color: #3F71EA;
  }
  
  .footer-links a:hover {
    color: #3F71EA;
  }
  .sponsors {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .row1 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
  }
  
  .row1 img {
    max-height: 50px;
    margin: 0 20px;
  }


@media(max-width: 460px){
    .hot-topic-content h2{
        font-size: 16px;
    }

    .main-container-right article{
        display: block;
    }

    .main-container-right article img{
        display: none;
    }


}

@media(max-width: 500px){
    .main-container-right article{
        grid-template-columns: 1fr 3fr;
        grid-template-rows: 1fr 1fr;
    }

    .main-container-right article h4{
        grid-row: 1/2;
        grid-column: 1/2;
        align-self: flex-start;
    }

    .main-container-right article img{
        grid-row: 2/3;
        grid-column: 1/2;
    }

    .main-container-right article div{
        grid-row: 1/3;
        grid-column: 2/3;
    }
}


@media(min-width: 768px){
    .banner-sub-content{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .container-bottom-left{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
}


@media(min-width: 800px){
    /* nav */
    .ham-btn, .times-btn{
        display: none!important;
    }

    .navigation-container{
        display: flex;
        background: #252525;
        align-items: center;
        flex-wrap: wrap;
    }

    .top-head{
        flex: 0 0 15%;
    }

    .nav-bar{
        flex: 1 0 auto;
        height: 100%;
        background: transparent;
    }

    .nav-bar nav ul{
        display: flex;
        justify-content: center;
    }
    .nav-bar nav ul li{
        padding-right: 30px;
    }

    .nav-bar nav ul li:hover{
        background: none;
    }

    /* social icons */
    .social-icons{
        flex: 0 1 30%;
        display: block;
        margin: 0 auto;
    }

    .social-icons .fab{
        color: #fff;
        font-size: 2rem;
    }
    .social-icons ul{
        display: flex;
        justify-content: space-between;
        padding: 0 20px;
    }
    .social-icons ul li{
        padding: 20px;
    }

    .footer-container{
        display: flex;
    }

    .footer-right,
    .footer-left{
        flex: 1;
    }
}

@media(min-width: 992px){
    main{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 1080px){
    .banner{
        grid-template-columns: 1fr 2fr;
    }
}