*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    outline: none;
    user-select: none;
}

@font-face {
    font-family: Lato;
    src: url(Lato-Light.ttf);
}

html {
    scroll-behavior: smooth;
}



header {
    height: 100vh;
    background: url(img/pattern-1.png) repeat center / 3px, url(img/banner-img--xlarge.jpg) no-repeat center /cover fixed;
    display: grid;
    justify-content: center;
    align-content: center;
    justify-items: center;
    grid-row-gap: 40px;
    overflow: hidden;
}

header nav {
    width: 100%;
    height: 73px;
    background: #ecf0f1;
    position: fixed;
    display: flex;
    top: -73px;
    justify-content: space-around;
    align-items: center;
    z-index: 2;
    transition: .5s;
}

header nav .logo {
    font: bold 32px Lato;
    color: #2f2f2f;
}

header nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 25px;

}

header nav ul li {
    position: relative;
}

header nav ul li a {
    font: bold 11px sans-serif;
    color: #2f2f2f;
    text-transform: uppercase;
    transition: all .3s;

}

header nav ul li+li::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 300;
    background: #6c6c6c;
    width: 1px;
    height: 56%;
    border-bottom: none;
    left: -13px;

}

header h1 {
    font: 80px Lato;
    color: #fff;

}

header .sliderText {
    height: 165px;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    background: rgba(0, 0, 0, 0.400);
    text-align: center;
    display: flex;
    align-items: center;
}

header .sliderText .overlay {
    height: 75%;
    overflow: hidden;

}

header .sliderText .overlay .slide {
    height: 400%;
    display: flex;
    flex-direction: column;
    position: relative;
    top: 0;
    transition: 1s;
}

header .sliderText .overlay .slide h4 {
    height: 400%;
    flex-wrap: wrap;
    font: 50px Lato;
    color: #fff;
    margin: 0 auto;
    width: 80%;
    text-transform: uppercase;
}

.webTextColor {
    color: #7844ad;
}


header h6 {
    font: 25px Lato;
    color: #fff;
    margin-top: 20px;
}

header .social {
    display: flex;
    column-gap: 12px;

}

header .social a {
    width: 35px;
    height: 35px;
    background: #0000008f;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    color: #fff;
    transition: .3s;

}

header .social .webTextColorA:hover {
    color: #7844ad;
}

header .arrowDown {
    font-size: 40px;
    color: #fff;
    transition: .3s;
    margin-top: 50px;
}

header .arrowDown:hover {
    color: #7844ad;

}

.option {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: -220px;
    transition: .5s;
    display: flex;
    align-items: flex-start;
    z-index: 2;
}

.option .colors {
    width: 220px;
    border-radius: 5px;
    padding: 20px 25px;
    background: #fff;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.8);

}

.option button {
    transform: translate(-25px, 28px) rotate(-90deg);
    padding: 9px 12px;
    background: #000;
    color: #fff;
    border: 0;
    border-radius: 3px;
    font: 18px Lato;
    text-transform: uppercase;
    cursor: pointer;

}

.option .colors h3 {
    font: 18px Lato;
    margin-bottom: 20px;
}

.option .colors .colorBox {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 5px;
    margin-bottom: 50px;
}

.option .colors .colorBox .item {
    width: 25px;
    height: 25px;
    background: #f00;
    cursor: pointer;
}

.option .colors .themeBox {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 5px;
    margin-bottom: 50px;
}

.option .colors .themeBox .item {
    width: 25px;
    height: 25px;
    background: red;
    cursor: pointer;
}

#aboutTheme {
    text-align: center;
    padding: 6% 0 10%;
    overflow: hidden;
}

#aboutTheme h2 {
    color: #7844ad;
    font: 40px Lato;
}

#aboutTheme h3 {
    color: #6c6c6c;
    font: 25px Lato;
    margin-top: 15px;

}

#aboutTheme .designBox {
    display: flex;
    justify-content: center;
    column-gap: 50px;
    margin-top: 60px;
}

#aboutTheme .designBox .child {
    width: 26%;
    text-align: center;
    transition: 1s;
    position: relative;
}

#aboutTheme .designBox .child .simbol {
    --b: -10px;
    width: 100px;
    height: 100px;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    position: relative;
    transition: .4s;
    cursor: pointer;
    margin: auto;
    margin-bottom: 20px;
    color: #212121;

}

#aboutTheme .designBox .child .simbol::after {
    content: '';
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: var(--b);
    left: 50%;
    transform: translateX(-50%);
    transition: .4s;
}

#aboutTheme .designBox .child .simbol:hover {
    background: #212121;
    color: #fff;
}

#aboutTheme .designBox .child .simbol:hover::after {
    border-top-color: #212121;
}

#aboutTheme .designBox .child .simbol i {
    color: #212121;
    transition: .5s;
}

#aboutTheme .designBox .child .simbol:hover i {
    color: white;
}


#aboutTheme .designBox h4 {
    margin-bottom: 20px;
    font: 16px sans-serif;
    line-height: 24px;
    color: #2f2f2f;
}

#aboutTheme .designBox p {
    font: 16px Lato;
    font-weight: 400;
    line-height: 24px;
    color: #2f2f2f;
    padding: 10px;
    border-radius: 15px;
    transition: .5s .2s;

}

#aboutTheme .designBox p.active {
    background: #424242;
    color: #fff;
}

#aboutTheme .designBox .child:first-child {
    left: -150px;

}

#aboutTheme .designBox .child:nth-child(2) {
    bottom: -50px;

}

#aboutTheme .designBox .child:last-child {
    right: -150px;

}

#textSlide {
    background: url(img/pattern-1.png) repeat center / 3px, url(img/parallax-bg-1--xlarge.jpg) no-repeat center / cover fixed;
    text-align: center;
    padding-bottom: 160px;
}

#textSlide .fixedText {
    height: 165px;
    display: flex;
    background: #00000050;
    justify-content: center;
    align-items: center;
}

#textSlide .fixedText h2 {
    font: 30px Lato;
    color: #fff;
}

#textSlide .slider {
    width: 70%;
    margin: 135px auto 35px;
    text-align: center;
}

#textSlide .slider h2 {
    color: #fff;
    font: 25px latolight;
    transition: .5s;
}

#textSlide .slider hr {
    border: 0;
    border-top: 1px solid #6c6c6c;
    width: 14%;
    margin: 3em auto 0;
}

#textSlide .slider p {
    color: #fff;
    font: 17px latolight;
    margin-top: 15px;
    transition: .5s;
}

#textSlide button {
    font-size: 25px;
    width: 33px;
    height: 33px;
    color: #fff;
    background: #00000050;
    border: 0;
    border-radius: 3px;
    transition: .3s;
    cursor: pointer;
    margin: 0 15px;
}

#textSlide button:hover {
    color: #7844AD;
}


#monitor {
    text-align: center;
    padding: 70px;
}

#monitor h2 {
    font: 45px latolight;
}

#monitor h3 {
    font: 25px latolight;
    margin: 10px;
    color: #6c6c6c;
}

#monitor .display {
    width: 625px;
    height: 520px;
    background: url(img/imac-parallax.png) no-repeat center / contain;
    margin: 57px auto 0;
    padding: 23px 41px;
}

#monitor .display .screen {
    height: 308px;
    overflow: hidden;
    cursor: grab;
}

#monitor .display .screen:active {
    cursor: grabbing;
}

#monitor .display .screen .monitorSlide {
    width: 500%;
    height: 100%;
    display: flex;
    position: relative;
    left: -200%;
    transition: 1s;
}

#monitor .display .screen .monitorSlide .item {
    width: 100%;
    height: 100%;
}

#documental {
    height: 100vh;
    background: url(./img/pattern-1.png), url(img/parallax-bg-2--xlarge.jpg) no-repeat center / cover fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

#documental .item {
    width: 20%;
    text-align: center;
    color: white;
    position: relative;
}

#documental .item i {
    font-size: 45px;
    transition: .6s;
    z-index: 1;
    position: relative;
    top: 0;
}

#documental .item h3 {
    font: 20px Lato;
    margin: 10px 0;
}

#documental .item p {
    line-height: 32px;
    font: 17px Lato;
}

#documental .item:hover i {
    color: #8e44ad;
}

#documental .item i span {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    border-radius: 5px;
    white-space: nowrap;
    z-index: 1;
    opacity: 0;
    transition: .5s;
    pointer-events: none;
    color: white;
    font-size: 20px;
}

#documental .item i span::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-top: 10px solid rgba(0, 0, 0, 0.8);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    pointer-events: none;
}

#documental .item i:hover span {
    opacity: 1;
    top: -60px;
}

#ourWork {
    text-align: center;
    padding: 65px 0;
}

#ourWork h2 {
    font: 40px latolight;
    margin-bottom: 15px;
}

#ourWork h3 {
    font: 25px latolight;
    color: #6c6c6c;
}

#ourWork .tabMenu {
    display: flex;
    gap: 11px;
    justify-content: center;
    margin-top: 20px;
}

#ourWork .tabMenu li {
    padding: 3px 10px;
    font: bold 12px latolight;
    border: 1px solid #6c6c6c;
    border-radius: 3px;
    color: #6c6c6c;
    cursor: pointer;
    letter-spacing: 1px;
    transition: .4s;
    background: none;
}

#ourWork .tabMenu li.active {
    background: #612E76;
    color: #fff;
}

#ourWork .illustration {
    height: 1070px;
    position: relative;
    width: 85%;
    margin: 45px auto 0;
    transition: .5s .8s;
}

#ourWork .illustration .item {
    width: 32%;
    height: 245px;
    background: no-repeat center / cover;
    position: absolute;
    left: calc(var(--i) * 34%);
    top: calc(var(--t) * 270px);
    transition: 1s;
    cursor: pointer;
}

@keyframes hide {
    to {
        transform: scale(0);
        opacity: 0;
    }
}

@keyframes show {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}


#ourWork .illustration .item .illusDiv .itemDiv {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.555);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0);
    transition: .7s;

}

#ourWork .illustration .item .illusDiv .text {
    transition: .5s;
    transition-delay: .7s;
    opacity: 0;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;

}

#ourWork .illustration .item .illusDiv {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
}

#ourWork .illustration .item:hover .illusDiv .itemDiv {
    transform: scale(1);
}

#ourWork .illustration .item:hover .text {
    bottom: 20px;
    opacity: 1;

}


#counter {
    width: 100%;
    height: 90vh;
    background: url(/img/pattern-1.png) left top repeat, url(img/parallax-bg-3--xlarge.jpg) top fixed;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#counter .textDiv {
    width: 100%;
    height: 180px;
    background: #1a1b1ca6;
    display: flex;
    justify-content: center;
    align-items: center;
}

#counter .textDiv .h3Text {
    color: white;
    font-size: 32px;
    font-family: Lato;
}

#counter .textDiv .h3Text .color {
    color: #773c8f;
}


#counter .contDiv {
    width: 100%;
    height: 410px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#counter .contDiv .miniDiv {
    width: 80%;
    height: 230px;
    /* background: pink; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#counter .contDiv .miniDiv .divIcon {
    width: 220px;
    height: 220px;
    /* outline: 1px solid red; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#counter .contDiv .miniDiv .divIcon .bgicon {
    width: 100px;
    height: 100px;
    background: #29292B;
    display: flex;
    justify-content: center;
    align-items: center;
}

#counter .contDiv .miniDiv .divIcon .bgicon:hover {
    cursor: pointer;
    background: black;
    transition: .5s;
}


#counter .contDiv .miniDiv .divIcon .numbers {
    color: white;
    font-size: 56px;
    font-family: Lato;
}

#counter .contDiv .miniDiv .divIcon h5 {
    color: white;
    font-size: 15px;
    font-family: Lato;
}

#counter .contDiv .miniDiv .divIcon .color {
    color: #773c8f;
}

#counter .contDiv .miniDiv .divIcon .numH5 {
    width: 170px;
    height: 60px;
    /* outline: 1px solid blue; */
    display: flex;
    justify-content: center;
}

.fa {
    color: white;
}



#pricing {
    width: 100%;
    text-align: center;
    background-color: #f6f6f6;
    padding: 100px;
}

#pricing .title {
    color: #8e44ad;
    font-size: 40px;
    font-family: Lato;
    margin-bottom: 20px;
}

#pricing .subtitle {
    color: #6c6c6c;
    font-size: 24px;
    font-family: Lato;
    margin-bottom: 20px;
}

#pricing .row {
    padding-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2%;
    /* flex-wrap: wrap; */
}

#pricing .row .rowDiv {
    width: 31%;
    height: 530px;
    background: #e8e8e8;
    max-width: 350px;
    min-width: 210px;
}

#pricing .row .rowDiv:hover {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.404),
        0 1px 2px rgba(0, 0, 0, 0.404);
    transition-property: box-shadow;
    transition-duration: 0.25s;
    transition-timing-function: ease;
    transition-delay: 0s;
}

#pricing .row .rowDiv .bgDiv {
    width: 100%;
    height: 65px;
    background: #6c6c6c;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#pricing .row .rowDiv .bgDiv::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-top: 17px solid #6c6c6c;
    border-left: 17px solid transparent;
    border-right: 17px solid transparent;
    transition-timing-function: ease;
}

#pricing .row .rowDiv:hover .bgDiv::after {
    border-top-color: black;
    transition-property: box-shadow;
    transition-duration: 0.25s;
    transition-delay: 0s;
}


#pricing .row .rowDiv .Divbg {
    background: #8e44ad;
    width: 100%;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#pricing .row .rowDiv .Divbg::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-top: 17px solid #8e44ad;
    border-left: 17px solid transparent;
    border-right: 17px solid transparent;
}

#pricing .row .rowDiv:hover .Divbg::after {
    border-top-color: #612E76;
    transition-property: box-shadow;
    transition-duration: 0.25s;
    /* transition-timing-function: ease; */
    transition-delay: 0s;
}

#pricing .row .rowDiv .bgDiv .h4bg {
    color: white;
    font-family: Lato;
    font-size: 25px;
}

#pricing .row .rowDiv .Divbg .h4bg {
    color: white;
    font-family: Lato;
    font-size: 25px;
}

#pricing .row .rowDiv .numDiv {
    width: 100%;
    height: 65px;
    /* outline: 1px solid yellow; */
    margin: 20px 0 5px 0;
    display: flex;
    justify-content: center;
    padding: 0 24px 0 24px;
}

#pricing .row .rowDiv .numDiv .dollar {
    font-size: 24px;
    margin-top: 10px;
}

#pricing .row .rowDiv .numDiv .h2num {
    font-size: 48px;
    font-family: Lato;
}

#pricing .row .rowDiv .lorem {
    font-family: Lato;
    font-size: 14px;
    line-height: 23px;
    text-align: center;
    padding: 0 24px 0 24px;
}

#pricing .row .rowDiv ul li .color2 {
    color: #8e44ad;
    font-family: Lato;
}

#pricing .row .rowDiv ul {

    /* outline: 1px solid; */
    line-height: 45px;
    text-align: center;
    padding: 0 24px;

}

#pricing .row .rowDiv ul li {
    font-size: 12px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.3);
    font-family: Lato;
    position: relative;
}

#pricing .row .rowDiv ul li:last-of-type {
    border: 0;
}

#pricing .row .rowDiv .butDiv {
    width: 100%;
    height: 65px;
    margin-top: 10px;
}

#pricing .row .rowDiv .butRow {
    padding: 16px 0;
    width: 100%;
    color: white;
    background: #6c6c6c;
    transition: all .35s ease-in-out;
    height: 65px;
    font-size: 15px;
    cursor: pointer;
    border: 0;
    outline: 0;

}

#pricing .row .rowDiv:hover .butRow {
    background: #000;
    transition: .5s;
}

#pricing .row .rowDiv:hover .bgDiv {
    background: #000;
    transition: .5s;
}

#pricing .row .rowDiv:nth-child(2) .butRow {
    background: #8e44ad;
}

#pricing .row .rowDiv:nth-child(2):hover .butRow {
    background: #612E76;
}

#pricing .row .rowDiv:nth-child(2):hover .Divbg {
    background: #612E76;
}

#pricing .row .rowDiv ul li .tooltip {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    padding: 6px;
    border-radius: 5px;
    white-space: nowrap;
    z-index: 1;
    opacity: 0;
    transition: .2s;
    pointer-events: none;
    color: white;
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 18px;
}

#pricing .row .rowDiv ul li .tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-top: 10px solid rgba(0, 0, 0, 0.8);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    pointer-events: none;
}

#pricing .row .rowDiv ul li:hover .tooltip {
    opacity: 1;
    top: -60px;
}



#tabletSec {
    width: 100%;
    padding: 90px 0 130px 0;
    background: url(img/parallax-bg-4--xlarge.jpg) no-repeat center / cover fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7%;
}

#tabletSec .ipad {
    width: 386px;
    height: 550px;
}

.container {
    width: 40%;
    /* outline: 1px solid; */
    height: auto;
}


#tabletSec .container .ipadh2 {
    color: #8e44ad;
    font-size: 40px;
    line-height: 48px;
    font-family: Lato;
    text-align: left;
    font-weight: 300;
}

#tabletSec .container .ipadh4 {
    color: #6c6c6c;
    font-size: 25px;
    font-family: Lato;
    font-weight: 300;
    text-align: left;
    margin: 15px 0 50px;

}

#tabletSec .container .text .fa {
    color: black;
}

#tabletSec .container .text {
    font-family: Lato;
    margin: 16px 0;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    transition: .5s;
}

#tabletSec .container .text h5 {
    font-family: Lato;
    font-size: 15px;
}

#tabletSec .container .text .activeDiv {
    width: 100%;
    font-family: Lato;
    line-height: 23px;
    overflow: hidden;
    height: 1px;
    transition: .5s;
}

#tabletSec .container .text .activeDiv .acDivText{
    font-size: 17px;
    font-family: Lato;
}

#tabletSec .container .text.active .activeDiv {
    height: 200px;
    overflow: visible;
}

#tabletSec .container .text.active .fa {
    transform: rotateZ(90deg);
    color: #a050c2;
}



#team {
    width: 100%;
    padding: 70px 0 70px 0;
    background: #f6f6f6;
    text-align: center;
}

#team h2 {
    color: #8e44ad;
    font-size: 40px;
    line-height: 70px;
    font-family: Lato;
    font-weight: 300;
}

#team h4 {
    color: #6c6c6c;
    line-height: 32px;
    font: 300 24px Lato;
    margin-bottom: 56px;
}

#team .row {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

#team .row .divImg {
    width: 15%;
    min-width: 237px;
    height: 600px;
}

#team .row .divImg .jpgDiv {
    width: 100%;
    height: 260px;
    margin-bottom: 16px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#team .row .divImg .jpgDiv .itemDiv {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 0%;
    height: 0%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(img/plus.png) no-repeat center / 20%;
    background-color: rgba(0, 0, 0, 0.555);
    transition: .7s;
}

#team .row .divImg .jpgDiv:hover .itemDiv {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

#team .row .divImg .jpgDiv .jpg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#team .row .divImg h4 {
    font-size: 24px Lato;
    line-height: 32px;
    margin-bottom: 10px;
}

#team .row .divImg h6 {
    font: 400 12px Lato;
    line-height: 18px;
    margin-bottom: 16px;
}

#team .row .divImg p {
    font-family: Lato;
    line-height: 23px;
}

#team .row .divImg .progDiv {
    width: 100%;
    height: 130px;
    display: grid;
    align-content: center;
    gap: 15px;
}

#team .row .divImg .progDiv .progress {
    appearance: none;
    width: 100%;
    height: 20px;
    position: relative;
    border-radius: 6px;
    font-size: 20px;
    text-align: right;
    background: linear-gradient(rgb(238, 232, 232), white, rgb(238, 232, 232));
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.492);
}

#team .row .divImg .progDiv .progress .progSpan {
    width: 40%;
    height: 100%;
    position: absolute;
    background: #8e44ad;
    top: 0;
    left: 0;
    border-radius: 5px;
    color: white;
    font-family: Lato;
    text-align: center;
    font-size: 15px;
}

#team .row .divImg .progDiv .progress .progSpan:hover {
    background: #60207c
}

#team .row .divImg .progDiv .progress .prog12 {
    height: 100%;
    position: absolute;
    width: 80%;
    background: rgb(108, 102, 174);
    left: 0;
    top: 0;
    border-radius: 5px;
}

#team .row .divImg .progDiv .progress .prog12:hover {
    background: rgb(76, 71, 120);
}

#team .row .divImg .progDiv .progress .marjelo {
    position: absolute;
    right: 2px;
    top: 2px;
    font: 15px sans-serif;
}


footer {
    width: 100%;
    background: #54595F;
}

footer #bigDiv {
    width: 100%;
    /* outline: 1px solid; */
    padding: 65px 45px;
}

footer .minDiv {
    width: 100%;
    height: 50px;
    background: #43464D;
    display: flex;
    justify-content: space-between;
}

footer #bigDiv .footDiv {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    margin: 0 auto;
    column-gap: 20px;
    row-gap: 50px;
}

footer #bigDiv .footDiv .minii {
    width: 18%;
    /* outline: 1px solid yellow; */
    display: grid;
    align-content: space-between;
    min-width: 200px;
    min-height: 205px;
}

footer #bigDiv .footDiv .mini {
    width: 18%;
    /* outline: 1px solid red; */
    display: grid;
    gap: 10px;
    min-width: 135px;
    min-height: 205px;
}

footer #bigDiv .footDiv .minii h2 {
    color: white;
    font-size: 25px;
    font-family: Lato;
}

footer #bigDiv .footDiv .minii .fas {
    color: #8E44AD;
    margin-right: 10px;
}

footer #bigDiv .footDiv .minii li {
    color: white;
    font-family: Lato;
}

footer #bigDiv .footDiv .mini h2 {
    color: white;
    padding-bottom: 15px;
    font-family: Lato;
    font-size: 18px;
}

footer #bigDiv .footDiv .mini li {
    color: rgba(211, 211, 211, 0.591);
    font-family: Lato;
}

footer #bigDiv .footDiv form {
    display: grid;
    gap: 10px;
    height: 190px;
    width: 18%;
    min-height: 205px;
    min-width: 240px;
}

footer #bigDiv .footDiv form h2 {
    color: white;
    font: 18px Lato;
    font-weight: bold;
}

footer #bigDiv .footDiv form input {
    width: 100%;
    height: 40px;
    background: #63686E;
    color: white;
    border: 0;
    outline: 0;
    padding-left: 10px;
}

footer #bigDiv .footDiv form input::placeholder {
    color: white;
    font: 18px Lato;
}

footer #bigDiv .footDiv form>button {
    background: #8E44AD;
    color: white;
    font: 18px Lato;
    width: 100%;
    height: 40px;
    border: 0;
    outline: 0;
    font-weight: bold;
}

footer #bigDiv .footDiv form>button:hover {
    background: gray;
    color: #8E44AD;
    cursor: pointer;
}

footer .minDiv .dkGraydiv1 {
    width: 210px;
    height: 100%;
    /* outline: 1px solid white; */
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .minDiv .dkGraydiv2 {
    width: 305px;
    height: 100%;
    /* outline: 1px solid white; */
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;

}

footer .minDiv .dkGraydiv1 p {
    color: rgba(211, 211, 211, 0.591);
    text-align: center;
}

footer .minDiv .dkGraydiv2 i {
    color: rgba(211, 211, 211, 0.591);
    font-size: 25px;
    cursor: pointer;
}

footer .minDiv .dkGraydiv2 i:hover {
    color: white;
}




@media screen and (max-width: 768px){
    header{
        display: grid;
        grid-row-gap: 15px;
    }

    header nav{
        height: 50px;
    }

    header nav .logo{
        font-size: 20px;
    }

    header nav ul{
        display: flex;
        column-gap: 15px;
    }

    header nav ul li a{
        font-size: 10px;
    }

    header nav ul li+li::before{
        position: absolute;
        top: 58%;
        left: -8px;
    }

    #documental{
        height: 700px;
        display: flex;
        gap: 20px;
    }

    #pricing{
        padding: 60px;
    }

    #pricing .subtitle{
        font-size: 21px;
    }

    #pricing .title{
        font-size: 37px;
    }

    #counter .contDiv .miniDiv{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #counter .contDiv .miniDiv .divIcon{
        width: 170px;
    }

    #counter .contDiv .miniDiv .divIcon .numH5{
        width: 120px;
    }

    #counter .contDiv .miniDiv .divIcon h5{
        font-size: 12px;
    }

    #tabletSec{
        padding: 50px 0 60px 0;
        gap: 5%;
    }

    #tabletSec .ipad{
        width: 350px;
        height: 500px;
    }

    #tabletSec .container .ipadh2{
        font-size: 30px;
    }

    #tabletSec .container .ipadh4{
        font-size: 20px;
        margin: 15px 0 35px;
    }

    #tabletSec .container .text .activeDiv {
        line-height: 18px;
    }

    #tabletSec .container .text .activeDiv .acDivText{
        font: 13px Lato;
    }

    #team{
        padding: 45px 0 45px 0;
    }

    #team .row .divImg{
        width: 31%;
    }

    footer #bigDiv{
        padding: 65px 96px;
    }

    footer #bigDiv .footDiv{
        padding: 0px 69px;
    }

    footer #bigDiv .footDiv .minii{
        min-width: 265px;
    }

    footer #bigDiv .footDiv .mini:nth-child(4){
        margin-left: 75px;
    }

    #aboutTheme h3{
        font: 21px Lato;
    }

    #monitor h2{
        font: 40px latolight;
    }

    #monitor h3{
        font: 22px latolight;
    }


}


@media screen and (max-width: 1024px){
    header{
        display: grid;
        grid-row-gap: 15px;
    }

    header nav{
        height: 50px;
    }

    header nav .logo{
        font-size: 20px;
    }

    header nav ul{
        display: flex;
        column-gap: 15px;
    }

    header nav ul li a{
        font-size: 10px;
    }

    header nav ul li+li::before{
        position: absolute;
        top: 58%;
        left: -8px;
    }

    #documental{
        height: 700px;
        display: flex;
        gap: 20px;
    }

    #pricing{
        padding: 60px;
    }

    #pricing .subtitle{
        font-size: 21px;
    }

    #pricing .title{
        font-size: 37px;
    }

    #counter .contDiv .miniDiv{
        width: 100%;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    #counter .contDiv .miniDiv .divIcon{
        width: 170px;
    }

    #counter .contDiv .miniDiv .divIcon .numH5{
        width: 120px;
    }

    #counter .contDiv .miniDiv .divIcon h5{
        font-size: 12px;
    }

    #tabletSec{
        padding: 50px 0 60px 0;
        gap: 5%;
    }

    #tabletSec .ipad{
        width: 350px;
        height: 500px;
    }

    #tabletSec .container .ipadh2{
        font-size: 30px;
    }

    #tabletSec .container .ipadh4{
        font-size: 20px;
        margin: 15px 0 35px;
    }

    #tabletSec .container .text .activeDiv {
        line-height: 18px;
    }

    #tabletSec .container .text .activeDiv .acDivText{
        font: 15px Lato;
    }

    #team{
        padding: 45px 0 45px 0;
    }

    #team .row{
        gap: 30px;
    }

    #team .row .divImg{
        min-width: 205px;
    }

    footer #bigDiv{
        padding: 50px 50px;
    }

    footer #bigDiv .footDiv .minii{
        min-width: 220px;
    }

    footer #bigDiv .footDiv .mini{
        width: 14%;
        min-width: 135px;
        max-width: 205px;
    }

    footer #bigDiv .footDiv form{
        min-width: 218px;
    }

    #aboutTheme h3{
        font: 21px Lato;
    }

    #monitor h2{
        font: 40px latolight;
    }

    #monitor h3{
        font: 22px latolight;
    }


}


@media screen and (max-width: 1440px){
    header{
        grid-row-gap: 10px;
    }

    #aboutTheme{
        padding: 6% 0 6%;
    }

    #counter{
        height: 100vh;
    }

    #counter .contDiv{
        align-items: flex-start;
    }
}