@import url('https://fonts.googleapis.com/css?family=Montserrat:700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:700&display=swap');


html,
body {
    overflow-x: hidden;
}

body {
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

.clearfix {
    clear: both;
}


.title {

    font-family: "Source Sans Pro", sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #333333;
}

.upper {
    text-transform: uppercase;
}



/* ==================global styling================= */


/* ==============home styling ============== */
#home {
    width: 100%;
    height: 100vh;
    background: url(../images/imgi_13_header.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

#home .navbar {
    width: 100%;
    padding: 0 40px;
    height: 60px;
    box-sizing: border-box;
    position: absolute;
    z-index: 2;
}

#home .navbar .logo {
    float: left;
    font-family: 'Montserrat', Arial, sans-serif;
    color: #FF305B;
    font-size: 28px;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: 1px;
}

#home .navbar .logo a {
    text-decoration: none;
    color: #FF305B;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
}

#home .navbar .menu {
    float: right;
    line-height: 60px;
}

#home .navbar .menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#home .navbar .menu ul li {
    display: inline-block;
    margin-left: 28px;
}

#home .navbar .menu ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 17px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    transition: color 0.2s;
    letter-spacing: 0.2px;
}

#home .navbar .menu ul li a.active,
#home .navbar .menu ul li a:hover {
    color: #FF305B;
    font-weight: 600;
}

#home .header {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    text-align: center;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 2;
}

#home .header h4 {
    color: #fff;
    font-size: 26px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 600;
    margin: 0 0 18px 0;
    letter-spacing: 0.2px;
}

#home .header h1 {
    margin: 0 0 18px 0;
    color: #FF305B;
    font-size: 72px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
}

#home .header h3 {
    color: #fff;
    font-size: 24px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    margin: 0;
    display: inline-block;
    letter-spacing: 0.2px;
}

#home .header .typed-text,
#home .header .typed-cursor {
    color: #fff;
    font-size: 24px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 400;
}

.typed-cursor {
    font-size: 1.2em;
    color: #FF305B;
    animation: blink 0.7s infinite;
}





@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}


/* ================home end styling ================ */

/* ================= about start =============== */

.about-section {
    padding: 70px 0 80px 0;
    background: #ffffff;
    min-height: 500px;
    width: 100%;
    overflow-x: hidden;

}

.about-row {
    width: 980px;
    margin: 0 auto;
    overflow: hidden;
}

.about-title {
    position: relative;
    display: inline-block;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
}

.about-title::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 32px;
    background: #FF305B;
    position: absolute;
    left: -18px;
    top: 0;

}

.about-img-box {
    position: relative;
    vertical-align: top;
    width: 32%;
    float: left;
    margin-right: 4%;
    min-width: 200px;
    max-width: 340px;
    width: 340px;
    height: 400px;
    top: 18px;
    left: 18px;
}

.about-img-box::before {
    content: '';
    position: absolute;
    left: -18px;
    top: -18px;
    width: 100%;
    height: 97%;
    border: 5px solid #444;
    border-radius: 8px;
    z-index: 0;
    background: transparent;

}

.about-img {
    position: relative;
    display: block;
    border-radius: 8px;
    background: #f8f8f8;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;

}


.abt-layer {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    top: 100%;
    transition: top 0.5s;

}

.about-img-box:hover .abt-layer {
    
    top: -5%;

}

.abt-layer .layer-content {

    justify-self: center;
    transition-duration: 0.2s;
    color: white;
    font-size: 16px;
    padding-top: 160px;
}

.abt-layer .layer-content i {

    padding-left: 10px;
    font-size: 20px;
    transition: color 0.3s;
}

.abt-layer .layer-content i:hover {

    color: #ff305b;
}



/* =======content section========= */

.about-content {
    float: left;
    max-width: 540px;
    width: 60%;
    min-width: 220px;
    margin-top: 10px;
    padding-left: 30px;
}

.about-content p {
    color: #555555;
}

.about-hr {
    border: none;
    border-top: 1px dashed #888;
    margin: 24px 0 24px 0;
    width: 100%;
    background: none;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    width: 100%;
    display: block;
}

.about-list li {
    display: inline-block;
    width: 48%;
    color: #555;
    font-size: 16px;
    margin-bottom: 8px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    vertical-align: top;
}

.about-list b {
    font-weight: 700;
    color: #222;
}

.about-list .about-available {
    color: #FF305B;
    font-weight: 400;
}

.about-btn {
    display: inline-block;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 4px;
    text-decoration: none;
    margin-right: 12px;
    margin-bottom: 10px;
}

.about-btn-main {
    background: #FF305B;
    color: #fff;
}

.about-btn-dark {
    background: #FF305B;
    color: #fff;
}

.about-btn:hover {
    opacity: 0.9;
}

.about-section::after {
    content: "";
    display: table;
    clear: both;
}

/* ================== about end ================== */
/* ================== services start ============= */


#our-services {
    width: 100%;
    min-width: 320px;
    background-color: #F1F1F1;
    overflow-x: hidden;
    padding-bottom: 70px;
}

#our-services .services-cards h2 {
    text-align: center;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 40px;
    font-weight: 800;
    margin: 40px 0 20px 0;
    color: #333333;
    padding-bottom: 30px;
    position: relative;
}

.services-cards .our-s1,
.services-cards .our-s2 {

    width: 70px;
    height: 1px;
    background-color: #ff305b;
    display: flex;
    justify-self: center;
}

.our-redlines {
    width: 175px;
    height: 1px;
    background-color: #ff305b;
    display: flex;
    justify-self: center;
    position: relative;
    bottom: 40px;
}

.our-s1 {
    position: relative;
    bottom: 44px;
}

.our-s2 {
    position: relative;
    bottom: 36px;
}

#our-services .services-cards {

    width: 100%;
    max-width: 1170px;
    margin: auto;
    padding: 60px 0;
}

.cards {
    width: 25%;
    float: left;
    background-color: #F1F1F1;
    text-align: center;
    transition: background-color 0.7s, box-shadow 0.7s;
    box-sizing: border-box;
    padding: 50px 0;

}


.cards:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: white;

}

.cards:hover i {

    transform: scale(1.2);
}

.cards i {

    transition: transform 1s;
    color: #FF305B;
    font-size: 30px;
}

.cards h3 {

    font-family: 'Source Sans Pro', sans-serif;
    color: #333333;
}


/* ========== services   end ===========   */

/* ========== protfilo start ===========  */

#portfilo {
    width: 100%;
    background-color: #ffffff;
    text-align: center;
    padding: 70px 0;

}



#portfilo .porfilo-section {
    width: 80%;
    background-color: #ffffff;
    text-align: center;
}

.port-title h2 {

    font-family: "Source Sans Pro" sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #333;
}


.port-title .port-s1,
.port-title .port-s2 {

    width: 70px;
    height: 1px;
    background-color: #ff305b;
    display: flex;
    justify-self: center;
}

.port-title .port-s1 {
    position: relative;
    bottom: 29px;
}

.port-title .port-redlines {
    width: 175px;
    height: 1px;
    background-color: #ff305b;
    display: flex;
    justify-self: center;
    position: relative;
    bottom: 25px;
}

.port-title .port-s2 {

    position: relative;
    bottom: 21px;


}
.port-btn {

    font-family: "Source Sans Pro" sans-serif;
    color: #333333;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 10px;
    border-style: none;
    text-decoration: none;
    margin-right: 5px;
    margin-bottom: 10px;
    background-color: transparent;
}

.imgs-section {
    width: 80%;
    margin: auto;
}

.pcards {
    width: 30%;
    float: left;
    margin-left: 25px;
    margin-bottom: 25px;
    position: relative;
}

.pcards img {
    width: 100%;
}

.pcards:hover .port-layer {
    opacity: 0.5;
}

.port-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: black;
    transition: opacity 0.7s;

}


/* =========== statics start ============== */

#statics {

    width: 100%;
    background-color: #F1F1F1;
    padding: 50px 0;
}

#statics .statics-section {

    width: 80%;
    margin: auto;
    text-align: center;
}


.scards {

    width: 15%;
    padding: 40px 30px;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    margin: 0 2%;
}

#statics .statics-section .scards i {

    color: #FF305B;
    display: block;
    font-size: 40px;
    line-height: 1;
    text-align: center;

}


.file-icon {

    transform: scaleX(-1);
}

/* =========== statics  end ============= */

/* =========== feedback start ============ */
#feedback {
    width: 100%;
    background-color: #ffffff;
    padding: 70px 0;
}


.feedback-section .feedback-title {

    text-align: center;
}

.redlines-feed {
    width: 175px;
    height: 1px;
    background-color: #ff305b;
    display: flex;
    justify-self: center;
    position: relative;
    bottom: 50px;
}


.feed-s1,
.feed-s2 {

    width: 70px;
    height: 1px;
    background-color: #ff305b;
    display: flex;
    justify-self: center;

}


.feed-s1 {
    position: relative;
    bottom: 44px;

}

.feed-s2 {
    position: relative;
    bottom: 56px;
}


.feedback-section .feedback-title h2 {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #333333;
    padding-bottom: 30px;

}


.feedback-outer {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 70px;
}

.feedback-card {
    width: 50%;
    background: #F1F1F1;
    min-height: 250px;
    position: relative;
    overflow: hidden;
    padding-left: 10px;
    padding-right: 20px;
    padding-bottom: 30px;

}


.feed-layer {

    width: 60%;
    height: 60%;
    background-color: #ff305b;  
    transform: rotate(-45deg);
    position: absolute;
    left: -170px;
    bottom: 180px;
}


.feed-img {

    width: 18%;
    z-index: 3;
    position: absolute;
    top: 40px;
    left: 20px;
}

.feed-img img {
    border-radius: 100px;
    width: 100%;
}

.feed-info {
    
    padding-left: 170px;
    padding-top: 20px;
    color: #777777;

}


.feed-info h3 {

    font-family: 'Source Sans Pro', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: #333;
}


.feed-info .stars i {

    color: gold;
}

.feed-info a {

    text-decoration: none;
    font-family: 'Source Sans Pro', sans-serif;
    color: #333;
}



/* ============feedback end ============= */

/* ============blog start ============== */


#blog {

    width: 100%;
    background-color: #F1F1F1;
    padding-bottom: 80px;
}

.blog-title {

    font-family: "Source Sans Pro", sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #333333;
    padding-bottom: 25px;
    padding-top: 30px;
    text-align: center;
    position: relative;

}

.redlines {

    width: 175px;
    height: 1px;
    background-color: #ff305b;
    display: flex;
    justify-self: center;
    position: relative;
    bottom: 64px;
}

.blog-title h2:before {

    border-color: #ff305b;
    border-style: solid;
    border-width: 1px 0;
    bottom: 0;
    padding: 4px 0 5px;
    width: 70px;
}

.blog-title h2:after,
.blog-title h2:before {

    content: "";
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
}

.blog-tilte h2:after {

    background-color: #ff305b;
    bottom: 5px;
    height: 1px;
    width: 160px;
}

.blog-cards {

    width: 80;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.blog-card {

    width: 25%;
    margin: 0 10px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    border-radius: 8px;
}

.blog-img {

    width: 100%;
}

.blog-img img {

    width: 100%;
}

.blog-info {

    padding: 20px;

}

iframe {
    
    width: 100%;
    height: 190px;
    border: none;

}

.blog-info a {
    display: inline-block;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
}

.blog-info a i {

    vertical-align: middle;
    font-size: 18px;
    padding-left: 3px;
}


/* =========== blog end ============== */

/* =========== contact start ============ */


#contact {
    width: 100%;
    background-color: #fff;
}

#contact .contact-section {
    width: 90%;
    margin: auto;
    padding: 70px 0;
}

.cont-title {
    text-align: center;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #333;
    padding-bottom: 30px;
}


.cont-title .cont-s1,
.cont-title .cont-s2 {
    width: 70px;
    height: 1px;
    background-color: #ff305b;
    display: flex;
    justify-self: center;
}

.cont-s1 {
    position: relative;
    bottom: 34px;
}

.cont-redlines {

    width: 175px;
    height: 1px;
    background-color: #ff305b;
    display: flex;
    justify-self: center;
    position: relative;
    bottom: 30px;
}

.cont-s2 {
    position: relative;
    bottom: 26px;
}

.contact-form {

    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 24px;
}

.cont-text {

    width: 45%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    margin-bottom: 15px;
    font-size: 16px;
}


.cont-email {

    width: 45%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    margin-bottom: 15px;
    margin-left: 30px;
    font-size: 16px;
}

.cont-sub {

    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    margin-bottom: 15px;
    font-size: 16px;
}

.cont-message {

    min-width: 94.2%;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    margin-bottom: 15px;
    font-size: 16px;
    resize: both;
    padding: 10px;
}


.contact-form button {
    padding: 10px 20px;
    border-radius: 4px;
    border: none;
    background-color: #FF305B;
    color: #fff;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

/* ========= contact end =========== */

/* ========= footer start ========= */

#footer {

    width: 100%;
    height: 30%;
    background-color: #333;
    padding: 50px 0;
}

.footer-section {

    text-align: center;
}

.footer-section i {
    
    padding-left: 10px;
    transition-duration: 0.2s;
    color: white;
    font-size: 16px;
}

.footer-section i:hover {

    color: #ff305b;
}


.footer-section p {

    font-family: "Roboto",sans-serif;
    color: white;
}

.footer-section p a {

    text-decoration: none;
    color: #FF305B;
    font-family: "Roboto",sans-serif;
}

/* ==============footer end ============= */