@import "bourbon";
@import 'https://fonts.googleapis.com/css?family=Montserrat:400,700|Raleway:300,400';



.tabs {
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    /* background: linear-gradient(to right top, #2c71ad 20%, #84a7c4);*/
    padding: 20px;
    padding-bottom: 80px;
    width: 80%;
    height: auto;
    /*box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);*/
    /*box-shadow: 0 1.12em 2.9em -0.9em rgba(0, 0, 0, 0.3);*/
    transition: transform 0.45s ease, background 0.45s ease;
    border-radius: 10px;
    min-width: 240px;
    direction: rtl;

}

.tabs input[name="tab-control"] {
    display: none;
}

.tabs .content section h2,
.tabs ul li label {
    font-family: "Montserrat";
    font-weight: bold;
    font-size: 18px;
    color: #428bff;
}

.tabs ul {
    list-style-type: none;
    padding-left: 0;

    flex-direction: row;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    /*justify-content: space-between;*/
    align-items: center;
    flex-wrap: wrap;


}

.tabs ul li {
    box-sizing: border-box;

    /*flex: 1;*/
    /*width: 25%;*/
    /*padding: 0 0px;*/
    text-align: center;
}

.tabs ul li label {
    transition: all 0.3s ease-in-out;
    color: rgb(162, 162, 253);

    padding: 5px auto;


    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
    -webkit-touch-callout: none;
}

.tabs ul li label br {
    display: none;
}

.tabs ul li label svg {
    fill: rgb(162, 162, 253);
    height: 1.2em;
    vertical-align: bottom;
    margin-right: 0.2em;
    transition: all 0.2s ease-in-out;

}

.tabs ul li label:hover,
.tabs ul li label:focus,
.tabs ul li label:active {
    outline: 0;
    color: #4154f1;

}

.tabs ul li label:hover svg,
.tabs ul li label:focus svg,
.tabs ul li label:active svg {
    fill: #4154f1;

}

.tabs .slider {
    position: relative;
    width: 25%;
    transition: all 0.33s cubic-bezier(0.38, 0.8, 0.32, 1.07);
}

.tabs .slider .indicator {
    position: relative;
    width: 50px;
    max-width: 100%;
    margin: 0 auto;
    height: 4px;
    background: #cc151525;
    border-radius: 1px;
}

.tabs .content {
    margin-top: 30px;
}

.tabs .content section {
    display: none;
    animation-name: content;
    animation-direction: normal;
    animation-duration: 0.3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
    line-height: 1.4;
}

.tabs .content section h2 {
    color: #4154f1;
    display: none;
}

.tabs .content section h2::after {
    content: "";
    position: relative;
    display: block;
    width: 30px;
    height: 3px;
    background: white;
    margin-top: 5px;
    left: 1px;
}

.tabs input[name="tab-control"]:nth-of-type(1):checked~ul>li:nth-child(1)>label {
    cursor: default;
    color: #4154f1;
}

.tabs input[name="tab-control"]:nth-of-type(1):checked~ul>li:nth-child(1)>label svg {
    fill: #4154f1;
}

@media (max-width: 600px) {
    .tabs input[name="tab-control"]:nth-of-type(1):checked~ul>li:nth-child(1)>label {
        background: rgba(0, 0, 0, 0.08);
    }
}

.tabs input[name="tab-control"]:nth-of-type(1):checked~.slider {
    transform: translateX(0%);
}

.tabs input[name="tab-control"]:nth-of-type(1):checked~.content>section:nth-child(1) {
    display: block;
}

.tabs input[name="tab-control"]:nth-of-type(2):checked~ul>li:nth-child(2)>label {
    cursor: default;
    color: #4154f1;
}

.tabs input[name="tab-control"]:nth-of-type(2):checked~ul>li:nth-child(2)>label svg {
    fill: #4154f1;
}

@media (max-width: 600px) {
    .tabs input[name="tab-control"]:nth-of-type(2):checked~ul>li:nth-child(2)>label {
        background: rgba(0, 0, 0, 0.08);
    }
}

.tabs input[name="tab-control"]:nth-of-type(2):checked~.slider {
    transform: translateX(100%);
}

.tabs input[name="tab-control"]:nth-of-type(2):checked~.content>section:nth-child(2) {
    display: block;
}

.tabs input[name="tab-control"]:nth-of-type(3):checked~ul>li:nth-child(3)>label {
    cursor: default;
    color: #4154f1;
}

.tabs input[name="tab-control"]:nth-of-type(3):checked~ul>li:nth-child(3)>label svg {
    fill: #4154f1;
}

@media (max-width: 600px) {
    .tabs input[name="tab-control"]:nth-of-type(3):checked~ul>li:nth-child(3)>label {
        background: rgba(0, 0, 0, 0.08);
    }
}

.tabs input[name="tab-control"]:nth-of-type(3):checked~.slider {
    transform: translateX(200%);
}

.tabs input[name="tab-control"]:nth-of-type(3):checked~.content>section:nth-child(3) {
    display: block;
}


@keyframes content {
    from {
        opacity: 0;
        transform: translateY(5%);
    }

    to {
        opacity: 1;
        transform: translateY(0%);
    }
}

@media (max-width: auto) {
    .tabs ul li label {
        white-space: initial;
    }

    .tabs ul li label br {
        display: initial;
    }

    .tabs ul li label svg {
        height: 1.5em;
    }
}

@media (max-width: 600px) {
    .tabs ul li label {
        padding: 5px;
        border-radius: 5px;
    }

    .tabs ul li label span {
        display: none;
    }

    .tabs .slider {
        display: none;
    }

    .tabs .content {
        margin-top: 20px;
    }

    .tabs .content section h2 {
        display: block;
    }
}


/*end style tablist*/
.wrapper {
    width: 100vw;
    margin: 0 auto;
    height: 400px;
    background-color: #161616;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
    .wrapper {
        height: 700px;
    }
}

.content {
    /* max-width: 1024px;*/
    width: 100%;
    padding: 0 4%;
    padding-top: 0px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .content {
        /*padding-top: 300px;*/
        flex-direction: column;
    }
}

.card {
    width: 100%;
    /*max-width: 245px;
  min-width: 200px;*/
    height: 300px;
    background-color: white;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.24);
    border: 2px solid rgba(7, 7, 7, 0.12);
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s ease;
}

.icon {
    margin: 0 auto;
    width: 23%;
    height: 58px;
    max-width: 80px;
    background: linear-gradient(90deg, #7e8bff 0%, #7e8bff 40%, rgba(0, 0, 0, 0.28) 60%);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: all 0.8s ease;
    background-position: 0px;
    background-size: 200px;
}

.material-icons.md-18 {
    font-size: 18px;
}

.material-icons.md-24 {
    font-size: 24px;
}

.material-icons.md-36 {
    font-size: 36px;
}

.material-icons.md-48 {
    font-size: 48px;
}

.card .title {
    width: 100%;
    margin: 0;
    text-align: center;
    margin-top: 30px;
    color: black;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.card .text {
    width: 80%;
    margin: 0 auto;
    font-size: 13px;
    text-align: center;
    margin-top: 20px;
    color: black;
    font-weight: 200;
    letter-spacing: 2px;
    opacity: 0;
    max-height: 0;
    transition: all 0.3s ease;
}

.card:hover {
    height: 320px;
}

.card:hover .info {
    height: 90%;
}

.card:hover .text {
    transition: all 0.3s ease;
    opacity: 1;
    max-height: 40px;
}

.card:hover .icon {
    background-position: -120px;
    transition: all 0.3s ease;
}

.card:hover .icon i {
    background: linear-gradient(90deg, #7e8bff, #434fb6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 1;
    transition: all 0.3s ease;
}

/*end card for services*/



/*new design for website*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700;800&display=swap");

.body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    /*min-height: 100vh;*/
    width: 92% !important;

}

@media(max-width:412px) {
    .body {
        width: 84% !important;
    }

    .body .container3 .card {
        height: 700px !important;
    }
}

@media(max-width:500px) {
    .body {
        width: 84% !important;
    }

    .body .container3 .card {
        height: 700px !important;
    }
}

@media(max-width:514px) {
    .body {
        width: 84% !important;
    }

    .body .container3 .card {
        height: 700px !important;
    }
}

@media(max-width:530px) {
    .body {
        width: 84% !important;
    }

    .body .container3 .card {
        height: 700px !important;
    }
}

@media(max-width:554px) {
    .body {
        width: 84% !important;
    }

    .body .container3 .card {
        height: 700px !important;
    }
}

@media(max-width:590px) {
    .body {
        width: 84% !important;
    }

    .body .container3 .card {
        height: 700px !important;
    }
}

.body .container3 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    /*max-width: 1200px;*/
    /* margin: 10px 0;*/

}

.body .container3 .card {
    position: relative;
    min-width: 320px;
    height: 440px;
    /*box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
    inset -5px -5px 15px rgba(255, 255, 255, 0.1),
    5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.1);*/
    border-radius: 15px;
    margin: 30px;
    transition: 0.5s;

}

.body .container3 .card .box {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: #ffffff;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: 0.5s;
}

.body .container3 .card:hover {
    transform: translateY(-20px);
}


.body .container3 .card .box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    /* background: rgba(255, 255, 255, 0.03);*/
}

.body .container3 .card .box .content1 {
    padding: 20px;
    text-align: center;
}

.body .container3 .card .box .content1 h2 {
    position: absolute;
    top: -10px;
    right: 30px;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.1);
}

.body .container3 .card .box .content1 h3 {
    font-size: 1.8rem;
    color: rgb(51, 49, 49);
    z-index: 1;
    transition: 0.5s;
    margin-bottom: 15px;
}

.body .container3 .card .box .content1 p {
    font-size: 1rem;
    font-weight: 300;
    color: rgb(51, 49, 49);
    z-index: 1;
    transition: 0.5s;
}

/*.body .container3 .card .box .content1 a {
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  background: black;
  border-radius: 5px;
  text-decoration: none;
  color: rgb(51, 49, 49);
  margin-top: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}
/*.body .container3 .card .box .content1 a:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
  background: rgb(51, 49, 49);
  color: #000;
}*/

/*end new design */
/*network style */

code,
.card1 .line-numbers {
    font-family: "Lucida Console", Monaco, monospace;
    font-size: 14px;
}

.card1 {
    position: relative;
    width: 40rem;
    height: 15rem;
    perspective: 150rem;
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-radius: 5px;
    /* box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.4);*/
    transition: 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
    backface-visibility: hidden;
    overflow: hidden;
}

.card-front:before,
.card-back:before,
.card-front:after,
.card-back:after {
    position: absolute;
}

.card-front:before,
.card-back:before {
    top: -40px;
    right: -40px;
    content: '';
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.08);
    transform: rotate(45deg);
    z-index: 1;
}

.card-front:after,
.card-back:after {
    content: '+';
    top: 0;
    right: 10px;
    font-size: 24px;
    transform: rotate(45deg);
    z-index: 2;
}

.card-front {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #101010, #2c3e50);
}

.card-front:after {
    color: #212f3c;
}

.card-back {
    background: linear-gradient(-45deg, #101010, #2c3e50);
    transform: rotateX(180deg);
}

.card-back:after {
    color: #11181f;
}

.card1:hover .card-front {
    transform: rotateX(-180deg);
}

.card1:hover .card-back {
    transform: rotateX(0deg);
}

.card1 .line-numbers {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0;
    padding: 0 10px;
    background-color: rgba(255, 255, 255, 0.03);
    font-size: 13px;
}

.card1 .line-numbers>div {
    padding: 2.5px 0;
    opacity: 0.15;
}

.card1 code,
.card1 .line-numbers {
    color: whitesmoke;
}

.card1 .indent {
    padding-left: 30px;
}

.card1 .operator {
    color: #4dd0e1;
}

.card1 .string {
    color: #9ccc65;
}

.card1 .variable {
    color: #BA68C8;
}

.card1 .property {
    color: #ef5350;
}

.card1 .method {
    color: #29b6f6;
}

.card1 .function {
    color: #FDD835;
}

.card1 .boolean {
    color: #4dd0e1;
}

/*network style */

/*domain style*/

/*search button*/
@import url('https://fonts.googleapis.com/css?family=Amatic+SC');


.button_container {
    position: absolute;

    left: 0;
    right: 0;
    /*top: 30%;*/
}



.btn {
    border: none;
    display: block;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    outline: none;
    overflow: hidden;
    position: relative;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    background-color: #222;
    padding: 17px 60px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.20);
    width: 195px;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 490%;
    width: 140%;
    background: #78c7d2;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -webkit-transform: translateX(-98%) translateY(-25%) rotate(45deg);
    transform: translateX(-98%) translateY(-25%) rotate(45deg);
}

.btn:hover:after {
    -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
    transform: translateX(-9%) translateY(-25%) rotate(45deg);
}

.bot {
    padding-bottom: 27px !important;
}
