
:root {
    /*these are defined in style.css*/
    /*--vgeo-red: #f93043;*/

}

.contact .text-accent{
    color: var(--vgeo-red);
    font-weight: 600;
}


.btn-main {
    color: #fff;
    background: var(--vgeo-red);
}

.hero .btn-main {
    color: #fff;
    background: var(--vgeo-red);
}

.btn-main:hover {
    color: var(--vgeo-purple);
    font-weight: 600; /*Defines from thin to thick characters. 400 is the same as normal, and 700 is the same as bold* In increments of 100 from 100-900/
    /*opacity: 0.5;*/
    /*background: var(--vgeo-purple);*/
    /*background: #fff;*/
}

/*This deals with the strange case of very narrow screen size, probably not a realistic scenario*/
@media (max-width: 575px) {
    #header .btn-main {
        /*width: 50%;*/
        font-size: 80%;

    }
}

@media (max-width: 400px) {
    #header .btn-main {
        /*width: 50%;*/
        font-size: 70%;

    }
}
@media (max-width: 250px) {
    #header .btn-main {
        /*width: 50%;*/
        font-size: 50%;

    }
}

.btn-orange {
    color: #fff;
    background: var(--vgeo-orange);
}

.btn-green {
    color: #fff;
    background: var(--vgeo-green);
}

.btn-green:hover {
    color: #000000;
    background: var(--vgeo-green-light);
}

.btn-purple {
    color: #fff;
    background: var(--vgeo-purple);
}



.btn-orange:hover {
    background: var(--vgeo-orange-light);
}

.btn-rounded {
    /*border-radius: 50px;*/
}

.background-blue {
    background: var(--vgeo-purple);
}

.img-sm {
    max-height: 10em;
    width: auto;
}

.img-responsive-software {
    /*width: auto;*/
    /*height: 100px;*/
    position: center;
}

.img-responsive-svg {
    width: 100%;
    /*height: 100px;*/
    position: center;
}

.img-background-carto {
    /*position: center;*/
    left: 0;
    top: 0;
    width: 100%; /*Do NOT update these to the image size, must be percent based to scale with the div*/
    height: 100%;
    background-size: cover;
    background-position: 20% 10%; /*this is what determines where it is resized from*/
    /*background-image: url('../img/adobe/layers2_plain.svg'),linear-gradient(to right, #fff 100%, #fff 100%);*/
    background-image: url('../img/adobe/skater1.png');
    opacity:0.7;
}

.img-background-contact{
    left: 0;
    top: 0;
    width: 100%; /*Do NOT update these to the image size, must be percent based to scale with the div*/
    height: 100%;
    background-size: cover;
    /*background-image: url('../img/gwc-logo-07.png'),linear-gradient(to right, #fff 100%, #fff 100%);*/
    background-image: url('../img/AdobeStock_660009225.jpeg'),linear-gradient(to right, #fff 100%, #fff 100%);

    background-position: 70% 30%; /*this is what determines where it is resized from*/
}

.img-background-topo1{
    left: 0;
    top: 0;
    width: 100%; /*Do NOT update these to the image size, must be percent based to scale with the div*/
    height: 100%;
    background-size: cover;
    background-image: url('../img/adobe/adobe_gis_topo.jpeg'),linear-gradient(to right, #fff 80%, #fff 100%);
}
.img-background-gis-blue1{
    left: 0;
    top: 50%;
    width: 100%; /*Do NOT update these to the image size, must be percent based to scale with the div*/
    height: 100%;
    background-size: cover;
    background-image: url('../img/adobe/adobe_gis_blue.jpeg'),linear-gradient(to right, #fff 100%, #fff 100%);
}

.background-transparent {
    /*width: 100%;*/
    /*border-top: 3px solid #eb5d1e;*/
    /*border-bottom: 3px solid #eb5d1e;*/
    border-radius: 5%;
    margin-top: 25px;
    padding-top: 50px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.about .text-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    margin: 40px 25px 40px 25px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
    transition: all 0.3s ease-in-out;
    border-radius: 15px;
    text-align: center;
    border-bottom: 3px solid;
    border-color: #fff;
}

.about .text-box:hover {
    transform: translateY(-5px);
    border-color: var(--vgeo-red-light);
}



.text-box1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%; /* Adjust this width as needed */
    padding: 30px;

    overflow: hidden;
    margin: 40px 25px 40px 25px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
    transition: all 0.3s ease-in-out;
    border-radius: 15px;
    text-align: center;
    border-bottom: 3px solid #fff;
}

.text-box1:hover {
    /*transform: translateY(-5px);*/
    border-color: var(--vgeo-red-light);
}

.text-box1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%; /* Adjust this width as needed */
    padding: 30px;
    overflow: hidden;
    margin: 40px 25px 40px 25px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
    transition: all 0.3s ease-in-out;
    border-radius: 15px;
    text-align: center;
    border-bottom: 3px solid #fff;
}

.text-box-hero{
    background-color: rgba(254, 248, 245, 0.8);
    border-radius: 250px;
    padding: 30px;
    box-shadow: inset 0 0 10px var(--vgeo-purple);
}

.text-box-accent1{
    background-color: rgba(254, 248, 245, 0.8);
    border-radius: 10px;
    padding: 30px;
    box-shadow: inset 0 0 10px var(--vgeo-purple);
}

.text-box-accent2 {
    /*background-color: rgba(254, 248, 245, 0.8);*/
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 20px;
    margin: 0 0 0 0;
    box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
    /*box-shadow: 0 10px 29px 0 rgba(158, 113, 244, 0.2);*/

}


.text-box-section-header{
    background-color: rgba(254, 248, 245, 0.8);
    border-radius: 10px;
    padding: 15px;
    /*box-shadow: inset 0 0 10px var(--source-off-white2);*/
    /*box-shadow: inset 0 0 30px var(--source-off-white2);*/
    box-shadow: 0px 0px 25px 25px var(--source-off-white2);
    box-shadow: inset 0px 0px 25px 25px var(--source-off-white2);
}


.box-fade {
    /*width: 200px;*/
    /*height: 100px;*/
    box-sizing:border-box;
    /*color:var(--source-off-white2);*/
    --i:254, 248, 245;
    --c:rgba(var(--i),1) , rgba(var(--i), 0);
    --d:60px;
    padding:var(--d);
    background-image:
            linear-gradient(rgba(var(--i), 1),rgba(var(--i), 0.8)),
            radial-gradient(circle at bottom left, var(--c)  70%),
            radial-gradient(circle at bottom right, var(--c) 70%),
            radial-gradient(circle at top right, var(--c) 70%),
            radial-gradient(circle at top left, var(--c) 70%),

            linear-gradient(to right, var(--c)),
            linear-gradient(to left, var(--c)),
            linear-gradient(to top, var(--c)),
            linear-gradient(to bottom, var(--c));

    background-size:
            calc(100% - 2*var(--d)) calc(100% - 2*var(--d)),

            var(--d) var(--d),var(--d) var(--d),var(--d) var(--d),var(--d) var(--d),

            var(--d) calc(100% - 2*var(--d)),var(--d) calc(100% - 2*var(--d)),calc(100% - 2*var(--d)) var(--d),calc(100% - 2*var(--d)) var(--d);
    background-position:center,

    top right,top left,bottom left,bottom right,

    right center, left center,top center, bottom center;
    background-repeat:no-repeat;
}

.accordion-title p{
    padding-bottom: 15px;
    margin-bottom: 15px;
    /*position: relative;*/
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: var(--source-brown-light);
}

.accordion-title p::after{
    content:"";
    display:block;
    width: 6em;
    max-width:70%;
    border-bottom: 2px solid var(--vgeo-red);
    margin: 25px auto 0;
}


.accordion-accent1{
    color: var(--vgeo-red);
    font-weight: 700;
}
/*.accordion-accent1:hover {*/
/*    color: var(--source-brown-light);*/
/*}*/

.accordion-accent2{
    opacity: 0.8;
}

.highlight-accent1{
    color: var(--vgeo-red);
    font-weight: 700;
}

.highlight-accent2{
    /*color: var(--vgeo-red);*/
    font-weight: 600;
}

/*--------------------------------------------------------------
# services-details slider
--------------------------------------------------------------*/
.services-details .services-details-slider .swiper-slide img {
    opacity: 1;
    transition: 0.3s;
}

.services-details .services-details-slider .swiper-slide img:hover {
    /*opacity: 0.5;*/
}

.services-details .services-details-slider .swiper-pagination {
    margin-top: 5px;
    position: relative;
}

.services-details .services-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid var(--source-accent1);
}

.services-details .services-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--source-accent1);
}

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

.services-details .img1{
    box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
    transition: all 0.3s ease-in-out;
    border-radius: 15px;
    border-bottom: 3px solid #fff;
}

.services-details .img1:hover {
    /*transform: translateY(-5px);*/
    border-color: var(--vgeo-red-light);
}

.swiper-slide img {
    opacity: 1;
    transition: 0.3s;
    border-radius: 15px;
}


.swiper-pagination {
    margin-top: 25px;
    position: relative;
}

.swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid var(--source-accent1);
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--source-accent1);
}




.team .img-profile1{
    box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
    transition: all 0.3s ease-in-out;
    border-radius: 15px;
    border-bottom: 3px solid #fff;
}

.team .img-profile1:hover {
    transform: translateY(-5px);
    border-color: var(--vgeo-red-light);
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.team {
    padding: 60px 0;
}

.team .team-list {
    padding: 0;
    list-style: none;
}

.team .team-list li {
    border-bottom: 1px solid #eae7e5;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.team .team-list .question {
    display: block;
    position: relative;
    font-family: var(--source-accent1);
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    font-weight: 600;
    padding-left: 25px;
    cursor: pointer;
    color: var(--source-accent1-light2);
    transition: 0.3s;
}

.team .team-list i {
    font-size: 16px;
    position: absolute;
    left: 0;
    top: -2px;
}

.team .team-list p {
    margin-bottom: 0;
    padding: 10px 0 0 25px;
}

.team .team-list .icon-show {
    display: none;
}

.team .team-list .collapsed {
    color: var(--source-brown-dark);
}

.team .team-list .collapsed:hover {
    color: var(--source-accent1);
}

.team .team-list .collapsed .icon-show {
    display: inline-block;
    transition: 0.6s;
}

.team .team-list .collapsed .icon-close {
    display: none;
    transition: 0.6s;
}