  
  
  /* Animated Wave Background Style  */
    html,
    body {
        width: 100%;
        height: 100%;
    }

    body {
        /* background: radial-gradient(ellipse at center, rgba(255, 254, 234, 1) 0%, rgba(255, 254, 234, 1) 35%, #B7E8EB 100%); */
        overflow: hidden;
    }

    .ocean {
        height: 5%;
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        /* background: #015871; */
        z-index: 1;
    }

    .wave {
        background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/85486/wave.svg) repeat-x;
        position: absolute;
        /* top: -198px; */
        top:-49px;
        width: 6400px;
        /* height: 198px; */
        height:100px;
        animation: wave 5s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
        transform: translate3d(0, 0, 0);
    }

    .wave:nth-of-type(2) {
        /* top: -175px; */
        top:-6px;
        animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) -.125s infinite, swell 7s ease -1.25s infinite;
        opacity: 1;
    }

    @keyframes wave {
        0% {
            margin-left: 0;
        }

        100% {
            margin-left: -1600px;
        }
    }

    @keyframes swell {

        0%,
        100% {
            transform: translate3d(0, -25px, 0);
        }

        50% {
            transform: translate3d(0, 5px, 0);
        }
    }

    /* Login Section Style */
    * {
        box-sizing: border-box;
    }

    body {
        font-family: 'Montserrat', sans-serif;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100vh;
        margin: 0;

    }

    .gpms_title {
        font-size: 32px;
        font-weight: 800;
        color: #fff;
        text-align: center;
        letter-spacing: 0.9px;
        text-shadow: 0px 10px 3px #1b2c6f;
        text-transform: uppercase;
        font-family: 'Barlow Condensed', sans-serif;
        margin-top: -102px;
        margin-bottom: 43px;

    }

    h1 {
        font-weight: bold;
        margin: 0;
    }

    p {
        font-size: 14px;
        font-weight: 100;
        line-height: 20px;
        letter-spacing: .5px;
        margin: 20px 0 30px;
    }

    span {
        font-size: 12px;
    }

    a {
        color: #0e263d;
        font-size: 14px;
        text-decoration: none;
        margin: 15px 0;
    }

    .container {
        background: #fff;
        border-radius: 10px;
        box-shadow:3px 20px 28px rgb(0 0 5 / 47%), 0 20px 29px rgb(0 0 0 / 49%);
        position: relative;
        overflow: hidden;
        opacity: 85%;
        width: 740px;
        max-width: 100%;
        min-height: 340px;
        transition: 333ms;
    }


    .form-container form {
        background: #fff;
        display: flex;
        flex-direction: column;
        padding: 0 50px;
        height: 100%;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .social-container {
        margin: 20px 0;
        display: block;

    }


    .social-container a {
        border: 1px solid #008ecf;
        border-radius: 50%;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin: 0 5px;
        height: 40px;
        width: 40px;
        transition: 333ms;
    }

    .social-container a:hover {
        transform: rotateZ(13deg);
        border: 1px solid #0e263d;
    }

    .form-container input {
        background: #eee;
        border: none;
        border-radius: 10px;
        padding: 12px 15px;
        margin: 8px 0;
        width: 100%;
        box-shadow:-1px 1px 4px 0px #0e263dbf;
    }
    .form-container input:focus-visible{
        border:0;
        outline:0;
    }
    .form-container input:hover {
        transform: scale(101%);
    }

   button {
    border-radius: 7px;
    box-shadow: 0 1px 1px;
    border: 1px solid #0e6638;
    background: #0e6638;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 7px 30px;
    letter-spacing: 1px;
    text-transform: capitalize;
    transition: transform 80ms ease-in;
    margin-top: 12px;
    cursor: pointer;
}



    form h1 {
        font-weight: 400;
        font-size: 20px;
        padding-bottom: 20px;
        /* position: absolute;
        top: 59px; */
    }

    form h1:after {
        margin-top: 5px;
        border-bottom: 1px solid blue;
        width: 50px;
        height: 1px;
        background: blue;

        display: block;

        border-right: 1px white;
        content: '';
    }

    button:active {
        transform: scale(.95);
    }

    button:focus {
        outline: none;
    }

    button.ghost {
        background: transparent;
        border-color: #fff;
    }

    .form-container {
        position: absolute;
        top: 0;
        height: 100%;
        transition: all .6s ease-in-out;
    }

    .sign-in-container {
        left: 0;
        width: 50%;
        z-index: 2;
    }

    .sign-up-container {
        left: 0;
        width: 50%;
        z-index: 1;
        opacity: 0;
    }

    .overlay-container {
        position: absolute;
        top: 0;
        left: 50%;
        width: 50%;
        height: 100%;
        overflow: hidden;
        transition: transform .6s ease-in-out;
        z-index: 100;
    }

    .overlay {
    background: #ff416c;
    background: linear-gradient(to right, #0e6638, #0e6638) no-repeat 0 0 / cover;
    color: #fff;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateY(0);
    transition: transform .6s ease-in-out;
}

    .overlay-panel {
        position: absolute;
        top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 30px;
        height: 100%;
        width: 50%;
        text-align: center;
        transform: translateY(0);
        transition: transform .6s ease-in-out;
    }

    .overlay-right {
        right: 0;
        transform: translateY(0);
    }

    .overlay-left {
        transform: translateY(-20%);
    }

    /* Move signin to right */
    .container.right-panel-active .sign-in-container {
        transform: translateY(100%);
    }

    /* Move overlay to left */
    .container.right-panel-active .overlay-container {
        transform: translateX(-100%);
    }

    /* Bring signup over signin */
    .container.right-panel-active .sign-up-container {
        transform: translateX(100%);
        opacity: 1;
        z-index: 5;
    }

    /* Move overlay back to right */
    .container.right-panel-active .overlay {
        transform: translateX(50%);
    }

    /* Bring back the text to center */
    .container.right-panel-active .overlay-left {
        transform: translateY(0);
    }

    /* Same effect for right */
    .container.right-panel-active .overlay-right {
        transform: translateY(20%);
    }

    #slider {
        width: 100%;
        height: 100%;
        position: relative;
        margin: auto;
    }

    img {
        width: 100%;
        height: 100%;
    }

    .photo {
        position: absolute;
        width: 100%;
        height: 100%;
        display: none;
        background-image: linear-gradient(to bottom, rgb(54 218 57 / 93%), rgb(54 218 57 / 76%));

    }


  .proteam_logo {
    width: auto;
    padding: 0px;
    opacity: 6;
    position: absolute;
    left: 19px;
    top: 12px;
    height: 31px;
}

    .renew_power_logo {
        width: 120px;
        padding: 5px;
        opacity: 11;
        position: absolute;
        right: 9px;
        top: 7px;
        height: auto;
    }

   /*  h1.pims {
        font-size: 29px;
        margin-top: 75px; 


    } */
	 span.pims {
       /*  font-size: 29px;
        margin-top: 75px; */
 font-size: 30px;
    margin-top: 31%;

    }
	
	 span.pims2 {
     font-size: 19px;
    }

    h1.welcometo {
        font-size: 15px;
    }



    p.copyright_text {
        margin: 7px;
        font-size: 10px;
        position: absolute;
        bottom: 0;
        line-height: 1.2;
        color: #ddd;
    }

    p.version_text {
        margin: 0;
        position: absolute;
        bottom: 0;
        right: 2%;
        font-size: 10px;
        color: #0e263d66;
    }

    .alert.alert-danger {
        color: red;
    }

    .alert.alert-danger strong {
        display: none;
    }

    a.close {
        display: none;
    }

    .alert.alert-danger p {
        margin: 0;
    }


   /*  body:before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(0deg, transparent, #1a3ad80f, #1a3ad80f);
        transform-origin: bottom right;
        animation: animatebody 6s linear infinite;
        animation-delay: -3s;
    }
    body:after{
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(0deg, transparent, #1a3ad80f, #1a3ad80f);
        transform-origin: bottom right;
        animation: animatebody 6s linear infinite;
        animation-delay: -3s;
    } */
    @keyframes animatebody {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    @keyframes animate {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }
.sections{
    position: absolute;z-index: 1; 
}

img.pro_inventory.proteam_logo.logo {
    width: 192px;
    padding: 5px;
    opacity: 11;
    position: absolute;
    left: 81px;
    top: 7px;
    height: auto;
}
 video {
            width: 110vw;
            height: auto;
            object-fit: cover;
        }
		
		
		/******************************************/
		  .card {
            margin: 10px auto;
            box-shadow: 0px 2px 4px 0 rgba(0, 0, 0, 0.2);
            border-radius: 6px;
            height: 100%;
            transition: 0.3s;
        }

        .card:hover {
            box-shadow: 1px 10px 16px 0 rgba(0, 0, 0, 0.3);
        }

        .card-title {
            text-align: center;
            color: #666666;
            font-weight: bold;
        }

        .card-text {
            font-weight: 500;
            color: #66686b;
        }

        .card-image {
            text-align: center;
            margin: 5vh 0;
        }

        .card-text {
            text-align: center;
        }

        .title-heading {
            font-size: 3em;
            text-align: center;
            margin: 4%;
            font-weight: bold;

        }

        body {
            font-family: Helvetica;
            margin: 0;
        }

        a {
            text-decoration: none;
            color: #000;
        }

        .site-header {
            border-bottom: 1px solid #ccc;
            padding: .5em 1em;
        }

        .site-header::after {
            content: "";
            display: table;
            clear: both;
        }

        .site-identity {
            float: left;
        }

        .site-identity h1 {
            font-size: 1.5em;
            margin: .7em 0 .3em 0;
            display: inline-block;
        }

        .site-identity img {
            /* max-width: 55px; */
            float: left;
            margin: 1px 10px 0 0;
            height: 53px;
        }

        .site-navigation {
            float: right;
        }

        .site-navigation ul,
        li {
            margin: 0;
            padding: 0;
        }

        .site-navigation li {
            display: inline-block;
            margin: 0.2em 0.2em 0.2em 1em;
        }

        .dropdown-menu.show {
            display: block;
            right: 0;
            left: auto !important;
        }

        .fontsize {
            font-size: 14px;
        }

        figure {
            display: grid;
            border-radius: 1rem;
            overflow: hidden;
            cursor: pointer;
            margin: 0px 0px 0px 0px !important;
            width: 218px;
            height: 218px;

        }
		figure img{
			height: 80%;
			width: 80%;
		}
		.divblock h3 {
			margin-top: -10px;
		}
		@media(max-width:1200px){
			 figure {
				display: grid;
				border-radius: 1rem;
				overflow: hidden;
				cursor: pointer;
				margin: 10px 20px 10px 0px !important;
				width: 218px;
				height: 218px;

			}
		}

        figure>* {
            grid-area: 1/1;
            transition: .4s;
			place-self: center;
        }

        figure figcaption {
			display: grid;
			align-items: center;
			font-family: sans-serif;
			font-size: 1.3rem;
			font-weight: bold;
			color: #fff !important;
			padding: .75rem;
			background: var(--c, #0009);
			clip-path: inset(0 var(--_i, 100%) 0 0);
			/* -webkit-mask: linear-gradient(#000 0 0),
						linear-gradient(#000 0 0); */
			-webkit-mask-composite: xor;
			-webkit-mask-clip: text, padding-box;
			margin: -1px;
			width: 192px;
			height: 192px;
			border-radius: 1% !important;
		}

        figure:hover figcaption {
            --_i: 0%;
        }

        figure:hover img {
            transform: scale(1.002);
        }
		divblock h3{
			margin:0px;
		}

        @supports not (-webkit-mask-clip: text) {
            figure figcaption {
                -webkit-mask: none;
                color: #fff;
            }
        }

        .body {
			margin: 0;
			min-height: 80vh;
			display: grid;
			grid-auto-flow: column;
			/* place-content: center; */
			margin-top: 31px;
			
		}

        article {
            --img-scale: 1.001;
            --title-color: black;
            --link-icon-translate: -20px;
            --link-icon-opacity: 0;
            position: relative;
            border-radius: 16px;
            box-shadow: none;
            background: #fff;
            transform-origin: center;
            transition: all 0.4s ease-in-out;
            overflow: hidden;
        }

        article a::after {
            position: absolute;
            inset-block: 0;
            inset-inline: 0;
            cursor: pointer;
            content: "";
        }

        /* basic article elements styling */
        article h2 {
            margin: 0 0 18px 0;
            font-family: "Bebas Neue", cursive;
            font-size: 1.9rem;
            letter-spacing: 0.06em;
            color: var(--title-color);
            transition: color 0.3s ease-out;
        }

        .article-body figure {
            margin: 0;
            padding: 0;
            aspect-ratio: 16 / 9;
            overflow: hidden;
        }

        article img {
            max-width: 100%;
            transform-origin: center;
            transform: scale(var(--img-scale));
            transition: transform 0.4s ease-in-out;
        }

        .article-body {
            padding: 24px;
        }

        article a {
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            color: #28666e;
            text-decoration: none !important;
        }

        article a:focus {
            outline: 1px dotted #28666e;
        }

        article a .icon {
            min-width: 24px;
            width: 24px;
            height: 24px;
            margin-left: 5px;
            transform: translateX(var(--link-icon-translate));
            opacity: var(--link-icon-opacity);
            transition: all 0.3s;
        }

        article:has(:hover, :focus) {
            --img-scale: 1.1;
            --title-color: #28666e;
            --link-icon-translate: 0;
            --link-icon-opacity: 1;
            box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
                rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
        }

        .articles {
            display: grid;
            max-width: 1200px;
            margin-inline: auto;
            padding-inline: 24px;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 24px;
        }

        @media screen and (max-width: 960px) {
            article {
                container: card/inline-size;
            }

            .article-body p {
                display: none;
            }
        }

        @container card (min-width: 380px) {
            .article-wrapper {
                display: grid;
                grid-template-columns: 100px 1fr;
                gap: 16px;
            }

            .article-body {
                padding-left: 0;
            }

            figure {
                width: 100%;
                height: 100%;
                overflow: hidden;
            }

            figure img {
                height: 100%;
                aspect-ratio: 1;
                object-fit: cover;
            }
        }

        .sr-only:not(:focus):not(:active) {
            clip: rect(0 0 0 0);
            clip-path: inset(50%);
            height: 1px;
            overflow: hidden;
            position: absolute;
            white-space: nowrap;
            width: 1px;
        }

        .divblock {
            text-align: center;
        }

        body {
            overflow-x: hidden;
        }

        .main-footer {
            padding: 3px 10px;
            color: #dfdfdf !important;
            border-top: 1px solid #316d46 !important;
            position: initial;
            width: 100%;
            bottom: 0;
            background-color: #316d46 !important;
            font-size: 13px;
            position: fixed;
        }

        .main-footer {
            background: #fff;

            border-top: 1px solid #d2d6de;
        }

        .main-footer {
            -webkit-transition: -webkit-transform .3s ease-in-out, margin .3s ease-in-out;
            -moz-transition: -moz-transform .3s ease-in-out, margin .3s ease-in-out;
            -o-transition: -o-transform .3s ease-in-out, margin .3s ease-in-out;
            transition: transform .3s ease-in-out, margin .3s ease-in-out;
            margin-left: 0px;
            z-index: 820;
        }

        .pull-right {
            float: right !important;
        }
		
		img.logbut {
    width: 44px;
}
a.sso {
    font-size: 14px;
    color: #1a6a45;
    font-weight: 700;
    text-decoration: underline;
}
		