
/* Second BG options */
body {
	background: linear-gradient(-45deg, rgb(40 48 43 / 50%), rgba(37, 111, 67, 0.5), rgb(42 52 46 / 50%), rgba(73, 189, 120, 0.5));
    background-size: 400% 400%;
	animation: levels 20s ease infinite;
	height: 100vh;
}

@keyframes levels {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}


/* Basic */

	html {
		box-sizing: border-box;
	}
    *, *:before, *:after {
		box-sizing: inherit;
	}
/* removed bg
	body {
		background: #1b1f22;
	}
*/
/* BG */

#bg {
    -moz-transform: scale(1.0);
    -webkit-transform: scale(1.0);
    -ms-transform: scale(1.0);
    transform: scale(1.0);
    backface-visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

    #bg:before, #bg:after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    #bg:before {
        -moz-transition: background-color 2.5s ease-in-out;
        -webkit-transition: background-color 2.5s ease-in-out;
        -ms-transition: background-color 2.5s ease-in-out;
        transition: background-color 2.5s ease-in-out;
        -moz-transition-delay: 0.75s;
        -webkit-transition-delay: 0.75s;
        -ms-transition-delay: 0.75s;
        transition-delay: 0.75s;
        background-image: linear-gradient(to top, rgba(101, 121, 109, 0.5), rgba(163, 196, 176, 0.5)), url("../images/overlay.png");
        background-size: auto,
256px 256px;
        background-position: center,
center;
        background-repeat: no-repeat,
repeat;
        z-index: 2;
    }

    #bg:after {
        -moz-transform: scale(1.125);
        -webkit-transform: scale(1.125);
        -ms-transform: scale(1.125);
        transform: scale(1.125);
        -moz-transition: -moz-transform 0.325s ease-in-out, -moz-filter 0.325s ease-in-out;
        -webkit-transition: -webkit-transform 0.325s ease-in-out, -webkit-filter 0.325s ease-in-out;
        -ms-transition: -ms-transform 0.325s ease-in-out, -ms-filter 0.325s ease-in-out;
        transition: transform 0.325s ease-in-out, filter 0.325s ease-in-out;
        background-image: url("../images/bg.jpg");
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        z-index: 1;
    }



    /* Type */

	html {
		font-size: 16pt;
	}

		@media screen and (max-width: 1680px) {

			html {
				font-size: 12pt;
			}

		}

		@media screen and (max-width: 736px) {

			html {
				font-size: 11pt;
			}

		}

		@media screen and (max-width: 360px) {

			html {
				font-size: 10pt;
			}

		}

	body, input, select, textarea {
		color: #ffffff;
		font-family: "Source Sans Pro", sans-serif;
		font-weight: 300;
		font-size: 1rem;
		line-height: 1.65;
        text-align: center;
	}

	a {
		-moz-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
		-webkit-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
		-ms-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
		transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
		text-decoration: none;
		color: inherit;
	}

		a:hover {
			border-bottom-color: transparent;
		}

	strong, b {
		color: #ffffff;
		font-weight: 600;
	}

	em, i {
		font-style: italic;
	}

	p {
		margin: 0 0 2rem 0;
        opacity: 0.85;
		letter-spacing: 0.05rem;
        font-style: oblique;
	}

	h1, h2, h3, h4, h5, h6 {
		color: #ffffff;
		font-weight: 600;
		line-height: 1.5;
		margin: 0 0 1rem 0;
		text-transform: uppercase;
		letter-spacing: 0.2rem;
        opacity: 0.90;
	}

		h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
			color: inherit;
			text-decoration: none;
		}


	h1 {
		font-size: 2.25rem;
		line-height: 1.3;
		letter-spacing: 0.5rem;
	}

	h2 {
		font-size: 1.5rem;
		line-height: 1.4;
		letter-spacing: 0.5rem;
	}

	h3 {
		font-size: 1rem;
	}

	h4 {
		font-size: 0.8rem;
	}

	h5 {
		font-size: 0.7rem;
	}

	h6 {
		font-size: 0.6rem;
	}

	@media screen and (max-width: 736px) {

		h1 {
			font-size: 1.75rem;
			line-height: 1.4;
		}

		h2 {
			font-size: 1.25em;
			line-height: 1.5;
		}

	}

	sub {
		font-size: 0.8rem;
		position: relative;
		top: 0.5rem;
	}

	sup {
		font-size: 0.8rem;
		position: relative;
		top: -0.5rem;
	}

	blockquote {
		border-left: solid 4px #ffffff;
		font-style: italic;
		margin: 0 0 2rem 0;
		padding: 0.5rem 0 0.5rem 2rem;
	}

	code {
		background: rgba(255, 255, 255, 0.075);
		border-radius: 4px;
		font-family: "Courier New", monospace;
		font-size: 0.9rem;
		margin: 0 0.25rem;
		padding: 0.25rem 0.65rem;
	}

	pre {
		-webkit-overflow-scrolling: touch;
		font-family: "Courier New", monospace;
		font-size: 0.9rem;
		margin: 0 0 2rem 0;
	}

		pre code {
			display: block;
			line-height: 1.75;
			padding: 1rem 1.5rem;
			overflow-x: auto;
		}

	hr {
		border: 0;
		border-bottom: solid 1px #ffffff;
		margin: 2.75rem 0;
	}

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

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

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

    /* Footer */


		#footer .copyright {
			letter-spacing: 0.2rem;
			font-size: 0.6rem;
			opacity: 0.75;
            width: 100%;
            max-width: 100%;
            margin-top: 2rem;
            text-align: center;
			margin-bottom: 0;
			text-transform: uppercase;
		}


/* Responsive Icon */
.icon {
    text-decoration: none;
    border-bottom: none;
    position: relative;
    max-width: 100%; /* Ensures the image scales down */
    height: auto;    /* Maintains aspect ratio */
    display: block;   /* Makes the image a block element for better centering */
    margin: 0 auto;  /* Centers the image horizontally */
}

/* Styles for smaller screens (tablets and phones) */
@media (max-width: 768px) { /* Adjust breakpoint as needed */
    .icon {
        width: 80%; /* Adjust width for smaller screens */
    }
    .container{
        text-align: center;
    }
    .containerServices4LargeScreen{
        display: none;
    }
    .containerServices4SmallScreen{
        display: block;
    }
    .image {
        width: 40px; /* Adjust width for smaller screens */
    }
}

/* Styles for larger screens (desktops) */
@media (min-width: 769px) {
    .containerServices4LargeScreen {
      display: block;
    }
    .containerServices4SmallScreen {
      display: none;
    }
    .icon {
        width: auto; /* Adjust width for smaller screens */
    }
    .image{
        width: 64px;
    }
}



/* Responsive list */
/* Styles for smaller screens */
@media (max-width: 768px) { 
  .services-list {
    padding: 0; /* Remove default padding */
  }

  .service-item {
    margin-bottom: 20px; /* Add spacing between items */
  }

  .service-item h3 {
    font-size: 1.5rem; /* Adjust heading size */
  }

  .service-item p {
    font-size: 1rem; /* Adjust paragraph size */
  }
}

/* Image */

.image {
    border-radius: 4px;
    border: 0;
    display: inline-block;
    position: relative;
    width: 64px;
    filter: invert(1);
}


    ul {
        display: -moz-flex;
        display: -webkit-flex;
        display: -ms-flex;
        display: inline-flex;
        margin-bottom: 0;
        list-style: none;
        padding-left: 0;
        border-radius: 4px;
        text-align: center;
    }

    ul li {
        padding-left: 10px;
        border-left: solid 1px #ffffff;
    }

       ul li:first-child {
            border-left: 0;
        }

/* List */

ol {
    list-style: none;
    margin: 0 0 2rem 0;
    padding-left: 1.25em;
}

    ol li {
        padding-left:   5em;
    }

ul {
    list-style: none;
    margin: 0 0 2rem 0;
    padding-left: 1em;
}

    ul li {
        padding-left: 1em;
        padding-right: 1em;
    }

    ul.alt {
        list-style: none;
        padding-left: 0;
    }

        ul.alt li {
            border-top: solid 1px #ffffff;
            padding: 0.5em 0;
        }

            ul.alt li:first-child {
                border-top: 0;
                padding-top: 0;
            }

.mail-layer {
  display: inline-block; /* or block, depending on desired layout */
  width: 200px; /* adjust as needed */
  height: 50px; /* adjust as needed */
  background-color: transparent; /* or any color */
  cursor: pointer; /* change cursor to pointer on hover */
}

