html {
    scroll-behavior: smooth;
    transition: all 6s;
}

* {
    margin: 0;
    box-sizing: border-box;
    font-family:"Roboto", sans-serif;
}

nav {
    background-color: transparent;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 8px 15px;
    z-index: 99;
}

@media screen and (max-width:567px) {
    nav {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #0f0f0f;
        position: relative;
        padding: 20px 0 0 0;
        transition: background-color 0.4s ease;
    }

    nav .links {
        width: 100%;
        display:flex ;
        padding: 30px 0;
    }

    nav .links ul {
        flex-direction: column;
        justify-content: flex-start;
        padding: 0 5px;
        width: 100%;
    }
}

@media screen and (min-width: 577px) and (max-width: 992px) {
    nav .links ul {
        margin: 0 0 0 -15px;
    }

    nav {
        background-color: rgb(0 0 0 / 78%);
    }

    nav .text a {
        display: flex;
        text-align: center;
    }
}

nav .text a {
    text-decoration: none;
    color:  #01a7aa;
    font-size: 24px;
    padding: 18px 40px;
    font-weight: 500;
    line-height: 25px;
    margin-left: 10px;
}

nav.scrolled {
    background-color: rgba(0, 0, 0, 0.85);
}

nav .links ul {
    display: flex;
    list-style: none;
    padding-right: 50px;
}

nav .links ul li {
    padding: 10px 10px;
    font-size: 16px;
    line-height: 25px;
    text-align: left;
}

nav .links ul li a {
    text-decoration: none;
    color: white;
    line-height: 20px;
    font-weight: 300;
    padding: 20px 0;
    letter-spacing: 0.5px;
    transition: all 0.7s ease;
}

@media screen and (max-width:567px) {
    nav .text a {
        font-size: 35px;
    }

    nav .links ul li {
        padding: 20px 10px;
        position: relative;
        transition: all 1s ease;
    }

        nav .links ul li:hover {
            border-bottom: 2px solid  #046c6d;
            width: 120%;
        }

        nav .links ul li:last-child {
            border-bottom: none;
        }

    nav .links ul li a {
        font-size: 20px;
    }

    header {
        background-position: center;
        background-size: cover;
    }
}

nav .links ul li .active {
    color:  #01a7aa;
}

nav .links ul li a:hover {
    color: #01a7aa;
}

nav .links ul li .active:hover {
    color: rgb(43, 255, 0);
}

header {
    background-image: url(../images/Back2.jpg);
    background-size: cover;
    background-position: center center;
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 1;
    position: relative;
}

header .overlay {
    background-color: rgba(0, 0, 0, 0.784);
    width: 100%;
    height: 100vh;
    z-index: 2;
    position: absolute;
}

header .caption {
    padding: 40px;
    text-align: center;
    z-index: 3;
    position: relative;
}

header .caption h3 {
    font-size: 24px;
    color: white;
    font-family: "Source Sans Pro",sans-serif;
    margin: 0 0 10px;
    font-weight: 600;
    line-height: 26.4px;
}

header .caption h1 {
    font-size: 70px;
    font-family:"Source Sans Pro",sans-serif;
    line-height: 77px;
    margin: 0 0 10px;
    font-weight: 700;
    color:  #01a7aa;
}

header .caption p {
    font-family:"Source Sans Pro",sans-serif ;
    color: white;
    margin: 0 0 10px;
    line-height: 31.2px;
    font-size: 26px;
    display: inline-block;
    padding-right: 10px;
    font-weight: 100;
}

header .caption span {
    font-family:"Source Sans Pro",sans-serif ;
    color: white;
    margin: 0 0 10px;
    font-weight: 100;
    line-height: 31.2px;
    font-size: 26px;
}

#about .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 110px 30px;
    width: 95%;
}

#about .container .item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 25%;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0px;
    height: 370px;
    right: -80px;
    margin: auto;
}

@media screen and (max-width:576px) {
    #about .container {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin: 50px 0px 0px;
    }

    #about .container .item {
        width: 75%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: auto;
        padding: 0;
        position: relative;
        margin: 0;
        height: 370px;
        margin-bottom: 15px;
    }
}

@media screen and (min-width: 577px) and (max-width: 992px) {
    #about .container .item {
        width: 39%;
        margin: auto;
        right: 0;
        height: 325px;
    }

    #about .container {
        padding-top: 50px;
        display: flex;
        width: 100%;
        margin: auto;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 60px;
    }
}

#about .container .item .image {
position: relative;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    top: 10px;
}

#about .container .item .image::before {
    content: "";
    position: absolute;
    top: -17px;
    left: 0px;
    width: 335px;
    height: 335px;
    background-color: transparent;
    border: 8px solid #555555;
    border-radius: 5px;
    z-index: 1;
}

@media screen and (max-width:576px) {
    #about .container .item .image::before {
        left: 10px;
        margin: auto;
        position: absolute;
        height: 330px;
        top: -15px;
    }

    #about .container .item .image img {
        margin: auto;
        left: 0;
        top: 0px;
    }
}

#about .container .item .image img {
    width: 350px;
    height: auto;
    border-radius: 5px;
    margin-left: auto;
    position: relative;
    z-index: 1; 
}

#about .container .item .caption {
    background-color: RGBA(0, 0, 0, 0.57);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 350px;
    height: 351px;
    position: absolute;
    border-radius: 5px;
    bottom: -355px;
    right: 0;
    transition: all 0.5s ease-in-out;
    z-index: 2;
}

@media screen and (max-width:576px) {
    #about .container .item .caption {
        width: 350px;
        left: 22px;
        height: 351px;
        top: 374px;
    }
}

#about .container .item:hover .caption {
    transform: translateY(-355px);
    z-index: 5;
}

#about .container .item .caption svg {
    width: 48px;
    height: auto;
    padding: 15px;
    margin: -6px;
}

#about .container .item .caption svg:hover path {
    fill: #01a7aa;
}

#about .container .item .caption .uniqe {
    width: 43px;
    padding: 12px 15px 12px 15px;
    margin: -5px;
    height: auto;
}


#about .container .content{
    left: 0px;
    width: 55%;
    position: relative;
    top: 0px;
    padding-top: 10px;
}

@media screen and (max-width:576px) {
    #about .container .content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        left: 0px;
        position: relative;
        padding: 10px 5px;
        margin-bottom: 30px;
    }

    #about .container .content h2::before {
        margin-left: 195px;
    }
}

#about .container .content h2 {
    color: #333333;
    font-family: "Source Sans Pro",sans-serif;
    font-size: 34px;
    font-weight: 600;
    line-height: 22px;
    margin: 0 0 25px;
    padding: 0 0 0 13px;
    text-transform: uppercase;
    text-align: start;
}

#about .container .content h2::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0px;
    width: 4px;
    height: 25px;
    background-color: #01a7aa;
}

#about .container .content p {
    color: #555555;
    font-family:"Roboto",sans-serif;
    font-size: 16px;
    line-height: 25px;
    margin: 0 0 25px;
    padding: 0 0 25px;
    font-weight: 400;
    border-bottom: 1px dashed #4a4747;
}

@media screen and (max-width:576px) {
    #about .container .content p {
        text-align: center;
        padding: 0px 15px 20px;
        font-size: 20px;
    }

    #about .container .info ul {
        margin-bottom: 15px;
    }

    #about .container .info ul li {
        padding: 0 15px;
        height: 15px;
    }

    #about .container .info ul li span {
        font-size: 17px;
        font-weight: 600;
    }

    #about .container .btn .btn5 a {
        font-size: 20px;
    }
}

@media screen and (min-width: 577px) and (max-width: 992px) {
    #about {
        width: 100%;
    }

    #about .container .content {
        margin-left: 20px;
    }

    #about .container .content p {
        font-size: 18px;
        padding-right: 10px;
    }

    #about .container .item .image {
        width: 100%;
    }

    #about .container .item .image img {
        width: 300px;
    }

    #about .container .item .image::before {
        width: 290px;
        height: 300px;
        left: 10px;
    }

    #about .container .item .caption {
        width: 300px;
        height: 306px;
        right: 0;
    }

    #about .container .info ul li {
    display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        height: auto;
        justify-content: flex-start;
        align-items: center;
    }

    #about .container .info ul li span {
        font-size: 16px;
        font-weight: 600;
    }

    #about .container .btn .btn5 a {
        font-size: 18px;
    }
}

#about .container .info ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    height: 125px;
    align-items: flex-start;
    width: 100%;
    list-style: none;
    padding: 0;
}

#about .container .info ul li {
    color: #555555;
    font-family:"Roboto",sans-serif;
    font-size: 16px;
    line-height: 16px;
    margin: 0 0 25px;
    font-weight: 400;
}

#about .container .info ul li span {
    color: #000;
}

#about .container .info ul li a {
    text-decoration: none;
    color: #555555;
}

#about .container .btn {
    display: flex;
    flex-direction: row;
}

#about .container .btn button {
    padding: 15px 70px;
    border-radius: 5px;
    border: 1px solid transparent;
}

#about .container .btn .btn1 {
    background-color: #01a7aa;
    font-size: 16px;
    line-height: 25px;
    margin: 0 10px 0 0;
    padding: 10px 30px;
}

#about .container .btn .btn2 {
    background-color: #01a7aa;
    font-size: 16px;
    line-height: 25px;
    margin: 0 10px 0 0 ;
    padding: 10px 30px;
}

#about .container .btn a {
    color: white;
    text-decoration: none;
}

#about .container .btn1 svg {
    width: 15px;
}

#about .container .btn2 svg {
    position: relative;
    width: 15px;
    top: 3px;
}

#about .container .btn .btn5 {
    transition: all 0.5s ease;
}

#about .container .btn .btn5:hover{
    background-color: #005f60;
    cursor: pointer;
}

.service {
    background-color: #F1F1F1;
}

.service .container {
    display: flex;
    flex-direction: column;
    padding-top: 80px;
    justify-content: center;
    align-items: center;
    padding-bottom: 120px;
    margin-top: 20px;
    margin-bottom: 100px;
}

.service .container .title {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.service .container .title h2 {
    color: #333333;
    font-size: 34px;
    font-family: "Source Sans Pro", sans-serif;
    line-height: 30px;
    margin: 0 0 40px;
    padding: 0 0 30px;
    font-weight: 700;
    text-transform: capitalize;
    /* border-bottom: 1px solid #FF305B; */
}

.service .container .title h2::before {
    content: "";
    position: absolute;
    top: 41px;
    left: 75px;
    width: 60px;
    height: 1px;
    background-color: #01a7aa;
}

.service .container .title h2::after {
    content: "";
    position: absolute;
    bottom: 50px;
    left: 75px;
    width: 60px;
    height: 1px;
    background-color: #01a7aa;
}

.service .container .title div {
    width: 160px;
    height: 1px;
    position: absolute;
    background-color: #01a7aa;
    top: 45px;
    left: 30px;
}

.service .container .text {
    display: flex;
    width: 90%;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px;
}

.service .container .text .caption {
    text-align: center;
    width: 325px;
    padding: 10px;
    height: 260px;
    padding-top: 35px;
    padding-right: 8px;
    margin-left: 0px;
    transition: all 0.5s ease;
}

.service .container .text .caption:hover {
    background-color: #FFFFFF;
    box-shadow: 2px 2px 20px 2px #d6d6d6;
}

.service .container .text .caption svg {
    width: 30px;
    margin: 5px;
    transition: all 0.5s ease;
}

.service .container .text .caption:hover svg {
    transform: scale(1.25);
}

.service .container .text .caption .javescript {
    width: 35px;
}

.service .container .text .caption .react {
    width: 40px;
}

.service .container .text .caption h3 {
    color: #333333;
    font-family: "Source Sans Pro",sans-serif;
    line-height: 26.4px;
    margin: 0 0 15px;
    font-weight: 600;
}

.service .container .text .caption p {
    font-family:"Roboto",sans-serif;
    line-height: 25px;
    font-weight: 400;
    padding: 0 10px;
    color: #555555;
}

@media screen and (max-width:576px) {
    .service .container {
        margin-top: 0px;
        padding-top: 45px;
        width: 100%;
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    .service .container .text .caption {
        padding-top: 25px;
    }

    .service .container .title h2{
        margin: 0px 0 10px;
        padding: 0 0 20px;
    }

    .service .container .title h2::after {
        bottom: 10px;
    }

    .service .container .text {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .service .container .text .caption svg {
        width: 60px;
    }

    .service .container .text .caption .javescript {
        width: 60px;
    }

    .service .container .text .caption .react {
        width: 70px;
    }

    .service .container .text .caption h3 {
        font-size: 25px;
        margin: 10px 0 15px;
}

    .service .container .text p {
        font-size: 18px;
    }
}

@media screen and (min-width: 577px) and (max-width: 992px){
    .service .container {
        margin-bottom: 40px;
        padding-top: 40px;
        padding-bottom: 50px;
    }

    .service .container .text {
        width: 100%;
    }

    .service .container .text .caption {
        width: 100%;
        height: auto;
    }

    .service .container .title h2{
        margin: 0px 0 10px;
        padding: 0 0 20px;
    }

    .service .container .title h2::after {
        bottom: 10px;
    }

    .service .container .text .caption svg {
        width: 45px;
    }

    .service .container .text .caption .javescript {
        width: 50px;
    }

    .service .container .text .caption .react {
        width: 55px;
    }

    .service .container .text .caption h3 {
        font-size: 22px;
        margin: 10px 0 15px;
}

    .service .container .text p {
        font-size: 18px;
        text-align: center;
    }
}

/* ##################################################### */

.portfolio .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 80px;
    margin-top: 20px;
}

.portfolio .container .title {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.portfolio .container .title h2 {
    color: #333333;
    font-size: 34px;
    font-family: "Source Sans Pro", sans-serif;
    line-height: 30px;
    margin: 0 0 40px;
    padding: 0 0 30px;
    font-weight: 700;
    text-transform: capitalize;
}

.portfolio .container .title div {
    width: 160px;
    height: 1px;
    position: absolute;
    background-color: #01a7aa;
    top: 45px;
    left: 30px;
}

.portfolio .container .title h2::before {
    content: "";
    position: absolute;
    top: 41px;
    left: 75px;
    width: 60px;
    height: 1px;
    background-color: #01a7aa;
}

.portfolio .container .title h2::after {
    content: "";
    position: absolute;
    bottom: 50px;
    left: 75px;
    width: 60px;
    height: 1px;
    background-color: #01a7aa;
}

.portfolio .container .btns {
    font-family:"Roboto",sans-serif;
    font-size: 16px;
    line-height: 25px;
    margin: -10px 0 50px;
    color: #555555;
}

.portfolio .container .btns .btn {
    font-family:"Roboto",sans-serif;
    color: #333333;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 1px;
    padding: 3px 12px;
    font-weight: 400;
    background-color: transparent;
    border: none;
}

.portfolio .container .btns a {
    text-decoration: none;
    color: #333333;
}

.portfolio .container .btns .active a {
    color: #01a7aa;
}

.portfolio .container .images {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 82%;
    padding-left: 60px;
    padding-right: 60px;
}

.portfolio .container .images .image {
    padding-bottom: 15px;
    position: relative;
    transition: all 2s ease;
}

.portfolio .container .images .image img {
    width: 360px;
    height: 270px;
}

.portfolio .container .images .image div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 270px;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;     
    transition: opacity 0.4s ease; 
}

.portfolio .container .images .image:hover div {
    opacity: 1; 
}

.portfolio .container .images .image i {
    width: 30px;
    height: auto;
    position: absolute;
    bottom: 40px;
    right: 10px;
    color: #01a7aa;
    opacity: 0;
    transition: opacity 0.4s ease; 
}

.portfolio .container .images .image:hover i {
    opacity: 1;
}

@media screen and (max-width:576px) {
    .portfolio .container{
        padding-bottom: 40px;
    }

    .portfolio .container .title h2::after {
        bottom: 49px;
    }

    .portfolio .container .btns {
        font-size: 30px;
    }

    .portfolio .container .btns .btn {
        text-align: center;
        font-size: 18px;
        font-weight: 700;
        align-content: center;
    }

    .portfolio .container .images {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .portfolio .container .images .image img {
        width: 415px;
    }
}

@media screen and (min-width: 577px) and (max-width: 992px) {
    .portfolio .container{
        padding-bottom: 40px;
    }

    .portfolio .container .title h2::after {
        bottom: 49px;
    }

    .portfolio .container .btns {
        font-size: 30px;
    }

    .portfolio .container .btns .btn {
        text-align: center;
        font-size: 18px;
        font-weight: 700;
        align-content: center;
    }

    .portfolio .container .images {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .portfolio .container .images .image {
        display: flex;
        flex-direction: row;
        width: 50%;
        justify-content: space-between;
    }

    .portfolio .container .images .image img {
        width: 350px;
    }

    .portfolio .container .images .image div {
        width: 98%;
    }
}

/* ##################################################### */
.prob {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F1F1F1;
    margin-bottom: 100px;
}

.prob .container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 75%;
    padding: 100px 0;
}

.prob .container .contant{
    text-align: center;
    padding: 20px;
}


.prob .container .contant .icon i {
    color: #056063;
    line-height: 25px;
    margin: 0 0 10px;
}

.prob .container .contant h3 {
    color: #333333;
    font-family:"Source Sans Pro",sans-serif ;
    line-height: 28.6px;
    margin: 0 0 10px;
}

.prob .container .contant h5 {
    color: #555555;
    font-family:"Source Sans Pro",sans-serif ;
    line-height: 17.6px;
    font-weight:600;
}

@media screen and (max-width:576px) {
    .prob .container {
        width: 100%;
        padding: 50px 0;
    }

    .prob {
        margin-bottom: 40px;
    }

    .prob .container .contant .icon i {
        width: 80px;
    }

    .prob .container .contant h3 {
        font-size: 22px;
    }

    .prob .container .contant h5 {
        font-size: 16px;
    }
}

@media screen and (min-width: 577px) and (max-width: 992px) {
    .prob .container {
        width: 100%;
        padding: 50px 0;
    }

    .prob {
        margin-bottom: 40px;
    }

    .prob .container .contant .icon i {
        width: 80px;
    }

    .prob .container .contant h3 {
        font-size: 22px;
    }

    .prob .container .contant h5 {
        font-size: 16px;
    }
}

/* ####################################################### */

.feedback {
    margin-bottom: 90px;
}

.feedback .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.feedback .container .title {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.feedback .container .title h2 {
    color: #333333;
    font-size: 34px;
    font-family: "Source Sans Pro", sans-serif;
    line-height: 30px;
    margin: 0 0 40px;
    padding: 0 0 30px;
    font-weight: 700;
    text-transform: capitalize;
}

.feedback .container .title div {
    width: 160px;
    height: 1px;
    position: absolute;
    background-color: #01a7aa;
    top: 45px;
    left: 65px;
}

.feedback .container .title h2::before {
    content: "";
    position: absolute;
    top: 41px;
    left: 110px;
    width: 60px;
    height: 1px;
    background-color: #01a7aa;
}

.feedback .container .title h2::after {
    content: "";
    position: absolute;
    bottom: 50px;
    left: 110px;
    width: 60px;
    height: 1px;
    background-color: #01a7aa;
}

.feedback .container .info {
    background-color: #F1F1F1;
    width: 50%;
    display: flex;
    flex-direction: row;
    padding: 35px 10px;
    position: relative;
    border-radius: 5px;
}

.feedback .container .info .image {
    padding: 20px;
    z-index: 5;
}

.feedback .container .info .image img{
    border-radius: 50%;
    line-height: 25px;
    width: 95px;
}


.feedback .container .info div::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border: 90px solid;
    border-radius: 5px;
    border-color: #017e80 transparent transparent #017e80;
    z-index: -1;
}

.feedback .container .info .content {
    padding: 0 20px 20px;
}

.feedback .container .info .content h3 {
    color: #333333;
    font-family: "Source Sans Pro",sans-serif;
    line-height: 28.6px;
    margin: 0 0 5px;
    font-weight: 600;
}

.feedback .container .info .content a {
    text-decoration: none;
    color: #777777;
    font-family: "Source Sans Pro",sans-serif;
    font-size: 12px;
    line-height: 16.5px;
    font-weight: 600;
}

.feedback .container .info .content p {
    color: #555555;
    font-family:"Roboto",sans-serif;
    line-height: 25px;
    margin: 5px 0 15px;
}

.feedback .container .doted {
    display: flex;
    flex-direction: row;
}

.feedback .container .doted .wido {
    margin: 10px 0;
    width: 20px;
    height: 8px;
    border-radius: 10px;
    background-color: #01a7aa;
}

.feedback .container .doted .dot {
    margin: 10px 4px;
    width: 8px;
    height: 8px;
    border: 1px solid #01a7aa;
    border-radius: 50%;
}

@media screen and (max-width:576px) {
    .feedback .container {
        margin-top: 0;
    }

    .feedback .container .info {
        width: 95%;
        padding: 20px 0px;
    }
}

@media screen and (min-width: 577px) and (max-width: 992px) {
        .feedback .container {
        margin-top: 0;
    }

    .feedback .container .info {
        width: 80%;
        padding: 30px 0px;
    }
}

/* #################################################### */

.blog {
    background-color: #F1F1F1;
}

.blog .container {
    width: 95%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding-block: 90px;
}

.blog .container .title {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.blog .container .title h2 {
    color: #333333;
    font-size: 34px;
    font-family: "Source Sans Pro", sans-serif;
    line-height: 30px;
    margin: 0 0 40px;
    padding: 0 0 15px;
    font-weight: 700;
    text-transform: capitalize;
}

.blog .container .title div {
    width: 145px;
    height: 1px;
    position: absolute;
    background-color: #01a7aa;
    top: 45px;
    left: 40px;
}

.blog .container .title h2::before {
    content: "";
    position: absolute;
    top: 41px;
    left: 80px;
    width: 60px;
    height: 1px;
    background-color: #01a7aa;
}

.blog .container .title h2::after {
    content: "";
    position: absolute;
    bottom: 35px;
    left: 80px;
    width: 60px;
    height: 1px;
    background-color: #01a7aa;
}

.blog .container .about {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 77%;
}

.blog .container .about .info {
    width: 32%;
}

.blog .container .about .info img {
    width: 100%;
}

.blog .container .about .info .content {
    background-color: #FFFFFF;
    font-family:"Roboto",sans-serif;
    font-size: 16px;
    line-height: 25px;
    padding: 15px 20px;
    margin: -2px 0;
}

.blog .container .about .info .content .time {
    color: #555555;
    margin: 0 0 10px;
}

.blog .container .about .info .content a {
    text-decoration: none;
    font-family:"Source Sans Pro",sans-serif ;
    font-size: 21px;
    line-height: 26.4px;
    font-weight: 600;
    color: #333333;
    text-transform: capitalize;
    transition: all 0.5s;
}

.blog .container .about .info .content a:hover {
    color: #01a7aa;
}

.blog .container .about .info .content p {
    color: #555555;
    line-height: 25px;
    margin: 0 0 15px;
}

.blog .container .about .info .content .lin2 {
    line-height: 25px;
    width: 100px;
    color: #333333;
    font-weight: 400;
    font-size: 16px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    transition: all 0.5s;
}

.blog .container .about .info .content .lin2 i {
    padding: 0px 5px;
}

.blog .container .about .info .content .lin2:hover {
    color: #01a7aa;
}

@media screen and (max-width:576px) {
    .blog .container {
        width: 100%;
        padding-block: 40px
    }

    .blog .container .about {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .blog .container .about .info {
        width: 100%;
        padding: 20px 50px;
    }

    .blog .container .about .info .content .time {
        font-size: 19px;
    }

    .blog .container .about .info .content p {
        margin: 10px 0 15px;
        font-size: 20px;
    }

    .blog .container .about .info .content a {
        font-size: 26px;
    }

    .blog .container .about .info .content .lin2 {
        width: 40%;
        font-size: 20px;
    }

    .blog .container .about .info .content .lin2 i {
        width: 35px;
        height: 0px;
    }

    .blog .container .about .info img {
        width: 100%;
    }

    .blog .container .about .info .image .imovideo {
        width: 100%;
        border: 1px solid #7777776e;
        border-radius: 5px;
    }
}

@media screen and (min-width: 577px) and (max-width: 992px){
    .blog .container {
        width: 100%;
        padding-block: 40px
    }

    .blog .container .about {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .blog .container .about .info {
        width: 75%;
        padding: 20px 60px;
    }

    .blog .container .about .info .content .time {
        font-size: 19px;
    }

    .blog .container .about .info .content p {
        margin: 10px 0 15px;
        font-size: 20px;
    }

    .blog .container .about .info .content a {
        font-size: 26px;
    }

    .blog .container .about .info .content .lin2 {
        width: 40%;
        font-size: 20px;
    }

    .blog .container .about .info .content .lin2 i {
        width: 35px;
        height: 0px;
    }

    .blog .container .about .info img {
        width: 100%;
    }

    .blog .container .about .info .image .imovideo {
        width: 100%;
        border: 1px solid #7777776e;
        border-radius: 5px;
    }
}

/* ########################################################## */

.contact {
    background-color: #FFFFFF;
    margin-bottom: 120px;
}

.contact .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

.contact .container .title {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.contact .container .title h2 {
    color: #333333;
    font-size: 34px;
    font-family: "Source Sans Pro", sans-serif;
    line-height: 30px;
    margin: 0 0 40px;
    padding: 0 0 30px;
    font-weight: 700;
    text-transform: capitalize;
}

.contact .container .title div {
    width: 160px;
    height: 1px;
    position: absolute;
    background-color: #01a7aa;
    top: 45px;
    left: 10px;
}

.contact .container .title h2::before {
    content: "";
    position: absolute;
    top: 41px;
    left: 60px;
    width: 60px;
    height: 1px;
    background-color: #01a7aa;
}

.contact .container .title h2::after {
    content: "";
    position: absolute;
    bottom: 50px;
    left: 60px;
    width: 60px;
    height: 1px;
    background-color: #01a7aa;
}

.contact .container .form {
    width: 60%;
    padding: 0 50px;
}

.contact .container .form form {
    width: 100%;
}

.contact .container .form .info{
    display: flex;
    flex-direction: row;
}

.contact .container .form .info .name {
    padding: 0px 0px 25px;
    width: 100%;
}

.contact .container .form .info .email{
    padding: 0px 0px 25px;
    width: 100%;
}

.contact .container .form .info .name input {
    font-size: 14px;
    color: #000;
    line-height: 20px;
    padding: 8px 15px;
    width: 94%;
    border: 1px solid #d6d6d6;
    border-radius: 5px;
}

.contact .container .form .info .email input {
    font-size: 14px;
    color: #000;
    line-height: 20px;
    padding: 8px 15px;
    width: 95%;
    border: 1px solid #d6d6d6;
    border-radius: 5px;
}

.contact .container .form .info input:focus {
    box-shadow: 1px 1px 3px #046c6d;
    border: 1px solid #046c6d;
    outline: none;
}

.contact .container .form .subject {
    width: 100%;
    padding: 0 18px 20px 0;
}

.contact .container .form .subject input {
    color: #000000;
    padding: 9px 15px;
    width: 100%;
    border: 1px solid #d6d6d6;
    border-radius: 5px;
}

.contact .container .form .subject input:focus {
    box-shadow: 1px 1px 3px #046c6d;
    border: 1px solid #046c6d;
    outline: none;
}

.contact .container .form .textarea {
    width: 100%;
    padding: 0 18px 20px 0;
}

.contact .container .form .textarea textarea {
    color: #000000;
    padding: 7px 15px;
    width: 100%;
    height: 100px;
    border: 1px solid #d6d6d6;
    border-radius: 5px;
}

.contact .container .form .textarea textarea:focus {
    box-shadow: 1px 1px 3px #046c6d;
    border: 1px solid #046c6d;
    outline: none;
}

.contact .container .form .button {
    padding: 0 18px 0 0;
}

.contact .container .form .button button {
    color: #FFFFFF;
    font-family:"Roboto",sans-serif;
    line-height: 38px;
    padding: 0 20px;
    background-color: #01a7aa;
    border-radius: 5px;
    border: 1px solid transparent;
    text-transform: uppercase;
    transition: all 0.5s;
}

.contact .container .form .button button:hover {
    background-color: #005f60;
    cursor: pointer;
}

@media screen and (max-width:576px) {
    .contact {
        margin-bottom: 80px;
    }

    .contact .container {
        margin-top: 40px;
    }

    .contact .container .form {
        width: 100%;
    }

    .contact .container .form .info .name input {
        width: 95%;
        font-size: 18px;
    }

    .contact .container .form .info .email input {
        width: 92%;
        font-size: 18px;
    }

    .contact .container .form .subject input {
        width: 100%;
        font-size: 18px;
    }

    .contact .container .form .textarea textarea {
        font-size: 18px;
    }

    .contact .container .form .button button {
        font-size: 18px;
        padding: 5px 20px;
    }
}

@media screen and (min-width: 577px) and (max-width: 992px) {
    .contact {
        margin-bottom: 80px;
    }

    .contact .container {
        margin-top: 40px;
    }

    .contact .container .form {
        width: 100%;
    }

    .contact .container .form .info .name input {
        width: 95%;
        font-size: 18px;
    }

    .contact .container .form .info .email input {
        width: 95%;
        font-size: 18px;
    }

    .contact .container .form .subject input {
        width: 100%;
        font-size: 18px;
    }

    .contact .container .form .textarea textarea {
        font-size: 18px;
    }

    .contact .container .form .button button {
        font-size: 18px;
        padding: 5px 20px;
    }
}

/* #################################################### */

footer {
    background-color: #333333;
}

footer .container {
    text-align: center;
    margin-top: -20px;
}

footer .container .icons {
    margin-bottom: -5px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: 30px;
}

footer .container .icons ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    list-style: none;
    margin: 20px auto;
    padding: 0;
}

footer .container .icons ul li i {
    color: white;
    padding-inline: 20px;
    margin: 0 auto;
    transition: all 0.5s;
}

footer .container .icons ul li i:hover {
    color: #01a7aa;
}

footer .container p {
    color: white;
    line-height: 25px;
    padding: 0 20px 60px;
    font-family:"Roboto",sans-serif;
}

footer .container p a {
    color: #01a7aa;
    text-decoration: none;
}

footer .container p a:hover {
    text-decoration: underline;
}

@media screen and (max-width:576px) {
    footer .container .icons ul li i {
        width: 65px;
        padding: 0 25px;
        font-size: 25px;
    }

    footer .container p {
        font-size: 18px;
        padding: 15px 20px 25px;
    }
}

@media screen and (min-width: 577px) and (max-width: 992px){
    footer .container .icons ul li i {
        width: 65px;
        padding: 0 25px;
        font-size: 25px;
    }

    footer .container p {
        font-size: 18px;
    padding: 10px 20px 40px;
    }
}