/*
font-family: 'Baloo Paaji 2', cursive;
font-family: 'Poppins', sans-serif;
*/

*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
:root {
    --primary-color: #FFFFFF;
    --secondary-color: #aa0100;
    --complimentary-color: #FFFFFF;
    --contrast-color: #000000;
    --close-color: #aa0100;
	--dark-color:#191919;
}
body{
    background-color: #FFFFFF;
}
header{
    display: flex; 
    justify-content: space-between;
}
header img{
    width: 120px;
    height: 120px;
}
.headerImg{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}
nav ul {
    display: flex;
    font-family: 'Baloo Paaji 2', cursive;
}

nav li {
    margin: 0 20px;
}

nav a {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Baloo Paaji 2', cursive;
    transition: text-decoration 0.3s ease-in-out;
}

nav a:after{
    display:block;
	content: '';
	border-bottom: solid 3px var(--secondary-color);  
	transform: scaleX(0);  
	transition: transform 250ms ease-in-out;
	margin-top: 6px;
}

nav a:hover:after,
nav a:focus:after,
nav a:active:after{ 
	transform: scaleX(1); 
}

footer{
    display: flex;
    flex-direction: row;
    background-color: var(--contrast-color);
    color: var(--complimentary-color);
    font-family: 'Baloo Paaji 2', cursive;
    justify-content: space-between;
}

a{
    color: var(--contrast-color);
    text-decoration: none;
}

ul {
    list-style: none;
}

h3{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Baloo Paaji 2', cursive;
    font-size: 16.04px;
}
h2{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Poppins', sans-serif;
    font-size: 25.96px;
}
h1{
    font-size: 42px;
    font-family: 'Poppins', sans-serif;
}

h4{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero{
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 80px;
    margin-bottom: 80px;
}
.heroText{
    align-self: center;
    justify-self: center;
    margin-left: 30px;
    font-family: 'Poppins', sans-serif;
}

.three-d {
  box-shadow: 0 0 10px 5px rgba(255, 0, 0, 0.5);
  width: 200px;
  height: 200px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.three-d:hover {
  transform: rotate(360deg);
  box-shadow: 0 0 20px 10px rgba(255, 0, 0, 0.5);
}

.vision{
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    width: 450px;
    height: 450px;
    align-items: center;
    background-color: var(--contrast-color);
    color: var(--complimentary-color);
    padding-top: 60px;
    padding-bottom: 60px;
    border-radius: 50% 50% 0% 0%;
    /*border-radius: 50% 50% 0% 0%;*/
    box-shadow: rgba(170, 1, 0, 0.4) -5px 5px, rgba(170, 1, 0, 0.3) -10px 10px, rgba(170, 1, 0, 0.3) -15px 15px, rgba(170, 1, 0, 0.1) -20px 20px, rgba(170, 1, 0, 0.05) -25px 25px;
}
.theVision{
    align-self: center;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
    font-family: 'Poppins', sans-serif;
    margin-top: 36px;
}
.services{
    display: flex;
    align-items: center;
    justify-content: space-between;
    justify-items: center;
    flex-direction: column;
    margin-bottom: 60px;
    margin-top: 60px;
}

.servicesCont{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 80%;
    gap: 3rem;
    margin-top: 45px
}

.about{
    display: flex;
    flex-direction: column;
    width: 450px;
    height: 450px;
    border-radius: 50% 50% 0% 0%;
    /*border-radius: 50% 50% 0% 0%;*/
    box-shadow: rgba(170, 1, 0, 0.4) -5px 5px, rgba(170, 1, 0, 0.3) -10px 10px, rgba(170, 1, 0, 0.3) -15px 15px, rgba(170, 1, 0, 0.1) -20px 20px, rgba(170, 1, 0, 0.05) -25px 25px;
    background-color: #000000;
    color: var(--complimentary-color);
    margin-left: auto;
    margin-right: auto;
    align-self: center;
    justify-content: center; 
    padding-top: 60px;
    padding-bottom: 60px;
    font-family: 'Poppins', sans-serif; 
}

.section-background {
    margin-top: 80px;
    position: relative;
    color: var(--contrast-color);
}

#circle {
    background: var(--contrast-color);
    border-radius: 50%;
    width: 720px;
    height: 720px;
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translate(-50%, -50%);
}

.contact{
    display: grid;
    grid-template-columns: 1fr;
     margin-top: 60px;
}
.contactForm{
    display: flex;
    flex-direction: column;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    font-family: 'Baloo Paaji 2', cursive;
}
.cta{
    margin-top: 60px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 30px;
    border-radius: 18px;
    font-family: 'Poppins', sans-serif;
}

.slogan{
    margin-top: 60px;
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
    align-self: center;
    font-family: 'Poppins', sans-serif;
}

.slogan p{
    margin-left: auto;
    margin-right: auto;
    align-self: center;
    text-align: center;
}

/* Animation styles */
.hero-text,.hero-image,.feature,.cta.btn {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.hero-text.animate,.hero-image.animate,.feature.animate,.cta.btn.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature.animate {
    animation-duration: 1s;
    animation-name: slideIn;
    animation-timing-function: ease-out;
}
#loadingScreen{
    display: flex;
    position: absolute;
    z-index: 100;
    width: 100%;
    height: 100%;
    background-color: white;
    overflow: hidden;
    align-items: center;
    align-content: center;
    justify-items: center;
}

#loading {
    display: block;
    position: absolute;
    z-index: 100;
    width: 100%;
    height: 100%;
    background-color: white;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    align-self: center;
}

#loaderImage{
    width: 270px;
    height: 270px;
    margin-left: auto;
    margin-right: auto;
    align-self: center;
}

#loadingScreen img{
    margin-left: auto;
    margin-right: auto;
    align-self: center;
    justify-self: center;
}

.holdLoad{
     margin-left: auto;
    margin-right: auto;
    align-self: center;
    display: grid;
}

@keyframes slideIn {
    from {
    transform: translateX(-100%);
    }
    to {
    transform: translateX(0);
    }
}

.cta.btn.animate {
    animation-duration: 1s;
    animation-name: fadeIn;
    animation-timing-function: ease-out;
}

@keyframes fadeIn {
from {
    opacity: 0;
    }
    to {
    opacity: 1;
    }
}
.serviceCard{
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    border-radius: 50% 50% 0% 0%;
    width: 360px;
    height: 360px;
    padding: 30px 30px 15px 15px;
    font-family: 'Baloo Paaji 2', cursive;
}
h5{
    margin-top: 30px;
    width: 60%;
    text-align: center;
}

.serviceCard img{
    width: 90px;
    height: 90px;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
}
.serviceCard h3{
    width: 60%
}

.serviceCard p{
    align-self: center;
    margin-left: auto;
    margin-right: auto;
}
.phoneImg{
    margin-top: 100px;
}
.phoneImg img{
    width: 400px;
    height: 400px
}

input[type=text]{
    
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
    border-color: var(--secondary-color);
    margin-bottom: 12px;
    border-style: solid;
    padding: 12px 20px;
    font-family: 'Baloo Paaji 2', cursive;
    font-size: 16.04px;
}
input[type=email]{
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
    margin-bottom: 12px;
    border-style: solid;
    padding: 12px 20px;
    border-color: var(--secondary-color);
    font-family: 'Baloo Paaji 2', cursive;
    font-size: 16.04px;
}
input[type=tel]{
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
    margin-bottom: 12px;
    border-style: solid;
    padding: 12px 20px;
    border-color: var(--secondary-color);
    font-family: 'Baloo Paaji 2', cursive;
    font-size: 16.04px;
}
textarea{
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
    margin-bottom: 12px;
    padding: 12px 20px;
    border-color: var(--secondary-color);
    border-style: solid;
    font-family: 'Baloo Paaji 2', cursive;
    font-size: 16.04px;
    
}
textarea::placeholder {
  color: rgb(112, 107, 107);
  margin-bottom: 12px;
  padding: 1px 0px;
  border-color: var(--secondary-color);
}

button{
    margin-top: 30px;
    font-size: 25.96px;
    width: 120px;
    height: 60px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    background-color: var(--secondary-color);
    color: var(--complimentary-color);
    border: var(--secondary-color);
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    font-family: 'Baloo Paaji 2', cursive;
    cursor: pointer
}
.callToAction{
    font-size: 25.96px;
    font-weight: 600;
}

.device-agnostic{
    color: var(--secondary-color)
}
.sloganText{
    font-size: 20.04px;
    font-weight: 600;
}


.page{
    display: none;
    padding: 0rem; 
}



/* SVG styles */
.twitter{
    width:2rem;
	height:2rem;
	background-repeat: none;
	margin: 1rem;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 250 250'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23fff;%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M250.31,52.19a102.9,102.9,0,0,1-29.55,8.1,51.5,51.5,0,0,0,22.62-28.43,103.57,103.57,0,0,1-32.66,12.46,51.44,51.44,0,0,0-88.94,35.17,52.05,52.05,0,0,0,1.34,11.72,146,146,0,0,1-106-53.73,51.53,51.53,0,0,0,15.92,68.67,51.39,51.39,0,0,1-23.3-6.44v.64A51.48,51.48,0,0,0,51,150.78a51.57,51.57,0,0,1-13.54,1.8,49.22,49.22,0,0,1-9.69-.94,51.54,51.54,0,0,0,48,35.72,103.08,103.08,0,0,1-63.85,22,100.59,100.59,0,0,1-12.24-.73,145.24,145.24,0,0,0,78.81,23.11c94.57,0,146.28-78.34,146.28-146.27,0-2.23-.05-4.47-.13-6.66A104.51,104.51,0,0,0,250.31,52.19Z'/%3E%3C/svg%3E");
}
.ig{
    width:2rem;
	height:2rem;
	background-repeat: none;
	margin: 1rem;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23fff;%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M12,0C8.74,0,8.33,0,7.05.07A8.82,8.82,0,0,0,4.14.63,6.07,6.07,0,0,0,.63,4.14,8.82,8.82,0,0,0,.07,7.05C0,8.33,0,8.74,0,12S0,15.67.07,17a8.76,8.76,0,0,0,.56,2.91A6,6,0,0,0,2,22a5.91,5.91,0,0,0,2.13,1.38,8.82,8.82,0,0,0,2.91.56C8.33,24,8.74,24,12,24s3.67,0,4.95-.07a8.76,8.76,0,0,0,2.91-.56A6,6,0,0,0,22,22a5.91,5.91,0,0,0,1.38-2.13A8.82,8.82,0,0,0,23.93,17C24,15.67,24,15.26,24,12s0-3.67-.07-4.95a8.76,8.76,0,0,0-.56-2.91A6.07,6.07,0,0,0,19.86.63,8.76,8.76,0,0,0,17,.07C15.67,0,15.26,0,12,0Zm0,2.16c3.2,0,3.59,0,4.85.07a6.61,6.61,0,0,1,2.23.42,3.61,3.61,0,0,1,1.38.89,3.61,3.61,0,0,1,.89,1.38,6.42,6.42,0,0,1,.42,2.23c.05,1.27.07,1.65.07,4.85s0,3.59-.08,4.85a6.61,6.61,0,0,1-.42,2.23,3.75,3.75,0,0,1-.9,1.38,3.61,3.61,0,0,1-1.38.89,6.37,6.37,0,0,1-2.23.42c-1.27.05-1.65.07-4.86.07s-3.59,0-4.86-.08a6.61,6.61,0,0,1-2.23-.42,3.6,3.6,0,0,1-1.38-.9,3.63,3.63,0,0,1-.9-1.38,6.61,6.61,0,0,1-.42-2.23c-.05-1.26-.06-1.65-.06-4.84s0-3.59.06-4.87A6.61,6.61,0,0,1,2.6,4.89a3.56,3.56,0,0,1,.9-1.38,3.56,3.56,0,0,1,1.38-.9A6.8,6.8,0,0,1,7.1,2.19c1.27,0,1.65-.06,4.85-.06Zm0,3.68A6.16,6.16,0,1,0,18.16,12,6.16,6.16,0,0,0,12,5.84ZM12,16a4,4,0,1,1,4-4A4,4,0,0,1,12,16ZM19.85,5.6a1.44,1.44,0,1,1-1.44-1.44A1.45,1.45,0,0,1,19.85,5.6Z'/%3E%3C/svg%3E");
}

.tsappIcon{
    width:2rem;
	height:2rem;
	background-repeat: none;
	margin: 1rem;
    cursor: pointer;
   background-image: url("data:image/svg+xml,%3Csvg id='SvgjsSvg1011' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 288 288'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23fff;%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M144,5C67.36,5,5,67.36,5,144a138.79,138.79,0,0,0,17.91,68.23L5.22,275.32A6.06,6.06,0,0,0,11,283a5.88,5.88,0,0,0,1.45-.18l65.85-16.31A139.05,139.05,0,0,0,144,283c76.64,0,139-62.36,139-139S220.64,5,144,5Zm69.92,188.05c-3,8.23-17.23,15.74-24.09,16.75a49.65,49.65,0,0,1-22.48-1.39A212.49,212.49,0,0,1,147,201c-35.8-15.27-59.17-50.86-61-53.21s-14.57-19.1-14.57-36.44S80.7,85.46,84,81.93a13.2,13.2,0,0,1,9.52-4.41c2.38,0,4.76,0,6.84.13s5.14-.83,8,6c3,7.06,10.11,24.4,11,26.17a6.44,6.44,0,0,1,.3,6.17,23.9,23.9,0,0,1-3.57,5.88c-1.79,2.06-3.75,4.6-5.35,6.18-1.79,1.76-3.65,3.66-1.57,7.19A106.17,106.17,0,0,0,129,159.7c13.63,12,25.13,15.73,28.7,17.49s5.65,1.47,7.73-.88,8.92-10.29,11.29-13.82,4.76-2.94,8-1.76,20.82,9.69,24.38,11.46,6,2.64,6.84,4.11S216.9,184.82,213.92,193.05Z'/%3E%3C/svg%3E");
}

.fbIcon{
	background-image: url("data:image/svg+xml,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23fff;%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M24,12.07A12,12,0,1,0,10.12,23.93V15.54h-3V12.07h3V9.43c0-3,1.8-4.67,4.54-4.67A18,18,0,0,1,17.34,5V8H15.83a1.74,1.74,0,0,0-2,1.87v2.25H17.2l-.53,3.47h-2.8v8.39A12,12,0,0,0,24,12.07Z'/%3E%3C/svg%3E");
	width:2rem;
	height:2rem;
	background-repeat: none;
	margin:1rem;
    cursor: pointer;
}


@media only screen 
and (max-device-width: 430px)
and (-webkit-min-device-pixel-ratio: 1){
    header{
        display: flex;
        justify-content: space-between;
        justify-content: center;
        align-items: center;
    }
    header img{
        width: 120px;
        height: 120px;
        margin-left: auto;
        margin-right: auto;
    }
    nav {
        display: none
    }

    .hero{
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 80px;
        margin-bottom: 80px;
    }

    .heroImage{
        margin-top: 30px
    }

    .heroText{
        margin-bottom: 36px;
    }

    .vision{
        display: flex;
        flex-direction: column;
        margin-left: auto;
        margin-right: auto;
         width: 412px;
        height: 412px;
        align-items: center;
        background-color: var(--contrast-color);
        color: var(--complimentary-color);
        padding-top: 60px;
        padding-bottom: 60px;
        border-radius: 50% 50% 0% 0%;
        /*border-radius: 50% 50% 0% 0%;*/
        box-shadow: rgba(170, 1, 0, 0.4) -5px 5px, rgba(170, 1, 0, 0.3) -10px 10px, rgba(170, 1, 0, 0.3) -15px 15px, rgba(170, 1, 0, 0.1) -20px 20px, rgba(170, 1, 0, 0.05) -25px 25px;
    }
    .theVision{
        align-self: center;
        margin-left: auto;
        margin-right: auto;
        width: 90%;
        font-family: 'Poppins', sans-serif;
        margin-top: 36px;
         
    }
    .servicesCont{
        display: grid;
        grid-template-columns: 1fr;
    }
    .about{
        display: flex;
        flex-direction: column;
        width: 412px;
        height: 412px;
        border-radius: 50% 50% 0% 0%;
        /*border-radius: 50% 50% 0% 0%;*/
        box-shadow: rgba(170, 1, 0, 0.4) -5px 5px, rgba(170, 1, 0, 0.3) -10px 10px, rgba(170, 1, 0, 0.3) -15px 15px, rgba(170, 1, 0, 0.1) -20px 20px, rgba(170, 1, 0, 0.05) -25px 25px;
        background-color: #000000;
        color: var(--complimentary-color);
        margin-left: auto;
        margin-right: auto;
        align-self: center;
        justify-content: center; 
        padding-top: 60px;
        padding-bottom: 60px;
        font-family: 'Poppins', sans-serif; 
    }

    footer{
        display: flex;
        flex-direction: column-reverse;
        background-color: var(--contrast-color);
        color: var(--complimentary-color);
        font-family: 'Baloo Paaji 2', cursive;
        justify-content: space-between;
    }
    .address{
        align-self: center;
        justify-self: center;
        text-align: center;
    }
    .socials{
        align-self: center;
        justify-self: center;
    }
}
