/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

html, body {
	max-width: 100vw;
	overflow-x: hidden;
}

.grecaptcha-badge { 
  visibility: hidden !important;
}

.accordion .container {
    position: relative;
    margin: 15px 0;
    transition: all 0.5s linear;
}

.accordion p {
    font-family: "Lato", Sans-serif;
    font-size: 16px !important;
  }

/* Positions the labels relative to the .container. Adds padding to the top and bottom and increases font size. Also makes its cursor a pointer */
.accordion .label {
    position: relative;
    padding: 10px 0;
    color: black;
    cursor: pointer;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.accordion .label h3 {
    font-family: "Lato", Sans-serif;
    font-size: 18px !important;
    font-weight: 800;
    margin: 0 !important;
}

/* Positions the plus sign 5px from the right. Centers it using the transform property. */

.accordion .label::before {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-weight: 900;
    content: "\f078";
    color: black;
    position: absolute;
    top: 50%;
    right: 20px;
    font-size: 22px;
    transform: translateY(-50%);
    transition: all 0.5s linear;
  }
  
  /* Hides the content (height: 0), decreases font size, justifies text and adds transition */
  
  .accordion .content {
    position: relative;
    background: white;
    max-height: 0;
    font-size: 20px;
    text-align: justify;
    width: 100%;
    overflow: hidden;
    transition: all 1s;
  }

  .accordion .content p {
    font-family: "Lato", Sans-serif;
    font-weight: 400;
    font-size: 16px !important;
    padding: 30px;
    margin: 0 !important;
  }
  
  /* Adds a horizontal line between the contents */
  
  .accordion hr {
    width: 100;
    margin-left: 0;
    border: 1px solid grey;
  }

  /* Unhides the content part when active. Sets the height */
  .accordion .container.active .content {
    display: block;
    max-height: 1000px;
  }
  
  /* Changes from plus sign to negative sign once active */
  
  .accordion .container.active .label::before {
    content: "\f077";
  }