

.main-footer {
    background:var(--lblue2);
    padding-top: 60px;
    padding-bottom: 60px;
}


.footer-top {
    border-top:0px solid var(--blackrgba10);
    border-bottom: 1px solid var(--blackrgba1);
}







.single-info-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.single-info-item .icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    margin-right: 15px;
    background:var(--dblue2);
}
.single-info-item .info span.title {
    font-size:16px;
    font-weight:normal;
    line-height: 26px;
    color:var(--eeeeee)
}
.single-info-item .info p {
    line-height: 21px;
    color:var(--white)
}

.single-info-item .info p a {
    color:var(--white);
    font-weight:bold;
}
.single-info-item .info p a:hover {
    color:var(--orange2);
}



.single-info-item svg {
    position: relative;
    top: 10px;
    left:12px;
    width: 24px;
    height: 24px;
    vertical-align: text-top;
    stroke-width:2;
    fill:var(--white);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}



.single-info-item:hover svg{
    fill:var(--white);
}






footer .social-icons-gray li a svg {
    position: relative;
    top: 5px;
    width: 20px;
    height: 20px;
    vertical-align: text-top;
    stroke-width:0;
    fill:var(--orange2) !important;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}


footer .social-icons-gray li:hover a svg{
    fill:var(--white) !important;
}




footer .social-icons li a svg {
    position: relative;
    top: 5px;
    width: 20px;
    height: 20px;
    vertical-align: text-top;
    stroke-width:0;
    fill:var(--white);
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}



footer .social-icons li:hover a svg{
    fill:var(--white);
}



.footer-widget-title {
    font-size: 24px;
    color: var(--white);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 25px;
    padding-bottom: 10px;
    position: relative;
    width: 100%;
}

.footer-widget-title-f18 {
    font-size: 18px !important;
}

.footer-widget-title::before {
    background: var(--dblue2) none repeat scroll 0 0;
    bottom: -10px;
    content: "";
    height:5px;
    left: 0;
    position: absolute;
    width: 55px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}


.footer-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-content .footer-widget-nav {
    width:100%;
}
.service-nav-widget .footer-content .footer-widget-nav li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-widget-nav a{
    color:var(--white);
}

.footer-widget-nav a:hover{
    color:var(--orange2);
    padding-left:10px;
}

.footer-content p {
    font-size: 16px;
    color: var(--white);
    margin: 0;
    margin-bottom: 15px;
}

.footer-logo  {
    display:block;
    text-align:left;
}
.footer-logo img {
    width:200px;
}







.footer-widget .news-form {
    width: 100%;
    border-radius: 5px;
    height: 50px;
    position: relative;
    margin-top: 15px;
    margin-bottom: 20px;
}

@media (min-width: 1200px) {
    .footer-widget .news-form {
        height: 60px;
        margin-bottom: 30px;
    }
}

.footer-widget .news-form input[type="text"],
.footer-widget .news-form input[type="email"] {
    width: 100%;
    display: block;
    height: 50px;
    color: var(--gray3);
    font-size: 16px;
    padding-left: 15px;
    padding-right: 50px;
    overflow: hidden;

    background-color:var(--white);
    outline:none !important;
    background-clip: padding-box;
    border:0px solid var(--white) !important;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius:50px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.footer-widget .news-form input[type="email"]:focus,
.footer-widget .news-form input[type="email"]:hover ,
.footer-widget .news-form input[type="text"]:focus,
.footer-widget .news-form input[type="text"]:hover {
    color:  var(--gray3);
    background-color:var(--white);
    border-color:var(--white);
    outline: 0;
    -webkit-box-shadow: 0px 0px 25px 0px var(--blackrgba2);
    -moz-box-shadow: 0px 0px 25px 0px var(--blackrgba2);
    box-shadow: 0px 0px 25px 0px var(--blackrgba2);
}


.footer-widget .news-form button[type="submit"] {
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 43px;
    font-size: 24px;
    color: var(--white);
    background-color: transparent;
    position: absolute;
    top:3px;
    /*top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);*/
    right:3px;
    background: var(--lblue1);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius:50px;
    height: 43px;
    -webkit-box-shadow: 0px 10px 36px 0px var(--lbluergba1);
    -moz-box-shadow: 0px 10px 36px 0px var(--lbluergba1);
    box-shadow: 0px 10px 36px 0px var(--lbluergba1);
}

.footer-widget .news-form button[type="submit"]:focus,
.footer-widget .news-form button[type="submit"]:hover {
    background: var(--lblue3);
    /*-moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    padding-left:15px;
    padding-right:15px;*/
    -webkit-box-shadow: 0px 10px 46px 0px var(--lbluergba3);
    -moz-box-shadow: 0px 10px 46px 0px var(--lbluergba3);
    box-shadow: 0px 10px 46px 0px var(--lbluergba3);
}

.footer-widget .news-form button > svg {
    position: relative;
    top: 3px;
    left:0px;
    width: 24px;
    height: 24px;
    vertical-align: text-top;
    stroke-width:0;
    fill:var(--white) !important;
    stroke: var(--lblue2) !important;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}



.footer-widget .news-form button:hover svg{
    fill:var(--white);
}






















.copyright {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    margin-top:20px;
    border-top:1px solid var(--blackrgba1);
}

.copyright img {
    width: 50px;
}

.copyright span {
    color: var(--lblue2);
    font-weight:bold;
}

.copyright p {
    color: var(--f4f4f4);
    font-size: 12px !important;
    line-height:18px;
    margin-bottom: 0px;
}

.copyright a {
    color: var(--f4f4f4);
    font-size: 12px !important;
}

.copyright a:focus,
.copyright a:hover {
    color: var(--lblue2);
}





.copyright a svg {
    position: relative;
    top: 0px;
    width: 50px;
    height: 22px;
    vertical-align: text-top;
    stroke-width: 0;
    fill: var(--white) !important;
    transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}


.copyright a:hover svg {
    fill: var(--developer) !important;
}





.wave-footer{
    position: relative;
    overflow: hidden;
    padding-top:75px;
    padding-bottom:75px;
}

.wave-footer-item{
    position: absolute;
    overflow: hidden;
    bottom:-3px;
    left: 0px;
    width: 100%;
    z-index: 1;
    min-height: 100px;
    max-height: 150px;
}



.waves {
    position: relative;
    width: 100%;
    height: 16vh;
    margin-bottom: -7px;
    min-height: 100px;
    max-height: 150px;

}

.wavesrotate {
    position: relative;
    width: 100%;
    height: 16vh;
    margin-bottom: -7px;
    min-height: 100px;
    max-height: 150px;

    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);

}


.waves.no-animation .moving-waves > use {
    animation: none
}

.wave-rotate {
    transform: rotate(180deg)
}

.moving-waves > use {
    animation: d 40s cubic-bezier(.55, .5, .45, .5) infinite
}

.moving-waves > use:first-child {
    animation-delay: -2s;
    animation-duration: 11s
}

.moving-waves > use:nth-child(2) {
    animation-delay: -4s;
    animation-duration: 13s
}

.moving-waves > use:nth-child(3) {
    animation-delay: -3s;
    animation-duration: 15s
}

.moving-waves > use:nth-child(4) {
    animation-delay: -4s;
    animation-duration: 20s
}

.moving-waves > use:nth-child(5) {
    animation-delay: -4s;
    animation-duration: 25s
}

.moving-waves > use:nth-child(6) {
    animation-delay: -3s;
    animation-duration: 30s
}

@keyframes d {
    0% {
        transform: translate3d(-90px, 0, 0)
    }
    to {
        transform: translate3d(85px, 0, 0)
    }
}





.footer-widget-links {
    margin: 0;
}

.footer-widget-links li {
    position: relative;
    padding-bottom: 5px;
    border-bottom: 0px solid var(--whitergba2);
}

.footer-widget-links li:last-child {
    border-bottom: 0px solid #fc0;
}



.footer-widget-links li::before {
    position: absolute;
    content: "";
    background-position: top center;
    background-repeat: no-repeat;
    background: url(../images/chevron-right.svg);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    top: 50%;
    left: -25px;
    height: 24px;
    width:24px;
    color: var(--dblue2);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.footer-widget-links li:focus::before,
.footer-widget-links li:hover::before {
    opacity:.5;
    left: 0px;
}


.footer-widget-links li a {
    padding:7px 0px 5px 15px;

    display: block;
    color: var(--white);
    font-size: 15px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: bold;
}

.footer-widget-links li a img {
    width: 32px;
    padding-right: 7px;
}


.footer-widget-links li:focus a,
.footer-widget-links li:hover a {
    color: var(--orange2);
    padding-left: 25px;
}
