/*******************************************************************************************************************************************************
CSS for notaryau.com *********************************************
******************************************************************************************************************************************************/
/* 1. Reset or Normalize to ensure consistency across different browsers.*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* 2. Base Styles  for HTML elements (e.g., typography, body, headings, paragraphs, links).*/
body {
	font-family:Arial;
    font-size: 16px;
}

.w50{
    width:50%;
}
.w100{
    width:100%;
}
.pT4vw {
    padding-top:4ww;
}

.text-base {
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    letter-spacing: 0em;
    text-transform: none;
  }

.greytext {
    color: #4b4b4b; 
}

.gBG {
    background-color: #4b4b4b;
    color:#DFE0E1;
}

.blackBG {
    background-color: #000000;
    color:#DFE0E1;
}
button.gBG {
    background-color: #4b4b4b;
    color:#DFE0E1;
}
.blackLightBG {
    background-color:#4b4b4b;
    color:#DFE0E1;
}
.whiteBG {
    background-color: #ffffff;
    color: #4b4b4b;
}
button.buttonPrim.whiteBG{
    width:100%;
}
a{
    text-decoration: none;  
}
a.link1{
	color:#4b4b4b;
	font-weight:500;
}
.unfollow {
   text-decoration: none; 
   color: inherit   
}
/* 
defined inline in header of website to reduce largest contentful paint (LCP) metric in lighthouse
h1 {
    font-weight: 500;
    line-height: 1.4em;
    font-size: 4rem;
}
.Heading1 {
    max-width: 800px;
 } */
h2,
.Heading2 {
    font-weight: 500;
    line-height: 1.4em;
    font-size: 2.8rem;
}


h3 {
    font-weight: 500;
    line-height: 1.4em;
    font-size:  2.2rem;
}
h4 {
    font-weight: 500;
    line-height: 1.4em;
    font-size: 1.6rem;
}
h5 {
    font-weight: 500;
    line-height: 1.4em;
    font-size: 1.3rem;
}
h6 {
    font-weight: 500;
    line-height: 1.4em;
    font-size: 1.15rem;
}

.fw500{
    font-weight:500;    
}
.paragraph1{
    font-weight: 300;
    line-height: 1.8em;
    font-size: 1.5rem;
}

.paragraph2{
    font-weight: 300;
    line-height: 1.8em;
    font-size: 1rem;
}

.paragraph3{
    font-weight: 300;
    line-height: 1.8em;
    font-size: 0.9rem;
}

.buttonPrim{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.02em;
    text-transform: none; 
    font-size: 1rem;  
    padding: 2.2vw 4vw;
}

.buttonSec{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.02em;
    text-transform: none; 
    font-size: 1.1rem;  
}

.buttonSecTer{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.02em;
    text-transform: none; 
    font-size: 0.9rem;  
}

ul {
    list-style-type: none;
  }

.Ihover {
    display:none;
}

/*  HEADER / NAV STYLES  -------------------------------------------------                                                  */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.2vw 4vw;
    background-color: #ffffff;
    width: 100%;
}
.header input{
    background-color:#4b4b4b;
}

.logo img {
    aspect-ratio: 532 / 497;
    height:160px;
    width:auto;
}


.nav {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

.nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav ul li {
    position: relative;
    margin-left: 2rem; 
    padding: 0.5rem 0;
}

.nav ul li a {
    text-decoration: none;
    font-size: 20px;
    color: #4b4b4b;
}
/* for full screen menu */
.nav ul li:hover {
    border-bottom:1px solid ;
}

/* for overlay menu */
nav ul li a.nactive {
    text-decoration: underline;
    text-decoration-thickness: .75px;
    text-underline-offset: 7px;   
}

.nav ul li.dropdown:hover  .dropdown-menu {
    display: block;
}

.nav ul li.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top:105%;
    left: 0;
    background-color: #ffffff;
    border: 1px none #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    min-width: 145px;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    color: #4b4b4b;
}

.dropdown-menu li a:hover {
    background-color: #ffffff;

}
.menu-toggle{
    display:none;
    padding:0;
}

/* NAV OVERLAY STYLES -------------------------------------------------*/
.overlaym {
    height: calc(100% - 80px);
    width: 100%;
    position: fixed;
    top: 80px;
    left: 0;
    background-color: #ffffff;
    transition: 0.5s;
    display: none; /* Initially hidden */
    z-index: 10;
}

.overlay-content-menu {
    position: relative;
    top: 5%;
    width: 100%;
    max-height: 90vh; /* Make sure content doesn't overflow screen */
    text-align: center;
    margin-top: 20px;
    display: flex;
    flex-direction: column;   
}

.overlay-nav {
    overflow-y: auto; /* Allow scrolling */
    max-height: calc(90vh - 50px); /* Adjust this if needed, ensure it fits the screen */
}

.overlay-nav ul {
    list-style: none;
    padding: 0;
}

.overlay-nav li {
    padding: 8px 4vw;
    text-align: left;
}

.overlay-nav li a {
    text-decoration: none;
    font-size: 8.5vmin;
    color:#4b4b4b;
    display: block;
    transition: 0.3s;
}

.overlay-nav li a:hover, .closebtnm:hover {
    opacity: 0.7; 
    text-decoration: underline;
    text-decoration-thickness: .75px;
    text-underline-offset: 5px;
}

/* Close button style */
.closebtnm {
    position: fixed;
    top: 90px;
    right: 20px;
    font-size: 8.5vmin;
    color: #4b4b4b;
    cursor: pointer;
}

/* MAIN BODY STYLES -------------------------------------------------*/
.mainbody {
    padding: 0 4vw 2.2vw 4vw;
}
.verticalsecH {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin:0;
    width:100%;
}
.verticalsec1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding:10vw 4vw;
    background-color:#4b4b4b;
    color:#DFE0E1;
    width: 100%;
    margin:0;
}

.verticalsec2, .verticalsec3  {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #ffffff;
    color: #4b4b4b;
    width: 100%;
    margin:0;
}
.verticalsec2 {
    padding:2.2vw 4vw;
}

.horizontalsec2, 
.horizontalsec3, 
.horizontalsec4 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #ffffff;
    width: 100%;    
}
.horizontalsec1 {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background-color: #ffffff;
    width: 100%;    
}

.horizontalsec2 p:nth-child(1), 
.horizontalsec3 p:nth-child(1) {
    width: 15vw; 
    text-align: left; 
}

.horizontalsec2 p:nth-child(3), 
.horizontalsec3 p:nth-child(3),
.horizontalsec2 p:nth-child(4), 
.horizontalsec3 p:nth-child(4) {
    width: 15vw; 
    text-align: right; 
}

.horizontalsec2 p:nth-child(2), 
.horizontalsec3 p:nth-child(2) {
    width: 55vw; 
    text-align: left; 
}

.horizontalsec5 {
    display: flex;
    justify-content: left;
    align-items: flex-start;
    width: 50%;    
}

.BOASBtn { 
    background-color: rgb(75, 75, 75); 
    color: #DFE0E1; /* White text */
    cursor: pointer;
    padding-left: 16px;
    padding-right: 16px;
    border: none;
    border-radius: 4px;
    margin-left: 10px;
    transition: background-color 0.3s;
    text-align: center;
    text-decoration: none;
    font-weight: 300;
    font-size: 16px;
    height:100%;
    white-space: nowrap;
}

.BOASBtn:hover {
    opacity:0.7;
}

.button-container {
    display: flex; 
    align-items: left;
    margin-bottom: 20px;
}

/*  horm psage  -------------------------------------------------*/

.KGCimg{
    aspect-ratio: 1600 / 1066; 
    width: 100%;
    height: auto;   
}


/*   contact page ----------------------------------------------------------------- */

.horizontalsec1-item {
    flex: 1;
} 

.verticalsec3 {
    padding:2.2vw 0;
}
form .form-group .file-upload-container {
    border: 1px solid #757575;
    padding: 20px;
    position: relative;
    text-align: left;
    cursor: pointer;
}

.form-group select{
    width: 100%;
    padding: 10px;
    border: 1px solid #757575;
    border-radius: 2px;
}

.file-upload-container.dragover {
    border-color: #000000;
}
.file-upload-container input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-instructions, .file-names {
    text-align: left;
}

/* Hover effect for input, textarea, and select elements */
input[type="text"]:hover,
input[type="tel"]:hover,
input[type="email"]:hover,
textarea:hover,
select:hover,
.file-upload-container:hover {
    background-color: #bebec0; /* Change this to your desired color */
}


/*  FORM STYLES  -------------------------------------------------*/
form {
    width:100%;
}
.form-container *{
    font-family: inherit;
    color: #4b4b4b;
    font-weight: 300;
    line-height: 1.8em;
    font-size: 1rem;
}

.form-container h4{
    font-weight: 500;
    line-height: 1.4em;
    font-size: 1.6rem;
    padding-top:1.6rem;   
}
.form-group {
    margin-bottom: 15px;
}
label {
    display: block;
    margin-bottom: 5px;
}
input, textarea {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}
.form-group-inline {
    display: flex;
    justify-content: space-between;
}
.form-group-inline .form-group {
    flex: 1;
    margin-right: 10px;
}
.form-group-inline .form-group:last-child {
    margin-right: 0;
}

button:hover {
    opacity: 0.7;
}

/* Loading indicator container */
.loading-indicator {
    text-align: center;
    margin-top: 20px;
}

/* Spinner */
.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #000000;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
}

/* Spinner Animation */
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Button loading state */
.buttonPrim[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

input.invalid, textarea.invalid, select.invalid {
	border: 2px solid red;
}
input.valid, textarea.valid, select.valid {
	border: 2px solid #00a9bc;	
}

/* This is the style for our custom error messages */
 .errorI, .error1, .error2, .error3, .error4, .error5, .error6, .error7 {
     width : 100%;
     padding: 10;
     font-size: 65%;
     color: white;
     background-color: red;
     border-radius: 0 0 5px 5px;
     -moz-box-sizing: border-box;
     box-sizing: border-box;
}
 .errorI.active, .error1.active, .error2.active, .error3.active, .error4.active, .error5.active, .error6.active , .error7.active{
     padding: 0.5em;
}
#ContactForm{
	margin-top: 14px;
}
.form-style-1 {
	margin:0;
    width:320px;
    padding: 0;
}
.form-style-1 li {
    display: block;
    list-style: none;
    margin: 1em 0 0 0;
}
.form-style-1 label{
    margin:1em 0 0 0;
    display:block;
    font-weight: bold;
	font-size: 14px;
}
.form-style-1 input[type=text],.form-style-1 input[type=date], .form-style-1 input[type=datetime], .form-style-1 input[type=number], .form-style-1 input[type=search], .form-style-1 input[type=time], .form-style-1 input[type=url], .form-style-1 input[type=email], .textarea, select{
    box-sizing: border-box;
    margin:0px;
	transition: all 0.30s ease-in-out;
    outline: none; 
}
.form-style-1 input[type=text]:focus,
.form-style-1 input[type=date]:focus,
.form-style-1 input[type=datetime]:focus,
.form-style-1 input[type=number]:focus,
.form-style-1 input[type=search]:focus,
.form-style-1 input[type=time]:focus,
.form-style-1 input[type=url]:focus,
.form-style-1 input[type=email]:focus,
.form-style-1 textarea:focus,
.form-style-1 select:focus{
     background-color: #D3D3D3;
}
.form-style-1 .field-long{
    width: 100%;
	height: 50px;	
}
.form-style-1 .field-select{
    width: 100%;
	height: 50px;	
	outline-color:red;
}
.form-style-1 .field-textarea{
    height: 200px;
	font-family:Arial;
	font-size:10px;
}
.form-style-1 input[type=submit], .form-style-1 input[type=reset], .form-style-1 input[type=button]{
    background:darkgrey;
	width:100%;
    padding: 2vw;
    border: none;
    color: black;
	min-height:50px;
}
.form-style-1 input[type=submit]:hover, 
.form-style-1 input[type=reset]:hover, 
.form-style-1 input[type=button]:hover{
	background-color: rgb(41, 181, 202); 
    color:white;
	box-shadow:none;
}
.form-style-1 .required{
    color:black;
}
.fax {
display: none;	
}
.captcha {
	display: inline-block;
	font-size:15px;
	}


/*  FEES & SERVICES STYLES  -------------------------------------------------*/
.HI{
    display:none;
}


.service-option-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding:0;
}

.serviceO:hover,
.serviceO:hover .Hflex1 {
    background-color: #d0d0d0;
}

.grid-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding:0;
}

.grid-item button{
    width:100%;
}
.item-info {
     display: none;  /*Hide until posted as innerHTML */
}

.item-column, .item-columnA, .item-columnB{
width: 50%;
}

.Hflex1 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background-color: #ffffff;
    width: 100%;  
    padding:0 ;  
    margin:0;
}

.Hflex1 > div:nth-child(1) {
    width: 15%; 
    text-align: left; 
}

.Hflex1 > div:nth-child(2) {
    width: 65%; 
    text-align: left; 
}

.Hflex1 > div:nth-child(3){
    width: 20%; 
    text-align: left; 
}

.Vflex1  {
    display: flex;
    flex-direction: column;
    width: 100%; 
}

.Vflex1 > div {
    width: 100%; /* Ensure the document paragraph spans full width */
}

.Hflex2 {
    display: flex;
    justify-content:flex-start;
    width: 100%; /* Span full width of its container */ 
}

.Hflex2 > p {
    width: 50%; /* Each paragraph takes up 50% of the width */
    margin: 0; /* Remove any margin to ensure proper alignment */
}

.Vflex1 > button{
    width:100%;
}

/* CSS for SOC overlays */
.overlay-container {
    display: none; /* Initially hidden */
    align-items: flex-start; /* Align items to the top */
    justify-content:left ; /* Center the overlay content vertically */
    position: fixed; /* Ensures overlay stays on top of content */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  }
  
  .overlay-window {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: 100px; /* Push the top of the overlay window down by 140px */
    background-color: #ffffff; /* White background for content */
    padding: 20px; /* Add some padding for aesthetics */
    border-radius: 5px; /* Rounded corners */
    text-align: left; /* Ensure text is left-aligned */
    max-width: 1200px;
    width:90%;
    max-height: calc(100% - 100px); /* Limit the maximum height */
  }

 #SOCoverlayC{
    overflow-y: auto; /* Allow scrolling */
 }

.overlay-content{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.overlay-window button{
    min-width: 200px;
}

.close-button {
    background-color: transparent; /* Transparent background */
    border: none; /* Remove default border */
    cursor: pointer; /* Indicate clickable element */
    font-size: 8.5vmin; /* Adjust font size as needed */
    color: #4b4b4b; /* Black text color */
    position: absolute;
    top: 10px;
    right:10px;
    z-index:10;
  }
  
.close-button:hover  {
    text-decoration: underline;
    text-decoration-thickness: .75px;
    text-underline-offset: 5px;
  }

div.SBpage {
    margin-bottom: calc(0.9em + 2.2vw);   
}

.accordionButton{
    display: block;
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    color:#DFE0E1;
    font-size: 1.25rem;
    line-height: 1.8em; 
    transition: background-color 0.3s;
    padding:2.2vw 2.2vw;
    background-color: #4b4b4b;    
}

/*-------FAQ  page style ------------------------------------------------------------------------------*/	 
.faqcontainer {
    width: 100%;
}

.search-container {
    display: flex; 
    align-items: left;
    margin-bottom: 20px;
}

.search-bar {
    flex: 1; /* Allow search bar to take up remaining space */
    padding: 10px;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.8em;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.reset-button {
    background-color: rgb(75, 75, 75); 
    color: #DFE0E1; /* White text */
    cursor: pointer;
    padding: 10px 20px;
    font-size: 1.25rem;
    border: none;
    border-radius: 4px;
    margin-left: 10px;
    transition: background-color 0.3s;
}

/* Styles for  all accordions */
.accordion, 
.sub-accordion,
.sub2-accordion {
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    color:#DFE0E1;
    font-size: 1.25rem;
    line-height: 1.8em; 
    transition: background-color 0.3s;
    padding:2.2vw 2.2vw;
}

.accordion {
    background-color: #4b4b4b;    
}
.sub-accordion {
    background-color: rgb(75, 75, 75,0.7);    
}
.sub2-accordion {
    background-color: rgb(75, 75, 75,0.5);    
}

div:hover.accordion, 
div:hover.sub-accordion,
div:hover.sub2-accordion {
    opacity:0.7;
}
/* Styles for category panels content */
.panel {
    display: none;
}

#FAQ div.panel {
    padding: 0 0 0 2.2vw;
}

.sub-panel {
    display: none;
    padding: 0 0 0 2.2vw;
    background-color: #f9f9f9;
}

.sub2-panel {
    display: none;
    padding: 2.2vw 0;
    background-color: #f9f9f9;
}


.accordion.active{
    background-color: rgb(2, 112, 160); 
}
.sub-accordion.active{
    background-color: rgb(90, 175, 201); 
}

.sub2-accordion.active {
    background-color: rgb(126, 190, 200); 
}

.panel p {
    margin: 0;
    padding: 10px 0;
}

.contact-info {
    margin-top: 20px;
}

.FAQvflex-container {
    display: flex;
    align-items: Left; /* Center vertically */
    gap: 20px; /* Adjust spacing between video and text */  
}
.FAQvflex-container video {
    flex-shrink: 0; /* Prevent video from shrinking */
}
.FAQvflex-container p {
    margin: 0;
    flex-grow: 1; /* Allow text to take up available space */    
}

.VP{
    width:320px;
    height:240px;
}

.NC{
    width:160px;
    height:160px;
}

.horizontalsec4 p:nth-child(1), 
.horizontalsec4 p:nth-child(3) {
    width: 15vw; 
    text-align: left; 
}
.horizontalsec4 p:nth-child(2), 
.horizontalsec4 p:nth-child(2) {
    width: 70vw; 
    text-align: left; 
}




/*  consulate item page ----------------------------------------------------------------- */
.mybiframe-container{
    width: 100%;
    display: flex;
    justify-content: left;
}
#myAiframe,
#mybiframe, 
#myCiframe {
    width: 100%;
    min-width: 320px;
    max-width: 1000px;
    min-height:50vh;
    border: 1px solid #757575;
}

#Consulates h3:hover,
#Consulates a:hover {
    border-bottom: 1px solid #000000;
}

#Consulates .accordion {
    background-color: #ffffff;
    color:#000000;
    border-bottom: none;
}
/*map page style ------------------------------------------------------------------------------*/	 
#spcoloc{
	width:100vw; 
	height:100vh; 
	padding:0; 
	margin:0;
} 
.iw_title img{
height:100px;
width:100px;
}

.iw-container p {
    margin: 5px 0; /* Spacing between paragraphs */
    font-size: 12px; /* Font size */
    color: #4b4b4b; /* Text color */
}

/*wizard page style ------------------------------------------------------------------------------*/





/*  FOOTER STYLES  -------------------------------------------------*/
.footer{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2.2vw 4vw;
    background-color: #ffffff;
    width: 100%;
}
.footer1{
    display: flex;
    justify-content: space-between;
    align-items: left;
    background-color: #ffffff;
    width: 100%;
}
.footer2{
    display: flex;
    justify-content:space-between;
    align-items: left;
    background-color: #ffffff;
    width: 100%;
}
/*  RESPONSIVE STYLES  -------------------------------------------------*/
@media (max-width: 360px) {
    .footer2 {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 2.2vw 4vw;
    }
}

@media (max-width: 400px) {
    .serviceC p,
    .serviceC button {
        font-size: 0.8rem;
    }


}

@media (max-width: 840px) {
    .logo img {
        aspect-ratio: 532 / 497;
        height: 120px; /* Adjust percentage for smaller screens */      
        width:auto;
    }

    .nav {
        display: none;
    }

    .nav .show,
    .menu-ocontainer {
        display: flex;  
        flex-direction: column;   
        position: absolute; /* Position them absolutely relative to the header */
        top: 100%; /* Position them below the header */
        left: 0; /* Align them to the left side of the header */
        background-color: rgb(41, 181, 202); 
        padding-left: 12px;
    }

    .hbimage {
        height: auto;
        width: 35px;
    }

    .menu-toggle {
        display: block;
    }

    .header a:hover {
        opacity: 0.7;
        background-color: rgba(77, 75, 75, 0.5);
    }

    .close-obutton {
        background-color: transparent; /* Transparent background */
        border: none; /* Remove default border */
        cursor: pointer; /* Indicate clickable element */
        font-size: 8.5vmin; /* Adjust font size as needed */
        color: #000; /* Black text color */
        position: absolute;
        top: 10px;
        right: 10px;
    }

    .horizontalsec1,
    .overlay-content,
    .FAQvflex-container {
        flex-direction: column;
    }

    .w50,
    .item-column,
    .item-columnA,
    .item-columnB,
    .FAQvflex-container video,
    .FAQvflex-container p {
        width: 100%;
    }

    .grid-container {
        grid-template-columns: 1fr;
    }


}

@media (min-width: 768px) {
    h1 {
        font-size: 5rem;
    }
    h2 {
        font-size: 3.5rem;
    }
    h3 {
        font-size: 2.8rem;
    }
    h4 {
        font-size: 2rem;
    }
    h5 {
        font-size: 1.5rem;
    }
    h6 {
        font-size: 1.3rem;
    }
    .paragraph1 {
        font-size: 1.75rem;
    }
    .paragraph2 {
        font-size: 1.25rem;
    }

}

@media (min-width: 1000px) { 
    .footer2 {
        width: 50%;
    }
    
}

@media (min-width: 1200px) {
    h1 {
        font-size: 6rem;
    }
    h2 {
        font-size: 4rem;
    }
    h3 {
        font-size: 3rem;
    }
    h4 {
        font-size: 2.5rem;
    }
    h5 {
        font-size: 2rem;
    }
    h6 {
        font-size: 1.5rem;
    }
    .paragraph1 {
        font-size: 2rem;
    }
    .paragraph2 {
        font-size: 1.5rem;
    }
    .grid-container {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
