@charset "UTF-8";
/*------------------------------------------------------------------
 * Theme Name: ZippySweets
 * Theme URI: https://zippysweets.ca/
 * Description: HTML5 Template

 -------------------------------------------------------------------*/

/*------------------------------------------------------------------
-------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700');

/*------------------------------------------------------------------
	1. General Styles
-------------------------------------------------------------------*/
*,
body {
    transition: all 0.3s ease 0.0s;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
}
/*------------------------------------------------------------------
	2. Header Styles
-------------------------------------------------------------------*/
#header-holder {
    background-image: url("../images/pro1.jpg");
    background-position: center;
    background-size: cover;
    position: relative;
}

#header-holder .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.76;
}

#header {
    padding-top: 32px;
    padding-bottom: 32px;
    position: relative;
}

#header .logo-holder {
    padding-left: 30px;
}

#header .logo {
    width: 100%;
    max-width: 200px;
}

#header .menu-holder {
    text-align: right;
    position: relative;
    padding-right: 30px;
}

#header #social-buttons {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 42px;
    cursor: pointer;
}

#header #social-buttons .dot {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -5px;
    border: 2px solid #ffffff;
    width: 10px;
    height: 10px;
    border-radius: 50px;
    text-align: center;
    transition: all 0.3s cubic-bezier(1, .02, 0, .99) 0.0s;
    overflow: hidden;
}

#header #social-buttons .dot .fa {
    position: relative;
    color: rgba(255, 255, 255, 0);
    font-size: 0;
}

#header #social-buttons .dot:nth-child(1) {
    right: 0;
}

#header #social-buttons .dot:nth-child(2) {
    right: 15px;
}

#header #social-buttons .dot:nth-child(3) {
    right: 30px;
}

#header #social-buttons:hover .dot {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    border-color: rgba(255, 255, 255, 0);
}

#header #social-buttons:hover .dot:hover {
    border-color: rgba(255, 255, 255, 0);
}

#header #social-buttons:hover .dot .fa {
    font-size: 17px;
    color: rgba(255, 255, 255, 1);
}

#header #social-buttons:hover .dot:nth-child(1) {
    right: 0;
    background-color: #3b5999;
    padding-top: 5px;
}

#header #social-buttons:hover .dot:nth-child(2) {
    right: 35px;
    background-color: #00aced;
    padding-top: 5px;
}

#header #social-buttons:hover .dot:nth-child(3) {
    right: 70px;
    background-color: #bc2a8d;
    padding-top: 4px;
}

/*------------------------------------------------------------------
	1. Top Content Styles
-------------------------------------------------------------------*/
#top-content {
    padding-top: 15vh;
    padding-bottom: 30vh;
    text-align: center;
    position: relative;
}

#top-content .first-line {
    font-size: 30px;
    font-weight: 300;
    color: #FBD536;
    margin-bottom: 20px;
}

#top-content .big-title {
    margin-bottom: 40px;
    position: relative;
    height: 90px;
}

#top-content .big-title .textover {
    font-size: 67px;
    font-weight: 300;
    color: #ffffff;
    text-transform: uppercase;
    position: absolute;
    width: 100%;
}

.text-blur-in-out {
    -webkit-animation: text-blur-in-out 9s linear both infinite;
    -moz-animation: text-blur-in-out 9s linear both infinite;
    animation: text-blur-in-out 9s linear both infinite;
}

.text-blur-in-out-delay1 {
    -webkit-animation-delay: 3s;
    -moz-animation-delay: 3s;
    animation-delay: 3s;
}

.text-blur-in-out-delay2 {
    -webkit-animation-delay: 6s;
    -moz-animation-delay: 6s;
    animation-delay: 6s;
}

@keyframes text-blur-in-out {
    0% {
        filter: blur(12px) opacity(0%);
    }

    3% {
        filter: blur(0px) opacity(100%);
    }

    4% {
        filter: blur(0px) opacity(100%);
    }

    29% {
        filter: blur(0px) opacity(100%);
    }

    30% {
        filter: blur(0.01) opacity(100%);
    }

    31% {
        filter: blur(12px) opacity(0%);
    }

    32% {
        filter: blur(12px) opacity(0%);
    }

    100% {
        filter: blur(12px) opacity(0%);
    }
}

#top-content .button-holder a#main-button {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    padding: 8px 22px;
    border: 2px solid #3ac5e8;
    border-radius: 50px;
    position: relative;
    cursor: pointer;
}

#top-content .button-holder a#main-button:hover {
    text-decoration: none;
    background-color: #3ac5e8;

}

/*------------------------------------------------------------------
	2. About Section Styles
-------------------------------------------------------------------*/
#about {
    background-color: #EE2269;
}

#about .img-col {
    padding-left: 0;
    padding-right: 0;
}

#about .img-col .image-holder {
    background-image: url("../images/pro3.jpg");
    background-position: bottom;
    background-size: cover;
    transition: none;
    min-height: 60vh !important;
}

#about .txt-col {
    text-align: left;
    min-height: 60vh !important;
    padding: 50px 3%;
}

#about .txt-col .icons {
    width: 296px;
    margin-top: 20px;
}

#about .txt-col .button-holder {
    text-align: right;
}

.button-default {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    padding: 8px 24px;
    border: 2px solid #ffffff;
    border-radius: 50px;
    position: relative;
    cursor: pointer;
}

.button-default:hover {
    text-decoration: none;
    color: #EE2269;
    background-color: #ffffff;
}

#about h3 {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    text-align: left;
}

#about h4 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
}

#about p {
    font-size: 20px;
    font-weight: 300;
    color: #ffcacc;
    margin-bottom: 50px;
    text-align: left;
}

/*------------------------------------------------------------------
	3. Features Section Styles
-------------------------------------------------------------------*/
#features {
    background-image: url("../images/working1.jpg");
    background-position: center;
    background-size: cover;
    position: relative;
    padding-top: 10vh;
    padding-bottom: 10vh;
}

#features .row-title {
    font-size: 28px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 50px;
    text-align: center;
}

#features .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    opacity: 0.90;
}

#features .row {
    position: relative;
}

.features-holder {
    position: relative;
    min-height: 350px;
}

.feature-icon-holder {
    display: inline-block;
    text-align: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    margin-top: -55px;
}

.feature-icon-holder1 {
    left: 10%;
}

.feature-icon-holder2 {
    left: 22%;
}

.feature-icon-holder3 {
    right: 22%;
}

.feature-icon-holder4 {
    right: 10%;
}

.feature-icon-holder .feature-icon {
    display: inline-block;
    background-color: #3AC5E8;
    width: 70px;
    height: 70px;
    border-radius: 100px;
    padding-top: 22px;
    margin-bottom: 18px;
}

.feature-icon-holder .feature-icon .fa {
    color: #ffffff;
    font-size: 26px;
}

.feature-icon-holder:hover .feature-icon,
.feature-icon-holder.opened .feature-icon {
    background-color: #FBD536;
}

.feature-icon-holder:hover .feature-icon .fa,
.feature-icon-holder.opened .feature-icon .fa {
    color: #ffffff;
}

.feature-icon-holder .feature-title {
    color: #000000;
    font-size: 20px;
    font-weight: 600;
}

.feature-details {
    display: inline-block;
    width: 350px;
    height: 350px;
    background-color: #EE2269;
    border: 2px solid #FBD536;
    border-radius: 1000px;
    text-align: center;
    overflow: hidden;
    position: absolute;
    left: 50%;
    margin-left: -175px;
    top: 50%;
    margin-top: -175px;
}

.feature-details:hover {
    transform: scale(1.02);
    box-shadow: 0 0 80px 0 rgba(0, 0, 0, 0.2);
}

.feature-details div[class^="feature-details"] {
    opacity: 0;
    position: absolute;
    top: 90px;
    transform: scale(0.5);
    /*transition: all 0.3s cubic-bezier(1, .02, 0, .99) 0.0s;*/
}

.feature-details div[class^="feature-details"].show-details {
    opacity: 1;
    top: 90px;
    transform: scale(1);
}

.feature-details div[class^="feature-details"] .feature-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.feature-details div[class^="feature-details"] .feature-text {
    font-size: 18px;
    font-weight: 300;
    color: #ffcacc;
    padding-left: 40px;
    padding-right: 40px;
}


/*------------------------------------------------------------------
	4. Message Section Styles
-------------------------------------------------------------------*/
#message {
    background-color: #4f4f5a;
    padding-top: 25px;
    padding-bottom: 25px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 300;
    text-align: center;
}

#message a {
    margin: 10px;
}

.button-red {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    padding: 8px 24px;
    border: 2px solid #ffffff;
    background-color: #EE2269;
    border-radius: 50px;
    position: relative;
    cursor: pointer;
}

.button-red:hover {
    text-decoration: none;
    color: #EE2269;
    background-color: #ffffff;
}

/*------------------------------------------------------------------
	5. Contact Section Styles
-------------------------------------------------------------------*/
#contact {
    background-color: #000000;
    padding: 10vh 3%;
    text-align: center;
}

#contact h3 {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    text-align: left;
}

#contact h4 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    text-align: left;
}

#contact .address-holder p {
    font-size: 15px;
    color: #909096;
    text-align: left;
}

#contact .address-holder p.less-opacity {
    opacity: 0.7;
}

#contact #contactform {
    padding-bottom: 40px;
}

#contact .form-items-holder {
    padding-left: 180px;
}

#contact .form-items-holder input {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #ffffff;
    margin-bottom: 10px;
    padding: 10px 0;
    background-color: transparent;
    color: #ffffff;
    outline: none;
    font-size: 16px;
}

#contact .form-items-holder input:hover,
#contact .form-items-holder input:focus {
    border-bottom: 1px solid #e62d34;
}

#contact .form-items-holder .error {
    color: #fbf0f4;
    font-weight: 100;
}

#contact .form-items-holder label {
    text-align: left;
    font-weight: 400;
    color: #a9a9a9;
    width: 100%;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
}

#contact .form-items-holder textarea {
    text-align: left;
    width: 100%;
    height: 100px;
    resize: none;
    padding: 5px;
    margin-bottom: 5px;
    border: 0;
    border: 1px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
    outline: none;
    margin-bottom: 20px;
}

#contact .form-items-holder textarea:hover,
#contact .form-items-holder textarea:focus {
    border: 1px solid #e62d34;
}

#contact .form-items-holder input[type="submit"] {
    width: inherit;
    float: right;
    border: 2px solid #ffffff;
    padding: 4px 30px;
    pointer-events: all;
    border-radius: 50px;
    font-size: 17px;
    text-transform: uppercase;
}

#contact .form-items-holder input[type="submit"]:hover {
    background-color: #ffffff;
    color: #4f4f5a;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 1px solid rgba(255, 255, 255, 0);
    border-bottom: 1px solid rgba(255, 255, 255, 1);
    -webkit-text-fill-color: white;
    -webkit-box-shadow: 0 0 0px 1000px #000 inset;
    transition: background-color 5000s ease-in-out 0s;
}

#contact .form-items-holder .ajax-button.sending input[type="submit"] {
    pointer-events: none;
    font-size: 0;
    width: 35px;
    height: 35px;
    border-radius: 50px;
    padding: 0;
    border: 2px solid #FFFFFF;
    border-bottom: 2px solid rgba(255, 255, 255, 0.0);
    border-left: 2px solid rgba(255, 255, 255, 0.0);
    background-color: transparent !important;
    animation-name: rotateAnimation;
    -webkit-animation-name: rotateAnimation;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@keyframes rotateAnimation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotateAnimation {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

/*------------------------------------------------------------------
	12. Responsive Styles
-------------------------------------------------------------------*/

/* Other screens styles modifications */
@media (max-width: 1200px) {
    #contact .form-items-holder {
        padding-left: 0px;
    }

    #contact .address-holder {
        padding-left: 0px;
    }
}

@media (max-width: 992px) {
    .feature-details {
        width: 320px;
        height: 320px;
        margin-left: -160px;
        margin-top: -160px;
    }

    .feature-details div[class^="feature-details"] {
        top: 70px;
    }

    .feature-details div[class^="feature-details"].show-details {
        top: 70px;
    }

    .feature-details div[class^="feature-details"] .feature-title {
        font-size: 21px;
        margin-bottom: 17px;
    }

    .feature-details div[class^="feature-details"] .feature-text {
        font-size: 17px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .feature-icon-holder1 {
        left: 2%;
    }

    .feature-icon-holder2 {
        left: 15%;
    }

    .feature-icon-holder3 {
        right: 15%;
    }

    .feature-icon-holder4 {
        right: 2%;
    }

    .feature-icon-holder .feature-title {
        font-size: 16px;
    }

    #about .txt-col {
        padding: 40px 10%;
    }

    #about .txt-col .icons {
        width: 296px;
        margin-top: 20px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    #top-content .big-title {
        font-size: 60px;
        height: 172px;
    }

    #info p {
        padding-left: 10%;
        padding-right: 10%;
    }

    .feature-icon-holder1 {
        top: 5%;
        left: 5%;
    }

    .feature-icon-holder2 {
        top: inherit;
        left: 5%;
        bottom: -10%;
    }

    .feature-icon-holder3 {
        top: 5%;
        right: 5%;
    }

    .feature-icon-holder4 {
        top: inherit;
        right: 5%;
        bottom: -10%;
    }

    .feature-icon-holder .feature-icon {
        margin-bottom: 12px;
    }

    .feature-icon-holder .feature-title {
        font-size: 14px;
    }

    .feature-details {
        width: 300px;
        height: 300px;
        margin-left: -150px;
        margin-top: -150px;
    }

    .feature-details div[class^="feature-details"] {
        top: 60px;
    }

    .feature-details div[class^="feature-details"].show-details {
        top: 60px;
    }

    .feature-details div[class^="feature-details"] .feature-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .feature-details div[class^="feature-details"] .feature-text {
        font-size: 16px;
        padding-left: 40px;
        padding-right: 40px;
    }

    #about .txt-col {
        text-align: center;
    }

    #about .txt-col .button-holder {
        text-align: center;
    }
}

@media (max-width: 480px) {
    #info .counts-holder .info-box {
        padding-left: 5px;
        padding-right: 5px;
    }

    #info .counts-holder .info-box .info-icon {
        margin-bottom: 16px;
    }

    #info .counts-holder .info-box .info-icon svg {
        width: 50px;
    }

    #info .counts-holder .info-box .info-number {
        font-size: 14px;
    }

    #info .counts-holder .info-box .info-text {
        font-size: 14px;
    }

    .feature-icon-holder1 {
        top: 0%;
        left: 1%;
    }

    .feature-icon-holder2 {
        top: inherit;
        left: 1%;
        bottom: -15%;
    }

    .feature-icon-holder3 {
        top: 0%;
        right: 1%;
    }

    .feature-icon-holder4 {
        top: inherit;
        right: 1%;
        bottom: -15%;
    }
}