@import url('https://fonts.googleapis.com/css2?family=Chivo&family=Fira+Sans:wght@500&family=Imprima&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
/*
====================================================
                1.All
====================================================
*/
*{
    scroll-behavior: smooth;
}
body {
    background-color: #252525;
    color: #d3e2f0;
    font-family: 'Imprima', sans-serif;
    scroll-behavior: smooth;
    padding: 0;
    margin: 0;
}

h1, h2, h3, h4, h5{
    color: #fefdfb;
    /* font-style: bold; */
    /* font-size: 14px; */
    font-family: 'Chivo', sans-serif;
}

.subheading{
    font-family: 'Fira Sans', sans-serif;
}

.grayimg .slide {
    /* filter: url(filters.svg#grayscale); Firefox 3.5+ */
    filter: rgb(127, 127, 127); /* IE5+ */
    -webkit-filter: grayscale(1); /* Webkit Nightlies & Chrome Canary */
    -webkit-transition: all .1s ease-in-out;
}

.grayimg .slide:hover {
    filter: none;
    -webkit-filter: grayscale(0);
    /* -webkit-transform: scale(1.01); */
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #262626;
}
.preloader .loading {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  font: 14px arial;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #262626;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #47B5FF;
    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
    z-index: 1001;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #DFF6FF;

    -webkit-animation: spin 5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #256D85;

    -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
      animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);  /* IE 9 */
        transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);  /* IE 9 */
        transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
    }
}
@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);  /* IE 9 */
        transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);  /* IE 9 */
        transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
    }
}

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #222222;
    z-index: 1000;
    -webkit-transform: translateX(0);  /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(0);  /* IE 9 */
    transform: translateX(0);  /* Firefox 16+, IE 10+, Opera */
    content: "is making something extraordinary"
}

#loader-wrapper .loader-section.section-left {
    left: 0;
}

#loader-wrapper .loader-section.section-right {
    right: 0;
}

/* Loaded */
.loaded #loader-wrapper .loader-section.section-left {
    -webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: translateX(-100%);  /* IE 9 */
            transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */

    -webkit-transition: all 0.9s 0.5s cubic-bezier(0.645, 0.045, 0.355, 1.000);
            transition: all 0.9s 0.5s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader-wrapper .loader-section.section-right {
    -webkit-transform: translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateX(100%);  /* IE 9 */
    transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */
    -webkit-transition: all 0.9s 0.5s cubic-bezier(0.645, 0.045, 0.355, 1.000);
    transition: all 0.9s 0.5s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader {
    opacity: 0;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
.loaded #loader-wrapper {
    visibility: hidden;
    -webkit-transform: translateY(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: translateY(-100%);  /* IE 9 */
    transform: translateY(-100%);  /* Firefox 16+, IE 10+, Opera */
    -webkit-transition: all 0.6s 1s ease-out;
    transition: all 0.6s 1s ease-out;
}

.center {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media only screen and (min-width: 767px) {
    /* For mobile phones: */
    .phone {
        display: none;
    }
    /* .upphone {
        display: none;
    } */
}
@media only screen and (max-width: 767px) {
    /* For mobile phones: */
    /* .phone {
        display: none;
    } */
    .upphone {
        display: none;
    }
}
/* End of Preloader */

/* Floating Chat */
@import url("https://fonts.googleapis.com/css?family=Roboto");
@-webkit-keyframes come-in {
0% {
    -webkit-transform: translatey(100px);
            transform: translatey(100px);
    opacity: 0;
}
30% {
    -webkit-transform: translateX(-50px) scale(0.4);
            transform: translateX(-50px) scale(0.4);
}
70% {
    -webkit-transform: translateX(0px) scale(1.2);
            transform: translateX(0px) scale(1.2);
}
100% {
    -webkit-transform: translatey(0px) scale(1);
            transform: translatey(0px) scale(1);
    opacity: 1;
}
}
@keyframes come-in {
0% {
    -webkit-transform: translatey(100px);
            transform: translatey(100px);
    opacity: 0;
}
30% {
    -webkit-transform: translateX(-50px) scale(0.4);
            transform: translateX(-50px) scale(0.4);
}
70% {
    -webkit-transform: translateX(0px) scale(1.2);
            transform: translateX(0px) scale(1.2);
}
100% {
    -webkit-transform: translatey(0px) scale(1);
            transform: translatey(0px) scale(1);
    opacity: 1;
}
}

.floating-container {
    position: fixed;
    width: 100px;
    height: 100px;
    bottom: 0;
    right: 0;
    margin: 15px 0px;
    z-index: 1;
}
.floating-container:hover {
    height: 300px;
}
.floating-container:hover .floating-button {
    box-shadow: 0 10px 25px rgba(44, 179, 240, 0.6);
    -webkit-transform: translatey(5px);
    transform: translatey(5px);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.floating-container:hover .element-container .float-element:nth-child(1) {
    -webkit-animation: come-in 0.4s forwards 0.2s;
    animation: come-in 0.4s forwards 0.2s;
}
.floating-container:hover .element-container .float-element:nth-child(2) {
    -webkit-animation: come-in 0.4s forwards 0.4s;
    animation: come-in 0.4s forwards 0.4s;
}
.floating-container:hover .element-container .float-element:nth-child(3) {
    -webkit-animation: come-in 0.4s forwards 0.6s;
    animation: come-in 0.4s forwards 0.6s;
}
.floating-container .floating-button {
    position: absolute;
    width: 65px;
    height: 65px;
    background: #2cb3f0;
    bottom: 0;
    border-radius: 50%;
    left: 0;
    right: 0;
    margin: auto;
    color: white;
    line-height: 65px;
    text-align: center;
    font-size: 23px;
    z-index: 100;
    box-shadow: 0 10px 25px -5px rgba(44, 179, 240, 0.6);
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.floating-container .float-element {
    position: relative;
    display: block;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin: 15px auto;
    color: white;
    font-weight: 500;
    text-align: center;
    line-height: 50px;
    z-index: 0;
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
}
.floating-container .float-element .material-icons {
    vertical-align: middle;
    font-size: 16px;
}
.floating-container .float-element:nth-child(1) {
    background: #4CAF50;
    box-shadow: 0 20px 20px -10px rgba(66, 165, 245, 0.5);
}
.floating-container .float-element:nth-child(2) {
    background: #42A5F5;
    box-shadow: 0 20px 20px -10px rgba(76, 175, 80, 0.5);
}
.floating-container .float-element:nth-child(3) {
    background: #FF9800;
    box-shadow: 0 20px 20px -10px rgba(255, 152, 0, 0.5);
}
/* End of Floating Chat */

/* Floating WA */
.WA-floating {
    position: fixed;
    right: 25px;
    overflow: hidden;
    width: auto;
    height: 50px;
    border-radius: 100px;
    border: 0;
    z-index: 100;
    color: white;
    transition: .2s;
    margin-top: 100px;
    background-color: #0a939e;
    bottom: 0;
    right: 0;
    margin: 25px 0px;
    margin-right: 25px;
    padding: 0 20px;
    box-shadow: 0 2px 5px 0 rgba(71, 135, 107, 0.6);
}
.WA-floating:hover {
    background-color: #09898c;
    box-shadow: none;
}
.WA-floating span {
    font-size: 16px;
    margin-left: 5px;
    transition: .2s;
    line-height: 0px;
    display: inline-block;
}
@media only screen and (max-width: 767px) {
    /* For mobile phones: */
    .WA-floating {
        position: fixed;
        right: 25px;
        overflow: hidden;
        width: 50px;
        height: 50px;
        border-radius: 100px;
        border: 0;
        z-index: 100;
        color: white;
        transition: .2s;
        margin-top: 100px;
        background-color: #0a939e;
        bottom: 0;
        right: 0;
        margin: 25px 0px;
        margin-right: 25px;
        /* padding: 0 20px; */
        box-shadow: 0 2px 5px 0 rgba(71, 135, 107, 0.6);
    }
    .WA-floating span {
        font-size: 16px;
        margin-left: 5px;
        transition: .2s;
        line-height: 0px;
        display: none;
    }
}
/* End of Floating WA */

/*
====================================================
                2.Home
====================================================
*/

/*
---------------------------------------------
Service Solution
---------------------------------------------
*/
#features {
    padding-top: 130px;
}
.features .features-content {
    z-index: 2;
    position: relative;
    background-color: #2c3e50;
    border-radius: 50px;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
}

.features-item {
    text-align: center;
    padding: 30px;
    border-radius: 50px;
    background: #2c3e50;
    background: linear-gradient(105deg, #2c3e50 0%, #2c3e50 100%);
    transition: background-color .5s;
    -webkit-transition: background-color .5s;
    -o-transition: background-color .5s;
    -moz-transition: background-color .5s;
}

.features-item:hover {
    background: rgb(51,204,197);
    background: linear-gradient(105deg, rgba(51,204,197,1) 0%, rgba(8,141,195,1) 100%);
}

.features-item h4 span{
    opacity: 0;
}

.features-item:hover h4 {
    color: #fff;
}

.features-item:hover p {
    color: #fff;
}

.features-item:hover .line-dec {
    background-color: rgba(255,255,255,0.3);
}

.first-feature:hover .icon {
    background-image: url(images/3idea/store/store.png);
}

.second-feature:hover .icon {
    background-image: url(images/3idea/commerce/commerce.png);
}

.features-item .number h6 {
    background-repeat: no-repeat;
    width: 110px;
    height: 69px;
    color: #fff;
    margin-left: auto;
    margin-right: auto;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    line-height: 69px;
    margin-top: -65px;
    margin-bottom: 30px;
}

.features-item .first-number h6 {
    background-image: url(images/icons/features-number-01.png);
}

.features-item .second-number h6 {
    background-image: url(images/icons/features-number-02.png);
}

.features-item .third-number h6 {
    background-image: url(images/icons/features-number-03.png);
}

.features-item .fourth-number h6 {
    background-image: url(images/icons/features-number-04.png);
}

.first-feature .icon {
    background-image: url(public/images/3idea/store/store.png);
}

.second-feature .icon {
    background-image: url(../images/features-icon-black-02.png);
}

.features-item .icon {
    width: 100px;
    height: 100px;
    margin: auto;
    /* margin-left: 15px; */
    /* margin-right: 15px; */
    transition: all 0.5s;
}

.features-item .icon img {
    width: 150px;
    height: 150px;
    /* padding-left: 100px; */
    margin-left: 15px;
    margin-right: -15px;
}

.features-item h4 {
    margin-left: 15px;
    margin-right: 15px;
    /* margin-top: 100px; */
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    color: #0096bc;
    position: relative;
    transition: all 0.5s;
}

.features-item .line-dec {
    width: 100px;
    height: 2px;
    background-color: rgba(51,204,197,0.3);
    margin: 30px auto;
    transition: all 0.5s;
}

.features-item p {
    position: relative;
    margin-top: 0px;
    transition: all 0.5s;
}
/* End of Service Solution */

/*
---------------------------------------------
FAQ
---------------------------------------------
*/
.navigation {
    font-weight: 300;
    font-size: 0.9375rem;
    max-width: 760px;
    min-width: 316px;
    margin: 0 auto;
    color: #696666;
    padding: 0px 30px;
}
/*
*	Стили для логотипа
*/
.navigation__logo {
    width: 216px;
    margin: 0 auto;
    padding-bottom: 18px;
}
/*
*	Стили для основного меню
*	Очищение отступов и сброс стилей по умолчанию
*/
.accordion,
.sub-accordion {
    margin: 0;
    padding: 0;
    list-style: none;
}
.accordion__item {
    background: #e7e7e7;
    border-radius: 20px;
    margin-bottom: 5px;
}
/*
*	Стили для заголовка меню
*/
.accordion__item:nth-child(odd) > :first-child:not(.accordion__link_active) {
    color: #ffffff;
    background: #696666;
}
.accordion__link {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    color: #696666;
    text-decoration: none;
    border-radius: 20px;
    display: block;
    padding: 12px 50px 12px 20px;
}
.accordion__link:not(.accordion__link_active):after {
    position: absolute;
    content: "";
    border-top: 12px #0096bc solid;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    right: 22px;
    top: 50%;
    transform: translatey(-6px);
}
.accordion__link:not(.accordion__link_active):hover {
    opacity: .8;
    color: #fff;
    background: #B8B8B8;
}
.accordion__link:not(.accordion__link_active):hover:after {
    border-top: 12px #ffffff solid;
}
/*
*	Стили для подменю
*/
.sub-accordion {
    padding: 5px 20px;
    display: none;
    height: 0;
    overflow: hidden;
}
.sub-accordion__item {
    padding: 5px 0;
}
/*
*	Стили для октивного подменю
*/
.accordion__link_active {
    color: #ffffff;
    background-color: #0096bc;
}
.accordion__link_active:after {
    position: absolute;
    content: "";
    border-bottom: 12px #fff solid;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    right: 22px;
    top: 50%;
    transform: translatey(-6px);
}
.accordion__link_active + ul{
    display: block;
    height: 100%;
}

/*
---------------------------------------------
Our Clients
---------------------------------------------
*/
.slick-slide {
    margin: 0px 20px;
}
.slick-slide img {
    width: 100%;
    align-items: center;
    vertical-align: middle;
}
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after {
    display: table;
    content: "";
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}
.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir="rtl"] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
/* End of Slider */

/* Contact Form */
.send-button {
    margin-top: 15px;
    height: 34px;
    width: 100%;
    overflow: hidden;
    transition: all .2s ease-in-out;
}

.alt-send-button {
    width: 100%;
    height: 34px;
    transition: all .2s ease-in-out;
}

.send-text {
    display: block;
    margin-top: 10px;
    font: 700 12px 'Lato', sans-serif;
    letter-spacing: 2px;
}

.alt-send-button:hover {
    transform: translate3d(0px, -29px, 0px);
}

.form-control {
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-color: #0096bc;
    color: #6c757d;
    background: transparent;
}

.form-control:focus {
    background: transparent;
    color: #6c757d;
}

/* Social Media Icons */
.social-media-list {
    position: relative;
    font-size: 22px;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.social-media-list a i {
    color: #fff;
    text-decoration: none;
}

.social-media-list a {
    position: relative;
    display: inline-block;
    height: 60px;
    width: 60px;
    /* margin: 10px 3px; */
    line-height: 60px;
    border-radius: 50%;
    color: #fff;
    background-color: rgb(27,27,27);
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.social-media-list a:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 0 1px #fff;
    transition: all .2s ease-in-out;
}

.social-media-list a:hover {
    background-color: #fff;
}

.social-media-list a:hover:after {
    opacity: 1;
    transform: scale(1.12);
    transition-timing-function: cubic-bezier(0.37,0.74,0.15,1.65);
}

.social-media-list a:hover i {
    color: #000;
}
/* End of Contact Form */

/* Design Button */
.custom-button {
    /* width: 130px; */
    /* height: 40px; */
    /* padding: 10px 25px; */
    border: 2px solid #0096bc;
    /* font-family: 'Lato', sans-serif; */
    /* font-weight: 500; */
    color: #fff;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.position-relative button {
    margin: 20px;
    outline: none;
}
.position-relative a .custom-btn {
    border: 2px solid #0096bc;
    color: #fff;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}
/* 13 */
.btn-13 {
    color: #000;
    z-index: 1;
    background-color: #0096bc;
}
.btn-13:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: #252525;
    transition: all 0.3s ease;
}
.btn-13:hover {
    color: #fff;
    border: 2px solid #0096bc;
}
.btn-13:hover:after {
    top: 0;
    height: 100%;
}
.btn-13:active {
    top: 2px;
}

/* 11 */
.btn-11 {
overflow: hidden;
transition: all 0.3s ease;
}
.btn-11:hover {
background: #0096bc;
color: #000;
}
.btn-11:before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-btn1 3s ease-in-out infinite;
}
.btn-11:active{
box-shadow:  4px 4px 6px 0 rgba(255,255,255,.3),
            -4px -4px 6px 0 rgba(116, 125, 136, .2),
    inset -4px -4px 6px 0 rgba(255,255,255,.2),
    inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}

@-webkit-keyframes shiny-btn1 {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
/* End of Design Button */


/* Count Store */
section.more-info .section-heading {
    margin-bottom: 40px;
    text-align: left;
}

section.more-info p {
    margin-bottom: 40px;
}

section.more-info ul li {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #4a4a4a;
    font-style: italic;
    margin-bottom: 20px;
}

section.more-info ul li:last-child {
    margin-bottom: 0px;
}

section.more-info .count-area-content {
    margin-bottom: 20px;
    margin-top: 20px;
}

section.more-info .count-area-content .count-digit {
    background-color: #2c3e50;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    text-align: center;
    display: inline-block;
    margin-left: 48%;
    transform: translateX(-40px);
    width: 100px;
    height: 80px;
    line-height: 80px;
    font-size: 28px;
    color: #0096bc;
    font-weight: 900;
    margin-bottom: -40px;
    position: relative;
    z-index: 2;
}

section.more-info .count-area-content .count-title {
    background-color: #2c3e50;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    text-align: center;
    font-size: 20px;
    font-weight: 900;
    color: #0096bc;
    padding: 50px 30px 30px 30px;
    position: relative;
    z-index: 1;
}

#contact .info-wrap a {
    color: #d3e2f0;
    text-decoration: none;
}

#contact .info-wrap a:hover {
    color: #0096bc;
}

/* Footer */
.active-list li a {
    color: #d3e2f0;
}

.active-list li a:hover {
    color: #0096bc;
}
/* End of Footer */


/* typing */
.type {
    display:inline-block;
    vertical-align: bottom;
}

.type > span {
    color: #fff;
    display:grid;
    overflow: hidden;
    height:1.4em;
}

.type span span {
    width:0%;
    max-width: max-content;
    overflow: hidden;
    /* z-index: 20px; */
    height:inherit;
    word-break:break-all;

    animation:
      c 0.5s infinite steps(1),
      t 2s linear infinite alternate,
      m 16s steps(4) infinite;
  }
  .type span span:before {
    content:" ";
    display:inline-block;
  }

  @keyframes t{
    90%,100% {width:100%}
  }

  @keyframes c{
    0%,100%{box-shadow:5px 0 0 #0000}
    50%    {box-shadow:1px 0 0 white}
  }

  @keyframes m{
    100% {transform:translateY(-400%)}
  }
/* End of typing */


/* Portfolio 3idea media */
.more a{
    background-color: #0096bc;
    color: #000;
}

ul,ol{
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}

/*
====================================================
                6.Portfolio
====================================================
*/
.work{
    padding: 20px 0px;
}
.work-title{
    padding-bottom: 30px;
    text-align: center;
}
.portfolio-controllers-container{
    margin-bottom: 30px;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.portfolio-controllers{
    padding: 0px;
    height: 100%;
    display: inline-block;
}
.portfolio-controllers .filter-btn{
    float: left;
    padding: 10px 15px;
    border: none;
    outline: 0px;
    margin: 0px 15px 15px 0px;
    -webkit-transition : all 0.3s ease;
    transition : all 0.3s ease;
    cursor: pointer;
    background-color: transparent;
    color: #0096bc;
    border-radius: 20px;
}

.portfolio-controllers .filter-btn:hover{
    /* color: #00; */
    background-color: #0096bc4a;
    border-radius: 20px;
}

.portfolio-controllers .filter-btn.active-work{
    color: #fff;
    background-color: #0096bc;
}
.portfolio-controllers .filter-btn i{
    color: #fff;
    background-color: #0096bc;
    border-radius: 100%;
    padding: 5px;
}
.portfolio-controllers .filter-btn.active-work i{
    color: #0096bc;
    background-color: #fff;
    border-radius: 100%;
}

.portfolio-link li a i{
    background-color: transparent;
    padding: 10px;
    /* border: 1px solid #00CCCC; */
    color: #000;
    align-items: center;
    list-style-type: none;
}
.portfolio-link li a:hover i{
    /*border-color: transparent;*/
}
.portfolio-link li a:hover i,
.portfolio-link li a:hover i{
    /* margin-top: 10px; */
    background-color: #0096bc;
}
.portfolio-item-title{
    color: #0096bc;
    font-weight: 500;
}
.portfolio-item-title:after{
    background-color: transparent;
}
.caption-content{
    background-color: rgba(225, 225, 225, 0.85);
}

/* Design card Solution */
.card-solution {
    background: rgb(44,62,80);
    border-radius: 10px;
    padding: 0 1rem 0 1rem;
}

.more-container{
    margin-top: 40px;
}
.portfolio{
    padding: 14px 7px;
}
.portfolio-image{
    position: relative;
    overflow: hidden;
}
.portfolio-image img{
    width: 100%;
    height: 100%;
    transform : scale(1);
    -webkit-transition : all 0.5s ease;
    transition : all 0.5s ease;
    position: relative;
}
.portfolio-image:hover img{
    transform : scale(1.2);
    cursor: pointer;
}
.portfolio-image::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: rgba(34,35,40,0.5);
}
.work .caption{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    cursor: pointer;
    opacity: 0;
    transform : scale(1.2);
    -webkit-transition : all 0.5s ease;
    transition : all 0.5s ease;
    padding: 10px;
    z-index: 999;
}
.caption-content{
    width: 100%;
    height: 100%;
    position: relative;
}
.portfolio-image:hover .caption{
    opacity: 1;
    transform : scale(1);
}
.caption-content{
    width: 100%;
    height: 100%;
    text-align: center;
    /*background-color : rgba(0,204,204,0.8);*/
    position: relative;
}
.portfolio-link{
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
}
.portfolio-link li{
    float: left;
    margin-right: 5px;
}
.portfolio-link li a i{
    font-size: 25px;
    border-radius: 2px;
    -webkit-transition : all 0.3s linear;
    transition : all 0.3s linear;
}
.portfolio-link li a i.fa-link{
    padding: 10px 15px;
}
.portfolio-link li a i.fa-plus{
    padding: 10px 17px;
}
.portfolio-item-title{
    width: 90%;
    height: 40px;
    overflow: hidden;
    font-size: 18px;
       position: absolute;
    left: 50%;
    top: 25%;
    transform: translateX(-50%);
}
.portfolio-item-title:after{
    position: absolute;
    bottom: 0;
    left: 35%;
    content: '';
    width: 30%;
    height: 2px;
}

.footer-bottom p{
    text-align: center;
}

/*Xtra Large*/
@media (min-width: 1200px){}
/*Medium Device*/
@media(min-width:992px){}
/*Small Device*/
@media(min-width:768px){}
/*Xtra Small Device*/
@media(max-width:767px){

    .portfolio-controllers .filter-btn{
        margin-bottom: 15px;
        padding: 10px 12px;
        margin-left: 10px;
    }
}
/* End of Portfolio 3idea media */

/* Card Why */
:root {
    --red: hsl(0, 78%, 62%);
    --cyan: hsl(180, 62%, 55%);
    --orange: hsl(34, 97%, 64%);
    --blue: hsl(212, 86%, 64%);
    --varyDarkBlue: hsl(234, 12%, 34%);
    --grayishBlue: #0096bc;
    --veryLightGray: hsl(0, 92%, 46%);
    --weight1: 200;
    --weight2: 400;
    --weight3: 600;
}

.attribution {
    font-size: 11px; text-align: center;
}
.attribution a {
    color: hsl(228, 45%, 44%);
}

/* h1:first-of-type {
    font-weight: var(--weight1);
    color: var(--varyDarkBlue);

} */
/*
h1:last-of-type {
    color: var(--varyDarkBlue);
} */

@media (max-width: 400px) {
    h1 {
        font-size: 1.5rem;
    }
}

.header {
    text-align: center;
    line-height: 0.8;
    margin-bottom: 50px;
    margin-top: 100px;
}

.header p {
    margin: 0 auto;
    line-height: 2;
    /* color: var(--grayishBlue); */
}


/* .box p {
    color: var(--grayishBlue);
} */

.box {
    border-radius: 5px;
    box-shadow: 0px 30px 40px -20px var(--grayishBlue);
    padding: 30px;
    margin: 20px;
}

img {
    float: right;
}

@media (max-width: 450px) {
    .box {
        height: 200px;
    }
}

@media (max-width: 950px) and (min-width: 450px) {
    .box {
        text-align: center;
        height: 180px;
    }
}

.cyan {
    border-top: 3px solid var(--cyan);
}
.red {
    border-top: 3px solid var(--red);
}
.blue {
    border-top: 3px solid var(--blue);
}
.orange {
    border-top: 3px solid var(--orange);
}

/* h2 {
    color: var(--varyDarkBlue);
    font-weight: var(--weight3);
} */


@media (min-width: 950px) {
    .row1-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .row2-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .box-down {
        position: relative;
        top: 150px;
    }
    .box {
        width: 20%;

    }
    .header p {
        width: 30%;
    }

}
/* End of Card Why */
