@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

* {
    font-family: "Lato", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
button{
    font-family: "Lato", sans-serif !important;

}
body, html {
    scroll-behavior: smooth;
}

html {
    scroll-padding-top: 110px; /* Adjust for fixed navbar */
}
summary{
    cursor: pointer;
}

/* Navbar Styling */
nav {
    position: fixed;
    z-index: 20;
    width: 100vw;
    top: 0;
}
.menu-toggle{
    display: none;
}
.cont1 {
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-end;
    align-items: center;
    background-color: rgb(250, 242, 231);
    height: 30px;
    border-bottom: 3px solid rgb(81, 81, 81);
}
.cont2{
    display: none;
}

.cont1 a {
    color: rgba(0, 0, 108, 0.908);
    font-size: calc(1.1em - 1pt);
    text-decoration: none;
}

.navi {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 108, 0.908);
    height: 80px;
    padding: 0 20px;
}

.navi .identity {
    color: rgb(235, 235, 235);
    display: flex;
    align-items: center;
    cursor: pointer;
}

.navi .identity .logo {
    margin: 10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-image: url('../img/logo.png');
    background-position: center;
    background-size: 110px;
    background-repeat: no-repeat;
}

.navi .links {
    margin: 10px;
    display: flex;    
    align-items: center;
}

.navi .links a {
    padding-left: 5px;
    padding-right: 5px;
    text-decoration: none;
    color: rgb(235, 235, 235);
    font-size: calc(1.1em - 1pt);
    cursor: pointer;
}
.submenu-container {
    position: relative;
}
.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 100%; 
    left: 0;
    display: none; 
    background-color: rgba(0, 0, 108, 0.9);
    z-index: 1000;
    border-radius: 5px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.submenu li {
    width: max-content;
    padding: 10px 20px;
    text-align: left;
}

.submenu li a {
    text-decoration: none;
    color: white;
    display: block;
    font-size: calc(0.5em - 1pt);
}

/* PC Hover Dropdown */
.submenu-container:hover .submenu {
    display: block; /* Show on hover */
}
summary{
    margin-bottom: 20px;
}


.un {
    display: inline-block;
    font-weight: unset;
}

.un::after {
    content: '';
    width: 0px;
    height: 3px;
    display: block;
    background: white;
    transition: 300ms;
}

.un:hover::after {
    width: 100%;
}

.un2 {
    display: inline-block;
    font-weight: unset;
}

.un2::after {
    content: '';
    width: 0px;
    height: 3px;
    display: block;
    background: #b3ff00;
    transition: 300ms;
}

.un2:hover::after {
    
    width: 100%;
}
.un2:hover{
    color: #b3ff00;
}


.un3 {
    display: inline-block;
    font-weight: unset;
}

.un3::after {
    content: '';
    width: 0px;
    height: 3px;
    display: block;
    background: #0080ff;
    transition: 300ms;
}

.un3:hover::after {
    
    width: 100%;
}
.un3:hover{
    color: #0080ff;
}


/* Header Styling */
header {
    width: 100%;
    height: 100vh; /* Full screen height */
    background-image: url('../img/header.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    
}

header .title {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Dark overlay for readability */
}

header .title h1 {
    color: white;
    margin-top: 150px;
    width: 90%;
    max-width: 1000px;
    font-size: calc(2.5em - 1pt);
    text-align: center;
    paint-order: stroke fill;
    -webkit-text-stroke: 0.1em black;
}

header .title i {
    color: white;
    font-size: calc(3em - 1pt);
    transform: rotate(180deg);
    margin-bottom: 2%;
}

/* Button Styling */
.button-66 {
    background-color: #0a6bff;
    border-radius: 4px;
    width: max-content;
    border: 0;
    box-shadow: rgba(1, 60, 136, 0.5) 0 -1px 3px 0 inset, rgba(0, 44, 97, 0.1) 0 3px 6px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    font-family: "Space Grotesk", -apple-system, system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: calc(18px - 1pt);
    font-weight: 700;
    line-height: 24px;
    padding: 16px 20px;
    text-align: center;
    user-select: none;
    transition: all 0.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.button-66:hover {
    background-color: #065dd8;
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .button-66 {
        padding: 16px 24px;
    }
}

.ar-heading {
    text-align: left;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    position: relative;
    color:rgb(15, 15, 132);
    font-size: calc(2.5em - 1pt);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ccc{
    display: none;
}
.ar-subheading {
    color:rgb(15, 15, 132);
    paint-order: stroke fill;
    text-transform: uppercase;
    text-align: center;
    font-size: calc(2em - 1pt);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bars{
    display: block;
    width: 100px;
    height: 3px;
    background-color: #3f7df8e7;
    margin-left: 10px;
    margin-right: 10px;
}
.bars2{
    display: block;
    width: 100px;
    height: 3px;
    background-color: rgba(255, 217, 0, 0.722);
    margin-left: 10px;
    margin-right: 10px;
}
.ar-cont {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
}

.ar-img {
    width: 400px;
    height: 400px;
    border: 5px solid #3f7df8e7; /* Golden Border */
    border-radius: 50%;
    background-position: center;
    background-size: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.img-abt-1 {
    background-image: url('../img/about1.jpg'); 
}

.img-abt-2 {
    background-image: url('../img/about2.jpg'); 
    background-position: bottom;
    background-size: 120%;
}

.p1 {
    flex: 1 1 60%;
    font-size: calc(1.15em - 1pt);
    text-align: justify;
    color: #555;
    max-width: 80%;
}
.p1 .para{
    margin-top: 10px;
    margin-bottom: 15px;
}
.separator {
    width: 70%;
    height: 4px;
    background-color: #3f7df8e7;
    display: block;
    margin: 10px auto 0 auto;
}

.mt {
    margin-bottom: 60px;
}


header {
    width: 100%;
    height: 100dvh; 
    background-image: url('../img/header.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: sticky; 
    top: 0;
    z-index: 10; 
}


article{
    padding: 20px 20px;
    background-attachment: fixed;
    position: relative;
    background-color: rgba(5, 0, 22, 0.65);
    background-blend-mode: darken;
    background-repeat: no-repeat;
    background-image: url(../img/bg4.svg);
    background-color:rgb(239, 239, 239);
    background-blend-mode:overlay;
    background-repeat: no-repeat;
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: center;
}
#about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: white;
    position: sticky; 
    z-index: 11; 
}

#about .p1{
    color:#555;
}
#about .ar-heading{
    margin: 50px;
}
#about .wrp1 .mt .ar-cont .p1{
    max-width:650px !important;
}

.wrp1{
    display: flex;
    justify-content: space-between;
    width: 80%;
    gap: 50px;
}
#services{
    color: white;
    z-index: 11; 
}
.service-list{
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.wrapper{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    align-content: center;
    width: 100%;
}
.wrapper .svc-i{
    padding: 5px 100px 0px 100px;
    border: 3px #3f7df8e7 solid;
    border-radius: 30px;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
    background-color: rgba(15, 15, 34, 0.737);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode:multiply;
    -webkit-box-shadow:0 0 20px rgb(27, 27, 45); 
    -moz-box-shadow:0 0 20px rgb(0,0,108); 
    box-shadow: 0 0 20px rgb(0,0,108);
    background-image: url('../img/svc-i.jpg');
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.wrapper .svc-i h1{
    color: rgb(228, 212, 73);
    font-size: calc(2em - 1pt);
    margin-top: 20px;
    text-decoration: underline;
    text-decoration-color: rgb(228, 212, 73);
}
.wrapper .svc-i ul{
    margin-left: 40px;
    font-size: calc(1.2em - 1pt);
    color: #f1f1f1;
    margin-top: 10px;
    text-align: left;
    line-height: 1.2;
}
.wrapper .svc-i ul li::marker{
    color: rgb(228, 212, 73);;
}
.service-list .sv-item{
    width: 370px;
    height: 250px;
    border: 3px #3f7df8e7 solid;
    border-radius: 30px;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
    padding: 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay */
    background-blend-mode:darken;
    -webkit-box-shadow:0 0 20px rgb(0,0,108); 
    -moz-box-shadow:0 0 20px rgb(0,0,108); 
    box-shadow: 0 0 20px rgb(0,0,108);
    transition: 0.2s ease-in-out;
}
.service-list .sv-item:hover{
    border: 3px rgb(255, 255, 127) solid;
    -webkit-box-shadow:0 0 20px rgb(233, 219, 67); 
    -moz-box-shadow:0 0 20px rgb(233, 219, 67); 
    box-shadow: 0 0 20px rgb(233, 219, 67); 
    background-size: 110%;
    background-color: rgba(0, 0, 0, 0.4); /* Overlay */
}
.service-list .sv-item h2{
    text-decoration: underline;
    text-decoration-color: white;
    paint-order: stroke fill;
    -webkit-text-stroke: 0.15em rgb(10, 10, 10);
}
.service-list .sv-item p{
    margin-top: 10px;
    font-size: calc(1em - 1pt);
    font-size: calc(1.2em - 1pt);
    line-height: 1.5;
    text-align: justify;
    color: #f1f1f1;
}

.service-list .sv-img-1{
    background-image: url('../img/sv1.jpg');
}
.service-list .sv-img-2{
    background-position: top;
    background-image: url('../img/sv2.jpg');
}
.service-list .sv-img-3{
    background-image: url('../img/sv3.jpg');
}
.service-list .sv-img-4{
    background-image: url('../img/sv4.jpg');
    background-size: 120%;
}
.service-list .sv-img-4:hover{
    background-size: 130%;
}
.images-grid1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

    gap: 15px;
    max-width: 980px;
}
.images-grid1 img {
    width: 180px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.images-grid2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    
    gap: 15px;
    max-width: 980px;
}
.images-grid2 img {
    width: 180px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}



#staff{
    color:#555;
    z-index: 12;
}
.cont-principal{
    display: flex;
    justify-content: center;
    width: 100%;
}
.cont-principal .img-pr{
    display: flex;
    background-image: url('../img/staff/principal.jpeg');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    width:550px;
    height: 550px;
    border-radius: 5%;
    border: 2px solid #033caee7;
    -webkit-box-shadow:0 0 50px rgb(0,0,108); 
    -moz-box-shadow:0 0 50px rgb(0,0,108); 
    box-shadow: 0 0 50px rgb(0,0,108);
    flex: 0 0 550px;
}

.cont-principal div h2{
    font-size: calc(2em - 1pt);
    text-decoration: underline;
    color:rgb(15, 15, 132);
}
.cont-principal div h3{
    font-size: calc(1.5em - 1pt);
    text-decoration: underline;
    color:rgb(15, 15, 132);
}
.cont-principal div p{
    margin-top: 5px ;
    text-align: justify;
    font-size: calc(1.1em - 1pt);
    line-height: 1.3;
    width:90%;   
}
.pr_prev{
    width:100%;
    max-width: 320px;
    filter: invert(70%);
}
#staff .mt {
    padding: 40px;
}
.to-right{
    position: absolute;
    width: 100%;
    flex-wrap: wrap;
    right: 17%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-end;
    justify-content: flex-end;
    width: 90%;
}

#activity{
    color: white;
    z-index: 12;
}
#activity .wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 680px;
    gap: 20px;
}
#activity .wrapper .act-1{
    width: 100%;
    height: 280px;
    border: 10px solid #bacde7;
    border-radius: 10px;
    background-image: url('../img/act1.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
#activity .wrapper .act-two{
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
#activity .wrapper .act-two .act-2{
    width: 50%;
    height: 100%;
    border: 10px solid #bacde7;
    border-radius: 10px;
    background-image: url('../img/act2.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
}
#activity .wrapper .act-two .act-3{
    width: 50%;
    height: 100%;
    border: 10px solid #bacde7;
    border-radius: 10px;
    background-image: url('../img/act3.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
}



#contact{
    color:white;
    z-index: 12;
}
#contact .maps{
    border: 3px solid rgb(0,0,108);
    overflow:hidden;
    resize:none;
    max-width:100%;
    width:500px;
    height:500px;
}
#contact .info{
    margin-left: 30px;
}
#contact .wrp{
    display: flex;
    justify-content: center;
    align-items: center;
}
#contact h2{
    text-decoration: underline;
    text-decoration-color: white;
    paint-order: stroke fill;
    -webkit-text-stroke: 0.15em rgb(10, 10, 10);
}
#contact ul{
    list-style-type:none;
    margin-left: 30px;
}
#contact li, #contact ul{
    font-size: calc(1.1em - 1pt);
    text-align: left;
}
#contact i{
    font-size: calc(1em - 1pt);
    width: 25px;
}
#contact li a{
    text-decoration: none;
    color:#555;
    transition: 0.2s ease-in-out;
}
#contact li a:hover{
    color: #0080ff;
}
.delta{
    padding:10px;
    border: 3px solid #ffffff;
    border-radius: 10px;
    width: max-content;
    transition: 0.2s ease-in-out;
    color: rgb(32, 101, 212);;
    -webkit-box-shadow:0 0 50px rgb(75, 144, 255);
    -moz-box-shadow:0 0 50px rgb(75, 144, 255);
    box-shadow: 0 0 50px rgb(75, 144, 255);
}
.delta li{
    text-align: center !important;
}
.delta:hover{
    border: 3px solid #3f9cff;
    
    -webkit-box-shadow:0 0 50px #3f9cff; 
    -moz-box-shadow:0 0 50px #3f9cff; 
    box-shadow: 0 0 50px #3f9cff;
}
footer{
    position: relative;
    display: flex;
    width: 100%;
    height: 100px;
    background-color: rgba(0, 0, 108, 1);
    z-index: 19;
    color:white;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
footer p{
    font-size: calc(1.15em - 1pt);
}
.alpha{
    color: #ffffff;
}
.alpha:hover{
    color: #b3ff00;
}
.ssd{
    margin-left: 30px;
    max-width: 650px;
}
.ssd > * {
    width: fit-content;
}
.info-pr{
    z-index: 200;
    margin:0 auto; 
    top: 50%; 
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.568);
    padding: 10px;
    width:55%
}
::backdrop {
    background-color: black;
    opacity: 0.65;
  }
  
.flexbox{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-align: justify;
}
.flexbox p{
    font-size: calc(1.2em - 1pt);
    margin-top:10px ;
    width: 95%;
}
.flexbox .ar-subheading{
    color: white;
}
body.modal-open {
    overflow: hidden;
}
.cls-btn{
    font-size: calc(2em - 1pt);
    background-color: transparent;
    border: none;
    color: white;
    
    cursor: pointer;
}
.omega{
    display: flex;
    justify-content: right;
}
.adad{
    display: none;
}
.submenu-container div:first-child {
    background-color: #0047ab;
    color: white;
    text-align: left;
    cursor: pointer;
    border-bottom: 1px solid #333;
}
.submenu-container div:first-child:hover {
    background-color: #00357a;
}
.back-button {
    background-color: #0047ab;
    color: white;
    text-align: left;
    cursor: pointer;
    padding: 10px;
    border-bottom: 1px solid #333;
    display: none; /* Initially hidden */
}
.back-button:hover {
    background-color: #00357a;
}
.video-cont{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    position: relative;
}
.video-cont video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 10px solid #bacde7;
}

.ad-sec:first-child{
    position: absolute;
    z-index: 1000;
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    margin-top: 270px;
    margin-left: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #00357aee;
    padding: 10px;
    transition: all 0.3s ease-in-out;
}
.ad-sec:nth-child(2){
    position: absolute;
    z-index: 1000;
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    margin-top: 230px;
    margin-right: 30px;
    right: 0;                    
    top: 0;   
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #00357aee;
    padding: 10px;
    transition: all 0.3s ease-in-out;
}

.ad-sec img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.ad-sec .nav-i {
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    color: white;
}
.ad-sec a.cls{
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    color: white;
    font-size: calc(1.3em - 1pt);
    cursor: pointer;
    margin-bottom: 10px;
    text-align: right;
}
.ad-sec p.cls1{
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    color: white;
    font-size: calc(1.3em - 1pt);
    cursor: pointer;
    margin-bottom: 10px;
    text-align: left; 
}
.contw{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 0px;
}
.mob-popup-ind{
    display: none;
    padding-left: 30px;
    cursor: pointer;
}
.mob-popup-ind a{
    display: flex;
    color: white;
    text-decoration: none;
    font-size: calc(1em - 1pt);
    text-align: center;
    font-weight: bold;
}
.mySlides {display: none}
.img-i {vertical-align: middle;}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: calc(18px - 1pt);
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.text {
  color: #f2f2f2;
  font-size: calc(15px - 1pt);
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.numbertext {
  color: #ffffff;
  font-size: calc(12px - 1pt);
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.dot {
  cursor: pointer;
  height: 8px;
  width: 8px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: calc(11px - 1pt)}
}

@media screen and (max-width: 768px) {
    .submenu {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        margin-top: 20px;
    }

    .submenu li {
        padding: 0.5em;
    }
    #activity .wrapper{
        gap: 0px;
    }
    #activity .wrapper .act-1{
        height: 170px;
        
        border: 6px solid #bacde7;

    }
    #activity .wrapper .act-two{
        width: 100%;
        height: 170px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    #activity .wrapper .act-two .act-2{
        width: 50%;
        height: 150px;
        border: 6px solid #bacde7;
        background-position: left;
    }
    #activity .wrapper .act-two .act-3{
        width: 50%;
        height: 150px;
        border: 6px solid #bacde7;
        background-position: right;
    }
}


@media screen and (max-width: 1700px) {
    .cont-principal .img-pr {
        width: 400px;
        height: 400px;
        flex: 0 0 400px;
    }
    .pr_prev {
    }
    .wrapper{
        flex-wrap: wrap;
    }
    .spa{
        margin-top: 20px;
    }
    .cont-principal div p {
        width: 98%;
    }
    .navi{
        padding: 0px;
        padding-right: 20px;
    }
    .logo-title{
        font-size: calc(1.3em - 1pt);
    }
    header .title h1 {
        margin-top: 130px;
    }
    .ad-sec:first-child{
	    max-width: 450px !important;
        margin-top: 230px;
    }
    .ad-sec a.cls{
        font-size: 1.1em !important;

    }

    .ad-sec p.cls1 {
        font-size: 1.1em !important;
    }
    .ad-sec .nav-i {
        height: 30px;
    }
}
@media screen and (max-width: 1400px) {
    .cont-principal .img-pr {
        width: 450px;
        height: 450px;
        flex: 0 0 450px;
    }
    #staff .mt {
        padding-top: 20px;
    }
    .ssd{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .ssd h2, .ssd h3{
        display: none;
    }
    .adad{
        display: block;
    }
    .adad h3{
        margin-bottom:20px ;
    }
    .cont-principal{
       flex-wrap: wrap; 
       justify-content: center;
       align-items: center;
       flex-direction: column;
    }
    .cont-principal div p {
        max-width: 90%;
    }
    .flexbox p {
        width: 85%;
    }
    .info-pr {
        width: 90%;
    }
    .pr_prev {
    }
    summary{
        text-align: center;
    }
    .ad-sec:first-child{
	    max-width: 450px !important;
        margin-left: 20px !important;
        margin-top: 230px;
    }
    .ad-sec a.cls,
    .ad-sec p.cls1 {
        font-size: 1.2em;
    }
    
    .ad-sec .nav-i {
        height: 35px;
    }
    header .title h1 {
        margin-top: 130px;
    }
    
}
@media screen and (max-width: 1300px) {
    .logo-title{
        font-size: calc(1.1em - 1pt);
    }
    .navi .links a {
        font-size: calc(1em - 1pt);
    }
    .ad-sec:first-child{
        width: 90%;
        margin-top: 180px !important;
        margin-left: -415px !important;
    }
    .ad-sec img{
        width: 100%;
        height: 100%;
        border-radius: 10px;
        object-fit: cover;
    }
    .ad-sec .nav-i {
        width: 100%;
        height: 50px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 10px;
        color: white;
    }
    .ad-sec a.cls{
        font-size: 1.05em !important;

    }
    .ad-sec p.cls1 {
        font-size: 1.05em !important;
    }
    
    .ad-sec .nav-i {
        height: 30px;
    }
    
    .mob-popup-ind{
        display: block;
    }
    header .title h1 {
        margin-top: 130px;
    }
}
@media screen and (max-width: 1105px) {
    .logo-title{
        font-size: calc(1em - 1pt);
    }
    .navi .links a {
        font-size: calc(0.9em - 1pt);

    }
}