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

@font-face {
    font-family: myFirstFont;
    src: url(Mukta-Regular.ttf);
}

:root {
    /**
     * colors
     */
    --red-orange-color-wheel: #ff5d00;
    --oxford-blue: #003e87;
    --rich-black-fogra-29-1: hsl(215, 31%, 14%);
    --rich-black-fogra-29-2: hsl(230, 14%, 8%);
    --rich-black-fogra-39: hsl(158, 29%, 5%);
    --granite-gray: hsl(0, 0%, 40%);
    --go-green_50: hsla(145, 63%, 42%, 0.5);
    --go-green_8: hsla(145, 63%, 42%, 0.08);
    --go-green_5: hsla(145, 63%, 42%, 0.05);
    --light-gray: hsl(0, 0%, 80%);
    --mint-cream: hsl(160, 100%, 98%);
    --cultured: hsl(0, 0%, 93%);
    --go-green: #003e87;
    --white: hsl(0, 0%, 100%);
    --jet: hsl(0, 0%, 18%);

    /**
     * typography
     */

    --ff-poppins: "Poppins", sans-serif;
    --ff-cuprum: "Cuprum", sans-serif;

    --fs-1: 4.5rem;
    --fs-2: 3.6rem;
    --fs-3: 3.5rem;
    --fs-4: 3.2rem;
    --fs-5: 2.5rem;
    --fs-6: 2.4rem;

    --fs-7: 2.2rem;
    --fs-8: 2rem;
    --fs-9: 1.8rem;
    --fs-10: 1.5rem;
    --fs-11: 1.4rem;
    --fs-12: 1.3rem;

    --fw-600: 600;
    --fw-500: 500;

    /**
     * spacing
     */

    --section-padding: 80px;

    /**
     * shadow
     */

    --shadow-1: 3px 4px 30px hsla(0, 0%, 53%, 0.1);
    --shadow-2: 5px 3px 40px hsla(191, 100%, 17%, 0.1);

    /**
     * radius
     */

    --radius-5: 5px;

    /**
     * transition
     */

    --transition-1: 0.25s ease;
    --transition-2: 0.5s ease;
    --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);
    --default-transition: 0.25s ease;
}

li {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

a,
img,
span,
input,
button,
ion-icon {
    display: block;
}

img {
    height: auto;
}

input,
button {
    background: none;
    border: none;
    font: inherit;
}

input {
    width: 100%;
}

button {
    cursor: pointer;
}

ion-icon {
    pointer-events: none;
}

address {
    font-style: normal;
}

html {
    /* font-family: "Montserrat", sans-serif; */
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--granite-gray);
    font-size: 1.9rem;
    line-height: 1.7;
}

:focus-visible {
    outline-offset: 4px;
}
.flex-btn {
    display: flex;
    align-items: center;
    gap: 20px;
}

.home-btn-group {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-wrap: wrap;
}
.btn {
    position: relative;
    /* font-family: "Montserrat", sans-serif; */
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    color: hsl(0, 0%, 100%);
    padding: 0px 45px;
    height: 5rem;
    text-transform: uppercase;
    overflow: hidden;
}
.btn .btn-text {
    position: relative;
    z-index: 5;
}

.btn-primary,
.btn-secondary .square {
    background: var(--red-orange-color-wheel);
}

.btn .square {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 8px;
    transition: var(--default-transition);
}

.btn:hover .square {
    right: -2px;
    width: 102%;
    height: 102%;
}

.btn-primary .square,
.btn-secondary {
    background: var(--oxford-blue);
}

.img-holder {
    aspect-ratio: var(--width) / var(--height);
    background-color: var(--light-gray);
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.w-100 {
    width: 100%;
}

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

.section-subtitle {
    color: var(--go-green);
    font-weight: var(--fw-500);
}

.grid-list {
    display: grid;
    gap: 20px;
}

.btn-link {
    color: var(--rich-black-fogra-29-1);
    font-size: var(--fs-12);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    transition: var(--transition-1);
}
.contenedor {
    padding-inline: 15px;
}

.section {
    padding-block: var(--section-padding);
}

.has-before,
.has-after {
    position: relative;
    z-index: 1;
}

.has-before::before,
.has-after::after {
    content: "";
    position: absolute;
}

.h1,
.h2,
.h3,
.h2-sm {
    color: var(--rich-black-fogra-29-1);
    /* font-family: "Montserrat", sans-serif; */
}

.h1 {
    font-size: var(--fs-1);
    line-height: 1.1;
}

.h2 {
    font-size: var(--fs-2);
}

.h2,
.h3,
.h2-sm {
    line-height: 1.3;
}

.h2-sm {
    font-size: var(--fs-3);
}

.h3 {
    font-size: var(--fs-7);
}

.header .btn-outline {
    display: none;
  }
  
  .header {
    background-color: var(--white);

    padding-block: 15px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
  }
  
  .header.active {
    background-color: var(--white);
    box-shadow: var(--shadow-2);
  }
  
  .header .contenedor {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    color: var(--rich-black-fogra-29-1);
    /* font-family: "Montserrat", sans-serif; */
    font-size: 33px;
    font-weight: var(--fw-500);
    line-height: 1;
  }
  
  .nav-open-btn {
    color: var(--rich-black-fogra-29-1);
    font-size: 35px;
  }
  
  .navbar {
    position: fixed;
    top: 0;
    left: -280px;
    max-width: 280px;
    width: 100%;
    height: 100%;
    background-color: var(--rich-black-fogra-39);
    color: var(--white);
    padding: 30px 20px;
    visibility: hidden;
    transition: 0.25s var(--cubic-out);
    z-index: 4;
  }
  
  .navbar.active {
    visibility: visible;
    transform: translateX(280px);
    transition-duration: 0.5s;
  }
  
  .navbar .logo,
  .nav-close-btn {
    color: var(--white);
  }
  
  .navbar .envoltura {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-block-end: 25px;
  }
  
  .nav-close-btn {
    font-size: 30px;
  }
  
  .navbar-link {
    padding-block: 10px;
    transition: var(--transition-1);
  }
  
  .navbar-link:is(:hover, :focus) {
    color: var(--go-green);
  }
  
  .overlay {
    position: fixed;
    inset: 0;
    background-color: hsla(0, 0%, 100%, 0.7);
    visibility: hidden;
    opacity: 0;
    transition: var(--transition-1);
    z-index: 3;
  }
  
  .overlay.active {
    visibility: visible;
    opacity: 1;
  }

.overlay {
    position: fixed;
    inset: 0;
    background-color: hsla(0, 0%, 100%, 0.7);
    visibility: hidden;
    opacity: 0;
    transition: 0.25s ease;
    z-index: 3;
}

.overlay.active {
    visibility: visible;
    opacity: 1;
}

section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #eee;
    position: relative;
    z-index:100 ;
}

/* section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #eee;
} */

.container {
    position: relative;
    min-width: 1100px;
    min-height: 700px;
    display: flex;
    z-index: 1000;
    margin-top: 0rem;
    margin-bottom: 2.2rem;
}

.container .contactInfo {
    position: absolute;
    top: 40px;
    width: 350px;
    height: calc(100% - 80px);
    background: #003e87;
    z-index: 1;
    padding: 40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.container .contactInfo h2 {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
}

.container .contactInfo ul.info {
    position: relative;
    margin: 20px 0;
}

.container .contactInfo ul.info li {
    position: relative;
    list-style: none;
    display: flex;
    font-size: 1.4rem;
    margin: 20px 0;
    cursor: pointer;
    align-items: flex-start;
}

.container .contactInfo ul.info li span:nth-child(1) {
    width: 30px;
    min-width: 30px;
}

.container .contactInfo ul.info li span:nth-child(1) img {
    max-width: 100%;
    filter: invert(1);
}

.container .contactInfo ul.info li span:nth-child(2) {
    color: #fff;
    margin-left: 10px;
    text-align: left;
    font-weight: 300;
}

.container .contactInfo ul.sci {
    position: relative;
    display: flex;
}

.container .contactInfo ul.sci li {
    list-style: none;
    margin-right: 15px;
}

.container .contactInfo ul.sci li a {
    text-decoration: none;
    font-size: 3rem;
    color: #fff;
}

.container .contactInfo ul.sci li a img {
    filter: invert(1);
}

.container .contactForm {
    position: absolute;
    padding: 70px 50px;
    padding-left: 250px;
    margin-left: 150px;
    width: calc(100% - 150px);
    height: 100%;
    background: #fff;
    box-shadow: 0 50px 50px rgba(0, 0, 0, 0.25);
}
.heading{
    color: #003e87;
    font-size: 40px;
    text-align: center;
    padding-block-start: 100px;
    background-color: #eeeeee;
}
.container .contactForm h2 {
    color: #003e87;
    font-size: 24px;
    font-weight: 500;
}

.container .contactForm .formBox {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 30px;
}

.container .contactForm .formBox .inputBox {
    position: relative;
    margin-bottom: 15px;
}

.container .contactForm .formBox .inputBox.w50 {
    width: 100%;
}

.container .contactForm .formBox .inputBox.w100 {
    width: 100%;
}

.container .contactForm .formBox .inputBox input,
.container .contactForm .formBox .inputBox textarea {
    width: 100%;
    resize: none;
    padding: 5px 0;
    font-size: 1.5rem;
    font-weight: 300;
    color: #333;
    border: none;
    outline: none;
    margin: .7rem 0;
    border-bottom: 1px solid #777;
}

.container .contactForm .formBox .inputBox textarea {
    height: 110px;
}

.container .contactForm .formBox .inputBox span {
    position: absolute;
    left: 0;
    top: 0;
    padding: 5px 0;
    pointer-events: none;
    font-size: 1.4rem;
    font-weight: 300;
    transition: 0.3s;
    
}

.container .contactForm .formBox .inputBox input:focus ~ span,
.container .contactForm .formBox .inputBox input:valid ~ span,
.container .contactForm .formBox .inputBox textarea:focus ~ span,
.container .contactForm .formBox .inputBox textarea:valid ~ span {
    transform: translateY(-10px);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #003e87;
    font-weight: 500;
}
.label-select{
    font-size: 1.9rem;
}

.container .contactForm .formBox .inputBox input[type="submit"] {
    position: relative;
    cursor: pointer;
    background: #003e87;
    color: #fff;
    border: none;
    max-width: 150px;
    padding: 12px;
}

.container .contactForm .formBox .inputBox input[type="submit"]:hover {
    background: #ff5d00;
}

.footer {
    background-color: hsl(215, 31%, 14%);
    color: hsl(0, 0%, 93%);
}

.footer-top .contenedor {
    display: grid;
    gap: 40px;
}

.footer .logo {
    color: white;
}

.footer-text {
    margin-block: 25px;
}

.newsletter-form {
    position: relative;
    max-width: 350px;
}

.email-field {
    color: white;
    font-size: 1.4rem;
    border: 1px solid hsl(0, 0%, 40%);
    padding: 15px;
    border-radius: 5px;
}

.footer .form-btn {
    background-color: #003e87;
    color: white;
    font-size: 24px;
    position: absolute;
    top: 6px;
    right: 6px;
    bottom: 6px;
    padding-inline: 10px;
    border-radius: 5px;
}

.footer-list-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-block-end: 25px;
}

.footer-link {
    margin-block-start: 15px;
    transition: 0.25 ease;
}

.footer-link:is(:hover, :focus) {
    color: #003e87;
}

.footer-item,
.social-list {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-item {
    margin-block-start: 15px;
}

.footer-item > ion-icon {
    flex-shrink: 0;
    color: #003e87;
    font-size: 20px;
    margin-block-start: 3px;
}

.contact-link {
    transition: 0.25s ease;
}

.contact-link:not(.address):is(:hover, :focus) {
    color: #003e87;
}

.footer-item:last-child {
    margin-block-start: 25px;
    padding-block-start: 25px;
    border-block-start: 1px solid hsl(0, 0%, 40%);
}

.social-link {
    font-size: 14px;
    border: 1px solid hsl(0, 0%, 40%);
    padding: 10px;
    transition: 0.25s ease;
}

.social-link:is(:hover, :focus) {
    background-color: #003e87;
    border-color: #003e87;
}

.footer-bottom {
    padding-block: 15px;
    border-block-start: 1px solid hsl(0, 0%, 18%);
}

.copyright {
    font-size: 1.3rem;
    text-align: center;
    margin-block-end: 15px;
}

.copyright-link {
    display: inline-block;
    color: #003e87;
    font-weight: 500;
}

.footer-bottom-list {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-bottom-link {
    font-size: 1.4trm;
    transition: 0.25s ease;
}

.footer-bottom-link:is(:hover, :focus) {
    color: #003e87;
}
@media (min-width:992px) {
    #containercontactanos{
        height: 830px;
    }
    #contactFormid{
        height: 830px;
    }
}

@media (max-width: 1200px) {
    .container {
        width: 90%;
        min-width: auto;
        /* margin: 0px 20px 20px 20px; */
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    }
    .container .contactInfo {
        top: 0;
        height: 500px;
        position: relative;
        box-shadow: none;
    }
    .container .contactForm {
        position: relative;
        width: calc(100% - 350px);
        padding-left: 0;
        margin-left: 0;
        padding: 40px;
        height: 700px;
        box-shadow: none;
    }
}

@media (max-width: 991px) {
    /* .header {
        padding: 20px;
      }
    
      .navbar,
      .navbar.active {
        all: unset;
      }
    
      .navbar-lista {
        display: flex;
        gap: 40px;
      }
    
      .navbar-link {
        color:  hsl(215, 31%, 14%);
        font-weight: 500;
        padding-block: 0;
      }
    
      .header .btn-outline {
        display: block;
        color: #003e87;
        font-weight: 600;
        text-transform: uppercase;
        border: 1px solid #003e87;
        padding: 7px 18px;
        transition: var(--transition-1);
      }
    
      .header .btn-outline:is(:hover, :focus) {
        background-color: #003e87;
        color: white;
      } */

 
    section::before {
        display: none;
    }
    .container {
        display: flex;
        flex-direction: column-reverse;
    }
    .container .contactForm {
        width: 100%;
        height: auto;
    }
    .container .contactInfo {
        width: 100%;
        height: auto;
        flex-direction: row;
    }
    .container .contactInfo ul.sci {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .container .contactForm {
        padding: 25px;
    }

    .container .contactInfo {
        padding: 25px;
        flex-direction: column;
        align-items: flex-start;
    }
    .container .contactInfo ul.sci {
        margin-top: 40px;
    }
}

@media (min-width: 575px) {
    /**
     * CUSTOM PROPERTY
     */

    :root {
        /**
       * typography
       */

        --fs-1: 5.4rem;
    }

    /**
     * REUSED STYLE
     */

    .contenedor {
        max-width: 540px;
        width: 100%;
        margin-inline: auto;
    }

    /**
     * HEADER
     */

    .header .contenedor {
        max-width: unset;
    }

    /* category */
    .category {
        padding: 40px 50px;
    }

    /**
     * SERVICE
     */

    .servicio .grid-list {
        grid-template-columns: 1fr 1fr;
    }

    .servicio-card {
        text-align: left;
    }

    .servicio-card .card-icon {
        margin-inline: 0;
    }

    .servicio-card .btn-link {
        justify-content: flex-start;
    }
}

/**
   * responsive for large than 768px screen
   */

@media (min-width: 768px) {
    /**
     * CUSTOM PROPERTY
     */

    :root {
        /**
       * typography
       */

        --fs-1: 7rem;
        --fs-2: 4rem;
        --fs-4: 3.5rem;
    }

    /**
     * REUSED STYLE
     */

    .contenedor {
        max-width: 720px;
    }

    .btn {
        padding: 16px 32px;
    }

    .section-text.text-center {
        max-width: 50ch;
        margin-inline: auto;
    }

    .btn-link {
        --fs-12: 1.4rem;
    }

    /**
     * HERO
     */

    .hero-subtitulo {
        --fs-12: 1.4rem;
    }

    /**
     * FEATURES
     */

    .caracteristicas .grid-list {
        grid-template-columns: 1fr 1fr;
    }

    /* category */

    .category .course-item-group {
        grid-template-columns: 1fr 1fr;
    }

    /**
     * FOOTER
     */

    .footer-top .contenedor {
        grid-template-columns: 1fr 1fr;
    }
}

/**
   * responsive for large than 992px screen
   */

@media (min-width: 992px) {
    /**
     * REUSED STYLE
     */

    .contenedor {
        max-width: 960px;
    }

    /**
     * HEADER
     */

    .nav-open-btn,
    .navbar .envoltura,
    .overlay {
        display: none;
    }

    .header {
        padding: 20px;
    }

    .navbar,
    .navbar.active {
        all: unset;
    }

    .navbar-lista {
        display: flex;
        gap: 40px;
    }

    .navbar-link {
        color: var(--rich-black-fogra-29-1);
        font-weight: var(--fw-500);
        padding-block: 0;
    }

    .header .btn-outline {
        display: block;
        color: var(--go-green);
        font-weight: var(--fw-600);
        text-transform: uppercase;
        border: 1px solid var(--go-green);
        padding: 7px 18px;
        transition: var(--transition-1);
    }

    .header .btn-outline:is(:hover, :focus) {
        background-color: var(--go-green);
        color: var(--white);
    }

    /**
     * HERO
     */

    .hero {
        text-align: left;
    }

    .hero .contenedor {
        grid-template-columns: 1fr 0.7fr;
        align-items: center;
    }

    .hero-subtitulo {
        margin-inline: 25px 0;
    }

    .hero .btn-group {
        justify-content: flex-start;
    }

    /* blog */
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /**
     * ABOUT
     */

    .acerca .contenedor {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    /**
     * SERVICE
     */

    .servicio-card {
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    /**
     * FEATURES
     */

    .caracteristicas .grid-list {
        grid-template-columns: repeat(3, 1fr);
    }

    /**
     * FAQ
     */

    .faq .contenedor {
        grid-template-columns: 0.48fr 1fr;
        align-items: flex-start;
    }

    /**
     * FOOTER
     */

    .footer-top .contenedor {
        grid-template-columns: 1fr 0.8fr 0.8fr 1fr;
    }

    .footer-bottom .contenedor {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .copyright {
        margin-block-end: 0;
    }
}

/**
   * responsive for large than 1200px screen
   */

@media (min-width: 1200px) {
    /**
     * CUSTOM PROPERTY
     */

    :root {
        /**
       * typography
       */

        --fs-1: 7.5rem;
        --fs-4: 3.8rem;
    }

    /**
     * REUSED STYLE
     */

    .contenedor {
        max-width: 1140px;
    }

    .btn-link {
        --fs-12: 1.5rem;
    }

    /**
     * HERO
     */

    .hero {
        min-height: 100vh;
        display: grid;
        align-items: center;
    }

    /**
     * ABOUT
     */

    .acerca .contenedor {
        grid-template-columns: 1fr 0.7fr;
    }

    /* categoria */
    .category .course-item-group {
        grid-template-columns: repeat(3, 1fr);
    }
    .category {
        padding: 80px 120px;
    }

    .blog {
        padding: 120px 150px;
    }
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /**
     * FAQ
     */

    .faq-card .card-action.active + .card-content {
        max-height: 200px;
    }
}

.caja {
    border:1px solid #d9d9d9;
    height:30px;
    overflow: hidden;
    width: 100%;
    position:relative;
 }
 select {
    background: transparent;
    border: none;
    font-size: 14px;
    height: 30px;
    margin: .7rem 0;
    padding: 5px;
    width: 100%;
 }
 select:focus{ outline: none;}
 
 .caja::after{
     content:"\025be";
     display:table-cell;
     text-align:center;
     width:30px;
     height:100%;
     font-weight: bold;
     /* background-color:#d9d9d9; */
     background-color: #fff;
     position:absolute;
     top:0;
     right:0px;	
     pointer-events: none;
 }

 .bottomright {
    position: fixed;
    bottom: 20px;
    right: 16px;
    font-size: 18px;
    z-index: 100;
    width: 80px;
    height: 80px;
    border-radius: 100px;
    background-image: url(../images/whatsapp-icon.png);
    background-repeat: no-repeat;
    background-size: 80px 80px;
    background-position: center;
    box-shadow: 1px 1px 19px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 1px 1px 19px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 1px 19px 0px rgba(0,0,0,0.75);
}