*{margin: 0; padding: 0; text-decoration: none; font-family: "Times New Roman",sans-serif; box-sizing: border-box}
a{text-decoration: none}
.Success{font-size: 50px; color: red}





/* Start of Landing Section Effects*/
.Landing{  position: relative; height: 100vh; background-image: url('../Pix/Landing.jpg'); background-size: cover; z-index: 1; background-attachment:fixed;}
    .Landing h1{text-shadow:0 2px #7c7c7c; position: absolute; font-size: 80px; color: #38b6ff; top: 80%; left: 50%; transform: translate(-50%, -50%); text-align: center; width: 100%}
     .Landing a .logo{width: 300px; height: 130px; cursor: pointer}
    .Landing img{position: absolute; left: 3%; top: 25px; width: 200px; height: 100px; z-index: 2}
    .Land2{position: relative; background-image:url(../Pix/Truck3.jpg)}
    .Land2::after{content:""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: #000000b8}
    .Land2 .P2{font-size: 50px; color: white; text-align: center; position: absolute; top: 50%; left: 50%; transform:translate(-50%, -50%); width: 100%; text-shadow:3px 3px #7c7c7c; z-index: 2}
    .Land2 .P2 span{font-size: 25px; font-weight: italic}
    
  
/* End of Landing Section Effects*/


/* Start of AboutUS Section Effects*/
.AboutUS{display:flex; flex-direction:column; justify-content:center ; align-items:center ;width: 70%; margin: 0 auto; padding: 50px 0}
    .AboutUS h1{text-shadow:1px 1px #7c7c7c; font-size: 60px; margin-bottom: 50px; text-align: center}
    .AboutUS ul{list-style: square; line-height: 1.8}
        .AboutUS ul li{font-size: 30px}
        
          #background-video {
      width: 70% ;/* Make the video span full width */
      height: 60%; /* Make the video span full height */
      margin-bottom:25px;
      border-radius: 20px
       /* Ensure the video covers the area without distortion */
    }
/* End of AboutUS Section Effects*/


/* Start of title Section Effects*/
.title{text-align: center; margin-top: 100px}
    .title h1{text-shadow:1px 1px #7c7c7c; font-size: 60px}
/* End of title Section Effects*/



/* Start of Icons Section Effects*/
.Icons{font-family: "Font Awesome 5 Brands"; font-weight: 700; display: flex; justify-content: space-around;  ; border-radius: 10px; width:70%; margin: 35px auto 75px}
    .Icons .CardParent{display: flex; row-gap: 0; flex-direction: column; align-items: center; justify-content:  space-evenly; background-color: rgba(150, 223, 238, 0.4); width: calc(75%/4); height: 150px; border-radius: 25px}
    .Icons .CardParent:hover{cursor: pointer}
    .Icons .CardParent1, .Icons .ActiveCard{background-color: #06829b}
        .Icons .CardParent i{color: #05080FFF; font-size: 45px ; text-align: center; line-height: 1.6;}
        .Icons .CardParent .icn {height: 80px; width: 80px; text-align: center; border-radius: 50%;}

    .Text1 {font-size: 22px;}
        .act{background-color: white;}
        .activeTextColour {color: white;}
/* End of Icons Section Effects*/



/* Start of Para Section Effects*/
.Para{min-width: 100%; display: flex; flex-wrap: nowrap; overflow: hidden;}
    .Para .Paragraph{display: flex; min-width: 100%; align-items: center; justify-content: space-around; margin-bottom: 50px; height: fit-content}
        .Para .Paragraph img {width: 950px; height: 500px; border-radius: 22px;}
            .ParaText{max-width: 40%}
                .Paragraph .ParaText h2 {margin-bottom: 20px; font-size: 45px;}
                    .Para .ParaText h2 span {font-size: 40px; color: #23aec7 ;}
                .ParaText ul {line-height: 2; padding-left:50px;}
                    .Para .Paragraph .ParaText ul li {font-size: 28px;}
/* End of Para Section Effects*/


/* Start of Contact Section Effects*/
.Contact{display: flex; flex-direction: column; justify-content: center; align-items: center; margin: 70px 0 150px; row-gap: 30px}
    .Contact h2{text-shadow:1px 3px #7c7c7c; font-size: 60px; font-weight: bold}
    .Contact h3{text-shadow:1px 1px #7c7c7c; font-size: 40px; font-style: italic; margin-bottom: 50px}
    form{display: grid; grid-template: 1fr 1fr 1fr 0.5fr / 50% 50%; justify-content: center; column-gap: 10px; row-gap: 25px; padding: 0 250px; width: 100%}
        input{padding: 5px 20px; border: none; border-radius: 15px; background-color: whitesmoke; font-size:10px; height: 60px}
            input::placeholder{color: #2a354f; font-size: 20px}
            input:focus{outline: 1px solid lightskyblue; background-color: rgba(211, 211, 211, 0.65)}
            input:focus::placeholder{color: #2a354f; font-style: italic}
            .custom-placeholder-red::placeholder {color: red; font-size: 15px; font-weight: italic}
        form input[type=submit]{grid-area: 4 / 1 / 4 / 3; justify-self: center; padding: 0 40px; font-size: 30px; background-color: #06829b; color: white; cursor: pointer; border-radius: 50px; margin: 0 0 30px; height: 60px}
        
    .Contact .Kart{display: flex; flex-wrap: nowrap} 
        .card-container {
            width: fit-content;
            perspective: 1000px; /* Enables the 3D effect */}
  
  .card {

    width: 300px;
    height:450px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s ease-in-out; /* Smooth flip animation */
    text-align: center;

  }
  
  .card-container:hover .card {
    transform: rotateY(180deg); /* Flip on hover */
  }
  
  .card-front, .card-back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden; /* Hides the side not facing the user */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: white;
    border-radius: 10px;
  }
  
  .card-front {
    border: 1px dashed grey;
    background-color: #000000; /* Green */
    background-image: url("../Pix/WChristmas.png");
    background-size: 350px 500px;
    background-repeat: no-repeat}
  
  .card-back {background-color: #9b1204; transform: rotateY(180deg); /* Pre-rotate the back side */}
  .card-back p{color: white}
/* End of Contact Section Effects*/


/* Start of Footer Section Effects*/
footer{ display: grid; grid-template: 1fr 50px / 20% 22% 27% 31%; background-color: #172532; color: white; line-height: 35px; border-top: 4px solid black}
    footer .Section{padding: 30px}
    footer h6{font-size: 25px; font-weight: bolder; color: #38b6ff; }
    footer li{font-size: 18px; line-height: 2.5}

    footer .Section1{font-family: "Font Awesome 5 Brands"; font-weight: 700; display: grid; grid-template: 0.25fr 0.60fr 0.38fr 1fr / 1fr;}
    footer .Section1 div a i{font-size: 35px; margin-right: 15px; color: white}
    footer .Section1 ul{list-style: none; display: flex; flex-direction: column; padding: 0; margin: 0}
    footer .Section1 ul li{font-size: 18px; line-height: 1.6; color: #90d9e3}
    footer .Section1 ul li i{font-size: 20px; margin-right: 10px; color: #9ed0e3}
    footer .Section1 ul li a{color: white}

    footer .Section4{ background-color: #111d29; padding: 30px 30px; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; row-gap: 50px; border: 2px solid black}
    footer .Section4 h6{grid-area: 1 / 1 / 1 / 4 ; }
    .Section4 ul {line-height: 2.2;}

    footer .Bottom{padding: 10px 30px; grid-area: 2 / 1 / 2 / 5; display: grid; grid-template: 1fr / 20% 20%; justify-content: space-between}
        footer .Bottom p span{color: #38b6ff}
        footer .Bottom a{color :white; text-align: right}
/* End of Footer Section Effects*/



/* Start of media < 319 Effects*/
@media(max-width: 319px){
    .Landing {height: 185px; background-size:100% ; background-repeat: no-repeat; background-position: top; background-attachment:fixed; text-align: center;}
        .Landing h1{text-shadow:0 1px #05080f; position: absolute; font-size: 25px; color: #42cbff; top: 80%; left: 50%; transform: translate(-50%, -50%); text-align: center; width: 100%}
        .Landing img{position: absolute; left: 5%; top: 15px; width: 55px; height: 40px}

    .AboutUS{padding-top: 100px}
        .AboutUS h1{margin: -100px 0 20px; font-size: 40px}
        .AboutUS ul li{font-size: 15px;}

    .title{margin-top: -30px}
        .title h1{font-size: 40px}

    .Icons{padding-top: 35px; margin: 0 auto; align-items: center; justify-content: space-around; column-gap: 1px; row-gap: 10px; width: 100%; flex-wrap: wrap}
        .Icons .CardParent {width: calc(95%/3); height: 90px; border-radius: 15px; justify-content: space-around;}
        .Icons .CardParent i{font-size: 25px;}
        .Icons .CardParent .icn {width: 40px; height: 40px; display: flex; justify-content: center; align-items: center}
        .Icons .CardParent p {height: 30%; font-size: 9px; margin-top: 0;}


    .Para {padding-top: 10px; padding-bottom: 10px}
    .Para .Paragraph{flex-direction: column; width: 100%; height: 500px}
    .Para .Paragraph img {width: 100%; height: 250px;}
    .Para .Paragraph .ParaText{min-width: 100%; padding: 0 10px}
    .Para .Paragraph .ParaText h2{font-size: 20px}
    .Para .Paragraph .ParaText ul{width: 100%}
    .Para .Paragraph .ParaText ul li{font-size: 13px; width: 100%}

    .Contact{display: flex; flex-direction: column; row-gap: 5px; align-items: center; margin: 10px 5px}
    .Contact .Ready{font-size: 35px; text-shadow: 1px 1px}
    .Contact h3{margin-bottom: 0; font-size: 30px}
    .Contact form{height: fit-content; display: flex; flex-direction: column; align-items: center; row-gap: 30px; padding: 10px 0; width: 95%}
    .Contact form input{width: 100%}
    form input[type=submit]{padding: 0 10px; font-size: 20px; width: 50%; height: 60px; margin-top: 0;}
    input::placeholder{ font-size: 12px}

    footer{display: flex; flex-wrap: wrap; flex-direction: column; padding: 0}
    footer .Section3 ,  footer .Section4 {display: none;}

    footer h6{font-size: 25px;}
    .Section1 div i{font-size: 5px;}
    footer ul li {font-size: 18px;}

    footer .Bottom p:nth-child(2){text-align: center}
}
/* End of media < 319 Effects*/



/* Start of 320< media < 450 Effects ( My Mobile Media )*/
@media (min-width: 320px) and (max-width:450px){
    .Landing {height: 250px; background-size:100% ; background-repeat: no-repeat; background-position: top; background-attachment:fixed; text-align: center;}
    .Landing h1{text-shadow:0 1px #05080f; position: absolute; font-size: 18px; color: #42cbff; top: 75%; left: 50%; transform: translate(-50%, -50%); text-align: center; width: 100%}
    .Landing a img {position: absolute; left: 8%; top: 15px; width: 85px; height: 55px}

    .AboutUS{padding: 0 0 50px; margin: 120px auto 0; width: 88%}
    .AboutUS h1{margin: -100px 0 20px; font-size: 30px; text-shadow: 0 1px}
    .AboutUS ul li{font-size: 13px; padding: 0; text-shadow: 0 0}

    .title{margin-top: -30px}
    .title h1{font-size: 35px; text-shadow: 0 1px}

    .Icons{padding-top: 35px; margin: 0 auto; align-items: center; justify-content: space-around; column-gap: 1px; row-gap: 10px; width: 100%; flex-wrap: wrap}
    .Icons .CardParent {width: calc(95%/3); height: 90px; border-radius: 15px; justify-content: space-around;}
    .Icons .CardParent i{font-size: 25px;}
    .Icons .CardParent .icn {width: 40px; height: 40px; display: flex; justify-content: center; align-items: center}
    .Icons .CardParent p {height: 30%; font-size: 13px; margin-top: 0;}


    .Para {padding-top: 10px; padding-bottom: 0}
    .Para .Paragraph{flex-direction: column; width: 100%; height: 550px}
    .Para .Paragraph img {width: 100%; height: 250px}
    .Para .Paragraph .ParaText{min-width: 100%; padding: 0 10px}
    .Para .Paragraph .ParaText h2{font-size: 20px}
    .Para .Paragraph .ParaText ul{width: 100%}
    .Para .Paragraph .ParaText ul li{font-size: 13px; width: 100%}

    .Contact{display: flex; flex-direction: column; row-gap: 5px; align-items: center; margin: 10px 0}
    .Contact .Ready{font-size: 28px; text-shadow: 1px 1px}
    .Contact h3{margin-bottom: 0; font-size: 20px}
    .Contact form{height: fit-content; display: flex; flex-direction: column; align-items: center; row-gap: 30px; padding: 10px 0; width: 80%}
    .Contact form input{width: 100%}
    form input[type=submit]{padding: 0 10px; font-size: 20px; width: 50%; height: 60px; margin-top: 0;}
    input::placeholder{ font-size: 12px}
    
    


    footer{display: flex; flex-wrap: wrap; flex-direction: column; padding: 0}
    footer .Section3 ,  footer .Section4 {display: none;}
    footer h6 {font-size: 20px;}

    footer .Section1 div{font-size: 13px;}
    footer .Section1{row-gap: 0}
    footer .Section1 ul li{margin-bottom: -10px}
    footer .Section1 ul .Mail{margin-bottom: 15px}
    footer ul{display: flex; flex-direction: column; row-gap: 0}
    footer ul li {font-size: 15px;}
    footer ul li i{font-size: 13px;}

    footer .Bottom p:nth-child(2){text-align: center}
}
/* End of 320 < media < 450 Effects*/



/* Start of 451 < media < 581 Effects*/
@media (min-width: 451px) and (max-width: 581px){
    .Landing{height: 300px; background-size:contain ; background-repeat: no-repeat; background-position: top; background-attachment:fixed; text-align: center;}
    .Landing h1{text-shadow:1px 2px #7c7c7c; position: absolute; font-size: 25px; top: 80%; left: 50%; transform: translate(-50%, -50%); text-align: center; width: 100%}
    .Landing img{position: absolute; left: 6%; top: 15px; width: 105px; height: 65px}

    .AboutUS{padding-top: 50px}
    .AboutUS h1{font-size: 40px}
    .AboutUS ul li{font-size: 20px;}

    .title{margin-top: -30px}
    .title h1{font-size: 40px}

    .Icons{padding-top: 35px; margin: 0 auto; align-items: center; justify-content: space-around; column-gap: 5px; width: 100%}
    .Icons .CardParent {width: calc(100%/5); height: 100px; border-radius: 15px; justify-content: space-around; text-align: center}
    .Icons .CardParent i{font-size: 25px;}
    .Icons .CardParent .icn {width: 50px; height: 50px; display: flex; justify-content: center; align-items: center}
    .Icons .CardParent p {height: 30%; font-size: 9px; margin-top: 0;}


    .Para {padding-top: 10px; padding-bottom: 10px}
    .Para .Paragraph{flex-direction: column; width: 100%; row-gap: 40px}
    .Para .Paragraph img {width: 80%; height: 300px;}
    .Para .Paragraph .ParaText{min-width: 100%; padding: 0 10px; height: 300px}
    .Para .Paragraph .ParaText h2{font-size: 20px}
    .Para .Paragraph .ParaText ul{width: 100%}
    .Para .Paragraph .ParaText ul li{font-size: 18px; width: 100%}

    .Contact{display: flex; flex-direction: column; row-gap: 5px; align-items: center; margin: 10px 10px}
    .Contact .Ready{font-size: 35px; text-shadow: 1px 1px}
    .Contact h3{margin-bottom: 0; font-size: 30px}
    .Contact form{height: fit-content; display: flex; flex-direction: column; align-items: center; row-gap: 30px; padding: 10px 0; width: 80%}
    .Contact form input{width: 100%}
    form input[type=submit]{padding: 0 10px; font-size: 20px; width: 50%; height: 60px; margin-top: 0;}
    input::placeholder{ font-size: 12px}
    
  

    footer{display: grid; grid-template: 100% / 49% 49%; padding: 0}
    footer .Section3 ,  footer .Section4 {display: none;}
    footer .Section1 h6 ,  footer .Section2 h6 {font-size: 18px;}
    footer .Section1 div {font-size: 6px;}
    footer ul li {font-size: 18px;}
    footer ul li span{color: #00E1FF}
    
    footer .Bottom{background-color: #172532}
    footer .Bottom p:nth-child(2){text-align: center;}
}
/* End of 451 < media < 581 Effects*/



/* Start of 582 < media < 768 Effects*/
@media (min-width:582px) and (max-width:768px){
    .Landing {max-height: 310px; background-size:100% ; background-repeat: no-repeat; background-position: top; background-attachment:fixed; text-align: center;}
    .Landing h1{position: absolute; top: 60%; left: 50%; transform:translateX(-50%); font-size: 40px; width: 100% }
    .Landing img{position: absolute; left: 7%; top: 15px; width: 105px; height: 65px}

    .AboutUS h1{margin: -10px 0 20px; font-size: 40px}
    .AboutUS ul li{font-size: 20px;}

    .title{margin-top: -30px}
    .title h1{font-size: 40px}

    .Icons{padding-top: 35px; margin: 0 auto; align-items: center; justify-content: space-around; column-gap: 1px; width: 100%}
    .Icons .CardParent {width: calc(95%/5); height: 90px; border-radius: 15px; justify-content: space-around;}
    .Icons .CardParent i{font-size: 25px;}
    .Icons .CardParent .icn {width: 60px; height: 60px; display: flex; justify-content: center; align-items: center}
    .Icons .CardParent p{height: 30%}
    .Text1 {font-size: 8px; margin-top: 0;}


    .Para {padding-top: 10px; padding-bottom: 10px}
    .Para .Paragraph{flex-direction: column; width: 100%}
    .Para .Paragraph img {width: 80%; height: 300px;}
    .Para .Paragraph .ParaText{min-width: 100%; padding: 30px 10px 0; height: 350px}
    .Para .Paragraph .ParaText h2{font-size: 20px}
    .Para .Paragraph .ParaText ul{width: 100%}
    .Para .Paragraph .ParaText ul li{font-size: 18px; width: 100%}



    .Contact{display: flex; flex-direction: column; row-gap: 5px; align-items: center; margin: 10px 10px}
    .Contact .Ready{font-size: 40px;}
    .Contact h3{margin-bottom: 0; font-size: 30px}
    .Contact form{height: fit-content; display: flex; flex-direction: column; align-items: center; row-gap: 30px; padding: 10px 0; width: 80%}
    .Contact form input{width: 100%}
    form input[type=submit]{padding: 0 10px; font-size: 20px; width: 50%; height: 60px; margin-top: 0;}
    input::placeholder{ font-size: 12px}
    

    footer{display: grid; grid-template: 100% / 49% 49%; padding: 0}
    footer .Section3 ,  footer .Section4 {display: none;}
    footer h6 {font-size: 26px;}

    footer .Section1{grid-template: 0.25fr 0.5fr 0.25fr 1fr / 1fr}
    .Section1 div {font-size: 4px;}
    footer ul li {font-size: 17px;}

    footer .Bottom{background-color: #172532}
    footer .Bottom p:nth-child(2){text-align: center;}
}
/* End of 582 < media < 768 Effects*/



/* Start of 769 < media < 993 Effects*/
@media (min-width: 769px) and (max-width:993px){
    .Landing {max-height: 460px; background-size:100% ; background-repeat: no-repeat; background-position: top; background-attachment:fixed; text-align: center;}
    .Landing h1{position: absolute; top: 65%; left: 50%; transform:translateX(-50%); font-size: 50px; width: 100%}
    .Landing img{position: absolute; left: 7%; top: 15px; width: 105px; height: 65px}

    .AboutUS{width: 90%}
    .AboutUS h1{margin: -10px 0 20px; font-size: 40px}
    .AboutUS ul li{font-size: 20px;}

    .title{margin-top: -30px}
    .title h1{font-size: 40px}

    .Icons{padding-top: 35px; margin: 0 auto; align-items: center; justify-content: space-around; column-gap: 1px; width: 100%}
    .Icons .CardParent {width: calc(75%/5); height: 110px; border-radius: 15px; justify-content: space-around;}
    .Icons .CardParent i{font-size: 35px;}
    .Icons .CardParent .icn {width: 60px; height: 60px; display: flex; justify-content: center; align-items: center}
    .Icons .CardParent p{height: 30%}
    .Text1 {font-size: 8px; margin-top: 0;}


    .Para {padding-top: 10px; height: 400px}
    .Para .Paragraph{align-items: flex-start; width: 100%; padding: 20px 5px}
    .Para .Paragraph img {max-width: 50%; height: 300px;}
    .Para .Paragraph .ParaText{min-width: 50%; padding: 0 10px}
    .Para .Paragraph .ParaText h2{font-size: 20px}
    .Para .Paragraph .ParaText ul{width: 100%}
    .Para .Paragraph .ParaText ul li{font-size: 15px; width: 100%}



    .Contact{display: flex; flex-direction: column; row-gap: 5px; align-items: center; margin-bottom: 30px}
    .Contact .Ready{font-size: 40px;}
    .Contact h3{margin-bottom: 0; font-size: 30px}
    .Contact form{height: fit-content; display: flex; flex-direction: column; align-items: center; row-gap: 30px; padding: 10px 0; width: 60%}
    .Contact form input{width: 100%}
    form input[type=submit]{padding: 0 10px; font-size: 20px; width: 50%; height: 60px; margin-top: 0;}
    input::placeholder{ font-size: 12px}

    footer{display: grid; grid-template: 100% / 49% 49%; padding: 0}
    footer .Section3 ,  footer .Section4 {display: none;}
    footer h6 {font-size: 25px;}
    footer .Section1{grid-template: 0.15fr 0.3fr 0.24fr 1fr / 1fr}
    footer .Section1 div {font-size: 6px;}
    footer  ul li {font-size: 18px;}

    footer .Bottom{background-color: #172532}
    footer .Bottom p:nth-child(2){text-align: center;}
}
/* End of 769 < media < 993 Effects*/


/* Start of 994 < media < 1200 Effects ( Ehab's Media ) */
@media (min-width: 994px) and (max-width:1200px){
    .Landing {max-height: 460px; background-size:100% ; background-repeat: no-repeat; background-position: top; background-attachment:fixed; text-align: center;}
    .Landing h1{position: absolute; top: 80%; left: 50%; transform:translateX(-50%); font-size: 30px; width: 100% }
    .Landing img{position: absolute; left: 7%; top: 15px; width: 105px; height: 65px}


    .AboutUS h1{margin: -10px 0 20px; font-size: 40px}
    .AboutUS ul li{font-size: 15px;}

    .title{margin-top: -30px}
    .title h1{font-size: 40px}

    .Icons{padding-top: 35px; margin: 0 auto; align-items: center; justify-content: space-around; column-gap: 1px; width: 100%}
    .Icons .CardParent {width: calc(75%/5); height: 110px; border-radius: 15px; justify-content: space-around;}
    .Icons .CardParent i{font-size: 35px;}
    .Icons .CardParent .icn {width: 60px; height: 60px; display: flex; justify-content: center; align-items: center}
    .Icons .CardParent p{height: 30%}
    .Text1 {font-size: 18px; margin-top: 0;}


    .Para {padding-top: 10px; padding-bottom: 10px}
    .Para .Paragraph{align-items: flex-start; width: 100%; padding: 20px 50px}
    .Para .Paragraph img {max-width: 50%; height: 300px;}
    .Para .Paragraph .ParaText{min-width: 50%; padding: 0 10px}
    .Para .Paragraph .ParaText h2{font-size: 20px}
    .Para .Paragraph .ParaText ul{width: 100%}
    .Para .Paragraph .ParaText ul li{font-size: 15px; width: 100%}



    .Contact{display: flex; flex-direction: column; row-gap: 5px; align-items: center; margin: 10px 10px}
    .Contact .Ready{font-size: 40px; text-shadow: 1px 1px}
    .Contact h3{margin-bottom: 0; font-size: 30px}
    .Contact form{height: fit-content; display: flex; flex-direction: column; align-items: center; row-gap: 30px; padding: 10px 0; width: 60%}
    .Contact form input{width: 100%}
    form input[type=submit]{padding: 0 10px; font-size: 20px; width: 50%; height: 60px; margin-top: 0;}
    input::placeholder{ font-size: 12px}

    footer{display: grid; grid-template: 100%/ 30% 35% 35%; padding: 0}
    footer  li {font-size: 20px}

    footer .Section1{grid-template: 0.25fr 0.4fr .20fr 1fr / 1fr;}
    .Section1 div {font-size: 6px;}
    footer  .Section1 p {font-size: 14px;}
    footer .Section1 ul a li span{color: #00E1FF}
    footer .Section3{display: none}
    footer .Section4 {display: block;}

    footer .Bottom{background-color: #172532}
    footer .Bottom p:nth-child(2){text-align: center;}
}
/* End of 994 < media < 1200 Effects*/


/* Start of 1201 < media < 1620 Effects*/
@media (min-width: 1201px) and (max-width: 1620px){
    .Landing {max-height: 460px; background-size:100% ; background-repeat: no-repeat; background-position: top; background-attachment:fixed; text-align: center;}
    .Landing h1{position: absolute; top: 70%; left: 50%; transform:translateX(-50%); font-size: 50px; width: 100% }
    .Landing img{position: absolute; left: 7%; top: 15px; width: 105px; height: 65px}


    .AboutUS h1{margin: -10px 0 20px; font-size: 40px}
    .AboutUS ul li{font-size: 20px;}

    .title{margin-top: -30px}
    .title h1{font-size: 40px}

    .Icons{padding-top: 35px; margin: 0 auto; align-items: center; justify-content: space-around; column-gap: 1px; width: 100%}
    .Icons .CardParent {width: calc(75%/5); height: 110px; border-radius: 15px; justify-content: space-around;}
    .Icons .CardParent i{font-size: 35px;}
    .Icons .CardParent .icn {width: 60px; height: 60px; display: flex; justify-content: center; align-items: center}
    .Icons .CardParent p{height: 30%}
    .Text1 {font-size: 8px; margin-top: 0;}


    .Para {padding-top: 10px; padding-bottom: 10px}
    .Para .Paragraph{align-items: flex-start; width: 100%; padding: 20px 50px}
    .Para .Paragraph img {max-width: 50%; height: 300px;}
    .Para .Paragraph .ParaText{min-width: 50%; padding: 0 10px}
    .Para .Paragraph .ParaText h2{font-size: 20px}
    .Para .Paragraph .ParaText ul{width: 100%}
    .Para .Paragraph .ParaText ul li{font-size: 18px; width: 100%}



    .Contact{display: flex; flex-direction: column; row-gap: 5px; align-items: center; margin: 10px 10px}
    .Contact .Ready{font-size: 40px; text-shadow: 1px 1px}
    .Contact h3{margin-bottom: 0; font-size: 30px}
    .Contact form{height: fit-content; display: flex; flex-direction: column; align-items: center; row-gap: 30px; padding: 10px 0; width: 60%}
    .Contact form input{width: 100%}
    form input[type=submit]{padding: 0 10px; font-size: 20px; width: 50%; height: 60px; margin-top: 0;}
    input::placeholder{ font-size: 12px}

    footer{display: grid; grid-template: 100%/ 30% 35% 35%; padding: 0}
    footer  li {font-size: 20px}

    footer .Section1{grid-template: 0.25fr 0.4fr .20fr 1fr / 1fr;}
    .Section1 div {font-size: 6px;}
    footer  .Section1 p {font-size: 14px;}
    footer .Section1 ul a li span{color: #00E1FF}
    footer .Section3{display: none}
    footer .Section4 {display: block;}

    footer .Bottom{background-color: #172532}
    footer .Bottom p:nth-child(2){text-align: center;}
}
/* Start of 1201 < media < 1620 Effects*/